r18n-core 1.1.9 → 1.1.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b27aff155978b5573d2b9f1efa28658f40a6488c
4
- data.tar.gz: 528f24daec68b0276ab9cfd921626c13da73ece0
3
+ metadata.gz: 11647a0ffc03662576b210f7321ccc9fadd83ce1
4
+ data.tar.gz: 561411a6677e34a810508a255dc849cde14d056c
5
5
  SHA512:
6
- metadata.gz: 75f8aac795cb0f205e2c2a9b72a2f838bfc356844e6cd406bba479caac02c39dcc728661ba1dced4c6658d44339c4e4f06b02dac5604ab4b005cfd5570f99733
7
- data.tar.gz: a2790167cf88885d16df4d81fe746582d9dc1a634bdee3c31693b25ff2946796d32a9c8b0ab3b77d47eccd9d69a3e3a24c44fe97f077a780520189c23d4dc7d3
6
+ metadata.gz: 4e9d692e546e017e80c363a983278e87400a14ba39bf62009d4e672cbdfb978155e0c8babbd294143cf3a005bcf422c10aaf729eb7eda0a8b16994a40091ceff
7
+ data.tar.gz: f04b4028d2f08d69b1f85ce46f8093c790f12202a10439f547b1878ee6b981f2be20ca253cbada419fea983d83d887d72e9ff0ba47ddca5377168fb5848fc07d
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.1.10 (十)
2
+ * Fix Esperanto locale by Larry Gilbert.
3
+ * Fix Chinese locale by 刘当一.
4
+
1
5
  == 1.1.9 (Не знайдено)
2
6
  * Fix Rails 4.0.4 support. Prevent loop on enforce_available_locales.
3
7
 
data/base/eo.yml CHANGED
@@ -3,7 +3,7 @@ save: 'Savi'
3
3
  cancel: 'Nuligi'
4
4
  'yes': 'Jes'
5
5
  'no': 'Ne'
6
- exit: 'Eliro'
6
+ exit: 'Eliri'
7
7
  delete: 'Forviŝi'
8
8
 
9
9
  human_time:
@@ -20,12 +20,12 @@ human_time:
20
20
  now: 'nun'
21
21
  today: 'hodiaŭ'
22
22
  minutes_ago: !!pl
23
- 1: '%1 minuto antaŭ'
24
- n: '%1 minutoj antaŭ'
23
+ 1: 'antaŭ %1 minuto'
24
+ n: 'antaŭ %1 minutoj'
25
25
  hours_ago: !!pl
26
- 1: '%1 horo antaŭ'
27
- n: '%1 horo antaŭ'
26
+ 1: 'antaŭ %1 horo'
27
+ n: 'antaŭ %1 horoj'
28
28
  yesterday: 'hieraŭ'
29
29
  days_ago: !!pl
30
- 1: '%1 tago antaŭ'
31
- n: '%1 tago antaŭ'
30
+ 1: 'antaŭ %1 tago'
31
+ n: 'antaŭ %1 tagoj'
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module R18n
3
- VERSION = '1.1.9'.freeze unless defined? R18n::VERSION
3
+ VERSION = '1.1.10'.freeze unless defined? R18n::VERSION
4
4
  end
data/locales/zh-cn.rb CHANGED
@@ -1,6 +1,8 @@
1
1
  # encoding: utf-8
2
- module R18n
3
- class Locales::ZhCn < Locale
2
+ require File.join(File.dirname(__FILE__), 'zh')
3
+
4
+ module R18n::Locales
5
+ class ZhCn < Zh
4
6
  set :title => '简体中文',
5
7
  :sublocales => %w{zh en}
6
8
  end
data/locales/zh-tw.rb CHANGED
@@ -1,7 +1,13 @@
1
1
  # encoding: utf-8
2
- module R18n
3
- class Locales::ZhTw < Locale
2
+ require File.join(File.dirname(__FILE__), 'zh')
3
+
4
+ module R18n::Locales
5
+ class ZhTw < Zh
4
6
  set :title => '繁體中文',
5
- :sublocales => %w{zh en}
7
+ :sublocales => %w{zh en},
8
+
9
+ :wday_names => %w{星期日 星期壹 星期二 星期三 星期四 星期五 星期六},
10
+ :wday_abbrs => %w{周日 周壹 周二 周三 周四 周五 周六},
11
+ :month_names => %w{壹月 二月 三月 四月 五月 六月 七月 八月 九月 十月 十壹月 十二月}
6
12
  end
7
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r18n-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Sitnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-16 00:00:00.000000000 Z
11
+ date: 2014-04-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  R18n is a i18n tool to translate your Ruby application.