Skip to content

Commit 630f0a1

Browse files
authored
Fix hardcoded string in similar image dialog (#3563)
Fixes #3557
1 parent a63a358 commit 630f0a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/src/main/res/layout/fragment_similar_image_dialog.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
android:layout_margin="@dimen/dimen_6"
2828
android:layout_gravity="center"
2929
android:textAlignment="center"
30-
android:text="Did you shoot these two pictures at the same place? Do you want to use the latitude/longitude of the picture on the right?"/>
30+
android:text="@string/use_location_from_similar_image"/>
3131
<LinearLayout
3232
android:layout_width="match_parent"
3333
android:orientation="horizontal"

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -606,5 +606,6 @@ Upload your first media by tapping on the add button.</string>
606606
<string name="recommend_high_accuracy_mode">For best results, choose the High Accuracy mode.</string>
607607
<string name="ask_to_turn_location_on">Turn on location?</string>
608608
<string name="nearby_needs_location">Nearby needs location enabled to work properly</string>
609+
<string name="use_location_from_similar_image">Did you shoot these two pictures at the same place? Do you want to use the latitude/longitude of the picture on the right?</string>
609610

610611
</resources>

0 commit comments

Comments
 (0)