aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorAdam Smith <adam.smith18@ntlworld.com>2014-10-31 11:37:52 +0000
committerAdam Smith <adam.smith18@ntlworld.com>2014-10-31 11:37:52 +0000
commitd5e4ddc939abfea29852558a8a85409fef9eaf5a (patch)
treef0487c7a002094d67bcdfe26c2af6a39304e4915 /app/src/main/res
parentaf2c0ab0e1e8f45e821e4fc37752eee4bc6ab1bc (diff)
Hard coded strings replaced with resources in PasswordStore
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/menu/pwdstore.xml4
-rw-r--r--app/src/main/res/values/strings.xml19
2 files changed, 17 insertions, 6 deletions
diff --git a/app/src/main/res/menu/pwdstore.xml b/app/src/main/res/menu/pwdstore.xml
index bfb3ad0c..220bd49b 100644
--- a/app/src/main/res/menu/pwdstore.xml
+++ b/app/src/main/res/menu/pwdstore.xml
@@ -24,8 +24,8 @@
<item android:id="@+id/refresh"
android:title="Refresh list"
- android:showAsAction="never"
- android:icon="@drawable/ico_sync"/>
+ pwstore:showAsAction="never"
+ android:icon="@drawable/ic_action_refresh"/>
<item android:id="@+id/user_pref"
android:title="Settings"
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 0c44511c..7fc3cbac 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -15,9 +15,17 @@
<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.</strng>
- <string name="initialization_commit_text">[ANDROID PwdStore] Initialized store with keyID: </string>
+ <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>
@@ -50,7 +58,10 @@
<string name="action_search">Search</string>
<!-- Misc -->
- <string name="ok">OK</string>
-
+ <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>