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 28 29 30 31 32 33 34 35 36 37 38 39 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 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 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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
# Copyright (C) 2012-2014 Kouhei Sutou <kou@clear-code.com>
#
# License: Ruby's or LGPL
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require "etc"
require "gettext"
require "gettext/po_parser"
require "gettext/tools/msgmerge"
require "locale/info"
require "optparse"
module GetText
module Tools
class MsgInit
class Error < StandardError
end
class ArgumentError < Error
end
class ValidationError < Error
end
class << self
# Create a new .po file from initializing .pot file with user's
# environment and input.
# @param [Array<String>] arguments arguments for rmsginit.
# @return [void]
def run(*arguments)
new.run(*arguments)
end
end
include GetText
bindtextdomain("gettext")
def initialize
@input_file = nil
@output_file = nil
@locale = nil
@language = nil
@entry = nil
@comment = nil
@translator = nil
@set_translator = true
@translator_name = nil
@translator_eamil = nil
end
# Create .po file from .pot file, user's inputs and metadata.
# @param [Array] arguments the list of arguments for rmsginit
def run(*arguments)
parse_arguments(*arguments)
validate
parser = POParser.new
parser.ignore_fuzzy = false
pot = parser.parse_file(@input_file, GetText::PO.new)
po = replace_pot_header(pot)
File.open(@output_file, "w") do |f|
f.puts(po.to_s)
end
end
private
VERSION = GetText::VERSION
def parse_arguments(*arguments)
parser = OptionParser.new
description = _("Create a new .po file from initializing .pot " +
"file with user's environment and input.")
parser.separator(description)
parser.separator("")
parser.separator(_("Specific options:"))
input_description = _("Use INPUT as a .pot file. If INPUT is not " +
"specified, INPUT is a .pot file existing " +
"the current directory.")
parser.on("-i", "--input=FILE", input_description) do |input|
@input_file = input
end
output_description = _("Use OUTPUT as a created .po file. If OUTPUT " +
"is not specified, OUTPUT depend on LOCALE " +
"or the current locale on your environment.")
parser.on("-o", "--output=OUTPUT", output_description) do |output|
@output_file = output
end
locale_description = _("Use LOCALE as target locale. If LOCALE is " +
"not specified, LOCALE is the current " +
"locale on your environment.")
parser.on("-l", "--locale=LOCALE", locale_description) do |loc|
@locale = loc
end
parser.on("--[no-]translator",
_("Whether set translator information or not"),
_("(set)")) do |boolean|
@set_translator = boolean
end
parser.on("--translator-name=NAME",
_("Use NAME as translator name")) do |name|
@translator_name = name
end
parser.on("--translator-email=EMAIL",
_("Use EMAIL as translator email address")) do |email|
@translator_email = email
end
parser.on("-h", "--help", _("Display this help and exit")) do
puts(parser.help)
exit(true)
end
version_description = _("Display version and exit")
parser.on_tail("-v", "--version", version_description) do
puts(VERSION)
exit(true)
end
begin
parser.parse!(arguments)
rescue OptionParser::ParseError
raise(ArgumentError, $!.message)
end
end
def validate
if @input_file.nil?
@input_file = Dir.glob("./*.pot").first
if @input_file.nil?
raise(ValidationError,
_(".pot file does not exist in the current directory."))
end
else
unless File.exist?(@input_file)
raise(ValidationError,
_("file '%s' does not exist.") % @input_file)
end
end
if @locale.nil?
language_tag = Locale.current
else
language_tag = Locale::Tag.parse(@locale)
end
unless valid_locale?(language_tag)
raise(ValidationError,
_("Locale '%s' is invalid. " +
"Please check if your specified locale is usable.") %
language_tag)
end
@locale = language_tag.to_simple.to_s
@language = language_tag.language
@output_file ||= "#{@locale}.po"
if File.exist?(@output_file)
raise(ValidationError,
_("file '%s' has already existed.") % @output_file)
end
end
def valid_locale?(language_tag)
return false if language_tag.instance_of?(Locale::Tag::Irregular)
Locale::Info.language_code?(language_tag.language)
end
def replace_pot_header(pot)
@entry = pot[""].msgstr
@comment = pot[""].translator_comment
@translator = translator_info
replace_entry
replace_comment
pot[""] = @entry
pot[""].translator_comment = @comment
pot[""].flags = pot[""].flags.reject do |flag|
flag == "fuzzy"
end
pot
end
def translator_info
return nil unless @set_translator
name = translator_name
email = translator_email
if name and email
"#{name} <#{email}>"
else
nil
end
end
def translator_name
@translator_name ||= read_translator_name
end
def read_translator_name
prompt(_("Please enter your full name"), guess_translator_name)
end
def guess_translator_name
name = guess_translator_name_from_password_entry
name ||= ENV["USERNAME"]
name
end
def guess_translator_name_from_password_entry
password_entry = find_password_entry
return nil if password_entry.nil?
name = password_entry.gecos.split(/,/).first.strip
name = nil if name.empty?
name
end
def find_password_entry
Etc.getpwuid
rescue ArgumentError
nil
end
def translator_email
@translator_email ||= read_translator_email
end
def read_translator_email
prompt(_("Please enter your email address"), guess_translator_email)
end
def guess_translator_email
ENV["EMAIL"]
end
def prompt(message, default)
return default if $stdin.eof?
print(message)
print(" [#{default}]") if default
print(": ")
user_input = $stdin.gets.chomp
if user_input.empty?
default
else
user_input
end
end
def replace_entry
replace_last_translator
replace_pot_revision_date
replace_language
replace_plural_forms
end
def replace_comment
replace_description
replace_first_author
replace_copyright_year
@comment = @comment.gsub(/^fuzzy$/, "")
end
EMAIL = "EMAIL@ADDRESS"
FIRST_AUTHOR_KEY = /^FIRST AUTHOR <#{EMAIL}>, (\d+\.)$/
def replace_last_translator
unless @translator.nil?
@entry = @entry.gsub(LAST_TRANSLATOR_KEY, "\\1 #{@translator}")
end
end
POT_REVISION_DATE_KEY = /^(PO-Revision-Date:).+/
def replace_pot_revision_date
@entry = @entry.gsub(POT_REVISION_DATE_KEY, "\\1 #{revision_date}")
end
LANGUAGE_KEY = /^(Language:).+/
LANGUAGE_TEAM_KEY = /^(Language-Team:).+/
def replace_language
language_name = Locale::Info.get_language(@language).name
@entry = @entry.gsub(LANGUAGE_KEY, "\\1 #{@locale}")
@entry = @entry.gsub(LANGUAGE_TEAM_KEY, "\\1 #{language_name}")
end
PLURAL_FORMS =
/^(Plural-Forms:) nplurals=INTEGER; plural=EXPRESSION;$/
def replace_plural_forms
plural_entry = plural_forms(@language)
if PLURAL_FORMS =~ @entry
@entry = @entry.gsub(PLURAL_FORMS, "\\1 #{plural_entry}\n")
else
@entry << "Plural-Forms: #{plural_entry}\n"
end
end
def plural_forms(language)
case language
when "ja", "vi", "ko", /\Azh.*\z/
nplural = "1"
plural_expression = "0"
when "en", "de", "nl", "sv", "da", "no", "fo", "es", "pt",
"it", "bg", "el", "fi", "et", "he", "eo", "hu", "tr",
"ca", "nb"
nplural = "2"
plural_expression = "n != 1"
when "pt_BR", "fr"
nplural = "2"
plural_expression = "n>1"
when "lv"
nplural = "3"
plural_expression = "n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2"
when "ga"
nplural = "3"
plural_expression = "n==1 ? 0 : n==2 ? 1 : 2"
when "ro"
nplural = "3"
plural_expression = "n==1 ? 0 : " +
"(n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2"
when "lt", "bs"
nplural = "3"
plural_expression = "n%10==1 && n%100!=11 ? 0 : " +
"n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2"
when "ru", "uk", "sr", "hr"
nplural = "3"
plural_expression = "n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"
when "cs", "sk"
nplural = "3"
plural_expression = "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"
when "pl"
nplural = "3"
plural_expression = "n==1 ? 0 : n%10>=2 && " +
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"
when "sl"
nplural = "4"
plural_expression = "n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 " +
"|| n%100==4 ? 2 : 3"
else
nplural = nil
plural_expression = nil
end
"nplurals=#{nplural}; plural=#{plural_expression};"
end
DESCRIPTION_TITLE = /^SOME DESCRIPTIVE TITLE\.$/
def replace_description
language_name = Locale::Info.get_language(@language).name
package_name = ""
@entry.gsub(/Project-Id-Version: (.+?) .+/) do
package_name = $1
end
description = "#{language_name} translations " +
"for #{package_name} package."
@comment = @comment.gsub(DESCRIPTION_TITLE, "\\1 #{description}")
end
YEAR_KEY = /^(FIRST AUTHOR <#{EMAIL}>,) YEAR\.$/
LAST_TRANSLATOR_KEY = /^(Last-Translator:) FULL NAME <#{EMAIL}>$/
def replace_first_author
@comment = @comment.gsub(YEAR_KEY, "\\1 #{year}.")
unless @translator.nil?
@comment = @comment.gsub(FIRST_AUTHOR_KEY, "#{@translator}, \\1")
end
end
COPYRIGHT_KEY = /^(Copyright \(C\)) YEAR (THE PACKAGE'S COPYRIGHT HOLDER)$/
def replace_copyright_year
@comment = @comment.gsub(COPYRIGHT_KEY, "\\1 #{year} \\2")
end
def now
@now ||= Time.now
end
def revision_date
now.strftime("%Y-%m-%d %H:%M%z")
end
def year
now.year
end
end
end
end
|