Add Ukrainian Translations
brminnick opened this issue · 3 comments
brminnick commented
GitTrends provides i18n using RESX.
More information on using RESX with Xamarin.Forms can be found here:
https://docs.microsoft.com/xamarin/xamarin-forms/app-fundamentals/localization/text
All of the .resx
files can be found in the GitTrends.Mobile.Common.Constants folder:
https://github.com/brminnick/GitTrends/tree/master/GitTrends.Mobile.Common/Constants
ToDo
- Implement AppStoreRatingRequestConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> AppStoreRatingRequestConstants.resx </DependentUpon>
(Example)
- In
- Implement DemoUserConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> DemoUserConstants.resx </DependentUpon>
(Example)
- In
- Implement EmptyDataViewConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> EmptyDataViewConstants.resx </DependentUpon>
(Example)
- In
- Implement EmptyDataViewConstantsInternal.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> EmptyDataViewConstantsInternal.resx </DependentUpon>
(Example)
- In
- Implement GitHubLoginButtonConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> GitHubLoginButtonConstants.resx </DependentUpon>
(Example)
- In
- Implement NotificationConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> NotificationConstants.resx </DependentUpon>
(Example)
- In
- Implement OnboardingConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> OnboardingConstants.resx </DependentUpon>
(Example)
- In
- Implement PageTitles.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> PageTitles.resx </DependentUpon>
(Example)
- In
- Implement ReferringSitesPageConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> ReferringSitesPageConstants.resx </DependentUpon>
(Example)
- In
- Implement RepositoryPageConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> RepositoryPageConstants.resx </DependentUpon>
(Example)
- In
- Implement ReviewServiceConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> ReviewServiceConstants.resx </DependentUpon>
(Example)
- In
- Implement SettingsPageConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> SettingsPageConstants.resx </DependentUpon>
(Example)
- In
- Implement SortingConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> SortingConstants.resx </DependentUpon>
(Example)
- In
- Implement SplashScreenPageConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> SplashScreenPageConstants.resx </DependentUpon>
(Example)
- In
- Implement TrendsChartTitleConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> TrendsChartTitleConstants.resx </DependentUpon>
(Example)
- In
- Implement WelcomePageConstants.uk.resx
- In
GitTrends.Mobile.Common.csproj
, use<DependentUpon> WelcomePageConstants.resx </DependentUpon>
(Example)
- In
virsanna commented
here
brminnick commented
Thanks Vira!! 🎉
virsanna commented
@brminnick Done :)
#135