Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove crossing from crossing type answers #3383

Merged
merged 2 commits into from
Oct 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import de.westnordost.streetcomplete.view.image_select.Item
class AddCrossingTypeForm : AImageListQuestAnswerFragment<CrossingType, CrossingType>() {

override val items = listOf(
Item(TRAFFIC_SIGNALS, R.drawable.crossing_type_signals, R.string.quest_crossing_type_signals_controlled),
Item(MARKED, R.drawable.crossing_type_zebra, R.string.quest_crossing_type_marked),
Item(UNMARKED, R.drawable.crossing_type_unmarked, R.string.quest_crossing_type_unmarked)
Item(TRAFFIC_SIGNALS, R.drawable.crossing_type_signals, R.string.quest_crossing_type_signals_controlled2),
Item(MARKED, R.drawable.crossing_type_zebra, R.string.quest_crossing_type_marked2),
Item(UNMARKED, R.drawable.crossing_type_unmarked, R.string.quest_crossing_type_unmarked2)
)

override val itemsPerRow = 3
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,9 @@ Otherwise, you can download another keyboard in the app store. Popular keyboards
<string name="quest_maxspeed_answer_living_street_confirmation_title">So, there is a sign like this?</string>
<string name="quest_crossing_title">Are there curbs where this way meets this road here? What kind?</string>
<string name="quest_crossing_type_title">What kind of crossing is this?</string>
<string name="quest_crossing_type_signals_controlled">Crossing controlled by traffic lights</string>
<string name="quest_crossing_type_marked">Marked crossing</string>
<string name="quest_crossing_type_unmarked">Crossing without road markings</string>
<string name="quest_crossing_type_signals_controlled2">Controlled by traffic lights</string>
<string name="quest_crossing_type_marked2">Marked</string>
<string name="quest_crossing_type_unmarked2">Without road markings</string>
<string name="action_undo">Undo</string>
<string name="undo_last">Undo last edit</string>
<string name="show_edit_history">Show edit history</string>
Expand Down