Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add locale for vi #1202

Merged
merged 2 commits into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugin-localization/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Mapbox welcomes participation and contributions from everyone.

### mapbox-android-plugin-localization-v9:0.14.0 - September 16, 2021
#### Bugs
- Add locale for Locale("vi")[#1202](https://github.com/mapbox/mapbox-plugins-android/pull/1202)

### mapbox-android-plugin-localization-v9:0.13.0 - August 24, 2021

- Adding Vietnamese and Italian support to Localization Plugin[#1098](https://github.com/mapbox/mapbox-plugins-android/pull/1098)
Expand Down
2 changes: 1 addition & 1 deletion plugin-localization/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.14.0-SNAPSHOT
VERSION_NAME=0.15.0-SNAPSHOT
POM_ARTIFACT_ID=mapbox-android-plugin-localization-v9
POM_NAME=Mapbox Android Localization Plugin
POM_DESCRIPTION=Mapbox Android Localization Plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ public final class MapLocale {
LOCALE_SET.put(new Locale("pt", "PT"), PORTUGAL);
LOCALE_SET.put(new Locale("pt", "BR"), BRAZIL);
LOCALE_SET.put(new Locale("vi", "VN"), VIETNAM);
LOCALE_SET.put(new Locale("vi"), VIETNAM);
LOCALE_SET.put(Locale.ITALY, MapLocale.ITALY);

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
Expand Down