LSPosed/app/src/main/res/values/arrays.xml

100 lines
3.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?><!--
~ This file is part of LSPosed.
~
~ LSPosed is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ LSPosed is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with LSPosed. If not, see <https://www.gnu.org/licenses/>.
~
~ Copyright (C) 2020 EdXposed Contributors
~ Copyright (C) 2021 LSPosed Contributors
-->
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string-array name="theme_texts" translatable="false">
<item>@string/dark_theme_off</item>
<item>@string/dark_theme_on</item>
<item>@string/dark_theme_follow_system</item>
</string-array>
<string-array name="theme_values" translatable="false">
<item>MODE_NIGHT_NO</item>
<item>MODE_NIGHT_YES</item>
<item>MODE_NIGHT_FOLLOW_SYSTEM</item>
</string-array>
<string-array name="language" translatable="false">
<item>@string/follow_system</item>
</string-array>
<string-array name="color_values" translatable="false">
<item>COLOR_PRIMARY</item>
<item>SAKURA</item>
<item>MATERIAL_RED</item>
<item>MATERIAL_PINK</item>
<item>MATERIAL_PURPLE</item>
<item>MATERIAL_DEEP_PURPLE</item>
<item>MATERIAL_INDIGO</item>
<item>MATERIAL_BLUE</item>
<item>MATERIAL_LIGHT_BLUE</item>
<item>MATERIAL_CYAN</item>
<item>MATERIAL_TEAL</item>
<item>MATERIAL_GREEN</item>
<item>MATERIAL_LIGHT_GREEN</item>
<item>MATERIAL_LIME</item>
<item>MATERIAL_YELLOW</item>
<item>MATERIAL_AMBER</item>
<item>MATERIAL_ORANGE</item>
<item>MATERIAL_DEEP_ORANGE</item>
<item>MATERIAL_BROWN</item>
<item>MATERIAL_GREY</item>
<item>MATERIAL_BLUE_GREY</item>
</string-array>
<string-array name="color_texts" translatable="false">
<item>@string/color_pixel_blue</item>
<item>@string/color_sakura</item>
<item>@string/color_red</item>
<item>@string/color_pink</item>
<item>@string/color_purple</item>
<item>@string/color_deep_purple</item>
<item>@string/color_indigo</item>
<item>@string/color_blue</item>
<item>@string/color_light_blue</item>
<item>@string/color_cyan</item>
<item>@string/color_teal</item>
<item>@string/color_green</item>
<item>@string/color_light_green</item>
<item>@string/color_lime</item>
<item>@string/color_yellow</item>
<item>@string/color_amber</item>
<item>@string/color_orange</item>
<item>@string/color_deep_orange</item>
<item>@string/color_brown</item>
<item>@string/color_grey</item>
<item>@string/color_blue_grey</item>
</string-array>
<string-array name="update_channel_texts" translatable="false">
<item>@string/update_channel_stable</item>
<item>@string/update_channel_bate</item>
<item>@string/update_channel_nightly</item>
</string-array>
<string-array name="update_channel_values" translatable="false">
<item>CHANNEL_STABLE</item>
<item>CHANNEL_BETA</item>
<item>CHANNEL_NIGHTLY</item>
</string-array>
</resources>