Skip to content

Instantly share code, notes, and snippets.

@filipoff2
Last active November 15, 2019 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipoff2/5e7544c3155ab07b078f31b620ec2be9 to your computer and use it in GitHub Desktop.
Save filipoff2/5e7544c3155ab07b078f31b620ec2be9 to your computer and use it in GitHub Desktop.
UGLY DUMMY DATA = no culture
/// UGLY DUMMY DATA = no culture
const double demoSum = 99.99;
public static MainPageViewModel MainPageViewModeDE
{
get { return new MainPageViewModel(null) { Title = "Deutsch", ButtonText = "Rechnungen".ToUpper() + "€" }; }
}
public static MainPageViewModel MainPageViewModePL
{
get { return new MainPageViewModel(null) { Title = "Polski", ButtonText = "Faktury" + demoSum + "PLN" }; }
}
public static MainPageViewModel MainPageViewModeEL
{
get { return new MainPageViewModel(null) { Title = "ελληνικά", ButtonText = "τιμολόγια" }; } //usp... "forgot to add"
}
public static MainPageViewModel MainPageViewModeEn
{
get { return new MainPageViewModel(null) { Title = "English", ButtonText = "Invoices" + "€" + demoSum }; }
}
public static MainPageViewModel MainPageViewModeEn
{
get { return new MainPageViewModel(null) { Title = "English2", ButtonText = "Invoices" + "£" + demoSum }; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment