diff --git a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java
index 62bf3d4f..18cee1f2 100644
--- a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java
+++ b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java
@@ -53,7 +53,7 @@ public class PasswordStore extends ActionBarActivity {
super.onResume();
// create the repository static variable in PasswordRepository
- PasswordRepository.getRepository(new File(getFilesDir() + "/store/.git"));
+ PasswordRepository.getRepository(new File(getFilesDir() + this.getResources().getString(R.string.git_store)));
// re-check that there was no change with the repository state
checkLocalRepository();
@@ -111,8 +111,8 @@ public class PasswordStore extends ActionBarActivity {
Log.d("PASS", "Menu item " + id + " pressed");
AlertDialog.Builder initBefore = new AlertDialog.Builder(this)
- .setMessage("Please clone or create a new repository below before trying to add a password or any synchronization operation.")
- .setPositiveButton("OK", new DialogInterface.OnClickListener() {
+ .setMessage(this.getResources().getString(R.string.creation_alert_text));
+ .setPositiveButton(this.getResources().getString(R.string.ok), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
}
@@ -205,7 +205,7 @@ public class PasswordStore extends ActionBarActivity {
GitAsyncTask tasks = new GitAsyncTask(this, false, false, CommitCommand.class);
tasks.execute(
git.add().addFilepattern("."),
- git.commit().setMessage("[ANDROID PwdStore] Initialized store with keyID: " + keyId)
+ git.commit().setMessage(R.string.initialization_commit_text + keyId)
);
} catch (Exception e) {
e.printStackTrace();
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 07c6b3fd..0c44511c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -13,7 +13,12 @@
Delete directory
Cancel
Clone repository
-
+
+
+ Please clone or create a new repository below before trying to add a password or any synchronization operation.
+ [ANDROID PwdStore] Initialized store with keyID:
+ /store/.git
+
Welcome to Password Store\n\n In this screen you can either create a new repository or clone your git repository onto your device.
Clone existing
@@ -43,6 +48,9 @@
Category
Search
+
+
+ OK