Skip to content
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