Skip to content

Commit

Permalink
write "uh..." instead of "Other Answers..."
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Apr 8, 2024
1 parent 3c74022 commit f7e0c5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ abstract class AbstractOsmQuestForm<T> : AbstractQuestForm(), IsShowingQuestDeta
val otherAnswersItem = if (answers.size == 1) {
answers.single()
} else {
AnswerItem(R.string.quest_generic_otherAnswers) { showOtherAnswers() }
AnswerItem(R.string.quest_generic_otherAnswers2) { showOtherAnswers() }
}
setButtonPanelAnswers(listOf(otherAnswersItem) + buttonPanelAnswers)
}
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ The info you enter is directly added to OpenStreetMap in your name, without the


<string name="quest_generic_otherAnswers">"Other answers…"</string>
<!-- The sound someone makes if he is not sure what to answer... uh… er… oh… äh…-->
<string name="quest_generic_otherAnswers2">"Uh…"</string>
<!-- aka "not applicable", "not answerable" -->
<string name="quest_generic_answer_notApplicable">"Can’t say…"</string>

Expand Down

2 comments on commit f7e0c5c

@derfasthirnlosenick
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh... Why?
I found "Other answers" to be much more telling. This confused the heck out of me when the update rolled in.

@riQQ
Copy link
Collaborator

@riQQ riQQ commented on f7e0c5c Apr 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was some discussion here: #5573

Please sign in to comment.