Skip to content

Commit

Permalink
Updated typo on rebuilders
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnyminerZ committed Jan 22, 2025
1 parent b74c123 commit 2829d50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1068,18 +1068,18 @@ class SectorViewer : AppCompatActivity() {
text.appendLine(
if (reBuilder.name != null && reBuilder.date != null) {
stringResource(
R.string.path_view_builder_message_full,
R.string.path_view_re_builder_message_full,
reBuilder.name,
reBuilder.date
)
} else if (reBuilder.name != null) {
stringResource(
R.string.path_view_builder_message_no_year,
R.string.path_view_re_builder_no_year,
reBuilder.name
)
} else if (reBuilder.date != null) {
stringResource(
R.string.path_view_builder_message_no_name,
R.string.path_view_re_builder_no_name,
reBuilder.date
)
} else {
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,9 @@
<string name="path_view_builder_message_full">This path was set by %s in %s.</string>
<string name="path_view_builder_message_no_year">This path was set by %s.</string>
<string name="path_view_builder_message_no_name">This path was set in %s.</string>
<string name="path_view_re_builder_message_year">It was restored by %s in %s.</string>
<string name="path_view_re_builder_message">It was restored by %.</string>
<string name="path_view_re_builder_message_full">It was restored by %s in %s.</string>
<string name="path_view_re_builder_no_year">It was restored by %.</string>
<string name="path_view_re_builder_no_name">It was restored in %.</string>
<string name="path_view_ending_title">Path Ending</string>
<string name="path_view_ending_walking">Once you finish climbing, you can go down by walking a path available on the top of the path.</string>
<string name="path_view_ending_rappel">Once you finish climbing, you can go down by rappelling.</string>
Expand Down

0 comments on commit 2829d50

Please sign in to comment.