aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/arrays.xml
blob: 34df07cc6f3efacfcb7a89467bfbbe4f1f2b9feb (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
<?xml version="1.0" encoding="utf-8"?><!--
  ~ Copyright © 2014-2024 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>
    <item>@string/pref_recently_used_sort_order</item>
  </string-array>
  <string-array name="sort_order_values">
    <item>FOLDER_FIRST</item>
    <item>FILE_FIRST</item>
    <item>INDEPENDENT</item>
    <item>RECENTLY_USED</item>
  </string-array>
  <string-array name="pwgen_provider_labels">
    <item>Classic</item>
    <item>Diceware</item>
  </string-array>
  <string-array name="pwgen_provider_values">
    <item>classic</item>
    <item>diceware</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/pref_app_theme_value_light</item>
    <item>@string/pref_app_theme_value_dark</item>
    <item>@string/pref_app_theme_value_battery_saver</item>
  </string-array>
  <string-array name="app_theme_values">
    <item>light</item>
    <item>dark</item>
    <item>battery_saver</item>
  </string-array>

</resources>