Class: ReVIEW::I18n
Constant Summary collapse
- ALPHA_U =
%w[0 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]
- ALPHA_L =
%w[0 a b c d e f g h i j k l m n o p q r s t u v w x y z]
- ROMAN_U =
%w[0 I II III IV V VI VII VIII IX X XI XII XIII XIV XV XVI XVII XVIII XIX XX XXI XXII XXIII XXIV XXV XXVI XXVII]
- ROMAN_L =
%w[0 i ii iii iv v vi vii viii ix x xi xii xiii xiv xv xvi xvii xviii xix xx xxi xxii xxiii xxiv xxv xxvi xxvii]
- ALPHA_UW =
%w[0 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]
- ALPHA_LW =
%w[0 a b c d e f g h i j k l m n o p q r s t u v w x y z]
- ROMAN_UW =
%w[0 Ⅰ Ⅱ Ⅲ Ⅳ V Ⅵ Ⅶ Ⅷ Ⅸ X Ⅺ Ⅻ]
- ARABIC_UW =
%w[〇 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27]
- ARABIC_LW =
%w[〇 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27]
- JAPAN =
%w[〇 一 二 三 四 五 六 七 八 九 十 十一 十二 十三 十四 十五 十六 十七 十八 十九 二十 二十一 二十二 二十三 二十四 二十五 二十六 二十七]
Instance Attribute Summary collapse
-
#locale ⇒ Object
Returns the value of attribute locale.
Class Method Summary collapse
- .get(word, locale = nil) ⇒ Object
- .i18n(*args) ⇒ Object
- .locale=(locale) ⇒ Object
- .setup(locale = "ja", ymlfile = "locale.yml") ⇒ Object
- .t(str, args = nil) ⇒ Object
- .update(user_i18n, locale = nil) ⇒ Object
-
.v ⇒ Object
for EPUBMaker backward compatibility.
Instance Method Summary collapse
- #get(word, locale = nil) ⇒ Object
-
#initialize(locale = nil) ⇒ I18n
constructor
A new instance of I18n.
- #load_default ⇒ Object
- #load_file(path) ⇒ Object
- #t(str, args = nil) ⇒ Object
- #update(user_i18n, locale = nil) ⇒ Object
- #update_localefile(path) ⇒ Object
Constructor Details
#initialize(locale = nil) ⇒ I18n
65 66 67 68 |
# File 'lib/review/i18n.rb', line 65 def initialize(locale = nil) @locale = locale load_default end |
Instance Attribute Details
#locale ⇒ Object
Returns the value of attribute locale.
63 64 65 |
# File 'lib/review/i18n.rb', line 63 def locale @locale end |
Class Method Details
.get(word, locale = nil) ⇒ Object
59 60 61 |
# File 'lib/review/i18n.rb', line 59 def self.get(word, locale = nil) @i18n.get(word, locale) end |
.i18n(*args) ⇒ Object
35 36 37 |
# File 'lib/review/i18n.rb', line 35 def self.i18n(*args) raise NotImplementedError, "I18n.i18n is obsoleted. Please use I18n.setup(locale, [ymlfile])" end |
.locale=(locale) ⇒ Object
43 44 45 46 47 48 49 |
# File 'lib/review/i18n.rb', line 43 def self.locale=(locale) if @i18n @i18n.locale = locale else I18n.setup(locale) end end |
.setup(locale = "ja", ymlfile = "locale.yml") ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/review/i18n.rb', line 17 def self.setup(locale="ja", ymlfile = "locale.yml") @i18n = ReVIEW::I18n.new(locale) lfile = nil if ymlfile lfile = File.(ymlfile, Dir.pwd) # backward compatibility if !File.exist?(lfile) && (ymlfile == "locale.yml") && File.exist?(File.("locale.yaml", Dir.pwd)) raise ReVIEW::ConfigError, "locale.yaml is obsoleted. Please use locale.yml." end end if lfile && File.file?(lfile) @i18n.update_localefile(lfile) end end |
.t(str, args = nil) ⇒ Object
39 40 41 |
# File 'lib/review/i18n.rb', line 39 def self.t(str, args = nil) @i18n.t(str, args) end |
.update(user_i18n, locale = nil) ⇒ Object
55 56 57 |
# File 'lib/review/i18n.rb', line 55 def self.update(user_i18n, locale = nil) @i18n.update(user_i18n, locale) end |
.v ⇒ Object
for EPUBMaker backward compatibility
52 53 54 |
# File 'lib/review/i18n.rb', line 52 def self.t(str, args = nil) @i18n.t(str, args) end |
Instance Method Details
#get(word, locale = nil) ⇒ Object
105 106 107 108 |
# File 'lib/review/i18n.rb', line 105 def get(word, locale = nil) locale ||= @locale @store[locale][word] end |
#load_default ⇒ Object
70 71 72 |
# File 'lib/review/i18n.rb', line 70 def load_default load_file(File.("i18n.yml", File.dirname(__FILE__))) end |
#load_file(path) ⇒ Object
74 75 76 |
# File 'lib/review/i18n.rb', line 74 def load_file(path) @store = YAML.load_file(path) end |
#t(str, args = nil) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/review/i18n.rb', line 110 def t(str, args = nil) frmt = @store[@locale][str].dup frmt.gsub!('%%', '##') if !args.is_a?(Array) if args.nil? && frmt !~ /\%/ args = [] else args = [args] end end percents = frmt.scan(/%\w{1,3}/) percents.each_with_index do |i, idx| case i when "%pA" frmt.sub!(i, ALPHA_U[args[idx]]) args.delete idx when "%pa" frmt.sub!(i, ALPHA_L[args[idx]]) args.delete idx when "%pAW" frmt.sub!(i, ALPHA_UW[args[idx]]) args.delete idx when "%paW" frmt.sub!(i, ALPHA_LW[args[idx]]) args.delete idx when "%pR" frmt.sub!(i, ROMAN_U[args[idx]]) args.delete idx when "%pr" frmt.sub!(i, ROMAN_L[args[idx]]) args.delete idx when "%pRW" frmt.sub!(i, ROMAN_UW[args[idx]]) args.delete idx when "%pJ" frmt.sub!(i, JAPAN[args[idx]]) args.delete idx when "%pdW" frmt.sub!(i, ARABIC_LW[args[idx]]) args.delete idx when "%pDW" frmt.sub!(i, ARABIC_UW[args[idx]]) args.delete idx end end args_matched = (frmt.count("%") == args.size) frmt.gsub!('##', '%%') args_matched ? (frmt % args) : frmt rescue str end |
#update(user_i18n, locale = nil) ⇒ Object
96 97 98 99 100 101 102 103 |
# File 'lib/review/i18n.rb', line 96 def update(user_i18n, locale = nil) locale ||= @locale if @store[locale] @store[locale].merge!(user_i18n) else @store[locale] = user_i18n end end |
#update_localefile(path) ⇒ Object
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/review/i18n.rb', line 78 def update_localefile(path) user_i18n = YAML.load_file(path) locale = user_i18n["locale"] if locale user_i18n.delete("locale") if @store[locale] @store[locale].merge!(user_i18n) else @store[locale] = user_i18n end else user_i18n.each do |key, values| raise KeyError, "Invalid locale file: #{path}" unless values.kind_of? Hash @store[key].merge!(values) end end end |