Skip to content

Commit

Permalink
Resolve button text confusion (#5677)
Browse files Browse the repository at this point in the history
  • Loading branch information
bompstable committed Jun 6, 2024
1 parent eb225aa commit e7005a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/values-en-rGB/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ Additionally, some overlays allow you to add new data at the position of a displ
You can find donation information on our website or project home, Google Play does not allow us to provide the link within the app."</string>
<string name="quest_isAmenityIndoor_outside_covered">"Not inside, but covered"</string>
<string name="lit_value_unsupported">"Specific lit status that is not selectable in this app"</string>
<string name="quest_generic_otherAnswers2">"Er…"</string>
<string name="quest_generic_otherAnswers2">"Uh…"</string>
<string name="quest_pedestrian_crossing_signals2">"Are there traffic signals that show when to cross here?"</string>
<string name="quest_moped_access_title">"Is there a sign indicating access for mopeds on this bike path?"</string>
<string name="quest_moped_access_allowed">"There is no sign"</string>
Expand All @@ -1405,4 +1405,4 @@ A level counts as a roof level when its windows are in the roof. Subsequently, r
<string name="quest_parcel_locker_pickup">"Can you pick up parcels here?"</string>
<string name="quest_parcel_locker_mail_in">"Can you drop off parcels here?"</string>
<string name="quest_powerPolesMaterial_is_terminal">"Power line is anchored to building"</string>
</resources>
</resources>
7 changes: 7 additions & 0 deletions app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
<item name="android:listPopupWindowStyle">@style/Theme.Bubble.Popup</item>
<item name="listPopupWindowStyle">@style/Theme.Bubble.Popup</item>
<item name="preferenceTheme">@style/Theme.Preferences</item>

<item name="materialButtonStyle">@style/Theme.Button</item>
</style>

<style name="Theme.Bubble.ToolbarPopup" parent="Theme.MaterialComponents.DayNight.NoActionBar"/>
Expand Down Expand Up @@ -67,6 +69,7 @@
can be disabled for dialogs - which would be the behavior one (=the developer) would
expect. -->
<item name="android:splitMotionEvents">false</item>
<item name="android:textAllCaps">false</item>
</style>

<style name="Theme.Bubble.Dialog.Alert"/>
Expand All @@ -82,6 +85,10 @@
<item name="android:windowAnimationStyle">@style/Animation.Dialog.Custom</item>
</style>

<style name="Theme.Button" parent="Widget.MaterialComponents.Button">
<item name="android:textAllCaps">false</item>
</style>

<style name="Theme.Button.Alert" parent="Widget.MaterialComponents.Button.TextButton">
<item name="android:textColor">@color/accent</item>
</style>
Expand Down

0 comments on commit e7005a6

Please sign in to comment.