From dec56506f9b2db63eb6bdc419dfabf37593771f3 Mon Sep 17 00:00:00 2001 From: ScreenTinker Date: Wed, 29 Apr 2026 20:20:14 -0500 Subject: [PATCH] i18n: add Android localized string resources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds values-{es,fr,de,pt,hi}/strings.xml mirroring values/strings.xml. Two strings: app_name (kept as RemoteDisplay across all locales) and the accessibility service description (translated). Hindi is a copy of English by design — same approach as the web's empty hi.js. Native review can replace the en text in place once done; Android picks the right file based on device language. Co-Authored-By: Claude Opus 4.7 --- android/app/src/main/res/values-de/strings.xml | 5 +++++ android/app/src/main/res/values-es/strings.xml | 5 +++++ android/app/src/main/res/values-fr/strings.xml | 5 +++++ android/app/src/main/res/values-hi/strings.xml | 7 +++++++ android/app/src/main/res/values-pt/strings.xml | 5 +++++ 5 files changed, 27 insertions(+) create mode 100644 android/app/src/main/res/values-de/strings.xml create mode 100644 android/app/src/main/res/values-es/strings.xml create mode 100644 android/app/src/main/res/values-fr/strings.xml create mode 100644 android/app/src/main/res/values-hi/strings.xml create mode 100644 android/app/src/main/res/values-pt/strings.xml diff --git a/android/app/src/main/res/values-de/strings.xml b/android/app/src/main/res/values-de/strings.xml new file mode 100644 index 0000000..32fd402 --- /dev/null +++ b/android/app/src/main/res/values-de/strings.xml @@ -0,0 +1,5 @@ + + + RemoteDisplay + RemoteDisplay nutzt die Bedienungshilfen, um Fernsteuerung der Stromzufuhr und Systemnavigation zu ermöglichen. + diff --git a/android/app/src/main/res/values-es/strings.xml b/android/app/src/main/res/values-es/strings.xml new file mode 100644 index 0000000..7c44f65 --- /dev/null +++ b/android/app/src/main/res/values-es/strings.xml @@ -0,0 +1,5 @@ + + + RemoteDisplay + RemoteDisplay usa accesibilidad para habilitar el control remoto de encendido y la navegación del sistema. + diff --git a/android/app/src/main/res/values-fr/strings.xml b/android/app/src/main/res/values-fr/strings.xml new file mode 100644 index 0000000..26d805c --- /dev/null +++ b/android/app/src/main/res/values-fr/strings.xml @@ -0,0 +1,5 @@ + + + RemoteDisplay + RemoteDisplay utilise l\'accessibilité pour activer les contrôles d\'alimentation à distance et la navigation système. + diff --git a/android/app/src/main/res/values-hi/strings.xml b/android/app/src/main/res/values-hi/strings.xml new file mode 100644 index 0000000..976fba0 --- /dev/null +++ b/android/app/src/main/res/values-hi/strings.xml @@ -0,0 +1,7 @@ + + + + RemoteDisplay + RemoteDisplay uses accessibility to enable remote power controls and system navigation. + diff --git a/android/app/src/main/res/values-pt/strings.xml b/android/app/src/main/res/values-pt/strings.xml new file mode 100644 index 0000000..c8c76f5 --- /dev/null +++ b/android/app/src/main/res/values-pt/strings.xml @@ -0,0 +1,5 @@ + + + RemoteDisplay + RemoteDisplay usa acessibilidade para habilitar controles remotos de energia e navegação do sistema. +