diff options
author | Mohamed Zenadi <mohamed@zenadi.com> | 2016-04-25 22:56:27 +0200 |
---|---|---|
committer | Mohamed Zenadi <mohamed@zenadi.com> | 2016-04-25 22:56:48 +0200 |
commit | 53f2962e5d9f05c02d507f3e511b49804400f797 (patch) | |
tree | 5d5d674512dfd6f0df4bb36919f496a47f846c53 | |
parent | 7c538698fad69b371351122addb70f39a2811f35 (diff) |
fix a confusion on which button does what
-rw-r--r-- | app/src/main/res/layout/fragment_to_clone_or_not.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/layout/fragment_to_clone_or_not.xml b/app/src/main/res/layout/fragment_to_clone_or_not.xml index 58e21418..2b5b1619 100644 --- a/app/src/main/res/layout/fragment_to_clone_or_not.xml +++ b/app/src/main/res/layout/fragment_to_clone_or_not.xml @@ -64,7 +64,8 @@ android:id="@+id/button" android:layout_alignTop="@+id/main_clone_button" android:layout_alignParentLeft="true" - android:layout_alignParentStart="true" /> + android:layout_alignParentStart="true" + android:textSize="11sp" /> <Button android:id="@+id/main_clone_button" android:layout_width="wrap_content" @@ -75,7 +76,8 @@ android:text="@string/clone" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" - android:layout_alignParentEnd="true" /> + android:layout_alignParentEnd="true" + android:textSize="11sp" /> </RelativeLayout> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index ba134174..cb5accf2 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -57,8 +57,8 @@ <!-- 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="clone">Clone from server</string> + <string name="initialize">Use local directory</string> <string name="server_name">Server</string> <string name="server_protocol">Protocol</string> |