Modifications for MAPS.ME

This commit is contained in:
Ilya Zverev 2018-03-30 14:42:14 +03:00
parent b52de34ce9
commit 1813945b2d
2 changed files with 14 additions and 3 deletions

View file

@ -7,6 +7,14 @@ module Twine
class Android < Abstract
include Twine::Placeholders
LANG_CODES = Hash[
'zh' => 'zh-Hans',
'zh-CN' => 'zh-Hans',
'zh-HK' => 'zh-Hant',
'en-GB' => 'en-GB',
'in' => 'id'
]
def format_name
'android'
end
@ -33,7 +41,10 @@ module Twine
# see http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources
match = /^values-([a-z]{2}(-r[a-z]{2})?)$/i.match(segment)
return match[1].sub('-r', '-') if match
if match
lang = match[1].sub('-r', '-')
return LANG_CODES.fetch(lang, lang)
end
end
end

View file

@ -16,9 +16,9 @@ module Twine
def determine_language_given_path(path)
path_arr = path.split(File::SEPARATOR)
path_arr.each do |segment|
match = /^((.+)-)?([^-]+)\.json$/.match(segment)
match = /^(.+)\.json$/.match(segment)
if match
return match[3]
return match[1]
end
end