diff options
Diffstat (limited to '')
-rw-r--r-- | res/layout/fragment_conversation.xml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/res/layout/fragment_conversation.xml b/res/layout/fragment_conversation.xml index 703a525e..c09a7d5f 100644 --- a/res/layout/fragment_conversation.xml +++ b/res/layout/fragment_conversation.xml @@ -76,7 +76,7 @@ android:id="@+id/muc_error_msg" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" + android:padding="6dp" android:textColor="#eee" android:textSize="20sp" android:textStyle="bold" /> @@ -84,9 +84,9 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:paddingBottom="8dp" - android:paddingLeft="8dp" - android:text="Click to edit conference details" + android:paddingBottom="6dp" + android:paddingLeft="6dp" + android:text="@string/edit_conference_details" android:textColor="#eee" android:textSize="14sp" /> </LinearLayout> @@ -102,8 +102,8 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" - android:text="Unknown OTR Fingerprint" + android:padding="6dp" + android:text="@string/unknown_otr_fingerprint" android:textColor="#eee" android:textSize="20sp" android:textStyle="bold" /> @@ -112,10 +112,11 @@ android:id="@+id/otr_fingerprint" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:paddingBottom="8dp" - android:paddingLeft="8dp" + android:paddingBottom="6dp" + android:paddingLeft="6dp" android:textColor="#eee" android:textSize="14sp" + android:singleLine="true" android:typeface="monospace" /> </LinearLayout> @@ -130,8 +131,8 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="8dp" - android:text="OpenPGP encrypted messages found" + android:padding="6dp" + android:text="@string/openpgp_messages_found" android:textColor="#eee" android:textSize="20sp" android:textStyle="bold" /> @@ -139,9 +140,9 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:paddingBottom="8dp" - android:paddingLeft="8dp" - android:text="Click here to enter passphrase and decrypt messages" + android:paddingBottom="6dp" + android:paddingLeft="6dp" + android:text="@string/openpgp_click_to_decrypt" android:textColor="#eee" android:textSize="14sp" /> </LinearLayout> |