Skip to content

Commit

Permalink
Add support for AF.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-signal committed Jul 11, 2022
1 parent 631958e commit c169dd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/src/main/res/values/arrays.xml
Expand Up @@ -4,6 +4,7 @@
<string-array name="language_entries">
<!-- zz --><item>@string/preferences__system_default</item>
<!-- en --><item>English</item>
<!-- af --><item>Afrikaans</item>
<!-- ar --><item>Arabic العربية</item>
<!-- az --><item>Azərbaycan</item>
<!-- jv --><item>Basa Jawa</item>
Expand Down Expand Up @@ -86,6 +87,7 @@
<string-array name="language_values">
<item>zz</item>
<item>en</item>
<item>af</item>
<item>ar</item>
<item>az</item>
<item>jv</item>
Expand Down
Expand Up @@ -42,7 +42,7 @@ public void findBestMatchingLocaleForLanguage_a_non_build_config_language_defaul
}

private static String getUnsupportedLanguage() {
String unsupportedLanguage = "af";
String unsupportedLanguage = "ae";
assertFalse("Language should be an unsupported one", buildConfigLanguages().contains(unsupportedLanguage));
return unsupportedLanguage;
}
Expand Down

0 comments on commit c169dd3

Please sign in to comment.