aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/strings.xml
blob: 7fc3cbacdc62f755eccf04682fa82b1067325128 (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
<?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">Clone repository</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 </string>
    <string name="remove_commit_text">[ANDROID PwdStore] Remove </string>
    <string name="from_store"> from store.</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="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>
    
    <!-- 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>

</resources>