Skip to content

Commit a965d1e

Browse files
committed
Fix locations plural string
1 parent 594db5b commit a965d1e

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/EditCustomListScreen.kt

+1
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ fun EditCustomListScreen(
171171
subtitleText =
172172
pluralStringResource(
173173
id = R.plurals.number_of_locations,
174+
state.locations.size,
174175
state.locations.size
175176
),
176177
onCellClicked = { onLocationsClicked(state.id) }

android/lib/resource/src/main/res/values/plurals.xml

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
<item quantity="other">%d months</item>
5050
</plurals>
5151
<plurals name="number_of_locations">
52-
<item quantity="zero">No locations</item>
5352
<item quantity="one">%d location</item>
5453
<item quantity="other">%d locations</item>
5554
</plurals>

0 commit comments

Comments
 (0)