aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/arrays.xml
blob: 1ccdd5ebb6a43d49eb701160b74f9de7ad5c76ef (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?><!--
  ~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
  ~ SPDX-License-Identifier: GPL-3.0-only
  -->

<resources>
    <string-array name="sort_order_entries">
        <item>@string/pref_folder_first_sort_order</item>
        <item>@string/pref_file_first_sort_order</item>
        <item>@string/pref_type_independent_sort_order</item>
    </string-array>
    <string-array name="sort_order_values">
        <item>FOLDER_FIRST</item>
        <item>FILE_FIRST</item>
        <item>INDEPENDENT</item>
    </string-array>
    <string-array name="capitalization_type_values">
        <item>lowercase</item>
        <item>UPPERCASE</item>
        <item>TitleCase</item>
        <item>Sentencecase</item>
    </string-array>
    <string-array name="pwgen_provider_labels">
        <item>Classic</item>
        <item>XKPasswd</item>
    </string-array>
    <string-array name="pwgen_provider_values">
        <item>classic</item>
        <item>xkpasswd</item>
    </string-array>
    <string-array name="oreo_autofill_directory_structure_entries">
        <item>work/example.org(.gpg)</item>
        <item>work/example.org/john@doe.org(.gpg)</item>
        <item>work/example.org/john@doe.org/password(.gpg)</item>
    </string-array>
    <string-array name="oreo_autofill_directory_structure_values">
        <item>encrypted_username</item>
        <item>file</item>
        <item>directory</item>
    </string-array>
    <string-array name="app_theme_options">
        <item>@string/theme_light</item>
        <item>@string/theme_dark</item>
        <item>@string/theme_battery_saver</item>
    </string-array>
    <string-array name="app_theme_values">
        <item>light</item>
        <item>dark</item>
        <item>battery_saver</item>
    </string-array>

</resources>