aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/strings.xml
blob: 1f2ae926a4805eee1b05931c879b75eb0acac084 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- Activity names -->
    <string name="app_name">Password Store</string>
    <string name="activity_clone_name">Clone a Git repo</string>

    <string name="clone_settings">Clone</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>
    <string name="dialog_delete_title">Directory already exist</string>
    <string name="dialog_delete_msg">Target directory already exist. Current version support only a single store. Do you want to delete the current password store directory?</string>
    <string name="dialog_delete">Delete directory</string>
    <string name="dialog_do_not_delete">Cancel</string>
    <string name="title_activity_git_clone">Repository information</string>
    
    <!-- Password Store -->
    <string name="creation_dialog_text">Please clone or create a new repository below before trying to add a password or any synchronization operation.</string>
	<string name="store_git">/store/.git</string>
    <string name="key_dialog_text">You have to select your "PGP-Key ID" before initializing the repository</string>
    <string name="connection_dialog_text">Which connection method do you prefer?</string>
    <string name="delete_dialog_text">Are you sure you want to delete the password /"</string>

    <!-- git commits -->
    <string name="initialization_commit_text">[ANDROID PwdStore] Initialized store with keyID: </string>
    <string name="add_commit_text">[ANDROID PwdStore] Add &#160;</string>
    <string name="remove_commit_text">[ANDROID PwdStore] Remove &#160;</string>
    <string name="from_store">&#160; from store.</string>

    <!-- PGPHandler -->
    <string name="provider_toast_text">No OpenPGP Provider selected!</string>
    <string name="okc_progress_text">Waiting for OpenKeychain...</string>
    <string name="clipboard_beginning_toast_text">Password copied to clipboard, you have </string>
    <string name="clipboard_ending_toast_text"> seconds to paste it somewhere.</string>
    <string name="name_settings_toast_text">Please set your account name in settings whenever you can</string>
    <string name="account_settings_dialog_text">Please set your OpenKeychain account (email) in the preferences</string>
    <string name="account_settings_dialog_title">Account name empty!</string>
    <string name="file_toast_text">Please provide a file name</string>
    <string name="empty_toast_text">You cannot use an empty password or empty extra content</string>

    <!-- Git Async Task -->
    <string name="running_dialog_text">Running command...</string>
    <string name="jgit_error_dialog_title">Internal exception occurred</string>
    <string name="jgit_error_dialog_text">Message from jgit: \n</string>

    <!-- Git Handler -->
    <string name="read_only_dialog_text">You are about to use a read-only repository, you will not be able to push to it</string>
    <string name="forget_username_dialog_text">Did you forget to specify a username?</string>
    <string name="set_information_dialog_text">You have to set the information about the server before synchronizing with the server</string>
    <string name="ssh_preferences_dialog_text">Please import your SSH key file in the preferences</string>
    <string name="ssh_preferences_dialog_title">No SSH key</string>
    <string name="passphrase_dialog_title">Authenticate</string>
    <string name="passphrase_dialog_text">Please provide the passphrase for your SSH key. Leave it empty if there is no passphrase.</string>
    <string name="password_dialog_text">Please provide the password for this repository</string>
    
    <!-- Clone fragment -->
    <string name="clone_fragment_text">Welcome to Password Store\n\n In this screen you can either create a new repository or clone your git repository onto your device.</string>
    <string name="clone">Clone existing</string>
    <string name="initialize">Create new</string>

    <string name="server_name">Server</string>
    <string name="server_protocol">Protocol</string>
    <string name="server_url">Server URL</string>
    <string name="server_url_hint">server.com</string>
    <string name="server_port_hint">22</string>
    <string name="default_ssh_port">22</string>
    <string name="default_https_port">443</string>
    <string name="server_path">Repo path</string>
    <string name="server_path_hint">path/to/pass</string>
    <string name="server_user">Username</string>
    <string name="server_user_hint">git_username</string>

    <string name="server_resulting_url">Resulting URL</string>
    <string name="connection_mode">Authentication Mode</string>

    <string name="warn_malformed_url_port">When using custom ports, provide an absolute path (starts with "/")</string>

    <!-- PGP Handler -->
    <string name="title_activity_pgp_handler">PgpHandler</string>
    <string name="crypto_name_hint">name</string>
    <string name="crypto_pass_label">Password</string>
    <string name="crypto_extra_label">Extra</string>

    <!-- DECRYPT Layout -->
    <string name="crypto_category">Category</string>
    <string name="action_search">Search</string>

    <!-- Preferences -->
    <string name="pref_git_title">Git</string>
    <string name="pref_server_title">Server</string>
    <string name="pref_server_hint">server.com</string>
    <string name="pref_remote_title">Remote location</string>
    <string name="pref_remote_hint">path/to/repository</string>
    <string name="pref_git_username_title">Username</string>
    <string name="pref_git_username_hint">username</string>
    <string name="pref_edit_server_info">Edit git server settings</string>
    <string name="pref_ssh_title">Import ssh-key</string>
    <string name="pref_git_delete_repo">Delete repository</string>
    <string name="pref_dialog_delete_title">Clear repository</string>
    <string name="pref_dialog_delete_msg">Do you want to delete the current password store directory? This will not clear your configuration.</string>
    <string name="pref_crypto_title">Crypto</string>
    <string name="pref_provider_title">Select OpenPGP Provider</string>
    <string name="pref_provider_account_title">Set your OpenPGP account</string>
    <string name="pref_provider_account_hint">mail@somewhere.tld</string>
    <string name="pref_key_title">Select OpenPGP Key id</string>
    <string name="pref_general_title">General</string>
    <string name="pref_password_title">Password Show Time</string>
    <string name="pref_password_dialog_title">Set the time you want the password to be in clipboard</string>
    <string name="pref_copy_title">Automatically Copy Password</string>
    <string name="pref_copy_dialog_title">Automatically copy the password to the clipboard after decryption was successful.</string>
    <string name="ssh_key_success_dialog_title" translatable="false">SSH-key imported</string>
    <string name="ssh_key_error_dialog_title">Error while trying to import the ssh-key</string>
    <string name="ssh_key_error_dialog_text">Message : \n</string>
    <string name="pref_recursive_filter">Recursive filtering</string>
    <string name="pref_recursive_filter_hint">Recursively find passwords of the current directory.</string>

    <!-- pwgen fragment -->
    <string name="pwgen_generate">Generate</string>
    <string name="pwgen_include">Include</string>
    <string name="pwgen_numerals">Numerals</string>
    <string name="pwgen_symbols">Symbols</string>
    <string name="pwgen_uppercase">Uppercase</string>
    <string name="pwgen_ambiguous">Ambiguous</string>

    <!-- Misc -->
    <string name="dialog_ok">OK</string>
    <string name="dialog_yes">Yes</string>
    <string name="dialog_no">No</string>
    <string name="dialog_positive">On my way...</string>
    <string name="dialog_negative">Nah... later</string>
    <string name="dialog_oops">Oops...</string>
    <string name="dialog_cancel">Cancel</string>
    <string name="git_sync">Synchronize repository</string>
    <string name="git_pull">Pull from remote</string>
    <string name="git_push">Push to remote</string>
    <string name="show_password_pref_title">Show the password</string>
    <string name="show_password_pref_summary">Control the visibility of the passwords once decrypted, this does not disable the password copy</string>
    <string name="toast_password_copied">Password copied into the clipboard</string>
    <string name="pwd_generate_button">Generate</string>

</resources>