Class: Middleman::CoreExtensions::Internationalization
- Inherits:
-
Extension
- Object
- Extension
- Middleman::CoreExtensions::Internationalization
show all
- Defined in:
- lib/middleman-core/core_extensions/i18n.rb
Defined Under Namespace
Classes: LocalizedPageDescriptor
Constant Summary
Constants included
from Contracts
Contracts::PATH_MATCHER
Instance Attribute Summary
Attributes inherited from Extension
#app, #options
Instance Method Summary
collapse
Methods inherited from Extension
activated_extension, #add_exposed_to_context, #after_build, after_extension_activated, #after_extension_activated, #before_build, #before_configuration, clear_after_extension_callbacks, config, define_setting, expose_to_application, expose_to_config, expose_to_template, global_config, helpers, option, #ready, resources
Methods included from Contracts
#Contract
Constructor Details
Returns a new instance of Internationalization.
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 15
def initialize(*)
super
require 'i18n'
options[:locales] = options[:langs] unless options[:langs].nil?
options[:locale_map] = options[:lang_map] unless options[:lang_map].nil?
::I18n.enforce_available_locales = false
if ENV['TEST']
app.after_configuration_eval do
::I18n.load_path.delete_if { |path| path =~ %r{tmp/aruba} }
::I18n.reload!
end
end
end
|
Instance Method Details
#after_configuration ⇒ Object
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 40
def after_configuration
unless options[:no_fallbacks]
require 'i18n/backend/fallbacks'
::I18n::Backend::Simple.send(:include, ::I18n::Backend::Fallbacks)
end
locales_file_path = options[:data]
app.files.watch :locales,
path: File.join(app.root, locales_file_path),
only: /.*(rb|yml|yaml)$/
app.files.on_change(:locales, &method(:on_file_changed))
@maps = {}
@mount_at_root = options[:mount_at_root].nil? ? locales.first : options[:mount_at_root]
configure_i18n
logger.info "== Locales: #{locales.join(', ')} (Default #{@mount_at_root})"
end
|
#locale ⇒ Object
Also known as:
lang
140
141
142
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 140
def locale
::I18n.locale
end
|
#locales ⇒ Object
Also known as:
langs
132
133
134
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 132
def locales
@locales ||= known_locales
end
|
#localized_path(path, locale) ⇒ Object
258
259
260
261
262
263
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 258
def localized_path(path, locale)
lookup_path = path.dup
lookup_path << app.config[:index_file] if lookup_path.end_with?('/')
@lookup[lookup_path] && @lookup[lookup_path][locale]
end
|
#manipulate_resource_list(resources) ⇒ Object
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 150
def manipulate_resource_list(resources)
new_resources = []
file_extension_resources = resources.select do |resource|
File.fnmatch?(File.join(options[:templates_dir], '**'), resource.path) &&
parse_locale_extension(resource.path)
end
localizable_folder_resources = resources.select do |resource|
!file_extension_resources.include?(resource) && File.fnmatch?(File.join(options[:templates_dir], '**'), resource.path)
end
localizable_folder_resources.each do |resource|
next if resource.ignored?
page_id = File.basename(resource.path, File.extname(resource.path))
locales.each do |locale|
path = resource.path.sub(options[:templates_dir], '')
new_resources << build_resource(path, resource.path, page_id, locale)
end
resource.ignore!
end
file_extension_resources.each do |resource|
next if resource.ignored?
result = parse_locale_extension(resource.path)
ext_locale, path, page_id = result
new_resources << build_resource(path, resource.path, page_id, ext_locale)
resource.ignore!
end
@source_path_group = new_resources.group_by do |resource|
_locale, path, _page_id = parse_locale_extension(resource.source_path)
path ||= resource.source_path
path
end
@lookup = {}
@source_path_group.each do |src_path, resources|
exposed_paths = resources.map(&:path)
locale_map = resources.each_with_object({}) do |resource, map|
map[resource.locale] = '/' + resource.path
end
exposed_paths.each do |path|
@lookup['/' + path] = locale_map
end
if @mount_at_root == false
src_path = src_path.sub(options[:templates_dir] + '/', '')
@lookup["/#{src_path}"] = locale_map
end
end
new_resources.reduce(resources) do |sum, r|
r.execute_descriptor(app, sum)
end
end
|
#path_root(locale) ⇒ Object
266
267
268
269
270
271
272
273
|
# File 'lib/middleman-core/core_extensions/i18n.rb', line 266
def path_root(locale)
if (options[:mount_at_root] == locale) || (options[:mount_at_root].nil? && locales[0] == locale)
'/'
else
replacement = options[:locale_map][locale] || locale
options[:path].sub(':locale', replacement.to_s).sub(':lang', replacement.to_s) end
end
|