1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# frozen_string_literal: true
require_relative 'base'
module FastestGettext
def set_domain(folder, domain, locale)
@data = {}
require 'fast_gettext/vendor/mofile'
FastGettext::GetText::MOFile.open(File.join(folder, locale, 'LC_MESSAGES', "#{domain}.mo"), "UTF-8").each { |k, v| @data[k] = v }
end
def _(word)
@data[word]
end
end
include FastestGettext # rubocop:disable Style/MixinUsage
set_domain(locale_folder('test'), 'test', 'de')
puts "Ideal: (primitive Hash lookup)"
results_test { _('car') == 'Auto' }
# i cannot add the large file, since its an internal applications mo file
set_domain(locale_folder('large'), 'large', 'de')
results_large
|