mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 08:04:45 +00:00
The browser/napplet strings (browser_address_hint, browser_console_title, browser_console_title_short, browser_console_clear, napplet_untitled) were moved to :commons, but their per-locale translations were left behind in amethyst's values-*/strings.xml. With the default keys gone from amethyst, lint flagged them as ExtraTranslation (80 errors across 16 locales). Move the translations into commons/src/androidMain/res/values-*/strings.xml so the default key and its translations live in the same module, preserving the existing translation work. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Uza7sGxYPZtY43Ln2yH8FQ
9 lines
383 B
XML
9 lines
383 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<resources>
|
||
<string name="browser_address_hint">Ara veya adres gir</string>
|
||
<string name="browser_console_title_short">Konsol</string>
|
||
<string name="browser_console_title">Konsol (%1$d)</string>
|
||
<string name="browser_console_clear">Temizle</string>
|
||
<string name="napplet_untitled">Başlıksız nApplet</string>
|
||
</resources>
|