Surface the community translations that landed via Weblate but were never listed in locales_config.xml. European Portuguese stays out: it has one translated string.
24 lines
1006 B
XML
24 lines
1006 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
The languages Calendula ships translations for. This is the single source of
|
|
truth: each entry must have a matching res/values-<tag>/strings.xml, and is
|
|
surfaced automatically in both the in-app language picker (parsed at runtime
|
|
by AppLanguage) and the system per-app language settings (Android 13+, via
|
|
android:localeConfig in the manifest). To add a community translation, drop
|
|
in the values-<tag> folder and add one <locale> line here.
|
|
-->
|
|
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<locale android:name="en" />
|
|
<locale android:name="ar" />
|
|
<locale android:name="cs" />
|
|
<locale android:name="de" />
|
|
<locale android:name="es" />
|
|
<locale android:name="fr" />
|
|
<locale android:name="it" />
|
|
<locale android:name="ja" />
|
|
<locale android:name="pl" />
|
|
<locale android:name="pt-BR" />
|
|
<locale android:name="ru" />
|
|
<locale android:name="zh-CN" />
|
|
</locale-config>
|