Remove GetLocalization scripts

pull/820/head
Alex Baker 5 years ago
parent 4e3d1a691f
commit da4262cc79

@ -1,95 +0,0 @@
require 'rexml/document'
STRINGS = {}
STRING_ARRAYS = {}
PLURALS = {}
def load(path)
file = File.new(path)
doc = REXML::Document.new(file)
doc.context[:attribute_quote] = :quote
doc
end
def get_items(elem)
items = []
elem.each_element('item') do |item|
items << item.text
end
items
end
def get_plurals(elem)
plurals = {}
elem.each_element('item') do |item|
plurals[item.attributes['quantity']] = item.text
end
plurals
end
def index_elements(doc)
doc.elements['resources'].each_element('string') { |elem| STRINGS[elem.attributes['name']] = elem.text }
doc.elements['resources'].each_element('string-array') { |elem| STRING_ARRAYS[elem.attributes['name']] = get_items(elem) }
doc.elements['resources'].each_element('plurals') { |elem| PLURALS[elem.attributes['name']] = get_plurals(elem) }
end
def find_duplicate_plurals(doc)
dups = []
doc.elements['resources'].each_element('plurals') do |elem|
string_name = elem.attributes['name']
plurals = get_plurals(elem)
dups << string_name if plurals.eql? PLURALS[string_name]
end
dups
end
def find_duplicate_string_arrays(doc)
dups = []
doc.elements['resources'].each_element('string-array') do |elem|
string_name = elem.attributes['name']
items = get_items(elem)
dups << string_name if items.eql? STRING_ARRAYS[string_name]
end
dups
end
def find_duplicate_strings(doc)
dups = []
doc.elements['resources'].each_element('string') do |elem|
string_name = elem.attributes['name']
dups << string_name if elem.text.eql? STRINGS[string_name]
end
dups
end
def remove_items(doc, type, names)
names.each { |name| doc.elements.delete("resources/#{type}[@name='#{name}']") }
end
def clean(path)
doc = load(path)
remove_items(doc, 'string', find_duplicate_strings(doc))
remove_items(doc, 'string-array', find_duplicate_string_arrays(doc))
remove_items(doc, 'plurals', find_duplicate_plurals(doc))
prolog, *tail = doc.to_s.split("\n").reject { |x| x.strip.eql? "" }
File.open(path, 'w') do |f|
f.puts prolog
f.puts "<!-- ************************************************************** -->"
f.puts "<!-- ********* THIS FILE IS GENERATED BY GETLOCALIZATION ********** -->"
f.puts "<!-- ******** http://www.getlocalization.com/tasks_android ******** -->"
f.puts "<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->"
f.puts "<!-- ************************************************************** -->"
f.puts "<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->"
f.print tail.join("\n")
end
end
def remove_untranslated_strings(*string_files)
Dir.glob("src/main/res/values/strings*.xml").each { |path| index_elements(load(path)) }
string_files.each { |path| clean path }
end
if __FILE__ == $0
lang = ARGV[0]
remove_untranslated_strings("src/main/res/values-#{lang}/strings.xml")
end

