Skip to content

Commit

Permalink
Fixed wording for '8000' in Hebrew
Browse files Browse the repository at this point in the history
Should be "שמונת" instead of "שמונהת" (which isn't a word).
  • Loading branch information
theXappy authored Apr 26, 2019
1 parent 746263d commit 6ef7f67
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ private void ToThousands(int number, List<string> parts)
{
parts.Add("אלפיים");
}
else if (thousands == 8)
{
parts.Add("שמונת אלפים");
}
else if (thousands <= 10)
{
parts.Add(UnitsFeminine[thousands] + "ת" + " אלפים");
Expand Down Expand Up @@ -191,4 +195,4 @@ private static void ToHundreds(int number, List<string> parts)
}
}
}
}
}

0 comments on commit 6ef7f67

Please sign in to comment.