]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/values/strings.xml
remove Exit item from the drawer
[mobile-ledger.git] / app / src / main / res / values / strings.xml
1 <!--
2   ~ Copyright Â© 2019 Damyan Ivanov.
3   ~ This file is part of Mobile-Ledger.
4   ~ Mobile-Ledger is free software: you can distribute it and/or modify it
5   ~ under the term of the GNU General Public License as published by
6   ~ the Free Software Foundation, either version 3 of the License, or
7   ~ (at your opinion), any later version.
8   ~
9   ~ Mobile-Ledger is distributed in the hope that it will be useful,
10   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   ~ GNU General Public License terms for details.
13   ~
14   ~ You should have received a copy of the GNU General Public License
15   ~ along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16   -->
17
18 <resources>
19     <string name="app_name">Mobile Ledger</string>
20     <string name="navigation_drawer_open">Open navigation drawer</string>
21     <string name="navigation_drawer_close">Close navigation drawer</string>
22     <string name="nav_header_desc">Navigation header</string>
23     <string name="action_settings">Settings</string>
24     <string name="nav_header_subtitle" translatable="false">dam+google@ktnx.net</string>
25     <string name="nav_latest_transactions_title">Latest transactions</string>
26     <string name="nav_reports_title">Reports</string>
27     <string name="title_activity_settings">Settings</string>
28
29     <!-- Strings related to Settings -->
30
31     <!-- Example General settings -->
32     <string name="pref_header_backend">Backend server</string>
33
34     <string name="pref_title_use_http_auth">Enable HTTP authentication</string>
35     <string name="pref_description_use_http_auth_on">Use HTTP authentication (basic) when connecting to the backend</string>
36     <string name="pref_description_use_http_auth_off">Use plain HTTP without authentication when connecting to the backend</string>
37
38     <string name="pref_title_backend_url">Backend URL</string>
39     <string name="pref_default_backend_url">https://server/loc</string>
40
41     <!-- Example settings for Data & Sync -->
42     <string name="pref_title_sync_frequency">Sync frequency</string>
43     <string-array name="pref_sync_frequency_titles">
44         <item>15 minutes</item>
45         <item>30 minutes</item>
46         <item>1 hour</item>
47         <item>3 hours</item>
48         <item>6 hours</item>
49         <item>Never</item>
50     </string-array>
51     <string-array name="pref_sync_frequency_values">
52         <item>15</item>
53         <item>30</item>
54         <item>60</item>
55         <item>180</item>
56         <item>360</item>
57         <item>-1</item>
58     </string-array>
59
60     <string name="pref_title_system_sync_settings">System sync settings</string>
61
62     <!-- Example settings for Notifications -->
63     <string name="pref_header_notifications">Notifications</string>
64
65     <string name="pref_title_new_message_notifications">New message notifications</string>
66
67     <string name="pref_title_ringtone">Ringtone</string>
68     <string name="pref_ringtone_silent">Silent</string>
69
70     <string name="pref_title_vibrate">Vibrate</string>
71     <string name="pref_title_backend_auth_user">Username</string>
72     <string name="pref_title_backend_auth_password">Password</string>
73     <string name="title_activity_new_transaction">New Transaction</string>
74     <string name="new_transaction_account_hint">Account</string>
75     <string name="new_transaction_date_hint">today</string>
76     <string name="new_transaction_amount_hint">0.00</string>
77     <string name="menu_add_account">Add another acount</string>
78     <string name="msg_at_least_two_accounts_are_required">At least two accounts are required</string>
79     <string name="err_bad_backend_url">Invalid backend URL</string>
80     <string name="err_net_io_error">Network I/O error</string>
81     <string name="err_http_error">HTTP error</string>
82     <string name="err_net_error">Network error</string>
83     <string name="progress_connecting">Connecting…</string>
84     <string name="progress_N_accounts_loaded">%d accounts loaded</string>
85     <string name="new_transaction_description_hint">Description</string>
86     <string name="action_submit_transaction_title">Save</string>
87     <string name="account_summary_title">Accounts</string>
88     <string name="menu_acc_summary_refresh_title">Refresh</string>
89     <string name="menu_hide_acc_title">Hide account</string>
90     <string name="menu_hide_acc_condensed_title">Hide</string>
91     <string name="menu_acc_summary_show_only_starred_title">Show only starred</string>
92     <string name="err_bad_auth">Invalid username or password</string>
93     <string name="action_reset_new_transaction_activity_title">Reset</string>
94     <string name="interface_pref_header_title">Interface</string>
95     <string name="pref_show_only_starred_off_summary">Account list contains all accounts</string>
96     <string name="pref_show_only_starred_on_summary">Only starred accounts are shown</string>
97     <string name="menu_acc_summary_hide_selected_title">Hide selected accounts</string>
98     <string name="menu_acc_summary_cancel_selection_title">Cancel selection</string>
99     <string name="menu_acc_summary_confirm_selection_title">Confirm selection</string>
100     <string name="title_activity_transaction_list">Transactions</string>
101     <string name="transactions_last_update_label">Last update:</string>
102     <string name="transaction_last_update_never">never</string>
103     <string name="err_cancelled">Operation cancelled</string>
104     <string name="title_profile_list">Profiles</string>
105     <string name="title_profile_details">Profile Details</string>
106     <string name="profiles">Profiles</string>
107     <string name="new_profile_title" type="id">New profile</string>
108     <string name="delete_profile">Delete profile</string>
109     <string name="delete">Delete</string>
110     <string name="error_invalid_date">Invalid date</string>
111     <string-array name="month_names">
112         <item>January</item>
113         <item>February</item>
114         <item>Match</item>
115         <item>April</item>
116         <item>May</item>
117         <item>June</item>
118         <item>July</item>
119         <item>August</item>
120         <item>September</item>
121         <item>October</item>
122         <item>November</item>
123         <item>December</item>
124     </string-array>
125 </resources>