Bug 1378576

Summary: Hebrew translation plural form change request‏
Product: [Fedora] Fedora Localization Reporter: Niv Baehr <bloop93>
Component: Hebrew [he]Assignee: Oron Peled <oron>
Status: NEW --- QA Contact: Oron Peled <oron>
Severity: low Docs Contact:
Priority: unspecified    
Version: unspecifiedCC: bloop93, digitalfreak, noriko.mizumoto, oron, piotrdrag, sh.yaron
Target Milestone: ---Keywords: i18n, Translation
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1546484    

Description Niv Baehr 2016-09-22 19:01:09 UTC
Description of problem:
The plural form for hebrew is currently set as:
nplurals=2; plural=(n != 1);

Altough plurals form fits in most cases,
we do have dual form in hebrew which is mostly used when speaking about time.
which makes the use of plural form in those cases seems unnatural.

please update the Hebrew Plural form on Zanta to:
nplurals=3; plural=n==1 ? 0 : n==2 ? 2 : 1;


How reproducible:
appears when translating a project (mostly with time related strings)

Actual results:
translating the string (for example) "%u days ago" will have when 2 is assigned "לפני 2 ימים" which seems unnatural to the reader.

Expected results:
should be translated as the dual form "לפני יומיים" (note there should be no number) for n==2, so we need to add plural form (dual form) for this.

Additional info:

https://lists.fedoraproject.org/archives/list/trans@lists.fedoraproject.org/thread/VRVRT73KVDJDJ53QI67EXHKYTHB6T5TU/

https://en.wikipedia.org/wiki/Dual_(grammatical_number)#Modern_Hebrew

http://unicode.org/cldr/trac/ticket/9790http://hebrew-academy.org.il/topic/hahlatot/grammardecisions/terminology-ordinance/4-3-%d7%94%d7%a9%d7%99%d7%9e%d7%95%d7%a9-%d7%91%d7%a9%d7%9d-%d7%94%d7%9e%d7%a1%d7%a4%d7%a8/#target-3363

http://hebrew-academy.org.il/2010/07/25/%D7%A2%D7%A9%D7%A8%D7%99%D7%9D-%D7%A9%D7%A7%D7%9C-%D7%90%D7%95-%D7%A2%D7%A9%D7%A8%D7%99%D7%9D-%D7%A9%D7%A7%D7%9C%D7%99%D7%9D/

Comment 1 Rafal Luzynski 2016-09-22 20:48:13 UTC
For what it's worth: we are talking about Zanata and its configuration of Hebrew language for all projects.

Comment 2 Piotr Drąg 2018-02-18 16:18:01 UTC
FWIW, GNOME is using “nplurals=2; plural=(n != 1)” as well. I think we should update both after it’s fixed in CLDR.

Comment 3 noriko 2018-08-10 07:53:24 UTC
We are in F29 cycle, any update?

Comment 4 Yaron Shahrabani 2023-12-26 10:01:25 UTC
It should be changed once more to 4 plural forms according to CLDR:
nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? 2 : 3);