ui: fix hebrew string crash
Caused by weblate once again conflating "many" with "other". I really need to report that. Resolves #575.
This commit is contained in:
parent
08f3137c5b
commit
a99b0ff615
2 changed files with 4 additions and 3 deletions
|
@ -12,6 +12,7 @@
|
||||||
- Fixed app restart being required when changing intelligent sorting
|
- Fixed app restart being required when changing intelligent sorting
|
||||||
or music separator settings
|
or music separator settings
|
||||||
- Fixed widget/notification actions not working on Android 14
|
- Fixed widget/notification actions not working on Android 14
|
||||||
|
- Fixed app crash when using hebrew language
|
||||||
|
|
||||||
## 3.2.0
|
## 3.2.0
|
||||||
|
|
||||||
|
|
|
@ -215,7 +215,7 @@
|
||||||
<plurals name="fmt_artist_count">
|
<plurals name="fmt_artist_count">
|
||||||
<item quantity="one">אומן אחד</item>
|
<item quantity="one">אומן אחד</item>
|
||||||
<item quantity="two">שני אומנים</item>
|
<item quantity="two">שני אומנים</item>
|
||||||
<item quantity="many">%d אומנים</item>
|
<item quantity="other">%d אומנים</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="set_dirs_mode_include">לכלול</string>
|
<string name="set_dirs_mode_include">לכלול</string>
|
||||||
<string name="set_reindex">רענון מוזיקה</string>
|
<string name="set_reindex">רענון מוזיקה</string>
|
||||||
|
@ -226,12 +226,12 @@
|
||||||
<plurals name="fmt_song_count">
|
<plurals name="fmt_song_count">
|
||||||
<item quantity="one">שיר אחד</item>
|
<item quantity="one">שיר אחד</item>
|
||||||
<item quantity="two">שני שירים</item>
|
<item quantity="two">שני שירים</item>
|
||||||
<item quantity="many">%d שירים</item>
|
<item quantity="other">%d שירים</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="fmt_album_count">
|
<plurals name="fmt_album_count">
|
||||||
<item quantity="one">אלבום אחד</item>
|
<item quantity="one">אלבום אחד</item>
|
||||||
<item quantity="two">שני אלבומים</item>
|
<item quantity="two">שני אלבומים</item>
|
||||||
<item quantity="many">%d אלבומים</item>
|
<item quantity="other">%d אלבומים</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="lng_playlist_renamed">שונה שם רשימת ההשמעה</string>
|
<string name="lng_playlist_renamed">שונה שם רשימת ההשמעה</string>
|
||||||
<string name="lng_playlist_deleted">רשימת השמעה נמחקה</string>
|
<string name="lng_playlist_deleted">רשימת השמעה נמחקה</string>
|
||||||
|
|
Loading…
Reference in a new issue