Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rails-i18n for openSUSE:Factory checked in at 2022-02-24 18:20:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rails-i18n (Old) and /work/SRC/openSUSE:Factory/.rubygem-rails-i18n.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rails-i18n" Thu Feb 24 18:20:20 2022 rev:30 rq:956121 version:7.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rails-i18n/rubygem-rails-i18n.changes 2022-02-07 23:38:53.102118214 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rails-i18n.new.1958/rubygem-rails-i18n.changes 2022-02-24 18:23:35.606656286 +0100 @@ -1,0 +2,7 @@ +Tue Feb 15 07:36:11 UTC 2022 - Stephan Kulow <[email protected]> + +updated to version 7.0.2 + see installed CHANGELOG.md + + +------------------------------------------------------------------- Old: ---- rails-i18n-7.0.1.gem New: ---- rails-i18n-7.0.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rails-i18n.spec ++++++ --- /var/tmp/diff_new_pack.evhTJZ/_old 2022-02-24 18:23:36.150656144 +0100 +++ /var/tmp/diff_new_pack.evhTJZ/_new 2022-02-24 18:23:36.154656143 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-rails-i18n -Version: 7.0.1 +Version: 7.0.2 Release: 0 %define mod_name rails-i18n %define mod_full_name %{mod_name}-%{version} ++++++ rails-i18n-7.0.1.gem -> rails-i18n-7.0.2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2021-12-24 02:48:16.000000000 +0100 +++ new/CHANGELOG.md 2022-02-12 02:48:41.000000000 +0100 @@ -1,4 +1,46 @@ -## 6.0.0 +## unreleased + +## 7.0.1 (2021-12-24) + +- Fix ordinals loading. + +## 7.0.0 (2021-12-23) + +- Support Rails 7 +- Drop support for Ruby 1.8 +- Eager load translations during boot phase if possible. +- Translate ordinals (fr, fr-FR, fr-CA, fr-BE) +- Update following locales: + - Albanian (sq) + - Catalan (ca) + - Chinese (zh-CN, zh-TW) + - Croatian (hr) + - Danish (da) + - Finnish (fi) + - French (fr, fr-FR, fr-CA, fr-BE) + - Georgian (ka) + - German (de) + - Greek (el, el-CY) + - Italian (it, it-CH) + - Latvian (lv) + - Lithuanian (lt) + - Norwegian (nb) + - Polish (pl) + - Portuguese (pt-BR) + - Romanian (ro) + - Serbian (sr) + - Spanish (es-CO, es-AR) + - Swedish (sv) + - Turkish (tr) + - Ukrainian (uk) + - Vietnamese (vi) +- Add following locales: + - English Trinidad & Tobago (en-TT) + - Papiamento (pap-AW, pap-CW) + - Sesotho (st) + +## 6.0.0 (2019-08-17) + - Update rails-i18n.gemspec to use Railties 6.0.0 - Add Malagasy (mg) locale - Update following locales: Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails_i18n/common_pluralizations/serbian.rb new/lib/rails_i18n/common_pluralizations/serbian.rb --- old/lib/rails_i18n/common_pluralizations/serbian.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/lib/rails_i18n/common_pluralizations/serbian.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,32 @@ +module RailsI18n + module Pluralization + module Serbian + FROM_2_TO_4 = (2..4).to_a.freeze + FROM_12_TO_14 = (12..14).to_a.freeze + + def self.rule + lambda do |n| + n ||= 0 + mod10 = n % 10 + mod100 = n % 100 + + if mod10 == 1 && mod100 != 11 + :one + elsif FROM_2_TO_4.include?(mod10) && !FROM_12_TO_14.include?(mod100) + :few + else + :other + end + end + end + + def self.with_locale(locale) + { locale => { + :i18n => { + :plural => { + :keys => [:one, :few, :other], + :rule => rule }}}} + end + end + end +end \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2021-12-24 02:48:16.000000000 +0100 +++ new/metadata 2022-02-12 02:48:41.000000000 +0100 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: rails-i18n version: !ruby/object:Gem::Version - version: 7.0.1 + version: 7.0.2 platform: ruby authors: - Rails I18n Group autorequire: bindir: bin cert_chain: [] -date: 2021-12-24 00:00:00.000000000 Z +date: 2022-02-12 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: i18n @@ -84,14 +84,14 @@ requirements: - - "~>" - !ruby/object:Gem::Version - version: 0.9.20 + version: 0.9.37 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version - version: 0.9.20 + version: 0.9.37 description: A set of common locale data and translations to internationalize and/or localize your Rails applications. email: [email protected] @@ -111,6 +111,7 @@ - lib/rails_i18n/common_pluralizations/one_with_zero_other.rb - lib/rails_i18n/common_pluralizations/other.rb - lib/rails_i18n/common_pluralizations/romanian.rb +- lib/rails_i18n/common_pluralizations/serbian.rb - lib/rails_i18n/common_pluralizations/west_slavic.rb - lib/rails_i18n/railtie.rb - rails/locale/af.yml @@ -228,6 +229,10 @@ - rails/locale/zh-HK.yml - rails/locale/zh-TW.yml - rails/locale/zh-YUE.yml +- rails/ordinals/fr-CA.rb +- rails/ordinals/fr-CH.rb +- rails/ordinals/fr-FR.rb +- rails/ordinals/fr.rb - rails/pluralization/ak.rb - rails/pluralization/am.rb - rails/pluralization/ar.rb @@ -359,6 +364,7 @@ - rails/pluralization/sv-SE.rb - rails/pluralization/sv.rb - rails/pluralization/sw.rb +- rails/pluralization/ta.rb - rails/pluralization/th.rb - rails/pluralization/ti.rb - rails/pluralization/tl.rb @@ -413,7 +419,7 @@ - !ruby/object:Gem::Version version: 1.8.11 requirements: [] -rubygems_version: 3.2.32 +rubygems_version: 3.1.4 signing_key: specification_version: 4 summary: Common locale data and translations for Rails i18n. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/af.yml new/rails/locale/af.yml --- old/rails/locale/af.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/af.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Saterdag formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - Januarie @@ -208,6 +208,6 @@ am: vm formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: nm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/ar.yml new/rails/locale/ar.yml --- old/rails/locale/ar.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/ar.yml 2022-02-12 02:48:41.000000000 +0100 @@ -272,7 +272,7 @@ time: am: ???????????? formats: - default: "%a %b %d %H:%M:%S %Z %Y" - long: "%d %B, %Y %H:%M" + default: "%a %d %b %Y %H:%M:%S %Z" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ?????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/cy.yml new/rails/locale/cy.yml --- old/rails/locale/cy.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/cy.yml 2022-02-12 02:48:41.000000000 +0100 @@ -37,8 +37,8 @@ - Dydd Sadwrn formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - Ionawr @@ -241,6 +241,6 @@ am: yb formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: yh diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/da.yml new/rails/locale/da.yml --- old/rails/locale/da.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/da.yml 2022-02-12 02:48:41.000000000 +0100 @@ -111,24 +111,24 @@ messages: accepted: skal accepteres blank: skal udfyldes - confirmation: stemmer ikke overens med bekr??ftelse + confirmation: stemmer ikke overens med %{attribute} empty: m?? ikke udelades equal_to: skal v??re %{count} even: skal v??re et lige tal exclusion: er reserveret greater_than: skal v??re st??rre end %{count} - greater_than_or_equal_to: skal v??re st??rre end, eller lig med, %{count} + greater_than_or_equal_to: skal v??re st??rre end eller lig med %{count} inclusion: er ikke p?? listen invalid: er ikke gyldig less_than: skal v??re mindre end %{count} - less_than_or_equal_to: skal v??re mindre end, eller lig med, %{count} + less_than_or_equal_to: skal v??re mindre end eller lig med %{count} model_invalid: 'Godkendelse gik galt: %{errors}' not_a_number: er ikke et tal not_an_integer: er ikke et heltal odd: skal v??re et ulige tal other_than: skal v??re forskellig fra %{count} present: skal v??re tom - required: skal eksistere + required: skal udfyldes taken: er allerede brugt too_long: one: er for lang (h??jst 1 tegn) @@ -171,11 +171,19 @@ decimal_units: format: "%n %u" units: - billion: Milliard - million: Million - quadrillion: Billiard + billion: + one: Milliard + other: Milliarder + million: + one: Million + other: Millioner + quadrillion: + one: Billiard + other: Billiarder thousand: Tusind - trillion: Billion + trillion: + one: Billion + other: Billioner unit: '' format: delimiter: '' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/en-CA.yml new/rails/locale/en-CA.yml --- old/rails/locale/en-CA.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/en-CA.yml 2022-02-12 02:48:41.000000000 +0100 @@ -39,7 +39,7 @@ - Friday - Saturday formats: - default: "%d-%m-%Y" + default: "%Y-%m-%d" long: "%B %d, %Y" short: "%d %b" month_names: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/en-IN.yml new/rails/locale/en-IN.yml --- old/rails/locale/en-IN.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/en-IN.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Saturday formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - January @@ -210,6 +210,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/en-TT.yml new/rails/locale/en-TT.yml --- old/rails/locale/en-TT.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/en-TT.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Saturday formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - January @@ -208,6 +208,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/en-ZA.yml new/rails/locale/en-ZA.yml --- old/rails/locale/en-ZA.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/en-ZA.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Saturday formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - January @@ -210,6 +210,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/en.yml new/rails/locale/en.yml --- old/rails/locale/en.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/en.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Saturday formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - January @@ -210,6 +210,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/es-CL.yml new/rails/locale/es-CL.yml --- old/rails/locale/es-CL.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/es-CL.yml 2022-02-12 02:48:41.000000000 +0100 @@ -183,7 +183,7 @@ unit: '' format: delimiter: '' - precision: 1 + precision: 3 significant: true strip_insignificant_zeros: true storage_units: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/es-ES.yml new/rails/locale/es-ES.yml --- old/rails/locale/es-ES.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/es-ES.yml 2022-02-12 02:48:41.000000000 +0100 @@ -183,7 +183,7 @@ unit: '' format: delimiter: '' - precision: 1 + precision: 3 significant: true strip_insignificant_zeros: true storage_units: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/es.yml new/rails/locale/es.yml --- old/rails/locale/es.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/es.yml 2022-02-12 02:48:41.000000000 +0100 @@ -183,7 +183,7 @@ unit: '' format: delimiter: '' - precision: 1 + precision: 3 significant: true strip_insignificant_zeros: true storage_units: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/fi.yml new/rails/locale/fi.yml --- old/rails/locale/fi.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/fi.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,7 +40,7 @@ - lauantai formats: default: "%-d.%-m.%Y" - long: "%A %e. %Bta %Y" + long: "%d. %Bta %Y" short: "%d. %b" month_names: - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/fr.yml new/rails/locale/fr.yml --- old/rails/locale/fr.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/fr.yml 2022-02-12 02:48:41.000000000 +0100 @@ -133,7 +133,7 @@ other_than: doit ??tre diff??rent de %{count} present: doit ??tre vide required: doit exister - taken: n'est pas disponible + taken: est d??j?? utilis??(e) too_long: one: est trop long (pas plus d'un caract??re) other: est trop long (pas plus de %{count}??caract??res) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/gl.yml new/rails/locale/gl.yml --- old/rails/locale/gl.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/gl.yml 2022-02-12 02:48:41.000000000 +0100 @@ -93,9 +93,9 @@ format: "%{attribute} %{message}" messages: accepted: debe ser aceptado - blank: non pode estar en blanco + blank: non pode estar en branco confirmation: non coincide coa confirmaci??n - empty: non pode estar valeiro + empty: non pode estar baleiro equal_to: debe ser igual a %{count} even: debe ser impar exclusion: xa existe @@ -114,8 +114,8 @@ template: body: 'Atop??ronse os seguintes problemas:' header: - one: 1 erro evitou que se poidese gardar o %{model} - other: "%{count} erros evitaron que se poidese gardar o %{model}" + one: 1 erro evitou que se puidese gardar o %{model} + other: "%{count} erros evitaron que se puidese gardar o %{model}" number: currency: format: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/hi-IN.yml new/rails/locale/hi-IN.yml --- old/rails/locale/hi-IN.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/hi-IN.yml 2022-02-12 02:48:41.000000000 +0100 @@ -37,8 +37,8 @@ - ?????????????????? formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -191,6 +191,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/hi.yml new/rails/locale/hi.yml --- old/rails/locale/hi.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/hi.yml 2022-02-12 02:48:41.000000000 +0100 @@ -37,8 +37,8 @@ - ?????????????????? formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -191,6 +191,6 @@ am: ??????????????????????????? formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ????????????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/hr.yml new/rails/locale/hr.yml --- old/rails/locale/hr.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/hr.yml 2022-02-12 02:48:41.000000000 +0100 @@ -182,7 +182,7 @@ submit: create: Stvori %{model} submit: Spremi %{model} - update: Izmjeni %{model} + update: Izmijeni %{model} number: currency: format: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/kn.yml new/rails/locale/kn.yml --- old/rails/locale/kn.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/kn.yml 2022-02-12 02:48:41.000000000 +0100 @@ -37,8 +37,8 @@ - ?????????????????? formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -191,6 +191,6 @@ am: ??????????????????????????? formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ????????????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/lt.yml new/rails/locale/lt.yml --- old/rails/locale/lt.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/lt.yml 2022-02-12 02:48:41.000000000 +0100 @@ -216,6 +216,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%Y %B %d %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/mk.yml new/rails/locale/mk.yml --- old/rails/locale/mk.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/mk.yml 2022-02-12 02:48:41.000000000 +0100 @@ -196,7 +196,7 @@ time: am: ???? formats: - default: "%a %b %d %H:%M:%S %Z %Y" - long: "%B %d, %Y %H:%M" + default: "%a %d %b %Y %H:%M:%S %Z" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ???? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/ml.yml new/rails/locale/ml.yml --- old/rails/locale/ml.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/ml.yml 2022-02-12 02:48:41.000000000 +0100 @@ -41,7 +41,7 @@ formats: default: "%d-%m-%Y" long: "%d %B, %Y" - short: "%b %d" + short: "%d %b" month_names: - - ?????????????????? @@ -205,6 +205,6 @@ am: ?????????????????? formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%Y, %B %d %H:%M" short: "%d %b %H:%M" pm: ???????????????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/mr-IN.yml new/rails/locale/mr-IN.yml --- old/rails/locale/mr-IN.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/mr-IN.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - ?????????????????? formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ???????????????????????? @@ -202,6 +202,6 @@ am: ???.??????. formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ???.??????. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/ne.yml new/rails/locale/ne.yml --- old/rails/locale/ne.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/ne.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - ?????????????????? formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -200,6 +200,6 @@ am: ??????????????? formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ?????????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/pa.yml new/rails/locale/pa.yml --- old/rails/locale/pa.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/pa.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - ??????????????????????????? formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -203,6 +203,6 @@ am: ???????????? formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/pap-AW.yml new/rails/locale/pap-AW.yml --- old/rails/locale/pap-AW.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/pap-AW.yml 2022-02-12 02:48:41.000000000 +0100 @@ -57,9 +57,9 @@ - nov??mber - des??mber order: - - :a??a - - :luna - - :dia + - :year + - :month + - :day datetime: distance_in_words: about_x_hours: @@ -165,8 +165,8 @@ delimiter: '.' precision: 3 separator: ',' - significant: falsu - strip_insignificant_zeros: falsu + significant: false + strip_insignificant_zeros: false human: decimal_units: format: '%n %u' @@ -210,6 +210,6 @@ am: am formats: default: '%a, %d %b %Y %H.%M.%S %z' - long: '%B %d, %Y %H.%M' + long: '%d %B %Y %H.%M' short: '%d %b %H.%M' pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/pap-CW.yml new/rails/locale/pap-CW.yml --- old/rails/locale/pap-CW.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/pap-CW.yml 2022-02-12 02:48:41.000000000 +0100 @@ -57,9 +57,9 @@ - nov??mber - des??mber order: - - :a??a - - :luna - - :dia + - :year + - :month + - :day datetime: distance_in_words: about_x_hours: @@ -165,8 +165,8 @@ delimiter: '.' precision: 3 separator: ',' - significant: falsu - strip_insignificant_zeros: falsu + significant: false + strip_insignificant_zeros: false human: decimal_units: format: '%n %u' @@ -210,6 +210,6 @@ am: am formats: default: '%a, %d %b %Y %H.%M.%S %z' - long: '%B %d, %Y %H.%M' + long: '%d %B %Y %H.%M' short: '%d %b %H.%M' pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/sr.yml new/rails/locale/sr.yml --- old/rails/locale/sr.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/sr.yml 2022-02-12 02:48:41.000000000 +0100 @@ -236,7 +236,7 @@ time: am: ???? formats: - default: "%a %b %d %H:%M:%S %Z %Y" - long: "%B %d, %Y %H:%M" + default: "%a %d %b %Y %H:%M:%S %Z" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ???? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/st.yml new/rails/locale/st.yml --- old/rails/locale/st.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/st.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Moqebelo formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - Pherekhong @@ -210,6 +210,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/sv.yml new/rails/locale/sv.yml --- old/rails/locale/sv.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/sv.yml 2022-02-12 02:48:41.000000000 +0100 @@ -188,8 +188,8 @@ tb: TB percentage: format: - delimiter: '' - format: "%n%" + delimiter: ' ' + format: "%n %" precision: format: delimiter: '' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/ta.yml new/rails/locale/ta.yml --- old/rails/locale/ta.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/ta.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - ?????????????????????????????? formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -203,6 +203,6 @@ am: ??????.???. formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: ??????.???. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/te.yml new/rails/locale/te.yml --- old/rails/locale/te.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/te.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - ????????????????????? formats: default: "%d-%m-%Y" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B %Y" + short: "%d %b" month_names: - - ??????????????? @@ -208,6 +208,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/ur.yml new/rails/locale/ur.yml --- old/rails/locale/ur.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/ur.yml 2022-02-12 02:48:41.000000000 +0100 @@ -42,7 +42,7 @@ - ???????? formats: default: "%d %B %Y" - long: "%B %d?? %Y" + long: "%d %B?? %Y" short: "%d %b" month_names: - @@ -205,6 +205,6 @@ am: ?????? formats: default: "%a?? %d %b %Y?? %p %l:%M %Z" - long: "%B %d?? %Y %p %H:%M" + long: "%d %B?? %Y %p %H:%M" short: "%d %b?? %H:%M" pm: ?????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/wo.yml new/rails/locale/wo.yml --- old/rails/locale/wo.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/wo.yml 2022-02-12 02:48:41.000000000 +0100 @@ -40,8 +40,8 @@ - Gaawu formats: default: "%Y-%m-%d" - long: "%B %d, %Y" - short: "%b %d" + long: "%d %B, %Y" + short: "%d %b" month_names: - - Tamkharit @@ -203,6 +203,6 @@ am: am formats: default: "%a, %d %b %Y %H:%M:%S %z" - long: "%B %d, %Y %H:%M" + long: "%d %B, %Y %H:%M" short: "%d %b %H:%M" pm: pm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/locale/zh-TW.yml new/rails/locale/zh-TW.yml --- old/rails/locale/zh-TW.yml 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/locale/zh-TW.yml 2022-02-12 02:48:41.000000000 +0100 @@ -107,7 +107,7 @@ month: ??? year: ??? errors: - format: "%{attribute} %{message}" + format: "%{attribute}%{message}" messages: accepted: ???????????????????????? blank: ??????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/ordinals/fr-CA.rb new/rails/ordinals/fr-CA.rb --- old/rails/ordinals/fr-CA.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/rails/ordinals/fr-CA.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,19 @@ +{ + "fr-CA": { + number: { + nth: { + ordinals: -> (_key, number:, **_options) { + if number.to_i.abs == 1 + 'er' + else + 'e' + end + }, + + ordinalized: -> (_key, number:, **_options) { + "#{number}#{ActiveSupport::Inflector.ordinal(number)}" + } + } + } + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/ordinals/fr-CH.rb new/rails/ordinals/fr-CH.rb --- old/rails/ordinals/fr-CH.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/rails/ordinals/fr-CH.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,19 @@ +{ + "fr-CH": { + number: { + nth: { + ordinals: -> (_key, number:, **_options) { + if number.to_i.abs == 1 + 'er' + else + 'e' + end + }, + + ordinalized: -> (_key, number:, **_options) { + "#{number}#{ActiveSupport::Inflector.ordinal(number)}" + } + } + } + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/ordinals/fr-FR.rb new/rails/ordinals/fr-FR.rb --- old/rails/ordinals/fr-FR.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/rails/ordinals/fr-FR.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,19 @@ +{ + "fr-FR": { + number: { + nth: { + ordinals: -> (_key, number:, **_options) { + if number.to_i.abs == 1 + 'er' + else + 'e' + end + }, + + ordinalized: -> (_key, number:, **_options) { + "#{number}#{ActiveSupport::Inflector.ordinal(number)}" + } + } + } + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/ordinals/fr.rb new/rails/ordinals/fr.rb --- old/rails/ordinals/fr.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/rails/ordinals/fr.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,19 @@ +{ + fr: { + number: { + nth: { + ordinals: -> (_key, number:, **_options) { + if number.to_i.abs == 1 + 'er' + else + 'e' + end + }, + + ordinalized: -> (_key, number:, **_options) { + "#{number}#{ActiveSupport::Inflector.ordinal(number)}" + } + } + } + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/pluralization/sr.rb new/rails/pluralization/sr.rb --- old/rails/pluralization/sr.rb 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/pluralization/sr.rb 2022-02-12 02:48:41.000000000 +0100 @@ -1,30 +1,3 @@ -module RailsI18n - module Pluralization - module Serbian - FROM_2_TO_4 = (2..4).to_a.freeze - FROM_12_TO_14 = (12..14).to_a.freeze +require 'rails_i18n/common_pluralizations/serbian' - def self.rule - lambda do |n| - n ||= 0 - mod10 = n % 10 - mod100 = n % 100 - - if mod10 == 1 && mod100 != 11 - :one - elsif FROM_2_TO_4.include?(mod10) && !FROM_12_TO_14.include?(mod100) - :few - else - :other - end - end - end - end - end -end - -{ :sr => { - :i18n => { - :plural => { - :keys => [:one, :few, :other], - :rule => RailsI18n::Pluralization::Serbian.rule }}}} +::RailsI18n::Pluralization::Serbian.with_locale(:sr) \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/pluralization/ta.rb new/rails/pluralization/ta.rb --- old/rails/pluralization/ta.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/rails/pluralization/ta.rb 2022-02-12 02:48:41.000000000 +0100 @@ -0,0 +1,3 @@ +require 'rails_i18n/common_pluralizations/one_other' + +::RailsI18n::Pluralization::OneOther.with_locale(:ta) \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rails/pluralization/tr.rb new/rails/pluralization/tr.rb --- old/rails/pluralization/tr.rb 2021-12-24 02:48:16.000000000 +0100 +++ new/rails/pluralization/tr.rb 2022-02-12 02:48:41.000000000 +0100 @@ -1,3 +1,3 @@ -require 'rails_i18n/common_pluralizations/other' +require 'rails_i18n/common_pluralizations/one_other' ::RailsI18n::Pluralization::OneOther.with_locale(:tr)
