Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2195675e authored by Ladios Jonquil's avatar Ladios Jonquil Committed by Steve Kondik
Browse files

res: Move shutdown menu array items to strings

for easier translation work on the overlays added by
http://review.cyanogenmod.com/8471

String 'Bootmenu' (and its de translation found from the patch) is added.

patch set 2: String 'Fastboot' is added as requested.

This patch is needed by http://review.cyanogenmod.com/8631

Change-Id: I1f89f2670facec9a60d1b2981bd71f705f887f04
parent 15aaaec2
Loading
Loading
Loading
Loading

core/res/res/values-de/arrays.xml

deleted100644 → 0
+0 −27
Original line number Diff line number Diff line
<!--
/* //device/apps/common/assets/res/any/colors.xml
**
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->

<!-- Defines the shutdown options shown in the reboot dialog. -->
<resources>
    <array name="shutdown_reboot_options">
        <item>Neu starten</item>
        <item>Recovery</item>
        <item>Bootloader</item>
    </array>
</resources>
+4 −0
Original line number Diff line number Diff line
@@ -155,6 +155,10 @@

    <!-- Button to reboot the phone, within the Phone Options dialog -->
    <string name="reboot_system">Neu starten</string>
    <!-- Button to reboot the phone, within the Reboot Options dialog -->
    <string name="reboot_reboot">Neu starten</string>
    <!-- Button to reboot the phone into bootmenu, within the Reboot Options dialog -->
    <string name="reboot_bootmenu">Bootmenü</string>
    <!-- Reboot Progress Dialog. This is shown if the user chooses to reboot the phone. -->
    <string name="reboot_progress">Neu starten…</string>
    <!-- Reboot Confirmation Dialog.  When the user chooses to reboot the phone, there will be a confirmation dialog.  This is the message. -->
+0 −29
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/* //device/apps/common/assets/res/any/colors.xml
**
** Copyright 2006, Google Inc.
**
** Licensed under the Apache License, Version 2.0 (the "License"); 
** you may not use this file except in compliance with the License. 
** You may obtain a copy of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** Unless required by applicable law or agreed to in writing, software 
** distributed under the License is distributed on an "AS IS" BASIS, 
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
** See the License for the specific language governing permissions and 
** limitations under the License.
*/
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

    <!-- Defines the shutdown options shown in the reboot dialog. -->
    <array name="shutdown_reboot_options">
        <item>Käynnistä uudelleen</item>
        <item>Recovery</item>
        <item>Bootloader</item>
    </array>

</resources>
+1 −0
Original line number Diff line number Diff line
@@ -153,6 +153,7 @@
    <string name="screen_lock">Näyttölukitus</string>
    <string name="power_off">Virta pois</string>
    <string name="reboot_system">Käynnistä uudelleen</string>
    <string name="reboot_reboot">Käynnistä uudelleen</string>

    <string name="shutdown_progress">Sammutetaan\u2026</string>

core/res/res/values-fr/arrays.xml

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
<!--
/* //device/apps/common/assets/res/any/colors.xml
**
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<resources>
    <!-- Defines the shutdown options shown in the reboot dialog. -->
    <array name="shutdown_reboot_options">
        <item>Redémarrage</item>
        <item>Recovery</item>
        <item>Bootloader</item>
    </array>
</resources>
Loading