331 lines
15 KiB
XML
331 lines
15 KiB
XML
|
<!--
|
||
|
~ Copyright (C) 2021 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.
|
||
|
-->
|
||
|
|
||
|
<!-- This resources set the default subtitle for tiles. This way, each tile can be translated
|
||
|
separately.
|
||
|
The indices in the array correspond to the state values in QSTile:
|
||
|
* STATE_UNAVAILABLE
|
||
|
* STATE_INACTIVE
|
||
|
* STATE_ACTIVE
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as if
|
||
|
they could appear.
|
||
|
-->
|
||
|
<resources>
|
||
|
<!-- Default names for tiles states: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_default">
|
||
|
<item>@string/tile_unavailable</item>
|
||
|
<item>@string/switch_bar_off</item>
|
||
|
<item>@string/switch_bar_on</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for internet tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_internet">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for wifi tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_wifi">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for cell (data) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear.[CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_cell">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for battery (saver) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_battery">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for dnd (Do not disturb) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_dnd">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for flashlight tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_flashlight">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for rotation (lock) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_rotation">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for bt (bluetooth) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_bt">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for airplane tile: unavailable, off, on [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_airplane">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for location tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_location">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for hotspot tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_hotspot">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for color correction tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_color_correction">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for (color) inversion tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_inversion">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for (data) saver tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_saver">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for dark (mode) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_dark">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for work (mode) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_work">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for cast tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_cast">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for night (light) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_night">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for screenrecord tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_screenrecord">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for reverse (charging) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_reverse">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for reduce_brightness tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_reduce_brightness">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for cameratoggle tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear.[CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_cameratoggle">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for mictoggle tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_mictoggle">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for (home) controls tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_controls">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for (quick access) wallet tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_wallet">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for qr code scanner tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_qr_code_scanner">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for alarm tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_alarm">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for One-handed mode tile: unavailable, off, on [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_onehanded">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for dream (screensaver) tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_dream">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
|
||
|
<!-- State names for font scaling tile: unavailable, off, on.
|
||
|
This subtitle is shown when the tile is in that particular state but does not set its own
|
||
|
subtitle, so some of these may never appear on screen. They should still be translated as
|
||
|
if they could appear. [CHAR LIMIT=32] -->
|
||
|
<string-array name="tile_states_font_scaling">
|
||
|
<item>Unavailable</item>
|
||
|
<item>Off</item>
|
||
|
<item>On</item>
|
||
|
</string-array>
|
||
|
</resources>
|