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

Add description for multiple garages #1720

Merged
merged 1 commit into from
Mar 3, 2020
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 @@ -45,7 +45,7 @@ enum class BuildingType(val item:Item<String>) {

CARPORT (Item("carport", R.drawable.ic_building_carport, R.string.quest_buildingType_carport, R.string.quest_buildingType_carport_description)),
GARAGE (Item("garage", R.drawable.ic_building_garage, R.string.quest_buildingType_garage)),
GARAGES (Item("garages", R.drawable.ic_building_garages, R.string.quest_buildingType_garages)),
GARAGES (Item("garages", R.drawable.ic_building_garages, R.string.quest_buildingType_garages, R.string.quest_buildingType_garages_description)),
PARKING (Item("parking", R.drawable.ic_building_parking, R.string.quest_buildingType_parking)),

FARM (Item("farm", R.drawable.ic_building_farm_house, R.string.quest_buildingType_farmhouse, R.string.quest_buildingType_farmhouse_description)),
Expand Down
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 @@ -584,6 +584,7 @@ Otherwise, you can download another keyboard in the app store. Popular keyboards
<string name="quest_buildingType_carport_description">roof for a car</string>
<string name="quest_buildingType_garage">Single garage</string>
<string name="quest_buildingType_garages">Multiple garages</string>
<string name="quest_buildingType_garages_description">Separate spaces for different owners/tenants</string>
<string name="quest_buildingType_parking">Parking building</string>


Expand Down