Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active November 15, 2017 15:18
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 juucustodio/4bde41a05df4cc6b549f87cf449e9717 to your computer and use it in GitHub Desktop.
Save juucustodio/4bde41a05df4cc6b549f87cf449e9717 to your computer and use it in GitHub Desktop.
Example of Multilingual in Xamarin.Forms applications - http://julianocustodio.com/multilingue
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Multilingual"
x:Class="Multilingual.MainPage"
xmlns:translator="clr-namespace:Multilingual.Helpers">
<ContentPage.Content>
<StackLayout>
<Label Text="{translator:Translate WelcomeMessage}"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment