Add zh-CN to locales_config.xml so the community Simplified Chinese translation (values-zh-rCN, already committed via Weblate, ~27%) is selectable in the in-app language picker and Android's per-app-language settings. Untranslated strings fall back to English. Fill in the 2.14.0 changelog, which only documented #37: add the three feature PRs that also landed on this branch — .ics restore + per-calendar export (#32), Month week numbers (#25), edit-screen title wrapping (#33) — plus a note for the new Chinese translation, the missing [#N] link refs, and the re-synced fastlane en-US changelog. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
17 lines
772 B
XML
17 lines
772 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="de" />
|
|
<locale android:name="es" />
|
|
<locale android:name="it" />
|
|
<locale android:name="zh-CN" />
|
|
</locale-config>
|