Skip to content

Commit

Permalink
use translated strings for show on app launch
Browse files Browse the repository at this point in the history
  • Loading branch information
mikescamell committed Jan 27, 2025
1 parent e8267da commit cca25b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/oneLineItemHeight"
app:primaryText="Last Opened Tab" />
app:primaryText="@string/showOnAppLaunchOptionLastOpenedTab" />

<com.duckduckgo.common.ui.view.listitem.RadioListItem
android:id="@+id/newTabCheckListItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/oneLineItemHeight"
app:primaryText="New Tab Page" />
app:primaryText="@string/showOnAppLaunchOptionNewTabPage" />

<com.duckduckgo.common.ui.view.listitem.RadioListItem
android:id="@+id/specificPageCheckListItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/oneLineItemHeight"
app:primaryText="Specific Page" />
app:primaryText="@string/showOnAppLaunchOptionSpecificPage" />

<com.duckduckgo.common.ui.view.text.DaxTextInput
android:id="@+id/specificPageUrlInput"
Expand Down

0 comments on commit cca25b1

Please sign in to comment.