forked from organicmaps/organicmaps
[strings] Fix plurals for pl, ru, uk
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
09127e75c8
commit
b0f96bf094
5 changed files with 23 additions and 11 deletions
|
@ -637,7 +637,9 @@
|
|||
<string name="bookmark_lists_hide_all">Ukryj wszystkie</string>
|
||||
<string name="bookmark_lists_show_all">Pokaż wszystkie</string>
|
||||
<plurals name="bookmarks_places">
|
||||
<item quantity="other">Zakładki: %d</item>
|
||||
<item quantity="one">%d zakładka</item>
|
||||
<item quantity="few">%d zakładki</item>
|
||||
<item quantity="other">%d zakładek</item>
|
||||
</plurals>
|
||||
<string name="bookmarks_create_new_group">Utwórz nową listę</string>
|
||||
<!-- Bookmark categories screen, button that opens folder selection dialog to import KML/KMZ/GPX/KMB files -->
|
||||
|
@ -662,8 +664,7 @@
|
|||
<plurals name="tracks">
|
||||
<item quantity="one">%d trasa</item>
|
||||
<item quantity="few">%d trasy</item>
|
||||
<item quantity="many">%d tras</item>
|
||||
<item quantity="other">%d trasy</item>
|
||||
<item quantity="other">%d tras</item>
|
||||
</plurals>
|
||||
<!-- Settings privacy group in settings screen -->
|
||||
<string name="privacy">Prywatność</string>
|
||||
|
|
|
@ -666,6 +666,8 @@
|
|||
</plurals>
|
||||
<string name="restore">Відновити</string>
|
||||
<plurals name="tracks">
|
||||
<item quantity="one">%d трек</item>
|
||||
<item quantity="few">%d треки</item>
|
||||
<item quantity="other">%d треків</item>
|
||||
</plurals>
|
||||
<!-- Settings privacy group in settings screen -->
|
||||
|
|
|
@ -22581,7 +22581,9 @@
|
|||
mr:other = %d खूणपत्रे
|
||||
nb = %d bokmerker
|
||||
nl = %d bladwijzers
|
||||
pl = Zakładki: %d
|
||||
pl:few = %d zakładki
|
||||
pl:one = %d zakładka
|
||||
pl:other = %d zakładek
|
||||
pt-BR:one = %d favorito
|
||||
pt-BR:other = %d favoritos
|
||||
pt:one = %d favorito
|
||||
|
@ -23830,9 +23832,8 @@
|
|||
nb = %d stier
|
||||
nl = %d tracks
|
||||
pl:few = %d trasy
|
||||
pl:many = %d tras
|
||||
pl:one = %d trasa
|
||||
pl:other = %d trasy
|
||||
pl:other = %d tras
|
||||
pt-BR:one = %d trilha
|
||||
pt-BR:other = %d trilhas
|
||||
pt:one = %d trajeto
|
||||
|
@ -23850,7 +23851,9 @@
|
|||
sw = Njia %d
|
||||
th = %d ติดตามต่าง ๆ
|
||||
tr = %d rota
|
||||
uk = %d треків
|
||||
uk:few = %d треки
|
||||
uk:one = %d трек
|
||||
uk:other = %d треків
|
||||
vi = %d các chặn đường
|
||||
zh-Hans = %d 个轨迹
|
||||
zh-Hant = %d 個軌跡
|
||||
|
|
|
@ -15,8 +15,12 @@
|
|||
<string>NSStringPluralRuleType</string>
|
||||
<key>NSStringFormatValueTypeKey</key>
|
||||
<string>d</string>
|
||||
<key>one</key>
|
||||
<string>%d zakładka</string>
|
||||
<key>few</key>
|
||||
<string>%d zakładki</string>
|
||||
<key>other</key>
|
||||
<string>Zakładki: %d</string>
|
||||
<string>%d zakładek</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
@ -53,10 +57,8 @@
|
|||
<string>%d trasa</string>
|
||||
<key>few</key>
|
||||
<string>%d trasy</string>
|
||||
<key>many</key>
|
||||
<string>%d tras</string>
|
||||
<key>other</key>
|
||||
<string>%d trasy</string>
|
||||
<string>%d tras</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
|
|
@ -53,6 +53,10 @@
|
|||
<string>NSStringPluralRuleType</string>
|
||||
<key>NSStringFormatValueTypeKey</key>
|
||||
<string>d</string>
|
||||
<key>one</key>
|
||||
<string>%d трек</string>
|
||||
<key>few</key>
|
||||
<string>%d треки</string>
|
||||
<key>other</key>
|
||||
<string>%d треків</string>
|
||||
</dict>
|
||||
|
|
Loading…
Add table
Reference in a new issue