he_IL.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. package he_IL
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type he_IL struct {
  10. locale string
  11. pluralsCardinal []locales.PluralRule
  12. pluralsOrdinal []locales.PluralRule
  13. pluralsRange []locales.PluralRule
  14. decimal string
  15. group string
  16. minus string
  17. percent string
  18. perMille string
  19. timeSeparator string
  20. inifinity string
  21. currencies []string // idx = enum of currency code
  22. currencyPositiveSuffix string
  23. currencyNegativeSuffix string
  24. monthsAbbreviated []string
  25. monthsNarrow []string
  26. monthsWide []string
  27. daysAbbreviated []string
  28. daysNarrow []string
  29. daysShort []string
  30. daysWide []string
  31. periodsAbbreviated []string
  32. periodsNarrow []string
  33. periodsShort []string
  34. periodsWide []string
  35. erasAbbreviated []string
  36. erasNarrow []string
  37. erasWide []string
  38. timezones map[string]string
  39. }
  40. // New returns a new instance of translator for the 'he_IL' locale
  41. func New() locales.Translator {
  42. return &he_IL{
  43. locale: "he_IL",
  44. pluralsCardinal: []locales.PluralRule{2, 3, 5, 6},
  45. pluralsOrdinal: []locales.PluralRule{6},
  46. pluralsRange: []locales.PluralRule{5, 6},
  47. decimal: ".",
  48. group: ",",
  49. minus: "‎-",
  50. percent: "%",
  51. perMille: "‰",
  52. timeSeparator: ":",
  53. inifinity: "∞",
  54. currencies: []string{"ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARL", "ARM", "ARP", "ARS", "ATS", "AUD", "AWG", "AZM", "AZN", "BAD", "BAM", "BAN", "BBD", "BDT", "BEC", "BEF", "BEL", "BGL", "BGM", "BGN", "BGO", "BHD", "BIF", "BMD", "BND", "BOB", "BOL", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BRZ", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CHW", "CLE", "CLF", "CLP", "CNH", "CNX", "CNY", "COP", "COU", "CRC", "CSD", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHS", "GIP", "GMD", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRH", "KRO", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MAF", "MCF", "MDC", "MDL", "MGA", "MGF", "MKD", "MKN", "MLF", "MMK", "MNT", "MOP", "MRO", "MTL", "MTP", "MUR", "MVP", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGX", "USD", "USN", "USS", "UYI", "UYP", "UYU", "UZS", "VEB", "VEF", "VND", "VNN", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "YUR", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWD", "ZWL", "ZWR"},
  55. currencyPositiveSuffix: " ",
  56. currencyNegativeSuffix: " ",
  57. monthsAbbreviated: []string{"", "ינו׳", "פבר׳", "מרץ", "אפר׳", "מאי", "יוני", "יולי", "אוג׳", "ספט׳", "אוק׳", "נוב׳", "דצמ׳"},
  58. monthsNarrow: []string{"", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"},
  59. monthsWide: []string{"", "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"},
  60. daysAbbreviated: []string{"יום א׳", "יום ב׳", "יום ג׳", "יום ד׳", "יום ה׳", "יום ו׳", "שבת"},
  61. daysNarrow: []string{"א׳", "ב׳", "ג׳", "ד׳", "ה׳", "ו׳", "ש׳"},
  62. daysShort: []string{"א׳", "ב׳", "ג׳", "ד׳", "ה׳", "ו׳", "ש׳"},
  63. daysWide: []string{"יום ראשון", "יום שני", "יום שלישי", "יום רביעי", "יום חמישי", "יום שישי", "יום שבת"},
  64. periodsAbbreviated: []string{"לפנה״צ", "אחה״צ"},
  65. periodsNarrow: []string{"לפנה״צ", "אחה״צ"},
  66. periodsWide: []string{"לפנה״צ", "אחה״צ"},
  67. erasAbbreviated: []string{"לפנה״ס", "לספירה"},
  68. erasNarrow: []string{"", ""},
  69. erasWide: []string{"לפני הספירה", "לספירה"},
  70. timezones: map[string]string{"HEEG": "שעון מזרח גרינלנד (קיץ)", "HEOG": "שעון מערב גרינלנד (קיץ)", "WITA": "שעון מרכז אינדונזיה", "HNT": "שעון ניופאונדלנד (חורף)", "CLT": "שעון צ׳ילה (חורף)", "CLST": "שעון צ׳ילה (קיץ)", "HADT": "שעון האיים האלאוטיים הוואי (קיץ)", "ECT": "שעון אקוודור", "AEST": "שעון מזרח אוסטרליה (חורף)", "AKST": "שעון אלסקה (חורף)", "WARST": "שעון מערב ארגנטינה (קיץ)", "TMST": "שעון טורקמניסטן (קיץ)", "AWST": "שעון מערב אוסטרליה (חורף)", "ACWDT": "שעון מרכז-מערב אוסטרליה (קיץ)", "MEZ": "שעון מרכז אירופה (חורף)", "BOT": "שעון בוליביה", "∅∅∅": "שעון אמזונס (קיץ)", "HAST": "שעון האיים האלאוטיים הוואי (חורף)", "GYT": "שעון גיאנה", "HECU": "שעון קובה (קיץ)", "SRT": "שעון סורינאם", "OESZ": "שעון מזרח אירופה (קיץ)", "AWDT": "שעון מערב אוסטרליה (קיץ)", "MESZ": "שעון מרכז אירופה (קיץ)", "HEPM": "שעון סנט פייר ומיקלון (קיץ)", "WART": "שעון מערב ארגנטינה (חורף)", "HNPM": "שעון סנט פייר ומיקלון (חורף)", "CST": "שעון מרכז ארה״ב (חורף)", "CDT": "שעון מרכז ארה״ב (קיץ)", "HNEG": "שעון מזרח גרינלנד (חורף)", "LHDT": "שעון אי הלורד האו (קיץ)", "JST": "שעון יפן (חורף)", "NZST": "שעון ניו זילנד (חורף)", "HAT": "שעון ניופאונדלנד (קיץ)", "CAT": "שעון מרכז אפריקה", "CHADT": "שעון צ׳טהאם (קיץ)", "HNCU": "שעון קובה (חורף)", "AEDT": "שעון מזרח אוסטרליה (קיץ)", "EAT": "שעון מזרח אפריקה", "UYT": "שעון אורוגוואי (חורף)", "JDT": "שעון יפן (קיץ)", "WEZ": "שעון מערב אירופה (חורף)", "NZDT": "שעון ניו זילנד (קיץ)", "LHST": "שעון אי הלורד האו (חורף)", "VET": "שעון ונצואלה", "WIT": "שעון מזרח אינדונזיה", "PDT": "שעון מערב ארה״ב (קיץ)", "AST": "שעון האוקיינוס האטלנטי (חורף)", "ADT": "שעון האוקיינוס האטלנטי (קיץ)", "SAST": "שעון דרום אפריקה", "BT": "שעון בהוטן", "MYT": "שעון מלזיה", "EST": "שעון החוף המזרחי (חורף)", "COST": "שעון קולומביה (קיץ)", "OEZ": "שעון מזרח אירופה (חורף)", "HNPMX": "שעון מערב מקסיקו (חורף)", "PST": "שעון מערב ארה״ב (חורף)", "EDT": "שעון החוף המזרחי (קיץ)", "HENOMX": "שעון צפון-מערב מקסיקו (קיץ)", "WAST": "שעון מערב אפריקה (קיץ)", "SGT": "שעון סינגפור", "HKT": "שעון הונג קונג (חורף)", "IST": "שעון הודו", "TMT": "שעון טורקמניסטן (חורף)", "UYST": "שעון אורוגוואי (קיץ)", "WIB": "שעון מערב אינדונזיה", "ACDT": "שעון מרכז אוסטרליה (קיץ)", "HNOG": "שעון מערב גרינלנד (חורף)", "ACWST": "שעון מרכז-מערב אוסטרליה (חורף)", "COT": "שעון קולומביה (חורף)", "ARST": "שעון ארגנטינה (קיץ)", "CHAST": "שעון צ׳טהאם (חורף)", "MST": "שעון אזור ההרים בארה״ב (חורף)", "WAT": "שעון מערב אפריקה (חורף)", "WESZ": "שעון מערב אירופה (קיץ)", "AKDT": "שעון אלסקה (קיץ)", "HKST": "שעון הונג קונג (קיץ)", "ChST": "שעון צ׳אמורו", "HEPMX": "שעון מערב מקסיקו (קיץ)", "HNNOMX": "שעון צפון-מערב מקסיקו (חורף)", "ACST": "שעון מרכז אוסטרליה (חורף)", "ART": "שעון ארגנטינה (חורף)", "GMT": "שעון גריניץ׳\u200f", "MDT": "שעון אזור ההרים בארה״ב (קיץ)", "GFT": "שעון גיאנה הצרפתית"},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (he *he_IL) Locale() string {
  75. return he.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'he_IL'
  78. func (he *he_IL) PluralsCardinal() []locales.PluralRule {
  79. return he.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'he_IL'
  82. func (he *he_IL) PluralsOrdinal() []locales.PluralRule {
  83. return he.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'he_IL'
  86. func (he *he_IL) PluralsRange() []locales.PluralRule {
  87. return he.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'he_IL'
  90. func (he *he_IL) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. n := math.Abs(num)
  92. i := int64(n)
  93. nMod10 := math.Mod(n, 10)
  94. if i == 1 && v == 0 {
  95. return locales.PluralRuleOne
  96. } else if i == 2 && v == 0 {
  97. return locales.PluralRuleTwo
  98. } else if v == 0 && (n < 0 || n > 10) && nMod10 == 0 {
  99. return locales.PluralRuleMany
  100. }
  101. return locales.PluralRuleOther
  102. }
  103. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'he_IL'
  104. func (he *he_IL) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  105. return locales.PluralRuleOther
  106. }
  107. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'he_IL'
  108. func (he *he_IL) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  109. start := he.CardinalPluralRule(num1, v1)
  110. end := he.CardinalPluralRule(num2, v2)
  111. if start == locales.PluralRuleOne && end == locales.PluralRuleTwo {
  112. return locales.PluralRuleOther
  113. } else if start == locales.PluralRuleOne && end == locales.PluralRuleMany {
  114. return locales.PluralRuleMany
  115. } else if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
  116. return locales.PluralRuleOther
  117. } else if start == locales.PluralRuleTwo && end == locales.PluralRuleMany {
  118. return locales.PluralRuleOther
  119. } else if start == locales.PluralRuleTwo && end == locales.PluralRuleOther {
  120. return locales.PluralRuleOther
  121. } else if start == locales.PluralRuleMany && end == locales.PluralRuleMany {
  122. return locales.PluralRuleMany
  123. } else if start == locales.PluralRuleMany && end == locales.PluralRuleOther {
  124. return locales.PluralRuleMany
  125. } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
  126. return locales.PluralRuleOther
  127. } else if start == locales.PluralRuleOther && end == locales.PluralRuleTwo {
  128. return locales.PluralRuleOther
  129. } else if start == locales.PluralRuleOther && end == locales.PluralRuleMany {
  130. return locales.PluralRuleMany
  131. }
  132. return locales.PluralRuleOther
  133. }
  134. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  135. func (he *he_IL) MonthAbbreviated(month time.Month) string {
  136. return he.monthsAbbreviated[month]
  137. }
  138. // MonthsAbbreviated returns the locales abbreviated months
  139. func (he *he_IL) MonthsAbbreviated() []string {
  140. return he.monthsAbbreviated[1:]
  141. }
  142. // MonthNarrow returns the locales narrow month given the 'month' provided
  143. func (he *he_IL) MonthNarrow(month time.Month) string {
  144. return he.monthsNarrow[month]
  145. }
  146. // MonthsNarrow returns the locales narrow months
  147. func (he *he_IL) MonthsNarrow() []string {
  148. return he.monthsNarrow[1:]
  149. }
  150. // MonthWide returns the locales wide month given the 'month' provided
  151. func (he *he_IL) MonthWide(month time.Month) string {
  152. return he.monthsWide[month]
  153. }
  154. // MonthsWide returns the locales wide months
  155. func (he *he_IL) MonthsWide() []string {
  156. return he.monthsWide[1:]
  157. }
  158. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  159. func (he *he_IL) WeekdayAbbreviated(weekday time.Weekday) string {
  160. return he.daysAbbreviated[weekday]
  161. }
  162. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  163. func (he *he_IL) WeekdaysAbbreviated() []string {
  164. return he.daysAbbreviated
  165. }
  166. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  167. func (he *he_IL) WeekdayNarrow(weekday time.Weekday) string {
  168. return he.daysNarrow[weekday]
  169. }
  170. // WeekdaysNarrow returns the locales narrow weekdays
  171. func (he *he_IL) WeekdaysNarrow() []string {
  172. return he.daysNarrow
  173. }
  174. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  175. func (he *he_IL) WeekdayShort(weekday time.Weekday) string {
  176. return he.daysShort[weekday]
  177. }
  178. // WeekdaysShort returns the locales short weekdays
  179. func (he *he_IL) WeekdaysShort() []string {
  180. return he.daysShort
  181. }
  182. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  183. func (he *he_IL) WeekdayWide(weekday time.Weekday) string {
  184. return he.daysWide[weekday]
  185. }
  186. // WeekdaysWide returns the locales wide weekdays
  187. func (he *he_IL) WeekdaysWide() []string {
  188. return he.daysWide
  189. }
  190. // Decimal returns the decimal point of number
  191. func (he *he_IL) Decimal() string {
  192. return he.decimal
  193. }
  194. // Group returns the group of number
  195. func (he *he_IL) Group() string {
  196. return he.group
  197. }
  198. // Group returns the minus sign of number
  199. func (he *he_IL) Minus() string {
  200. return he.minus
  201. }
  202. // FmtNumber returns 'num' with digits/precision of 'v' for 'he_IL' and handles both Whole and Real numbers based on 'v'
  203. func (he *he_IL) FmtNumber(num float64, v uint64) string {
  204. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  205. l := len(s) + 5 + 1*len(s[:len(s)-int(v)-1])/3
  206. count := 0
  207. inWhole := v == 0
  208. b := make([]byte, 0, l)
  209. for i := len(s) - 1; i >= 0; i-- {
  210. if s[i] == '.' {
  211. b = append(b, he.decimal[0])
  212. inWhole = true
  213. continue
  214. }
  215. if inWhole {
  216. if count == 3 {
  217. b = append(b, he.group[0])
  218. count = 1
  219. } else {
  220. count++
  221. }
  222. }
  223. b = append(b, s[i])
  224. }
  225. if num < 0 {
  226. for j := len(he.minus) - 1; j >= 0; j-- {
  227. b = append(b, he.minus[j])
  228. }
  229. }
  230. // reverse
  231. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  232. b[i], b[j] = b[j], b[i]
  233. }
  234. return string(b)
  235. }
  236. // FmtPercent returns 'num' with digits/precision of 'v' for 'he_IL' and handles both Whole and Real numbers based on 'v'
  237. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  238. func (he *he_IL) FmtPercent(num float64, v uint64) string {
  239. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  240. l := len(s) + 6
  241. b := make([]byte, 0, l)
  242. for i := len(s) - 1; i >= 0; i-- {
  243. if s[i] == '.' {
  244. b = append(b, he.decimal[0])
  245. continue
  246. }
  247. b = append(b, s[i])
  248. }
  249. if num < 0 {
  250. for j := len(he.minus) - 1; j >= 0; j-- {
  251. b = append(b, he.minus[j])
  252. }
  253. }
  254. // reverse
  255. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  256. b[i], b[j] = b[j], b[i]
  257. }
  258. b = append(b, he.percent...)
  259. return string(b)
  260. }
  261. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'he_IL'
  262. func (he *he_IL) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  263. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  264. symbol := he.currencies[currency]
  265. l := len(s) + len(symbol) + 7 + 1*len(s[:len(s)-int(v)-1])/3
  266. count := 0
  267. inWhole := v == 0
  268. b := make([]byte, 0, l)
  269. for i := len(s) - 1; i >= 0; i-- {
  270. if s[i] == '.' {
  271. b = append(b, he.decimal[0])
  272. inWhole = true
  273. continue
  274. }
  275. if inWhole {
  276. if count == 3 {
  277. b = append(b, he.group[0])
  278. count = 1
  279. } else {
  280. count++
  281. }
  282. }
  283. b = append(b, s[i])
  284. }
  285. if num < 0 {
  286. for j := len(he.minus) - 1; j >= 0; j-- {
  287. b = append(b, he.minus[j])
  288. }
  289. }
  290. // reverse
  291. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  292. b[i], b[j] = b[j], b[i]
  293. }
  294. if int(v) < 2 {
  295. if v == 0 {
  296. b = append(b, he.decimal...)
  297. }
  298. for i := 0; i < 2-int(v); i++ {
  299. b = append(b, '0')
  300. }
  301. }
  302. b = append(b, he.currencyPositiveSuffix...)
  303. b = append(b, symbol...)
  304. return string(b)
  305. }
  306. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'he_IL'
  307. // in accounting notation.
  308. func (he *he_IL) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  309. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  310. symbol := he.currencies[currency]
  311. l := len(s) + len(symbol) + 7 + 1*len(s[:len(s)-int(v)-1])/3
  312. count := 0
  313. inWhole := v == 0
  314. b := make([]byte, 0, l)
  315. for i := len(s) - 1; i >= 0; i-- {
  316. if s[i] == '.' {
  317. b = append(b, he.decimal[0])
  318. inWhole = true
  319. continue
  320. }
  321. if inWhole {
  322. if count == 3 {
  323. b = append(b, he.group[0])
  324. count = 1
  325. } else {
  326. count++
  327. }
  328. }
  329. b = append(b, s[i])
  330. }
  331. if num < 0 {
  332. for j := len(he.minus) - 1; j >= 0; j-- {
  333. b = append(b, he.minus[j])
  334. }
  335. }
  336. // reverse
  337. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  338. b[i], b[j] = b[j], b[i]
  339. }
  340. if int(v) < 2 {
  341. if v == 0 {
  342. b = append(b, he.decimal...)
  343. }
  344. for i := 0; i < 2-int(v); i++ {
  345. b = append(b, '0')
  346. }
  347. }
  348. if num < 0 {
  349. b = append(b, he.currencyNegativeSuffix...)
  350. b = append(b, symbol...)
  351. } else {
  352. b = append(b, he.currencyPositiveSuffix...)
  353. b = append(b, symbol...)
  354. }
  355. return string(b)
  356. }
  357. // FmtDateShort returns the short date representation of 't' for 'he_IL'
  358. func (he *he_IL) FmtDateShort(t time.Time) string {
  359. b := make([]byte, 0, 32)
  360. b = strconv.AppendInt(b, int64(t.Day()), 10)
  361. b = append(b, []byte{0x2e}...)
  362. b = strconv.AppendInt(b, int64(t.Month()), 10)
  363. b = append(b, []byte{0x2e}...)
  364. if t.Year() > 0 {
  365. b = strconv.AppendInt(b, int64(t.Year()), 10)
  366. } else {
  367. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  368. }
  369. return string(b)
  370. }
  371. // FmtDateMedium returns the medium date representation of 't' for 'he_IL'
  372. func (he *he_IL) FmtDateMedium(t time.Time) string {
  373. b := make([]byte, 0, 32)
  374. b = strconv.AppendInt(b, int64(t.Day()), 10)
  375. b = append(b, []byte{0x20, 0xd7, 0x91}...)
  376. b = append(b, he.monthsAbbreviated[t.Month()]...)
  377. b = append(b, []byte{0x20}...)
  378. if t.Year() > 0 {
  379. b = strconv.AppendInt(b, int64(t.Year()), 10)
  380. } else {
  381. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  382. }
  383. return string(b)
  384. }
  385. // FmtDateLong returns the long date representation of 't' for 'he_IL'
  386. func (he *he_IL) FmtDateLong(t time.Time) string {
  387. b := make([]byte, 0, 32)
  388. b = strconv.AppendInt(b, int64(t.Day()), 10)
  389. b = append(b, []byte{0x20, 0xd7, 0x91}...)
  390. b = append(b, he.monthsWide[t.Month()]...)
  391. b = append(b, []byte{0x20}...)
  392. if t.Year() > 0 {
  393. b = strconv.AppendInt(b, int64(t.Year()), 10)
  394. } else {
  395. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  396. }
  397. return string(b)
  398. }
  399. // FmtDateFull returns the full date representation of 't' for 'he_IL'
  400. func (he *he_IL) FmtDateFull(t time.Time) string {
  401. b := make([]byte, 0, 32)
  402. b = append(b, he.daysWide[t.Weekday()]...)
  403. b = append(b, []byte{0x2c, 0x20}...)
  404. b = strconv.AppendInt(b, int64(t.Day()), 10)
  405. b = append(b, []byte{0x20, 0xd7, 0x91}...)
  406. b = append(b, he.monthsWide[t.Month()]...)
  407. b = append(b, []byte{0x20}...)
  408. if t.Year() > 0 {
  409. b = strconv.AppendInt(b, int64(t.Year()), 10)
  410. } else {
  411. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  412. }
  413. return string(b)
  414. }
  415. // FmtTimeShort returns the short time representation of 't' for 'he_IL'
  416. func (he *he_IL) FmtTimeShort(t time.Time) string {
  417. b := make([]byte, 0, 32)
  418. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  419. b = append(b, he.timeSeparator...)
  420. if t.Minute() < 10 {
  421. b = append(b, '0')
  422. }
  423. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  424. return string(b)
  425. }
  426. // FmtTimeMedium returns the medium time representation of 't' for 'he_IL'
  427. func (he *he_IL) FmtTimeMedium(t time.Time) string {
  428. b := make([]byte, 0, 32)
  429. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  430. b = append(b, he.timeSeparator...)
  431. if t.Minute() < 10 {
  432. b = append(b, '0')
  433. }
  434. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  435. b = append(b, he.timeSeparator...)
  436. if t.Second() < 10 {
  437. b = append(b, '0')
  438. }
  439. b = strconv.AppendInt(b, int64(t.Second()), 10)
  440. return string(b)
  441. }
  442. // FmtTimeLong returns the long time representation of 't' for 'he_IL'
  443. func (he *he_IL) FmtTimeLong(t time.Time) string {
  444. b := make([]byte, 0, 32)
  445. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  446. b = append(b, he.timeSeparator...)
  447. if t.Minute() < 10 {
  448. b = append(b, '0')
  449. }
  450. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  451. b = append(b, he.timeSeparator...)
  452. if t.Second() < 10 {
  453. b = append(b, '0')
  454. }
  455. b = strconv.AppendInt(b, int64(t.Second()), 10)
  456. b = append(b, []byte{0x20}...)
  457. tz, _ := t.Zone()
  458. b = append(b, tz...)
  459. return string(b)
  460. }
  461. // FmtTimeFull returns the full time representation of 't' for 'he_IL'
  462. func (he *he_IL) FmtTimeFull(t time.Time) string {
  463. b := make([]byte, 0, 32)
  464. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  465. b = append(b, he.timeSeparator...)
  466. if t.Minute() < 10 {
  467. b = append(b, '0')
  468. }
  469. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  470. b = append(b, he.timeSeparator...)
  471. if t.Second() < 10 {
  472. b = append(b, '0')
  473. }
  474. b = strconv.AppendInt(b, int64(t.Second()), 10)
  475. b = append(b, []byte{0x20}...)
  476. tz, _ := t.Zone()
  477. if btz, ok := he.timezones[tz]; ok {
  478. b = append(b, btz...)
  479. } else {
  480. b = append(b, tz...)
  481. }
  482. return string(b)
  483. }