With Hebrew, the user interface shows One and Other as the options: * https://hosted.weblate.org/translate/f-droid/f-droid/he/?checksum=&offset=0&q=details_last_update_weeks&search=substring&context=on&type=all&ignored= But the _strings.xml_ then has One and Two filled out, then Many and Other blank: ```xml <plurals name="details_last_update_weeks"> <item quantity="one">עודכן לפני שבוע</item> <item quantity="two">עודכן לפני %1$d שבועות</item> <item quantity="many"></item> <item quantity="other"></item> </plurals> ``` An empty Other string can cause crashes. Especially because we remove blank strings, since they cause other problems. Weblate should ensure that if any item of `<plurals>` has been translated, then `<item quantity="other">` must be translated. Here's the Android source reference on the requirement for other: https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/content/res/ResourcesImpl.java#268 ### Server configuration https://hosted.weblate.org/translate/f-droid/f-droid
With Hebrew, the user interface shows One and Other as the options:
But the strings.xml then has One and Two filled out, then Many and Other blank:
An empty Other string can cause crashes. Especially because we remove blank strings, since they cause other problems. Weblate should ensure that if any item of
<plurals>has been translated, then<item quantity="other">must be translated. Here's the Android source reference on the requirement for other:https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/content/res/ResourcesImpl.java#268
Server configuration
https://hosted.weblate.org/translate/f-droid/f-droid