Implement remaining Spanish translation

This commit is contained in:
nielsandriesse
2020-06-03 15:31:49 +10:00
parent 2fd5d5ba35
commit 32ad533245
8 changed files with 45 additions and 21 deletions

View File

@@ -23,7 +23,7 @@
android:layout_height="wrap_content"
android:textSize="@dimen/medium_font_size"
android:textColor="@color/text"
android:text="You haven't linked any devices yet" />
android:text="@string/activity_linked_devices_empty_state_message" />
<Button
style="@style/MediumProminentOutlineButton"
@@ -31,7 +31,7 @@
android:layout_width="196dp"
android:layout_height="@dimen/medium_button_height"
android:layout_marginTop="@dimen/medium_spacing"
android:text="Link a Device (Beta)" />
android:text="@string/activity_linked_devices_empty_state_button_title" />
</LinearLayout>

View File

@@ -25,7 +25,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/very_large_spacing"
android:layout_marginTop="6dp"
android:layout_marginTop="4dp"
android:layout_marginRight="@dimen/very_large_spacing"
android:textSize="13sp"
android:textColor="@color/text"
@@ -36,16 +36,16 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/very_large_spacing"
android:layout_marginTop="@dimen/small_spacing"
android:layout_marginTop="4dp"
android:layout_marginRight="@dimen/very_large_spacing"
android:padding="12dp"
android:padding="10dp"
android:orientation="vertical"
android:background="@drawable/pn_option_background">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/medium_font_size"
android:textSize="14sp"
android:textColor="@color/text"
android:textStyle="bold"
android:text="@string/activity_pn_mode_fcm_option_title" />
@@ -74,16 +74,16 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/very_large_spacing"
android:layout_marginTop="@dimen/small_spacing"
android:layout_marginTop="4dp"
android:layout_marginRight="@dimen/very_large_spacing"
android:padding="12dp"
android:padding="10dp"
android:orientation="vertical"
android:background="@drawable/pn_option_background">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/medium_font_size"
android:textSize="14sp"
android:textColor="@color/text"
android:textStyle="bold"
android:text="@string/activity_pn_mode_background_polling_option_title" />

View File

@@ -26,7 +26,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="4dp"
android:layout_marginTop="2dp"
android:layout_marginRight="@dimen/large_spacing"
android:textSize="14sp"
android:textColor="@color/text"
@@ -38,7 +38,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="10dp"
android:layout_marginTop="8dp"
android:layout_marginRight="@dimen/large_spacing"
android:hint="@string/fragment_enter_session_id_edit_text_hint" />

View File

@@ -16,8 +16,11 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/text"
android:layout_marginLeft="@dimen/very_large_spacing"
android:layout_marginRight="@dimen/very_large_spacing"
android:textSize="@dimen/small_font_size"
android:text="Session needs camera access to scan QR codes" />
android:textAlignment="center"
android:text="@string/fragment_scan_qr_code_camera_access_explanation" />
<Button
style="@style/MediumProminentOutlineButton"
@@ -27,7 +30,7 @@
android:layout_marginTop="@dimen/medium_spacing"
android:paddingLeft="@dimen/medium_spacing"
android:paddingRight="@dimen/medium_spacing"
android:text="Grant Camera Access" />
android:text="@string/fragment_scan_qr_code_grant_camera_access_button_title" />
</LinearLayout>

View File

@@ -13,6 +13,6 @@
android:textColor="@color/text"
android:alpha="0.6"
android:textSize="@dimen/small_font_size"
android:text="Your Session ID" />
android:text="@string/your_session_id" />
</RelativeLayout>