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

Added saddle_holder for bicycle_parking quest #652

Merged
merged 3 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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,6 +8,7 @@ enum class BikeParkingType(val osmValue: String) {
LOCKERS("lockers"),
BUILDING("building"),
HANDLEBAR_HOLDER("handlebar_holder"),
SADDLE_HOLDER("saddle_holder"),
TWO_TIER("two-tier"),
FLOOR("floor"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ private val BikeParkingType.titleResId: Int get() = when (this) {
LOCKERS -> R.string.quest_bicycle_parking_type_locker
BUILDING -> R.string.quest_bicycle_parking_type_building
HANDLEBAR_HOLDER -> R.string.quest_bicycle_parking_type_handlebarholder
SADDLE_HOLDER -> R.string.quest_bicycle_parking_type_saddleholder
TWO_TIER -> R.string.quest_bicycle_parking_type_two_tier
FLOOR -> R.string.quest_bicycle_parking_type_floor
}
Expand All @@ -26,6 +27,7 @@ private val BikeParkingType.iconResId: Int get() = when (this) {
LOCKERS -> R.drawable.bicycle_parking_type_lockers
BUILDING -> R.drawable.bicycle_parking_type_building
HANDLEBAR_HOLDER -> R.drawable.bicycle_parking_type_handlebarholder
SADDLE_HOLDER -> R.drawable.bicycle_parking_type_saddleholder
TWO_TIER -> R.drawable.bicycle_parking_type_two_tier
FLOOR -> R.drawable.bicycle_parking_type_floor
}
1 change: 1 addition & 0 deletions app/src/main/res/authors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ bicycle_parking_type_shed.jpg CC-BY-SA 3.0 Tabl-trai https://commons.wikim
bicycle_parking_type_stand.jpg CC0 Mateusz Konieczny https://commons.wikimedia.org/wiki/File:Bicycle_parking_stand_2.jpg
bicycle_parking_type_wheelb... CC-BY-SA 4.0 Joxemai https://commons.wikimedia.org/wiki/File:Bizikletak_lotzekoa.JPG
bicycle_parking_type_handle... CC-BY-SA 4.0 Hiddewie https://commons.wikimedia.org/wiki/File:Bicycle_parking_handlebar_holder.jpg
bicycle_parking_type_saddle... CC-BY-SA 4.0 mcliquid https://commons.wikimedia.org/wiki/File:Fahrradparkplatz_Sattelhalter_1.jpg
bicycle_parking_type_two_ti... CC0 Bukk https://commons.wikimedia.org/wiki/File:Double_stack_bike_stand.jpg
bicycle_parking_type_floor CC0 Nakaner https://wiki.openstreetmap.org/wiki/File:Fahrradparkplatz_mit_Schild_und_ohne_Buegel.jpg

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@ Before uploading your changes, the app checks with a <a href=\"https://www.we
<string name="quest_bicycle_parking_type_locker">Locker</string>
<string name="quest_bicycle_parking_type_building">Building</string>
<string name="quest_bicycle_parking_type_handlebarholder">Handlebar holder</string>
<string name="quest_bicycle_parking_type_saddleholder">Saddle holder</string>
<string name="quest_bicycle_parking_type_two_tier">Two-tier bike rack</string>
<string name="quest_bicycle_parking_type_floor">Designated area</string>

Expand Down