make more strings translateable

This commit is contained in:
2025-09-15 21:54:14 +02:00
parent 3e2bdca083
commit ea88fd6bb6
4 changed files with 14 additions and 8 deletions

View File

@@ -44,7 +44,7 @@
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="28sp"
android:text="Quantity"/>
android:text="@string/dialog_event_detail_quantity"/>
<ScrollView
android:layout_width="match_parent"
@@ -57,7 +57,7 @@
android:layout_height="wrap_content"
android:textStyle="italic"
android:textSize="20sp"
android:text="Notes"/>
android:text="@string/dialog_event_detail_notes"/>
</ScrollView>
</LinearLayout>

View File

@@ -25,7 +25,7 @@
android:ellipsize="end"
android:maxLines="2"
android:textColor="@color/accent"
android:text="Description"/>
android:text="@string/row_luna_event_description"/>
<TextView
android:id="@+id/quantity"
@@ -35,7 +35,7 @@
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:gravity="center_horizontal"
android:text="Qty"/>
android:text="@string/row_luna_event_quantity"/>
<TextView
android:id="@+id/time"
@@ -46,6 +46,6 @@
android:textStyle="bold"
android:ellipsize="end"
android:maxLines="2"
android:text="Time"/>
android:text="@string/row_luna_event_time"/>
</LinearLayout>

View File

@@ -31,7 +31,7 @@
android:maxLines="2"
android:gravity="center_horizontal"
android:textColor="@color/accent"
android:text="Description"/>
android:text="@string/row_luna_event_description"/>
<TextView
android:id="@+id/quantity"
@@ -41,7 +41,7 @@
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:gravity="center_horizontal"
android:text="Qty"/>
android:text="@string/dialog_event_detail_quantity"/>
<TextView
android:id="@+id/time"
@@ -52,7 +52,7 @@
android:textStyle="bold"
android:ellipsize="end"
android:maxLines="2"
android:text="Time"/>
android:text="@string/row_luna_event_time"/>
</LinearLayout>

View File

@@ -107,10 +107,16 @@
<string name="measurement_unit_temperature_base_imperial" translatable="false">°F</string>
<string name="measurement_unit_temperature_base_metric" translatable="false">°C</string>
<string name="row_luna_event_description">Description</string>
<string name="row_luna_event_quantity">Qty</string>
<string name="row_luna_event_time">Time</string>
<string name="dialog_event_detail_title">Event detail</string>
<string name="dialog_event_detail_datetime_icon" translatable="false">🕒 %s</string>
<string name="dialog_event_detail_close_button">OK</string>
<string name="dialog_event_detail_delete_button">Delete</string>
<string name="dialog_event_detail_quantity">Quantity</string>
<string name="dialog_event_detail_notes">Notes</string>
<string name="dialog_add_logbook_title">Add logbook</string>
<string name="dialog_add_logbook_logbookname">👶 Logbook name</string>