@ -1,153 +0,0 @@
#!/usr/bin/env ruby
require 'fileutils'
$:.unshift File.dirname(__FILE__)
require 'clean_translations'
# Script for invoking the GetLocalization tools
# IMPORTANT: Right now, must be invoked from the project's root directory.
# Usage: ./bin/getloc.rb [cmd] [lang]
# cmd: 'export' or 'import'
# lang: Language code or 'master'
PROJECT_NAME='tasks_android'
LANGUAGE_MAP = {
"el" => "grk",
"sk" => "sk-SK",
"hu" => "hu-HU",
"fa" => "pes-IR"
}
# Converts astrid language codes to GetLocalization language codes (which don't use -r)
def astrid_code_to_getloc_code(lang)
(LANGUAGE_MAP[lang] || lang).sub("-r", "-")
end
# Inverse of the above function
def getloc_code_to_astrid_code(lang)
(LANGUAGE_MAP.invert[lang] || lang).sub("-", "-r")
end
# Uploads files for the specified language to GetLocalization
# tmp_files (Array): temporary strings files to use
# lang (String): language code
# src_files_block (lambda): Block for computing the source file list from the language code
def export(tmp_files, lang, src_files_block)
src_files = src_files_block.call(lang)
for i in 0...tmp_files.length
%x(cp #{src_files[i]} #{tmp_files[i]}) if src_files[i] != tmp_files[i]
end
tmp_files.each do |f|
%x(gsed -i "s/\\\\\\'/'/g" #{f})
end
if lang == "master"
tmp_files.each do |f|
puts "Updating master file #{f}"
%x(curl --form file=@#{f} --user "#{@user}:#{@password}" https://api.getlocalization.com/#{PROJECT_NAME}/api/update-master/)
end
else
raise "dont do this if you already exported your translations"
lang_tmp = astrid_code_to_getloc_code(lang)
tmp_files.each do |f|
puts "Updating language file #{f}"
name = File.basename(f)
%x(curl --form file=@#{f} --user "#{@user}:#{@password}" https://api.getlocalization.com/#{PROJECT_NAME}/api/translations/file/#{name}/#{lang_tmp}/)
end
end
end
# Downloads and imports files for the specified language
# tmp_files (Array): temporary strings files to use
# lang (String): language code
# dst_files_block (lambda): Block for computing the destination files list from the language code
def import(tmp_files, lang, dst_files_block)
if lang == "master"
tmp_dir = File.dirname(tmp_files[0])
tmp_all = File.join(tmp_dir, "all.zip")
tmp_all_dir = File.join(tmp_dir, "all")
%x(curl --user "#{@user}:#{@password}" https://api.getlocalization.com/#{PROJECT_NAME}/api/translations/zip/ -o #{tmp_all})
%x(mkdir #{tmp_all_dir})
%x(tar xzf #{tmp_all} -C #{tmp_all_dir})
# Get all translations
Dir.foreach(tmp_all_dir) do |l|
if (l != "." && l != "..")
lang_local = getloc_code_to_astrid_code(l)
dst_files = dst_files_block.call(lang_local)
for i in 0...tmp_files.length
file = File.join(tmp_all_dir, l, File.basename(tmp_files[i]))
%x(gsed -i "s/\\([^\\\\\\]\\)'/\\1\\\\\\'/g" #{file})
puts "Moving #{file} to #{dst_files[i]}"
%x(mv #{file} #{dst_files[i]})
end
end
end
%x(rm -rf #{tmp_all_dir})
%x(rm #{tmp_all})
else
lang_tmp = astrid_code_to_getloc_code(lang)
dst_files = dst_files_block.call(lang)
for i in 0...tmp_files.length
name = File.basename(tmp_files[i])
%x(curl --user "#{@user}:#{@password}" https://api.getlocalization.com/#{PROJECT_NAME}/api/translations/file/#{name}/#{lang_tmp}/ -o #{tmp_files[i]})
%x(gsed -i "s/\\([^\\\\\\]\\)'/\\1\\\\\\'/g" #{tmp_files[i]})
`gsed -i '/\s*<!--.*-->\s*$/d' #{tmp_files[i]}` # strip comments
puts "Moving #{tmp_files[i]} to #{dst_files[i]}"
%x(mv #{tmp_files[i]} #{dst_files[i]})
end
remove_untranslated_strings(*dst_files)
end
end
class Android
def self.tmp_files
FileUtils.mkdir_p "translations"
["translations/strings.xml"]
end
def self.src_files(cmd, type)
if cmd == :export && type == "master"
lambda { |l| ["src/main/res/values/strings.xml"] }
else
lambda { |l| ["src/main/res/values-#{l}/strings.xml"] }
end
end
end
# Main function for invoking the GetLocalization tools
# cmd (String): Command to invoke. Must be 'import' or 'export'
# lang (String): Language code. Can also be 'master' to specify master files for export or all languages for import.
def getloc(cmd, languages)
cmd = cmd.to_sym
raise "must set GETLOC_USER and GETLOC_PASS environment variables" if ENV['GETLOC_USER'].nil? or ENV['GETLOC_PASS'].nil?
@user = ENV['GETLOC_USER']
@password = ENV['GETLOC_PASS']
platform_class = Android
languages.split(',').each do |lang|
case cmd
when :export
puts "Exporting #{lang} files"
export(platform_class.tmp_files, lang, platform_class.src_files(cmd, lang))
when :import
puts "Importing #{lang} files"
import(platform_class.tmp_files, lang, platform_class.src_files(cmd, lang))
else
puts "Command #{cmd} not recognized. Should be one of 'export' or 'import'."
return
end
platform_class.tmp_files.each do |f|
%x(rm -f #{f})
end
end
end
getloc(*ARGV)
Loading…
Cancel
Save