diff options
Diffstat (limited to 'vendor/gems/gettext-2.1.0/samples/cgi')
207 files changed, 6045 insertions, 0 deletions
diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/README b/vendor/gems/gettext-2.1.0/samples/cgi/README new file mode 100644 index 000000000..1a01ae2c1 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/README @@ -0,0 +1,43 @@ +Sample script for CGI/ERB and Ruby-GetText-Package. + +At first, create mo file once: +$ rake + +# You need 'rake' to execute it. + +(One click ruby installer for Windonws user only) +Edit ruby.bat to fit your environment. If you don't have GTK, +removes 'set PATH=c:\gtk\bin' line. + +Then run the http server. +$ ruby http.rb + +Access the http server from WWW browser: + +http://localhost:10080/ +http://localhost:10080/1 +http://localhost:10080/2 + +or + +If you want to set locale(lang) forcely, then: + +http://localhost:10080/?lang=ja +http://localhost:10080/1?lang=ja +http://localhost:10080/2?lang=ja + #ja is a target locale in this sample. + +http.rb - an http server for samples using WEBrick +Rakefile - a Rakefile to create mo files from po files. + +index.cgi - a sample menu (CGI sample) - textdomain: main +cookie.cgi - a sample menu (CGI sample) - textdomain: main +helloerb1.cgi - an ERB/CGI sample (UTF-8) - textdomain: helloerb1 +helloerb2.cgi - an ERB/CGI sample (Auto-Detect) - textdomain: helloerb2 + +helloerb.rhtml - an ERB file (used from both of helloerb1/helloerb2) +other.rhtml - an ERB file (used from helloerb1) + +hellolib.rb - a smple library called from helloerb.rhtml which have an + independent textdomain: hellolib +ruby.bat - Execute ruby interpreter on Win32. diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/Rakefile b/vendor/gems/gettext-2.1.0/samples/cgi/Rakefile new file mode 100644 index 000000000..2d64b69fa --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/Rakefile @@ -0,0 +1,27 @@ +task :default => [:makemo] + +require 'gettext/tools' + +desc "Create *.mo from *.po" +task :makemo do + GetText.create_mofiles(:mo_root => "locale") +end + +desc "Update pot/po files to match new version." +task :updatepo do +=begin + GetText.update_pofiles("helloerb1", + ["helloerb1.cgi", "helloerb.rhtml", "other.rhtml"], + "cgi-sample 1.1.1") + GetText.update_pofiles("helloerb2", + ["helloerb2.cgi", "helloerb.rhtml"], + "cgi-sample 1.1.1") + GetText.update_pofiles("hellolib", + ["hellolib.rb"], + "cgi-sample 1.1.1") +=end + GetText.update_pofiles("main", + ["index.cgi", "cookie.cgi"], + "cgi-sample 1.1.1") +end + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/cookie.cgi b/vendor/gems/gettext-2.1.0/samples/cgi/cookie.cgi new file mode 100755 index 000000000..8a4971e1d --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/cookie.cgi @@ -0,0 +1,64 @@ +#!/usr/bin/env ruby +=begin + cookie.cgi - Set a selected locale to the cookie of WWW Browser. + + Set UTF-8 forcely as output charset. + + Recommanded to set UTF-8 forcely because some web browser + doesn't send HTTP_ACCEPT_CHARSET correctly. + + Copyright (C) 2005 Masao Mutoh + + You may redistribute it and/or modify it under the same + license terms as Ruby. +=end +$:.insert(0, "../../lib") + +# gettext/cgi support CGI. +begin + require 'rubygems' +rescue LoadError +end + +require 'gettext/cgi' + +include GetText + +# Configure GetText first. +set_output_charset("UTF-8") +set_cgi(CGI.new) +bindtextdomain("main", "locale") + +lang = GetText.cgi['lang'] +lang = "en" unless lang.size > 0 + +# +# CGI part +# +print "Set-Cookie:lang=#{lang}\n" +print "Content-type:text/html; charset=UTF-8\n\n" + +puts %Q[ +<head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <link rel="stylesheet" type="text/css" href="gettext.css" media="all"> + <title>] +puts _("Sample script for CGI/ERB and Ruby-GetText-Package") +puts %Q[</title> +</head> +<body> +] + +puts "<h1>" + _("Set [%s] as the cookie of your WWW Browser.") % lang + "</h1>" + +puts %Q[</h1> + <p><a href="/">] +puts _("Back") +puts %Q[</a></p> + <div style="text-align:right"> + <p>Copyright (C) 2005 Masao Mutoh</p> + </div> + </body> +</html> +] + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/gettext.css b/vendor/gems/gettext-2.1.0/samples/cgi/gettext.css new file mode 100644 index 000000000..311d1124c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/gettext.css @@ -0,0 +1,116 @@ +/* + CSS for Ruby-GetText-Package + by Masao Mutoh. +*/ + +body { + margin: 0px; + padding: 0px; + color: #000; + background-color: #fff; + font-size: 90%; + font-family: Times, Sans-Serif; + line-height: 1.5em; +} + +h1 { + color: #002288; + text-align: left; + clear: both; + padding:0.4em; + font-weight: bold; + font-size: 1.8em; + padding-left:0.5em; + padding-right:10px; + margin-top: 10px; + margin-left: 20px; + margin-bottom:1em; + margin-right:5px; + border: solid thin; + border-left: solid; + border-color: #9999ff; + border-top-width: 0px; + border-right-width: 0px; + border-bottom-width: 1px; + border-left-width: 15px; +} +h2 { + margin: 0px; + font-size: large; + font-weight: bold; + font-size: 1.4em; + padding: 0.3em; + padding-left:0.5em; + padding-right:10px; + margin-top: 1em; + margin-left: 1.5em; + margin-right: 10px; + margin-bottom:0.8em; + border: solid thin; + border-left: solid; + border-color: #9999ff; + border-top-width: 0px; + border-right-width: 0px; + border-bottom-width: 1px; + border-left-width: 15px; + +} + +h3 { + margin:1em; + margin-bottom: 0.5em; + margin-top: 1.5em; + margin-left: 2em; + margin-right: 24px; + padding: 0.1em; + padding-top: 0; + padding-left: 0.7em; + font-size: 1.2em; + border-style: dashed; + border-width: 0px 0px 1px 1px; + border-color: #ddddff; +} + +p { + padding-left: 1em; + padding-right: 1em; + margin-top: 0px; + margin-left: 1.5em; + margin-right: 1em; + margin-bottom: 0.5em; +} + +ol, ul { + margin-top: 0.2em; + margin-left: 3em; + padding-left: 1.5em; +} + +li { + margin-top: 0.2em; + margin-left: 0em; + padding-left: 0em; + line-height: 1.2em; +} + +.locale { + margin: 2em; + padding: 1em; + border-style: solid; + border-width: 1px 1px 1px 1px; + border-color: #ddddff; +} + +pre { + margin: 2em; + padding: 1em; + border-style: solid; + border-width: 1px 1px 1px 1px; + border-color: #ddddff; + background-color: #eeffee; +} + +.copyright { + text-align: right; + padding: 2em; +} diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/helloerb.rhtml b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb.rhtml new file mode 100644 index 000000000..576a21e40 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb.rhtml @@ -0,0 +1,28 @@ +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=<%= GetText.output_charset %>"> + <link rel="stylesheet" type="text/css" href="gettext.css" media="all"> +<title><%= _("Sample script for CGI/ERB and Ruby-GetText-Package") %></title> +</head> +<body> +<% + require 'hellolib' + require 'cgi' + lib = HelloLib.new +%> +<h1><%= _("Hello World") %> - <%= @domainname %></h1> +<p><%= description %></p> +<div class="locale"> +<p><%= _("locale") %>: <%= Locale.get %></p> +<p><%= _("output_charset") %>: <%= GetText.output_charset %></p> +<p><%= _("QUERY_STRING") %>: <%= cgi.query_string %></p> +</div> +<p><%= _("Call a library method which has another textdomain.") %></p> +<div class="locale"><%= lib.hello %></div> +<p><a href="/"><%= _("Back") %></a></p> + +<div class="copyright"> +Copyright (C) 2005 Masao Mutoh +</div> +</body> +</html> diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/helloerb1.cgi b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb1.cgi new file mode 100755 index 000000000..fa0ed80ce --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb1.cgi @@ -0,0 +1,58 @@ +#!/usr/bin/env ruby +=begin + helloerb1.cgi - Sample script for CGI/ERB + + Set UTF-8 forcely as output charset. + + Recommanded to set UTF-8 forcely because some web browser + doesn't send HTTP_ACCEPT_CHARSET correctly. + + Copyright (C) 2005-2009 Masao Mutoh + + You may redistribute it and/or modify it under the same + license terms as Ruby. +=end +$:.insert(0, "../../lib") + +begin + require 'rubygems' +rescue LoadError +end + +require 'erb' +require 'gettext/cgi' + +class SimpleContainer1 + include GetText + + + def initialize(domainname, domainpath, cgi) + set_cgi(cgi) + bindtextdomain(domainname, :path => domainpath) + @domainname = domainname + end + + def description + _("Sample script for CGI/ERB (UTF-8).") + end + + def to_html(path) + erb = ERB.new(IO.read(path)).src + eval(erb, binding) + end +end + + +GetText.output_charset = "UTF-8" + +print "Content-type:text/html; charset=UTF-8\n\n" + +cgi = CGI.new + +con = SimpleContainer1.new("helloerb1", "locale", cgi) + +if GetText.cgi["other"] == "true" + print con.to_html("other.rhtml") +else + print con.to_html("helloerb.rhtml") +end diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/helloerb2.cgi b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb2.cgi new file mode 100755 index 000000000..735f70f69 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/helloerb2.cgi @@ -0,0 +1,51 @@ +#!/usr/bin/env ruby +=begin + helloerb2.cgi - Sample script for CGI/ERB + + Set locale/charset automaticaly. + (from HTTP_ACCEPT_LANGUAGE, HTTP_ACCEPT_CHARSET sended by web browser). + + Recommanded to set UTF-8 forcely because some web browser + doesn't send HTTP_ACCEPT_CHARSET correctly.(See helloerb.cgi) + + Copyright (C) 2005 Masao Mutoh + + You may redistribute it and/or modify it under the same + license terms as Ruby. +=end +$:.insert(0, "../../lib") + +begin + require 'rubygems' +rescue LoadError +end + +require 'gettext/cgi' +require 'erb' + +class SimpleContainer2 + include GetText + + def initialize(domainname, domainpath) + bindtextdomain(domainname, :path => domainpath) + @domainname = domainname + end + + def description + _("Sample script for CGI/ERB (Auto-Detect charset).") + end + + def to_html(path) + erb = ERB.new(IO.read(path)).src + eval(erb, binding) + end +end + +cgi = CGI.new +GetText.set_cgi(cgi) + +print "Content-type:text/html; charset=#{Locale.charset}\n\n" + +con = SimpleContainer2.new("helloerb2", "locale") + +print con.to_html("helloerb.rhtml") diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/hellolib.rb b/vendor/gems/gettext-2.1.0/samples/cgi/hellolib.rb new file mode 100644 index 000000000..1e206bc7e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/hellolib.rb @@ -0,0 +1,18 @@ +#!/usr/bin/ruby +# hellolib.rb +# +# Copyright (C) 2005-2009 Masao Mutoh +# +# This file is distributed under the same +# license as Ruby-GetText-Package. +# + +require 'gettext' + +class HelloLib + include GetText + bindtextdomain("hellolib", "locale") + def hello + _("This message is from hellolib.") + end +end diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/http.rb b/vendor/gems/gettext-2.1.0/samples/cgi/http.rb new file mode 100755 index 000000000..632a9a211 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/http.rb @@ -0,0 +1,49 @@ +#! /usr/bin/env ruby +=begin + http.rb - An WebServer for helloerb sample. + + Copyright (C) 2005-2009 Masao Mutoh + + You may redistribute it and/or modify it under the same + license terms as Ruby or LGPL. +=end + +require 'webrick' +require 'cgi' +require 'rbconfig' + +interpreter = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']) + + Config::CONFIG['EXEEXT'] + +srv = WEBrick::HTTPServer.new({:BindAddress => '127.0.0.1', + :Logger => WEBrick::Log::new($stderr, WEBrick::Log::DEBUG), + :CGIInterpreter => interpreter, + # :CGIInterpreter => "ruby -d", + :Port => 10080}) + +['INT', 'TERM'].each { |signal| + trap(signal){ srv.shutdown} +} + +srv.mount("/", WEBrick::HTTPServlet::FileHandler, File.expand_path('.')) + +srv.mount_proc("/src/") do |req, res| + res.header["Content-Type"] = "text/html; charset=UTF-8" + if req.query_string + file = File.open(req.query_string).read + res.body = %Q[<html> + <head> + <title>View a source code</title> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <link rel="stylesheet" type="text/css" href="/gettext.css" media="all"> + </head> + <body><h1>#{req.query_string}</h1> + <pre>#{CGI.escapeHTML(file)}</pre> + <p><a href="/">Back</a></p> + </body> + </html> + ] + end +end + +srv.start diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/index.cgi b/vendor/gems/gettext-2.1.0/samples/cgi/index.cgi new file mode 100755 index 000000000..27f18cdd7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/index.cgi @@ -0,0 +1,111 @@ +#!/usr/bin/env ruby +=begin + hello.cgi - Sample script for CGI + + Set UTF-8 forcely as output charset. + + Recommanded to set UTF-8 forcely because some web browser + doesn't send HTTP_ACCEPT_CHARSET correctly. + + Copyright (C) 2005 Masao Mutoh + + You may redistribute it and/or modify it under the same + license terms as Ruby. +=end +$:.insert(0, "../../lib") + +# gettext/cgi support CGI. +begin + require 'rubygems' +rescue LoadError +end + +require 'gettext/cgi' + +include GetText +set_cgi(CGI.new) + +print "Content-type:text/html; charset=UTF-8\n\n" + +# Configure GetText first. +set_output_charset("UTF-8") +bindtextdomain("main", "locale") + +langs = ["en"] + Dir.glob("locale/*").collect{|item| File.basename(item)} +langs.sort! + +urls = [ + ["helloerb1.cgi", N_("an ERB/CGI sample (UTF-8).")], + ["helloerb1.cgi?other=true", N_("an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 but has a different rhtml file.")], + ["helloerb2.cgi", N_("an ERB/CGI sample (Auto-Detect charset).")] +] + + +# +# CGI part +# + +puts %Q[<html><head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <link rel="stylesheet" type="text/css" href="gettext.css" media="all"> + <title>] +puts _("Sample script for CGI/ERB and Ruby-GetText-Package") +puts "</title> +</head> +<body> +<h1>" +puts _("Ruby-GetText CGI sample scripts") +puts "</h1>" +puts "<p>" + _("Supported Locales:") + "[#{langs.join(", ")}]</p>" +puts "<h2>" + _("Auto-Detect a locale from the WWW browser") + "</h2>" +puts "<ol>" + +urls.each do |url, desc| + puts "<li><a href=\"/#{url}\">#{url}</a><br/>" + _(desc) + "</a></li>" +end +puts "</ol>" + +puts "<h2>" + _('Set locale as a "lang" parameter') + "</h2>" + +langs.each do |lang| + puts "<h3>[#{lang}]</h3>" + puts "<ol>" + urls.each do |url, desc| + if /\?other/ =~ url + url += "&lang=" + lang + else + url += "?lang=" + lang + end + puts "<li><a href=\"#{url}\">#{CGI.escapeHTML(url)}</a><br/>" + _(desc) + "</li>" + end + puts "</ol>" +end + +puts "<h2>" + _('Set "lang" to cookie.') + "</h2>" +puts "<p>" + _('Click one of the link below, and then click "Auto-Detect a locale from the WWW browser" samples.') + "</p>" +puts "<ol>" + +langs.each do |lang| + url = "cookie.cgi?lang=" + lang + puts "<li><a href=\"#{url}\">#{CGI.escapeHTML(url)}</a> [#{lang}]</li>" +end + +puts "</ol>" +puts "<h2>" + _("Source codes") + "</h2>" +puts "<ol>" + +Dir.glob("*cgi\0*rb\0*rhtml)").sort.each do |src| + unless /http.rb|makemo.rb/ =~ src + puts %Q[<li><a href="/src/?#{src}">#{src}</a></li>] + end +end +puts %Q[</ol> +<hr/> + <div class="copyright"> + <p>] + _("index.cgi is also a Ruby-GetText sample script using CGI(not ERB).")+ %Q[</p> + <p>Copyright (C) 2005-2008 Masao Mutoh</p> + </div> +</body> +</html> +] + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..e96a12e93 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..a2de8f91b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..90eb8d31b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..47dfec9ac --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bg/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..4d8808fa4 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..969eab454 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..5c58dde53 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..e8f4340be --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/bs/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..464a79dc0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..2c1673430 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..4d99d98a2 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..3f2cef213 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ca/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..569cf4772 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..02cea3e73 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..d0f58e302 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..c9888fc3f --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/cs/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..2a0c734e1 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..e3e3ef4b8 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..efa0578d4 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..6b724c74b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/de/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..86c1c51b7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..2d14a4998 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..8e856c179 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..a5390fcad --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/el/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..243a18b34 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..6f1938bf9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..3490a1ce0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..31a29fae1 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/eo/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..d7ee2c59c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..2d0af38c2 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..b5de80b3f --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..1296a01ec --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/es/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..011e5936b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..4b6efb5fe --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..58789eed5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..63073388c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/fr/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..7ccf62008 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..de94ac9b6 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..1c1c5ecfd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..00ee53f0e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hr/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..f2137dde7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..f60e2264f --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..2226c7276 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..b25083d12 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/hu/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..819067d8e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..78f810926 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..515e2258c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..b9235997b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/it/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..387825e41 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..e528c91d6 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..1a0c36067 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..94e4a69e7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ja/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..01730b1a4 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..60925a913 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..b7d743440 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..444436a27 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ko/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..4f19dc8a3 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..a4d34f497 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..3a0db00e7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..aa5699a6b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/lv/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..ee9f55fa3 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..1ba22a6dc --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..17dc42f2b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..d6d86f790 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nb/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..ea41f80e4 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..b67b63c53 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..f79df2d7a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..46f06f65b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/nl/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..a7e6187c4 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..bd1e3f6b0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..eb39917ff --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..4c0293b96 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..1dd2d9ed8 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..83dac1ebb --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..3579c8c97 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..b25f01cb1 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ru/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..cd586ab58 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..5df810b93 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..2a7e09c74 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..52de34239 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/sr/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..6ca0fab00 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..0beaac2fd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..5779dc393 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..3e1306286 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/ua/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..e31170cb9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..0a4d38f74 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..f1b2933c5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..aba1b4c06 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/vi/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..a752fa928 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..f2176ab82 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..9911f26eb --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..24ce4320c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo Binary files differnew file mode 100644 index 000000000..02f4d4964 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo Binary files differnew file mode 100644 index 000000000..e68ccaeca --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo Binary files differnew file mode 100644 index 000000000..522439272 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo Binary files differnew file mode 100644 index 000000000..7bb441826 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/other.rhtml b/vendor/gems/gettext-2.1.0/samples/cgi/other.rhtml new file mode 100644 index 000000000..2dd2ce968 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/other.rhtml @@ -0,0 +1,20 @@ +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=<%= GetText.output_charset %>"> + <link rel="stylesheet" type="text/css" href="gettext.css" media="all"> +<title><%= _("Sample script for CGI/ERB and Ruby-GetText-Package") %></title> +</head> +<body> +<h1><%= _("Another sample") %> - <%= @domainname %></h1> +<p><%= _("This sample(other.rhtml) is the another ERB file of helloerb1.cgi.") %></p> +<div class="locale"> +<p><%= _("locale") %>: <%= Locale.get %></p> +<p><%= _("output_charset") %>: <%= GetText.output_charset %></p> +<p><%= _("QUERY_STRING") %>: <%= CGI.escapeHTML(cgi.query_string) %></p> +</div> +<p><a href="/"><%= _("Back") %></a></p> +<div class="copyright"> +Copyright (C) 2005 Masao Mutoh +</div> +</body> +</html> diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb1.po new file mode 100644 index 000000000..d2a6d524e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Georgi Stoimenov <georgistoimenov@abv.bg>, 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: Sava Chankov <sava.chankov@gmail.com>\n" +"Language-Team: Bulgarian <ruby-on-rails-bulgaria@googlegroups.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Примерен CGI/ERB скрипт (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Примерен скрипт, ползващ CGI/ERB и Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Гепи копеле" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "локал" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "изходно_кодиране" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "НИЗ_С_ПАРАМЕТРИ" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Извикване на метод от библиотеката, който принадлежи на друга текстова област" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Назад" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Друг пример" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Този пример (other.rhtml) е другия ERB файл от helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb2.po new file mode 100644 index 000000000..5d175349a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Georgi Stoimenov <georgistoimenov@abv.bg>, 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Sava Chankov <sava.chankov@gmail.com>\n" +"Language-Team: Bulgarian <ruby-on-rails-bulgaria@googlegroups.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Примерен CGI/ERB скрипт (автоматично разпознаване на кодирането)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Примерен скрипт, ползващ CGI/ERB и Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Гепи копеле" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "локал" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "изходно_кодиране" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "НИЗ_С_ПАРАМЕТРИ" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Извикване на метод от библиотеката, който принадлежи на друга текстова област" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/hellolib.po new file mode 100644 index 000000000..0e78a7ddf --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Georgi Stoimenov <georgistoimenov@abv.bg>, 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Sava Chankov <sava.chankov@gmail.com>\n" +"Language-Team: Bulgarian <ruby-on-rails-bulgaria@googlegroups.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Поздрави от hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/main.po new file mode 100644 index 000000000..f662d8ac9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bg/main.po @@ -0,0 +1,83 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Georgi Stoimenov <georgistoimenov@abv.bg>, 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Sava Chankov <sava.chankov@gmail.com>\n" +"Language-Team: Bulgarian <ruby-on-rails-bulgaria@googlegroups.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB/CGI пример (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ERB/CGI пример (UTF-8). Този пример ползва същия контролер като пример 1 " +"но с различен rhtml файл." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB/CGI пример (автоматично разпознаване на кодирането)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Примерен скрипт, ползващ CGI/ERB и Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI примерни скриптове" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Поддържани локали:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Аавтоматично разпознаване на локал, зададен от браузъра" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Изберете локал с параметъре \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "\"lang\" като бисквитка (cookie)." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Щракнете върху една от връзките по-надолу и после на примерите с " +"\"Автоматично разпознаване на локал, зададен от браузъра\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Изходен код" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi е също така примерен скрипт, ползващ Ruby-GetText и CGI (без ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "[%s] като бисквитка (cookie) във вашия браузър." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb1.po new file mode 100644 index 000000000..ffb2b5c8c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb1.po @@ -0,0 +1,59 @@ +# translation of helloerb1.po to Bosnian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: helloerb1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2007-03-20 20:32+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Bosnian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Primjer skripte za CGI/ERB" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby on Rails GetText Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Zdravo Svijetu" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "lokal" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "izlazni_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "UPITNA_NISKA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Pozovi biblioteku koja ima drugu tekst domenu." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Nazad" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Drugi primjer" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Ovaj primjer(other.rhtml) je druga ERB datoteka helloerb1.cgi-a." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb2.po new file mode 100644 index 000000000..6f93f7fb6 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/helloerb2.po @@ -0,0 +1,51 @@ +# translation of helloerb2.po to Bosnian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: helloerb2\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2007-03-20 20:32+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Bosnian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Primjer skripte za CGI/ERB (Auto-Detektovanje skupakaraktera)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby on Rails GetText Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Zdravo Svijetu" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "lokal" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "izlazni_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "UPITNA_NISKA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Pozovi biblioteku koja ima drugu tekst domenu." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Nazad" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/hellolib.po new file mode 100644 index 000000000..e4ee657f9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/hellolib.po @@ -0,0 +1,23 @@ +# translation of hellolib.po to Bosnian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: hellolib\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2007-03-20 20:19+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Bosnian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Ova poruka je iz hellolib-a." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/main.po new file mode 100644 index 000000000..7a0a1aaa9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/bs/main.po @@ -0,0 +1,83 @@ +# translation of main.po to Bosnian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: main\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2007-03-20 20:30+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Bosnian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB-CGI primjer (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ERB-CGI primjer (UTF-8). Ovaj primjer koristi isti kontejner kao primjer 1 " +"ali ima drugačiji rhtml file" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB-CGI primjer (Auto-Pronalaženje charset-a)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby GetText Paketa" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI primjer skripta" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Podržani Lokali:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Pronalaženje lokala iz WWW preglednika" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Postavi lokal kao \"lang\" parametar" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Postavi \"lang\" u cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Izaberi jednu prećicu odozdo, i izaberi \"Auto-Pronalaženje lokala iz " +"WWW preglednika\" primjer." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Izvorni kodovi" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi je također Ruby-GetText primjer skripte koja koristi CGI(ne ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Postavi [%s] kao cookie u vašem WWW Pregledniku." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Nazad" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb1.po new file mode 100644 index 000000000..5cdc71d65 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ramon Salvadó <rsalvado at gnuine.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-12-20 10:33+0900E\n" +"Last-Translator: Ramon Salvadó <rsalvado at gnuine.com>\n" +"Language-Team: Catalan\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Script d'exemple per a CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script d'exemple per a CGI/ERB i Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hola Món" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Crida a un mètode d'una llibreria que té un altre textdomain" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Enrere" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Un altre exemple" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Aquest exemple(other.rhtml) és un altre fitxer ERB de helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb2.po new file mode 100644 index 000000000..e6352b19a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ramon Salvadó <rsalvado at gnuine.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-12-20 10:33+0900E\n" +"Last-Translator: Ramon Salvadó <rsalvado at gnuine.com>\n" +"Language-Team: Catalan\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Script d'exemple per a CGI/ERB (Auto-detecció de charset)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script d'exemple per a CGI/ERB i Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hola Món" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Crida a un mètode d'una llibreria que té un altre textdomain." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Enrere" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/hellolib.po new file mode 100644 index 000000000..e29f35034 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ramon Salvadó <rsalvado at gnuine.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-12-20 10:33+0900E\n" +"Last-Translator: Ramon Salvadó <rsalvado at gnuine.com>\n" +"Language-Team: Catalan\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Aquest és el missatge de hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/main.po new file mode 100644 index 000000000..a9c3b1ae5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ca/main.po @@ -0,0 +1,83 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ramon Salvadó <rsalvado at gnuine.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-12-20 10:33+0900E\n" +"Last-Translator: Ramon Salvadó <rsalvado at gnuine.com>\n" +"Language-Team: Catalan\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "un exemple d'ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"Un exemple d'ERB/CGI (UTF-8). Aquest exemple utilitza el mateix contenidor que l'exemple 1 " +"però té un fitxer rhtml diferent." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "un exemple d'ERB/CGI (Auto-detecció charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script d'exemple per CGI/ERB i Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Scripts d'exemple per Ruby-GetText CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Locales suportats:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Detecció del locale des del navegador WWW" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Fixa el locale com a paràmetre \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Fixa \"lang\" a la galeta." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Clica un dels següents enllaços i seguidament clica a \"Exemples d'Auto-Detecció del locale des del " +"navegador WWW\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Codis font" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi és també un exemple de script Ruby-GetText utilitzant CGI(no ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Fixa [%s] com la galeta del teu navegaor WWW." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Enrere" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb1.po new file mode 100644 index 000000000..0aa369da0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb1.po @@ -0,0 +1,61 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Karel Miarka <kajism@yahoo.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-12-17 21:13+0100\n" +"Last-Translator: Karel Miarka <kajism@yahoo.com>\n" +"Language-Team: Czech\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Poedit-Language: Czech\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Ukázkový skript pro CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Ukázkový skript pro CGI/ERB a Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Ahoj Světe" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Zavolat knihovní metodu, která má jinou textdomain." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Zpět" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Další příklad" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Tato úkázka (other.rhtml) je další z ERB souborů helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb2.po new file mode 100644 index 000000000..7f2709798 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Karel Miarka <kajism@yahoo.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-12-17 21:16+0100\n" +"Last-Translator: Karel Miarka <kajism@yahoo.com>\n" +"Language-Team: Czech\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Ukázkový skript pro CGI/ERB (Auto-Detect charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Ukázkový skript pro CGI/ERB a Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Ahoj Světe" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Zavolat knihovní metodu, která má jinou textdomain." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Zpět" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/hellolib.po new file mode 100644 index 000000000..7bf7dd3b7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/hellolib.po @@ -0,0 +1,25 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Karel Miarka <kajism@yahoo.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-12-17 21:20+0100\n" +"Last-Translator: Karel Miarka <kajism@yahoo.com>\n" +"Language-Team: Czech\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Poedit-Language: Czech\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Tato zpráva je z hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/main.po new file mode 100644 index 000000000..47c2cd918 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/cs/main.po @@ -0,0 +1,85 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Karel Miarka <kajism@yahoo.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-12-17 21:28+0100\n" +"Last-Translator: Karel Miarka <kajism@yahoo.com>\n" +"Language-Team: Czech\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Poedit-Language: Czech\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ukázka ERB/CGI (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ukázka ERB/CGI (UTF-8). Tato ukázka používá stejný container jako ukázka 1, " +"ale jiný rhtml soubor." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ukázka ERB/CGI (Auto-Detect charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Ukázkový skript pro CGI/ERB a Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText ukázkový CGI skript" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Podporované jazyky:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Automatická detekce jazyka z WWW prohlížeče" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Nastavit jazyk parametrem \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Nastavit cookie \"lang\"" + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Klikněte na jeden z níže uvedených odkazů a pak klikněte na \"Automatická " +"detekce jazyka z WWW prohlížeče\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Zdrojové kódy" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi je také ukázka Ruby-GetText CGI skriptu (bez ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Nastavit [%s] jako cookie Vašeho WWW prohlížeče." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Zpět" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb1.po new file mode 100644 index 000000000..7c82708bd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb1.po @@ -0,0 +1,61 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Detlef Reichl <detlef!reichl()gmx!org, 2005 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-24 17:10+0100\n" +"Last-Translator: Detlef Reichl <detlef!reichl()gmx!org\n" +"Language-Team: German\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Beispielskript für CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Beispielskript für CGI/ERB und Ruby-GetText-Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hallo Welt" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Aufruf einer Bibiotheksmethode welche eine andere textdomain hat." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Zurück" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Ein weiteres Beispiel" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "" +"Dieses Beispiel (other.rhtml) ist eine weitere ERB-Datei von helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb2.po new file mode 100644 index 000000000..1d443d22c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Detlef Reichl <detlef!reichl()gmx!org, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-04-24 17:10+0100\n" +"Last-Translator: Detlef Reichl <detlef!reichl()gmx!org\n" +"Language-Team: German\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Beispielskript für CGI/ERB (Autoerkennung des Zeichensatzes)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Beispielskript für CGI/ERB und Ruby-GetText-Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hallo Welt" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Aufruf einer Bibiotheksmethode welche eine andere textdomain hat." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Zurück" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/de/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/hellolib.po new file mode 100644 index 000000000..d5b1f1c21 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Detlef Reichl <detlef!reichl()gmx!org, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-04-24 17:10+0100\n" +"Last-Translator: Detlef Reichl <detlef!reichl()gmx!org\n" +"Language-Team: German\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Diese Meldung kommt von hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/de/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/main.po new file mode 100644 index 000000000..b3880623b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/de/main.po @@ -0,0 +1,86 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Detlef Reichl <detlef!reichl()gmx!org, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-04-24 17:10+0100\n" +"Last-Translator: Detlef Reichl <detlef!reichl()gmx!org\n" +"Language-Team: German\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ein ERB/CGI Beispiel (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ein ERB/CGI Beispiel (UTF-8). Diese Beispiel verwendet den gleichen " +"Container wie Beispiel 1 aber eine andere rhtml-Datei." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "Beispielskript für CGI/ERB (Autoerkennung des Zeichensatzes)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Beispielskript für CGI/ERB und Ruby-GetText-Paket" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI Beispielskript" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Unterstützte Locales:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Erkennung eines locale vom Webbrowser" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Setze locale als einen \"lang\" Parameter" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Setze \"lang\" als Cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Klicke auf den unteren Link und dann klicke \"Auto-Erkennung eines locale " +"vom Webbrowser\" Beispiele." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Quelltexte" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi ist ebenso ein Ruby-GetText Beispielskript das CGI nutzt (nicht " +"ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Setze [%s] als ein Cookie Deines Webbrowsers." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Zurück" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb1.po new file mode 100644 index 000000000..4dff23986 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# damphyr <damphyr@gmx.net>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2006-01-06 19:50+0100\n" +"Last-Translator: damphyr <damphyr@gmx.net>\n" +"Language-Team: Greek\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Υπόδειγμα για CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Υπόδειγμα για CGI/ERB και τη βιβλιοθήκη Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Γειά σου Κόσμε" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Κλήση μεθόδου βιβλιοθήκης που έχει διαφορετικό πεδίο κειμένου" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Πίσω" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Άλλο ένα υπόδειγμα" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "" +"Αυτό το υπόδειγμα (other.rhtml) είναι άλλο ένα ERB αρχείο του helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb2.po new file mode 100644 index 000000000..448db25e0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# damphyr <damphyr@gmx.net>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2006-01-06 19:50+0100\n" +"Last-Translator: damphyr <damphyr@gmx.net>\n" +"Language-Team: Greek\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Υπόδειγμα για CGI/ERB (Αυτόματη αναγνώριση συνόλου χρακτήρων)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Υπόδειγμα για CGI/ERB και τη βιβλιοθήκη Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Γειά σου Κόσμε" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Κλήση μεθόδου βιβλιοθήκης που έχει διαφορετικό πεδίο κειμένου" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Πίσω" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/el/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/hellolib.po new file mode 100644 index 000000000..88ce0aae6 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# damphyr <damphyr@gmx.net>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2006-01-06 19:50+0100\n" +"Last-Translator: damphyr <damphyr@gmx.net>\n" +"Language-Team: Greek\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Αυτό το μύνημα είναι από τη hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/el/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/main.po new file mode 100644 index 000000000..b57b3a9c2 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/el/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# damphyr <damphyr@gmx.net>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2006-01-06 19:50+0100\n" +"Last-Translator: damphyr <damphyr@gmx.net>\n" +"Language-Team: Greek\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ένα υπόδειγμα ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "ένα υπόδειγμα ERB/CGI (UTF-8). Αυτό το υπόδειγμα χρησιμοποιεί " + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ένα υπόδειγμα για CGI/ERB (αυτόματη αναγνώριση συνόλου χρακτήρων)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Υπόδειγμα για CGI/ERB και τη βιβλιοθήκη Ruby-GetText" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText υποδείγματα CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Υποστηριζόμενα locale" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Αυτόματη αναγνώριση locale από τον browser" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Set locale as a \"lang\" parameter" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Set \"lang\" to cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Ακολούθησε έναν από τους δεσμούς και επέλεξε τα υποδείγματα \"Αυτόματη " +"αναγνώριση locale από τον browser\"" + +#: index.cgi:92 +msgid "Source codes" +msgstr "Κώδικας" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"Το index.cgi είναι επίσης ένα υπόδειγμα χρήσης Ruby-GetText με CGI (χωρίς " +"ERB)" + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "" +"Θέσε [%s] ως το μπισκότο του ξεφυλιστή σου (αστείο είναι, όχι μετάφραση)" + +#: cookie.cgi:54 +msgid "Back" +msgstr "Πίσω" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb1.po new file mode 100644 index 000000000..0e2fd251c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Malte Milatz <malte@gmx-topmail.de>, 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: Malte Milatz <malte@gmx-topmail.de>\n" +"Language-Team: Esperanto\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Programekzemplo pri CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Programekzemplo pri CGI/ERB kaj Ruby-GetText." + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Saluton!" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "lokaĵaro" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "eliga_signaro" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "INFORMMENDA_FRAZO" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Voki metodon en alia tekstdomajno." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Reen" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Plia ekzemplo" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Ĉi tiu ERB-dosiero (other.rhtml) estas alternativo por helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb2.po new file mode 100644 index 000000000..293bd7503 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Malte Milatz <malte@gmx-topmail.de>, 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Malte Milatz <malte@gmx-topmail.de>\n" +"Language-Team: Esperanto\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Programekzemplo pri CGI/ERB (signaro divenata)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Programekzemplo pri CGI/ERB kaj Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Saluton!" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "lokaĵaro" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "eliga_signaro" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "INFORMMENDA_FRAZO" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Voki metodon en alia tekstdomajno." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Reen" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/hellolib.po new file mode 100644 index 000000000..f0447e71e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Malte Milatz <malte@gmx-topmail.de>, 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Malte Milatz <malte@gmx-topmail.de>\n" +"Language-Team: Esperanto\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Ĉi tiu frazo devenas de hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/main.po new file mode 100644 index 000000000..380dc88a7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/eo/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Malte Milatz <malte@gmx-topmail.de>, 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Malte Milatz <malte@gmx-topmail.de>\n" +"Language-Team: Esperanto\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "programekzemplo pri ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ekzemplo pri ERB/CGI (UTF-8), kiu uzas la saman ujon kiel la unua ekzemplo " +"sed alian rhtml-dosieron." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "Ekzemplo pri ERB/CGI (aŭtomata diveno de la signaro)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Ekzemplo pri ERB/CGI kaj Ruby-GetText" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Programekzemploj pri Ruby-GetText kaj CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Disponeblaj lokaĵaroj:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Elekto de la lokaĵaron surbaze de krozilaj informoj" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Agordo de la lokaĵaro per la parametro \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Registro de \"lang\" en kuketon." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Alklaku unu el la jenaj ligiloj, poste alklaku \"Elekto de la lokaĵaro " +"surbaze de krozilaj informoj." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Fontkodo" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi estas programekzemplo pri Ruby-GetText kaj CGI (ne ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Registru [%s] en krozilan kuketon." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Reen" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb1.po new file mode 100644 index 000000000..62a600f52 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# David Moreno Garza <damog at damog.net>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: David Moreno Garza <damog at damog.net>\n" +"Language-Team: Spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Script de ejemplo para CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de ejemplo para CGI/RB y Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hola Mundo" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "charset_de_salida" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "CADENA_DE_CONSULTA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Llama al método de una biblioteca la cual tienen otro textdomain." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Regresar" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Otro ejemplo" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Este ejemplo (otro.rhtml) is otro archivo ERB de helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb2.po new file mode 100644 index 000000000..2f1bb16db --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/helloerb2.po @@ -0,0 +1,50 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# David Moreno Garza <damog at damog.net>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"Last-Translator: David Moreno Garza <damog at damog.net>\n" +"Language-Team: Spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Script de ejemplo para CGI/ERB (charset Auto-Detect)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de ejemplo para CGI/ERB y Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hola Mundo" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "charset_de_salida" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "CADENA_DE_CONSULTA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Llama al método de una biblioteca la cual tiene otro textdomain." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Regresar" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/es/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/hellolib.po new file mode 100644 index 000000000..cd737ac0b --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/hellolib.po @@ -0,0 +1,22 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# David Moreno Garza <damog at damog.net>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"Last-Translator: David Moreno Garza <damog at damog.net>\n" +"Language-Team: Spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Este mensaje es de hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/es/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/main.po new file mode 100644 index 000000000..6933ad749 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/es/main.po @@ -0,0 +1,83 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# David Moreno Garza <damog at damog.net>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"Last-Translator: David Moreno Garza <damog at damog.net>\n" +"Language-Team: Spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "un ejemplo ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"un ejemplo ERB/CGI (UTF-8). Este ejemplo utiliza el mismo contenedor como " +"prueba 1 pero tiene otro archivo rhtml." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "un ejemplo ERB/CGI (charset Auto-Detect)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de ejemplo para CGI/ERB y Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Scripts de ejemplo CGI de Ruby-GetText" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Locales soportadas:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-detectar la locale del navegador web" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Definir la locale como el parámetro \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Definir \"lang\" como una cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Dele clic en alguno de los enlaces de abajo y luego sobre los ejemplos de " +"\"Auto-detectar la locale del navegador web\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Códigos fuentes" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi es también un script de ejempli Ruby-GetText usando CGI (no ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Definir [%s] como la cookie del navegador web." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Regresar" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb1.po new file mode 100644 index 000000000..5688106b8 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Laurent Sansonetti <lrz@rubymonks.org>, 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: Laurent Sansonetti\n" +"Language-Team: French\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Exemple de script ERB/CGI (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Un exemple de script CGI/ERB avec Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Bonjour monde" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Appelle une mthode d'une bibliothque avec un autre domaine de texte." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Prcdent" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Un autre exemple" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Cet exemple (other.rhtml) est l'autre exemple ERB de helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb2.po new file mode 100644 index 000000000..9a4c13243 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Laurent Sansonetti <lrz@rubymonks.org>, 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Laurent Sansonetti\n" +"Language-Team: French\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Un exemple de script CGI/ERB (jeu de caractres automatiquement dtect)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Un exemple de script CGI/ERB avec Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Bonjour monde" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Appelle une mthode d'une bibliothque avec un autre domaine de texte." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Prcdent" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/hellolib.po new file mode 100644 index 000000000..c03c65cc0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/hellolib.po @@ -0,0 +1,22 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# Laurent Sansonetti <lrz@rubymonks.org>, 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Laurent Sansonetti\n" +"Language-Team: French\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Ce message vient de hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/main.po new file mode 100644 index 000000000..7355ffc8f --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/fr/main.po @@ -0,0 +1,85 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Laurent Sansonetti <lrz@rubymonks.org>, 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Laurent Sansonetti <lrz@rubymonks.org>\n" +"Language-Team: French\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "un exemple ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"un exemple ERB/CGI (UTF-8) qui utilise le même conteneur qu'à l'exemple 1 " +"mais avec un autre fichier rhtml." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "un exemple ERB/CGI (jeu de caractères automatiquement détecté)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Un exemple de script CGI/ERB avec Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Exemples de script CGI avec Ruby-GetText" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Locales supportées:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Détection automatique de la locale à partir du navigateur Internet" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Assigne la locale au paramêtre \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Assigne \"lang\" au cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Cliquez sur un des liens en dessous, et cliquez ensuite sur les exemples " +"\"Détection automatique de la locale à partir du navigateur Internet\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Code source" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi est aussi un exemple de script Ruby-GetText utilisant CGI (non " +"ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Assigne [%s] comme étant le cookie de votre navigateur Internet." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Précédent" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb1.pot b/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb1.pot new file mode 100644 index 000000000..ccf5de527 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb1.pot @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb2.pot b/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb2.pot new file mode 100644 index 000000000..a93596ee6 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/helloerb2.pot @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hellolib.pot b/vendor/gems/gettext-2.1.0/samples/cgi/po/hellolib.pot new file mode 100644 index 000000000..1b98e6e68 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hellolib.pot @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb1.po new file mode 100644 index 000000000..b870c9922 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb1.po @@ -0,0 +1,59 @@ +# translation of helloerb1.po to Croatian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: helloerb1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2007-03-20 20:32+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Croatian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Primjer skripte za CGI/ERB" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby on Rails GetText Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Zdravo Svijetu" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "lokal" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "izlazni_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "UPITNA_NISKA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Pozovi biblioteku koja ima drugu tekst domenu." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Nazad" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Drugi primjer" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Ovaj primjer(other.rhtml) je druga ERB datoteka helloerb1.cgi-a." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb2.po new file mode 100644 index 000000000..a39bda17d --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/helloerb2.po @@ -0,0 +1,51 @@ +# translation of helloerb2.po to Croatian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: helloerb2\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2007-03-20 20:32+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Croatian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Primjer skripte za CGI/ERB (Auto-Detektovanje skupakaraktera)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby on Rails GetText Paket" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Zdravo Svijetu" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "lokal" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "izlazni_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "UPITNA_NISKA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Pozovi biblioteku koja ima drugu tekst domenu." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Nazad" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/hellolib.po new file mode 100644 index 000000000..25af97c58 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/hellolib.po @@ -0,0 +1,23 @@ +# translation of hellolib.po to Croatian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: hellolib\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2007-03-20 20:19+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Croatian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Ova poruka je iz hellolib-a." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/main.po new file mode 100644 index 000000000..a293670d5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hr/main.po @@ -0,0 +1,83 @@ +# translation of main.po to Croatian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Sanjin Sehic <saserr@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: main\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2007-03-20 20:30+0100\n" +"Last-Translator: Sanjin Sehic <saserr@gmail.com>\n" +"Language-Team: Croatian <saserr@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB-CGI primjer (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ERB-CGI primjer (UTF-8). Ovaj primjer koristi isti kontejner kao primjer 1 " +"ali ima drugačiji rhtml file" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB-CGI primjer (Auto-Pronalaženje charset-a)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Primjer skripte za CGI/ERB i Ruby GetText Paketa" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI primjer skripta" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Podržani Lokali:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Pronalaženje lokala iz WWW preglednika" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Postavi lokal kao \"lang\" parametar" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Postavi \"lang\" u cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Izaberi jednu prećicu odozdo, i izaberi \"Auto-Pronalaženje lokala iz " +"WWW preglednika\" primjer." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Izvorni kodovi" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi je također Ruby-GetText primjer skripte koja koristi CGI(ne ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Postavi [%s] kao cookie u vašem WWW Pregledniku." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Nazad" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb1.po new file mode 100644 index 000000000..727a9dbc0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Tamás Tompa <tompata at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2008-01-15 00:00+0900\n" +"Last-Translator: Tamás Tompa <tompata at gmail.com>\n" +"Language-Team: Hungarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Példa script CGI/ERB (UTF-8)-hoz." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hello világ" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Könyvtári metódus hívása, ami egy másik textdomain-ben van." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Vissza" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Másik példa" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Ez a példa (other.rhtml) egy másik ERB fájl a helloerb1.cgi-hez." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb2.po new file mode 100644 index 000000000..3bc1f1450 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Tamás Tompa <tompata at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2008-01-15 00:00+0900\n" +"Last-Translator: Tamás Tompa <tompata at gmail.com>\n" +"Language-Team: Hungarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Példa script CGI/ERB (Automatikus karakterkódolás felismerő)-höz." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hello világ" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Könyvtári metódus hívása, ami egy másik textdomain-ben van." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Vissza" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/hellolib.po new file mode 100644 index 000000000..e96161342 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Tamás Tompa <tompata at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2008-01-15 00:00+0900\n" +"Last-Translator: Tamás Tompa <tompata at gmail.com>\n" +"Language-Team: Hungarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Az az üzenet a hellolib-ből jön." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/main.po new file mode 100644 index 000000000..d3c5d2b80 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/hu/main.po @@ -0,0 +1,82 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Tamás Tompa <tompata at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2008-01-15 00:00+0900\n" +"Last-Translator: Tamás Tompa <tompata at gmail.com>\n" +"Language-Team: Hungarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "egy ERB/CGI példa (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"egy ERB/CGI példa (UTF-8). Ez a példa ugyanazt a container-t használja, mint a példa 1" +"de másik rhtml fájlt." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "egy ERB/CGI példa (Automatikus karakterkódolás felismerő)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI példa script-ek" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Támogatott területek (locale-ek):" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Automatikus (locale) felismerés böngészőből" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Locale beállítása mint \"lang\" paraméter" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "A megfelelő \"lang\" cookie beállítása." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Kattints az alábbi linkre, aztán kattints az \"Automatikus (locale) felismerés böngészőből\" példákra." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Forrás kód" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "az index.cgi is egy Ruby-GetText példa script, ami CGI-t használ (nem ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Cookie [%s] beállítása a böngésződben." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Vissza" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb1.po new file mode 100644 index 000000000..54f351c1e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gabriele Renzi <surrender_it at yahoo.it>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-24 12:44+0100\n" +"Last-Translator: Gabriele Renzi <surrender_it at yahoo.it>\n" +"Language-Team: Gabriele Renzi <surrender_it at yahoo.it>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Script di esempio per CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script di esempio per CGI/ERB e per il pacchetto Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Ciao a tutti" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Chiama un metodo di libreria che ha un textdomain differente." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Indietro" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Un altro esempio" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Questo esempio(other.rhtml) à l'altro file ERB di helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb2.po new file mode 100644 index 000000000..7406fa29a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gabriele Renzi <surrender_it at yahoo.it>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-04-24 15:27+0100\n" +"Last-Translator: Gabriele Renzi <surrender_it at yahoo.it>\n" +"Language-Team: Gabriele Renzi <surrender_it at yahoo.it>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Script di esempio per CGI/ERB (Auto-riconoscimento del charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script di esempio per CGI/ERB e per il pacchetto Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Ciao a tutti" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Chiama un metodo di libreria che ha un textdomain differente." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Indietro" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/it/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/hellolib.po new file mode 100644 index 000000000..4aabb3ee9 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gabriele Renzi <surrender_it at yahoo.it>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-04-24 12:44+0100\n" +"Last-Translator: Gabriele Renzi <surrender_it at yahoo.it>\n" +"Language-Team: Gabriele Renzi <surrender_it at yahoo.it>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Questo messaggio viene da hellolib" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/it/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/main.po new file mode 100644 index 000000000..5808b3c07 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/it/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gabriele Renzi <surrender_it at yahoo.it>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-04-24 12:44+0100\n" +"Last-Translator: Gabriele Renzi <surrender_it at yahoo.it>\n" +"Language-Team: Gabriele Renzi <surrender_it at yahoo.it>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "un esempio di ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"un esempio di ERB/CGI (UTF-8). Questo esmepio usa lo stesso container " +"dell'esempio 1 ma ha un altro file rhtml." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "un esempio ERB/CGI (Riconoscimento charset automatico)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script di esempio per CGI/ERB e per il pacchetto Ruby-GetText" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Script di esempio per Ruby-GetText CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Locale supportati:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Riconoscimento automatico del locale da un browser WWW" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Imposta locale come un parametro \"lang\" " + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Imposta \"lang\" su cookie" + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Cliccare su uno dei link sottostanti, e poi sugli esempi \"Riconoscimento " +"automatico del locale da un browser WWW\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Codici sorgente" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "Anche index.cgi è un esempio Ruby-GetText usando CGI (non ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Imposta [%s] come cookie sul tuo browser WWW." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Indietro" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb1.po new file mode 100644 index 000000000..9895164b3 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Masao Mutoh <mutomasa at gmail.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-04-23 12:44+0900\n" +"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n" +"Language-Team: Japanese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "CGI/ERB用サンプルスクリプト(UTF-8)" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERBとRuby-GetText-Packageのサンプルスクリプト" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "こんにちは世界" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "ロケール" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "出力文字列(output_charset)" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "クエリ文字列(QUERY_STRING)" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "異なるテキストドメイン(TextDomain)を持ったライブラリを呼び出します。" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "戻る" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "アナザーサンプル" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "このサンプル(other.rhtml)はhelloerb1.cgiのもう一つのERBファイルです。" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb2.po new file mode 100644 index 000000000..97b67edc5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Masao Mutoh <mutomasa at gmail.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-04-23 12:43+0900\n" +"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n" +"Language-Team: Japanese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "CGI/ERB用サンプルスクリプト(文字コード自動判別)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERBとRuby-GetText-Packageのサンプルスクリプト" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "こんにちは世界" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "ロケール" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "出力文字列(output_charset)" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "クエリ文字列(QUERY_STRING)" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "異なるテキストドメイン(TextDomain)を持ったライブラリを呼び出します。" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "戻る" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/hellolib.po new file mode 100644 index 000000000..54d312372 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Masao Mutoh <mutomasa at gmail.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-04-19 02:35+0900\n" +"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n" +"Language-Team: Japanese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "このメッセージはhellolibから取得しています。" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/main.po new file mode 100644 index 000000000..acc928e6c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ja/main.po @@ -0,0 +1,85 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Masao Mutoh <mutomasa at gmail.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-04-23 16:34+0900\n" +"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n" +"Language-Team: Japanese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB/CGIサンプル(UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ERB/CGIサンプル。このサンプルはサンプル1と同じコンテナを使用しています(rhtml" +"ファイルは別)。" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB/CGIサンプル(文字コード自動判別)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Ruby-GetText-PacakgeのCGI/ERB向けサンプルスクリプト" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGIサンプルスクリプト" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "このサンプルでサポートされているロケール:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "WWWブラウザによるロケール自動判別" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "ロケールを\"lang\"パラメータとして渡す" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "ロケールをクッキーの\"lang\"パラメータとして渡す" + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"以下のリンクを一つ選択した後で、\"WWWブラウザによるロケール自動判別\"サンプル" +"をクリックしてみてください。" + +#: index.cgi:92 +msgid "Source codes" +msgstr "ソースコード" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgiもRuby-GetTextのCGIサンプルスクリプトです(ERBは使っていません)。" + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "[%s]ロケールをあなたのブラウザのクッキーに設定しました。" + +#: cookie.cgi:54 +msgid "Back" +msgstr "戻る" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb1.po new file mode 100644 index 000000000..d46d12d01 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gyoung-Yoon Noh <nohmad@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-12-23 02:00+0900\n" +"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n" +"Language-Team: Korean\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "CGI/ERB를 위한 예제 스크립트 (UTF-8)" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB와 Ruby-GetText 꾸러미를 위한 예제 스크립트" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "안녕 세상" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "로케일" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "출력 문자집합" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "또다른 textdomain을 가진 라이브러리 메쏘드를 호출합니다." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "뒤로 가기" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "또다른 예제" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "이 예제(other.rhtml)는 helloerb1.cgi의 또다른 ERB 파일입니다." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb2.po new file mode 100644 index 000000000..db325e302 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gyoung-Yoon Noh <nohmad@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-12-23 02:00+0900\n" +"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n" +"Language-Team: Korean\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "CGI/ERB를 위한 예제 스크립트(문자집합 자동탐지)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB와 Ruby-GetText 꾸러미를 위한 예제 스크립트" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "안녕 세상" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "로케일" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "출력 문자집합" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "또다른 textdomain을 가진 라이브러리 메쏘드를 호출합니다." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "뒤로 가기" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/hellolib.po new file mode 100644 index 000000000..914ba97b0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gyoung-Yoon Noh <nohmad@gmail.com> +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-12-23 02:00+0900\n" +"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n" +"Language-Team: Korean\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "이것은 hellolib으로부터의 메시지입니다." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/main.po new file mode 100644 index 000000000..46fab58cb --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ko/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Gyoung-Yoon Noh <nohmad@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-12-23 02:00+0900\n" +"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n" +"Language-Team: Korean\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB/CGI 예제 (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"ERB/CGI 샘플 (UTF-8). 이 예제는 예제 1과 같은 컨테이너를 사용하지만 다른 " +"rhtml 파일을 사용합니다." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB/CGI 샘플 (문자집합 자동탐지)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB와 Ruby-GetText 꾸러미를 위한 예제 스크립트" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI 예제 스크립트들" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "지원되는 로케일:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "웹 브라우저로부터 로케일을 자동탐지" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "\"lang\" 매개변수로 로케일을 설정" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "\"lang\"을 쿠키에 설정합니다." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"아래 링크 중 하나를 선택하시고 \"웹 브라우저로부터 로케일을 자동탐지\" 예제" +"를 클릭하세요." + +#: index.cgi:92 +msgid "Source codes" +msgstr "소스 코드들" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi 역시 ERB가 아닌 CGI를 사용하는 Ruby-GetText 예제 스크립트입니다." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "[%s]를 웹 브라우저의 쿠키로 설정합니다." + +#: cookie.cgi:54 +msgid "Back" +msgstr "뒤로가기" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb1.po new file mode 100644 index 000000000..85d7bf16a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb1.po @@ -0,0 +1,65 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Aivars Akots, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2008-07-22 09:12+0200\n" +"Last-Translator: Aivars Akots <aivars.akots@gmail.com>\n" +"Language-Team: Latvian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Paraugs CGI/ERB (UTF-8)" + +#: helloerb.rhtml:5 +#: other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Paraugs CGI/ERB (UTF-8) un Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Sveicināta pasaule" + +#: helloerb.rhtml:15 +#: other.rhtml:11 +msgid "locale" +msgstr "valoda" + +#: helloerb.rhtml:16 +#: other.rhtml:12 +msgid "output_charset" +msgstr "izvades_simbolu_kodējums" + +#: helloerb.rhtml:17 +#: other.rhtml:13 +msgid "QUERY_STRING" +msgstr "PIEPRASĪJUMA_TEKSTS" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Izsaukt bibliotēku ar citu teksta sakni" + +#: helloerb.rhtml:21 +#: other.rhtml:15 +msgid "Back" +msgstr "Atgriezties" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Vēl viens piemērs" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Šis paraugs(other.rhtml) ir cits ERB fails no helloerb1.cgi." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb2.po new file mode 100644 index 000000000..07e0ba137 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Aivars Akots, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2008-07-22 09:13+0200\n" +"Last-Translator: Aivars Akots <aivars.akots@gmail.com>\n" +"Language-Team: Latvian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Paraugs CGI/ERB (Automātiska simbolu kodējuma atpazīšana)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Paraugs CGI/ERB un Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Sveicināta pasaule" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "valoda" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "izvades_simbolu_kodējums" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "PIEPRASĪJUMA_TEKSTS" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Izsaukt bibliotēku ar citu teksta sakni" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Atgriezties" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/hellolib.po new file mode 100644 index 000000000..90e512899 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Aivars Akots, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2008-07-22 08:56+0200\n" +"Last-Translator: Aivars Akots <aivars.akots@gmail.com>\n" +"Language-Team: Latvian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Šis ziņojums ir no hellolib." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/main.po new file mode 100644 index 000000000..a225e0118 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/lv/main.po @@ -0,0 +1,77 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Aivars Akots, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2008-07-22 09:24+0200\n" +"Last-Translator: Aivars Akots <aivars.akots@gmail.com>\n" +"Language-Team: Latvian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB/CGI paraugs (UTF-8)." + +#: index.cgi:37 +msgid "an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 but has a different rhtml file." +msgstr "ERB/CGI paraugs (UTF-8). Šis paraugs izmantot to pašu saturu ko paraugs 1, bet ar citu rhtml datni." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB/CGI paraugs (UTF-8) (Automātiksa simbolu kodējuma atpazīšana)." + +#: index.cgi:50 +#: cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB un Ruby-GetText-Package paraugs" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI paraugi" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Atbalstītās valodas" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Automātiski noteikt valodu no WWW pārlūka" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Uzstādīt valodu kā \"lang\" mainīgo" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Uzstādīt \"lang\" sīkdatnē" + +#: index.cgi:83 +msgid "Click one of the link below, and then click \"Auto-Detect a locale from the WWW browser\" samples." +msgstr "Spied uz kādas no zemāk norādītajām saitēm un tad spied uz \"Automātiski noteikt valodu no WWW pārlūka\" piemēriem" + +#: index.cgi:92 +msgid "Source codes" +msgstr "Izejas kodi" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi ir arī Ruby-GetText paraugs izmantojot CGI(nevis ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Uzstādīt [%s] kā sīkdatni WWW Pārlūkā." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Atgriezties" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/main.pot b/vendor/gems/gettext-2.1.0/samples/cgi/po/main.pot new file mode 100644 index 000000000..fe8317ab3 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/main.pot @@ -0,0 +1,80 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "" + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" + +#: index.cgi:92 +msgid "Source codes" +msgstr "" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "" + +#: cookie.cgi:54 +msgid "Back" +msgstr "" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb1.po new file mode 100644 index 000000000..fffd6d460 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# Runar Ingebrigtsen <runar@mopo.no>, 2008. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2008-07-14 16:27+0200\n" +"Last-Translator: Runar Ingebrigtsen <runar@mopo.no>\n" +"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Eksempelskript for CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Eksempelskript for CGI/ERB og Ruby-GetText-pakken" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Smil til verden" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "lokale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Spør etter bibliotekmetode som har et annet tekstdomene." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Tilbake" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Enda et eksempel" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Dette eksempelet (other.rhtml) er den andre ERB-filen til helloerb1.cgi" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb2.po new file mode 100644 index 000000000..a9e51b87f --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# Runar Ingebrigtsen <runar@mopo.no>, 2008. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2008-07-14 16:28+0200\n" +"Last-Translator: Runar Ingebrigtsen <runar@mopo.no>\n" +"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Eksempelskript for CGI/ERB (Auto-Detect-charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Eksempelskript for CGI/ERB og Ruby-GetText-pakken" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Smil til verden" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "lokale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Spør etter bibliotekmetode som har et annet tekstdomene." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Tilbake" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/hellolib.po new file mode 100644 index 000000000..adc6c3060 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# Runar Ingebrigtsen <runar@mopo.no>, 2008. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2008-07-14 16:30+0200\n" +"Last-Translator: Runar Ingebrigtsen <runar@mopo.no>\n" +"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Denne meldingen kommer fra hellolib" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/main.po new file mode 100644 index 000000000..82fa0148e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nb/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh +# This file is distributed under the same license as the Ruby-GetText-Package. +# Runar Ingebrigtsen <runar@mopo.no>, 2008. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2008-07-14 16:35+0200\n" +"Last-Translator: Runar Ingebrigtsen <runar@mopo.no>\n" +"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "et ERB/CGI-eksempel (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"et ERB/CGI-eksempel (UTF-8). Dette eksempelet bruker den samme containeren som" +"eksempel 1, men har en annen rhtml-fil." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "et ERB/CGI-eksempel (Auto-Detect charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Eksempelskript for CGI/ERB og Ruby-GetText-pakken" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI eksempelskript" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Støttede lokale:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Detect et lokale fra nettleseren" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Sett lokale som en \"lang\"-parameter" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Sett \"lang\" til en informasjonskapsel." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Klikk på en lenke under og deretter på \"Auto-Detect et lokale fra nettleseren\"" +"eksemplene." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Kildekode" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi er også et Ruby-GetText eksempelskript som bruker CGI, ikke ERB." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Sett [%s] som informasjonskapsel i din nettleser." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Tilbake" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb1.po new file mode 100644 index 000000000..ecf856d1c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb1.po @@ -0,0 +1,61 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Menno Jonkers <ruby-gettext@jonkers.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-12-19 21:44+0100\n" +"Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n" +"Language-Team: Dutch <ruby_gettext@jonkers.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Voorbeeldscript voor CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Voorbeeldscript voor CGI/ERB en Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hallo wereld" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Roep een bibliotheekmethode aan die een ander tekstdomein heeft." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Terug" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Een ander voorbeeld" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "" +"Dit voorbeeld (other.rhtml) is een ander ERB-bestand van helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb2.po new file mode 100644 index 000000000..5a5a5547e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Menno Jonkers <ruby-gettext@jonkers.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-12-19 21:44+0100\n" +"Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n" +"Language-Team: Dutch <ruby_gettext@jonkers.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Voorbeeldscript voor CGI/ERB (auto-detect charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Voorbeeldscript voor CGI/ERB en Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Hallo wereld" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Roep een librarymethode aan die een ander tekstdomein heeft." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Terug" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/hellolib.po new file mode 100644 index 000000000..0512c2f99 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Menno Jonkers <ruby-gettext@jonkers.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-12-19 21:44+0100\n" +"Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n" +"Language-Team: Dutch <ruby_gettext@jonkers.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Dit bericht komt van hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/main.po new file mode 100644 index 000000000..fa5ae032c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/nl/main.po @@ -0,0 +1,86 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Menno Jonkers <ruby-gettext@jonkers.com>, 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-12-19 21:44+0100\n" +"Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n" +"Language-Team: Dutch <ruby_gettext@jonkers.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "een ERB/CGI voorbeeld (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"een ERB/CGI voorbeeld (UTF-8). Dit voorbeeld gebruikt dezelfde container als " +"voorbeeld 1, maar heeft een ander rhtml-bestand." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "een ERB/CGI voorbeeld (auto-detect charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Voorbeeldscript voor CGI/ERB en Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI voorbeeldscripts" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Ondersteunde locales:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-detect een locale van de webbrowser" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Stel locale in als een \"lang\" parameter" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Zet \"lang\" in een cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Kies een van onderstaande links en klik dan \"Auto-detect een locale van de " +"webbrowser\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Broncodes" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi is ook een Ruby-GetText voorbeeldscript dat CGI gebruikt (niet " +"ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Stel [%s] in als cookie van de webbrowser." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Terug" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb1.po new file mode 100644 index 000000000..bdcb8dfe8 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb1.po @@ -0,0 +1,59 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Joao Pedrosa <joaopedrosa@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2005-12-17 10:12-0300\n" +"Last-Translator: Joao Pedrosa <joaopedrosa@gmail.com>\n" +"Language-Team: Portuguese(Brazil)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Script de exemplo para CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de exemplo para CGI/ERB e Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Olá Mundo" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "charset_de_saída" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "STRING_DE_PESQUISA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Chama um método de biblioteca que tem um outro domínio de texto." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Voltar" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Outro exemplo" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Este exemplo(other.rhtml) é o outro arquivo de ERB do helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb2.po new file mode 100644 index 000000000..d628670cd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/helloerb2.po @@ -0,0 +1,51 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Joao Pedrosa <joaopedrosa@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2005-12-17 10:12-0300\n" +"Last-Translator: Joao Pedrosa <joaopedrosa@gmail.com>\n" +"Language-Team: Portuguese(Brazil)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Script de exemplo para CGI/ERB (Auto-Detectar charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de exemplo para CGI/ERB e Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Olá Mundo" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "charset_de_saída" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "STRING_DE_PESQUISA" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Chamar um método de biblioteca que tem outro domínio de texto." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Voltar" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/hellolib.po new file mode 100644 index 000000000..d17c667d5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/hellolib.po @@ -0,0 +1,23 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Joao Pedrosa <joaopedrosa@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2005-12-17 10:12-0300\n" +"Last-Translator: Joao Pedrosa <joaopedrosa@gmail.com>\n" +"Language-Team: Portuguese(Brazil)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Esta mensagem é de hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/main.po new file mode 100644 index 000000000..6481ca372 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/pt_BR/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Joao Pedrosa <joaopedrosa@gmail.com>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2005-12-17 10:12-0300\n" +"Last-Translator: Joao Pedrosa <joaopedrosa@gmail.com>\n" +"Language-Team: Portuguese(Brazil)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "um exemplo de ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"um exemplo de ERB/CGI (UTF-8). Este exemplo usa o mesmo recipiente do " +"exemplo 1, mas tem outro arquivo rhtml." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "um exemplo ERB/CGI (Auto-Detectar charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script de exemplo para CGI/ERB e Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Scripts de exemplo de CGI de Ruby-GetText" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Locales suportados:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Auto-Detectar um locale do browser WWW" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Configurar locale como um parâmetro \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Configurar \"lang\" para cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Clique em um dos links abaixo, e então clique no exemplo \"Auto-Detectar um " +"locale do browser WWW\"" + +#: index.cgi:92 +msgid "Source codes" +msgstr "Código-fonte" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "" +"index.cgi também é um script de exemplo de Ruby-GetText usando CGI(não ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Configurar [%s] como o cookie do seu browser WWW." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Voltar" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb1.po new file mode 100644 index 000000000..d334350f5 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb1.po @@ -0,0 +1,58 @@ +# translation of helloerb1.po to Russian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh# +# This file is distributed under the same license as the Ruby-GetText-Package.# +# Yuri Kozlov <kozlov.y@gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2006-04-17 20:25+0300\n" +"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Пример сценария CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Пример сценария CGI/ERB и Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Здравствуй, мир" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "локаль" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "кодировка_результата" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "СТРОКА_ЗАПРОСА" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Вызов библиотечного метода, расположенного в другом текстовом домене." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Назад" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Другой пример" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Это пример(other.rhtml) из другого ERB файла helloerb1.cgi." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb2.po new file mode 100644 index 000000000..c3031fd3d --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/helloerb2.po @@ -0,0 +1,50 @@ +# translation of helloerb2.po to Russian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh# +# This file is distributed under the same license as the Ruby-GetText-Package.# +# Yuri Kozlov <kozlov.y@gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2006-04-17 20:26+0300\n" +"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Пример сценария CGI/ERB (Автоопределение кодировки)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Sample script for CGI/ERB and Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Здравствуй, мир" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "локаль" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "кодировка_результата" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "СТРОКА_ЗАПРОСА" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Вызов библиотечного метода, расположенного в другом текстовом домене." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Назад" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/hellolib.po new file mode 100644 index 000000000..3c25cdfba --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/hellolib.po @@ -0,0 +1,22 @@ +# translation of hellolib.po to Russian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh# +# This file is distributed under the same license as the Ruby-GetText-Package.# +# Yuri Kozlov <kozlov.y@gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2006-04-17 20:43+0300\n" +"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Сообщение из hellolib." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/main.po new file mode 100644 index 000000000..9983e5bdc --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ru/main.po @@ -0,0 +1,82 @@ +# translation of main.po to Russian +# CGI/ERB sample for Ruby-GetText-Package. +# Copyright (C) 2005,2006 Masao Mutoh# +# This file is distributed under the same license as the Ruby-GetText-Package.# +# Yuri Kozlov <kozlov.y@gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2006-04-17 21:01+0300\n" +"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "Пример ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "" +"Пример ERB/CGI (UTF-8). Этот пример использует тот же контейнер как " +"в примере 1, но имеет другой rhtml файл." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "Пример ERB/CGI (автоопределение кодировки)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Пример сценария CGI/ERB и Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Примеры сценариев Ruby-GetText CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Поддерживаемые локали:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Автоопределение локали WWW браузера" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Установка локали в параметре \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Установка \"lang\" в куки." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "" +"Нажмите на ссылку ниже и затем нажмите на " +"примеры \"Автоопределение локали WWW браузера\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Исходные тексты" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi это также Ruby-GetText пример использующий CGI(не ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Установить [%s] как куки в вашем WWW браузере." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Назад" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb1.po new file mode 100644 index 000000000..8a6cf4c6a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Slobodan Paunović <slobodan.paunovic at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2008-06-05 23:05+0200\n" +"Last-Translator: Slobodan Paunović <slobodan.paunovic at gmail.com>\n" +"Language-Team: Serbian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Пример скрипта за CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Пример скрипта за CGI/ERB и Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Здраво свете" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Позови функцију из библиотеке која има неки други текст домен." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Назад" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Други пример" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Овај пример(other.rhtml) је други ERB фајл од helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb2.po new file mode 100644 index 000000000..86394af6c --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Slobodan Paunović <slobodan.paunovic at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2008-06-05 23:06+0200\n" +"Last-Translator: Slobodan Paunović <slobodan.paunovic at gmail.com>\n" +"Language-Team: Serbian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Пример скрипта за CGI/ERB (Auto-Detect charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Пример скрипта за CGI/ERB i Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Здраво свете" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "locale" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Позови функцију библиотеке која има неки други текст домен." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/hellolib.po new file mode 100644 index 000000000..0c30f268e --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Slobodan Paunović <slobodan.paunovic at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2008-06-05 23:08+0200\n" +"Last-Translator: Slobodan Paunović <slobodan.paunovic at gmail.com>\n" +"Language-Team: Serbian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Ова порука је из hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/main.po new file mode 100644 index 000000000..d9723d9ab --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/sr/main.po @@ -0,0 +1,80 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Slobodan Paunović <slobodan.paunovic at gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2008-06-05 23:14+0200\n" +"Last-Translator: Slobodan Paunović <slobodan.paunovic at gmail.com>\n" +"Language-Team: Serbian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "један ERB/CGI пример (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "један ERB/CGI пример (UTF-8). Овај пример користи исти контејнер као и пример 1, али има другачији rhtml фајл." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "један ERB/CGI пример (Auto-Detect charset)." + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Пример скрипта за CGI/ERB и Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI примери скриптова" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Подржани језици:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Аутоматска детекција језика из WWW прегледача" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Подеси језик као \"lang\" параметар" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Подеси \"lang\" у куки." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "Кликните један од линкова испод, а затим кликните \"Аутоматска детекција језика из WWW прегледачa\" primere." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Изворни код" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi је такође Ruby-GetText пример скрипта који користи CGI (а не ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Подеси [%s] као куки вашег WWW прегледачa." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb1.po new file mode 100644 index 000000000..051769e61 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb1.po @@ -0,0 +1,62 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Alex Rootoff <rootoff at pisem.net>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2008-02-04 08:12+0200\n" +"Last-Translator: Alex Rootoff <rootoff at pisem.net>\n" +"Language-Team: Ukrainian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Зразок сценарію для CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Зразок сценарію для CGI/ERB (UTF-8) і Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Привіт, світ" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "локаль" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Викликати метод бібліотеки, що має інший текстовий домен." + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "Назад" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Інший зразок" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Цей зразок(other.rhtml) є іншим ERB файлом helloerb1.cgi." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb2.po new file mode 100644 index 000000000..f121586ae --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/helloerb2.po @@ -0,0 +1,54 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Alex Rootoff <rootoff at pisem.net>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2007-12-23 13:32+0200\n" +"Last-Translator: Alex Rootoff <rootoff at pisem.net>\n" +"Language-Team: Ukrainian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Зразок сценарію для CGI/ERB (автовизначення набору символів)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Зразок сценарію для CGI/ERB і Ruby-GetText-Package" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Привіт, світ" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "локаль" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Виклик методу бібліотеки, що має інший текстовий домен" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/hellolib.po new file mode 100644 index 000000000..77caecc16 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/hellolib.po @@ -0,0 +1,26 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Alex Rootoff <rootoff at pisem.net>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2007-12-23 13:36+0200\n" +"Last-Translator: Alex Rootoff <rootoff at pisem.net>\n" +"Language-Team: Ukrainian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Це повідомлення з hellolib." diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/main.po new file mode 100644 index 000000000..a088662ac --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/ua/main.po @@ -0,0 +1,84 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Alex Rootoff <rootoff at pisem.net>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2008-02-04 08:12+0200\n" +"Last-Translator: Alex Rootoff <rootoff at pisem.net>\n" +"Language-Team: Ukrainian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "Зразок ERB/CGI сценарію (UTF-8)" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "Зразок ERB/CGI сценарію (UTF-8). Цей зразок використовує той же контейнер, " +"що і перший зразок, але має інший файл rhtml." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "Зразок ERB/CGI сценарію (авто-визначення набору символів)" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Зразок сценарію для CGI/ERB і Ruby-GetText-Package" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Зразок сценарію Ruby-GetText CGI" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Сумісні локалі:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Автовизначення локалі з броузеру" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Встановити локаль параметром \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Встановити \"lang\" в cookie." + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "Нажміть на однe з посилань і натисніть \"Автовизначення локалі " +"з броузеру\"" + +#: index.cgi:92 +msgid "Source codes" +msgstr "Коди джерела" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi є також зразком скрипта Ruby-GetText з використанням CGI(не ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Встановити [%s] як cookie у вашому броузері" + +#: cookie.cgi:54 +msgid "Back" +msgstr "Назад" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb1.po new file mode 100644 index 000000000..76423c7fd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb1.po @@ -0,0 +1,65 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ngoc DAO Thanh <ngocdaothanh at gmail.com>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2007-03-21 10:40+0900\n" +"Last-Translator: Ngoc DAO Thanh <ngocdaothanh at gmail.com>\n" +"Language-Team: Vietnamese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "Script ví dụ mẫu về CGI/ERB (UTF-8)." + +#: helloerb.rhtml:5 +#: other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script ví dụ mẫu về CGI/ERB và gói Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Xin chào cả Thế Giới" + +#: helloerb.rhtml:15 +#: other.rhtml:11 +msgid "locale" +msgstr "ngông ngữ" + +#: helloerb.rhtml:16 +#: other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +#: other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Gọi phương thức trong thư viện có textdomain khác." + +#: helloerb.rhtml:21 +#: other.rhtml:15 +msgid "Back" +msgstr "Quay lui" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "Ví dụ mẫu khác" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "Ví dụ mẫu này (other.rhtml) là tập tin ERB khác của helloerb1.cgi." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb2.po new file mode 100644 index 000000000..4a3cb2e43 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ngoc DAO Thanh <ngocdaothanh at gmail.com>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2007-03-21 10:43+0900\n" +"Last-Translator: Ngoc DAO Thanh <ngocdaothanh at gmail.com>\n" +"Language-Team: Vietnamese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "Script ví dụ mẫu về CGI/ERB (Auto-Detect charset)." + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script ví dụ mẫu về CGI/ERB và gói Ruby-GetText" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "Xin chào Thế Giới" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "ngôn ngữ" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Gọi phương thức trong thư viện có textdomain khác." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "Quay lui" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/hellolib.po new file mode 100644 index 000000000..ec08e35f7 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ngoc DAO Thanh <ngocdaothanh at gmail.com>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2007-03-21 11:03+0900\n" +"Last-Translator: Ngoc DAO Thanh <ngocdaothanh at gmail.com>\n" +"Language-Team: Vietnamese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "Thông điệp này là từ hellolib." + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/main.po new file mode 100644 index 000000000..7ab3c62df --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/vi/main.po @@ -0,0 +1,77 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Ngoc DAO Thanh <ngocdaothanh at gmail.com>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2007-03-21 11:18+0900\n" +"Last-Translator: Ngoc DAO Thanh <ngocdaothanh at gmail.com>\n" +"Language-Team: Vietnamese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ví dụ mẫu về ERB/CGI (UTF-8)." + +#: index.cgi:37 +msgid "an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 but has a different rhtml file." +msgstr "ví dụ mẫu về ERB/CGI (UTF-8). Ví dụ này dùng cùng container như ví dụ 1, nhưng có tập tin rhtml khác." + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ví dụ mẫu về ERB/CGI (Auto-Detect charset)." + +#: index.cgi:50 +#: cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "Script ví dụ mẫu về CGI/ERB và gói Ruby-GetText" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Những script CGI ví dụ mẫu về Ruby-GetText" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "Những ngôn ngữ được hỗ trợ:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "Tự động nhận biết bảng mã từ trình duyệt WWW" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "Đặt tham số ngôn ngữ \"lang\"" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "Đặt \"lang\" vào cookie." + +#: index.cgi:83 +msgid "Click one of the link below, and then click \"Auto-Detect a locale from the WWW browser\" samples." +msgstr "Click một trong những link ở dưới, sau đó click những ví dụ mẫu \"Tự động nhận biết bảng mã từ trình duyệt WWW\"." + +#: index.cgi:92 +msgid "Source codes" +msgstr "Mã nguồn" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi cũng là script ví dụ mẫu về Ruby-GetText dùng CGI (không phải ERB)." + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "Đặt [%s] là cookie của trình duyệt WWW của bạn." + +#: cookie.cgi:54 +msgid "Back" +msgstr "Quay lui" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb1.po new file mode 100644 index 000000000..514d2208d --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb1.po @@ -0,0 +1,60 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Yingfeng <blogyingfeng at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-03-04 22:50+0900\n" +"PO-Revision-Date: 2006-04-15 13:11+0300\n" +"Last-Translator: Yingfeng <blogyingfeng at gmail.com>\n" +"Language-Team: Simplified Chinese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: KBabel 1.9.1\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "用于CGI/ERB的示例脚本(UTF-8)" + +#: helloerb.rhtml:5 other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "用于CGI/ERB和Ruby-GetText-Package的示例脚本" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "你好世界" + +#: helloerb.rhtml:15 other.rhtml:11 +msgid "locale" +msgstr "本地" + +#: helloerb.rhtml:16 other.rhtml:12 +msgid "output_charset" +msgstr "输出字符集" + +#: helloerb.rhtml:17 other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "调用具备其他textdomain的库方法" + +#: helloerb.rhtml:21 other.rhtml:15 +msgid "Back" +msgstr "返回" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "另一个示例" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "示例(other.rhtml)是helloerb1.cgi的另一个ERB文件" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb2.po new file mode 100644 index 000000000..e4539dc52 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/helloerb2.po @@ -0,0 +1,52 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Yingfeng <blogyingfeng at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-03-04 22:50+0900\n" +"PO-Revision-Date: 2006-04-15 13:11+0300\n" +"Last-Translator: Yingfeng <blogyingfeng at gmail.com>\n" +"Language-Team: Simplified Chinese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: KBabel 1.9.1\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "用于CGI/ERB的示例脚本(自动检测字符集)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "用于CGI/ERB和Ruby-GetText-Package的示例脚本" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "你好世界" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "本地" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "输出字符集" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "调用具备其他textdomain的库方法" + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "返回" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/hellolib.po new file mode 100644 index 000000000..0df452d45 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/hellolib.po @@ -0,0 +1,24 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Yingfeng <blogyingfeng at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-03-04 22:50+0900\n" +"PO-Revision-Date: 2006-04-15 13:11+0300\n" +"Last-Translator: Yingfeng <blogyingfeng at gmail.com>\n" +"Language-Team: Simplified Chinese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: KBabel 1.9.1\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "本条信息来自hellolib。" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/main.po new file mode 100644 index 000000000..2369fb3a0 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh/main.po @@ -0,0 +1,80 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# Yingfeng <blogyingfeng at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-03-04 22:50+0900\n" +"PO-Revision-Date: 2006-04-15 13:11+0300\n" +"Last-Translator: Yingfeng <blogyingfeng at gmail.com>\n" +"Language-Team: Simplified Chinese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: KBabel 1.9.1\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "一个ERB/CGI例子(UTF-8)。" + +#: index.cgi:37 +msgid "" +"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 " +"but has a different rhtml file." +msgstr "一个ERB/CGI示例(UTF-8)。本示例采用跟示例1相同的容器,但却拥有一个不同的rhtml文件。" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "一个ERB/CGI示例(自动检测字符集)。" + +#: index.cgi:50 cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "用于CGI/ERB和Ruby-GetText-Package的示例脚本" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText CGI示例脚本" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "目前支持的国家:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "从WWW浏览器自动检测国家" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "用\"lang\"参数设置国家" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "为cookie设置\"lang\"" + +#: index.cgi:83 +msgid "" +"Click one of the link below, and then click \"Auto-Detect a locale from the " +"WWW browser\" samples." +msgstr "点击下面的链接,然后点击\"从WWW浏览器自动检测国家\"例程" + +#: index.cgi:92 +msgid "Source codes" +msgstr "源代码" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi也是Ruby-GetText用于CGI(不是ERB)的示例脚本。" + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "将[%s]设置为您的WWW浏览器的cookie。" + +#: cookie.cgi:54 +msgid "Back" +msgstr "返回" diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb1.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb1.po new file mode 100644 index 000000000..ae1ec0661 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb1.po @@ -0,0 +1,67 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# LIN CHUNG-YI <xmarsh at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:48+0900\n" +"PO-Revision-Date: 2006-08-18 15:06+0800\n" +"Last-Translator: LIN CHUNG-YI <xmarsh at gmail.com>\n" +"Language-Team: zh_TW <xmarsh at gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" + +#: helloerb1.cgi:32 +msgid "Sample script for CGI/ERB (UTF-8)." +msgstr "CGI/ERB (UTF-8) 範例" + +#: helloerb.rhtml:5 +#: other.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB 與 Ruby-GetText-Package 範例" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "哈囉世界" + +#: helloerb.rhtml:15 +#: other.rhtml:11 +msgid "locale" +msgstr "字集" + +#: helloerb.rhtml:16 +#: other.rhtml:12 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +#: other.rhtml:13 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "呼叫一個有另外 textdomain 的 library method" + +#: helloerb.rhtml:21 +#: other.rhtml:15 +msgid "Back" +msgstr "返回" + +#: other.rhtml:8 +msgid "Another sample" +msgstr "另一個範例" + +#: other.rhtml:9 +msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi." +msgstr "這個範例(other.rhtml) 是 helloerb1.cgi 的另一個ERB 檔" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb2.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb2.po new file mode 100644 index 000000000..7350bd407 --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/helloerb2.po @@ -0,0 +1,54 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# LIN CHUNG-YI <xmarsh at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:51+0900\n" +"PO-Revision-Date: 2006-08-18 15:09+0800\n" +"Last-Translator: LIN CHUNG-YI <xmarsh at gmail.com>\n" +"Language-Team: zh_TW <xmarsh at gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" + +#: helloerb2.cgi:34 +msgid "Sample script for CGI/ERB (Auto-Detect charset)." +msgstr "CGI/ERB 範例 (自動偵測字集)" + +#: helloerb.rhtml:5 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB 與 Ruby-GetText-Package 範例" + +#: helloerb.rhtml:12 +msgid "Hello World" +msgstr "哈囉世界" + +#: helloerb.rhtml:15 +msgid "locale" +msgstr "字集" + +#: helloerb.rhtml:16 +msgid "output_charset" +msgstr "output_charset" + +#: helloerb.rhtml:17 +msgid "QUERY_STRING" +msgstr "QUERY_STRING" + +#: helloerb.rhtml:19 +msgid "Call a library method which has another textdomain." +msgstr "Call a library method which has another textdomain." + +#: helloerb.rhtml:21 +msgid "Back" +msgstr "返回" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/hellolib.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/hellolib.po new file mode 100644 index 000000000..4e46992bd --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/hellolib.po @@ -0,0 +1,26 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# LIN CHUNG-YI <xmarsh at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:53+0900\n" +"PO-Revision-Date: 2006-08-21 09:08+0800\n" +"Last-Translator: LIN CHUNG-YI <xmarsh at gmail.com>\n" +"Language-Team: zh_TW <xmarsh at gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" + +#: hellolib.rb:19 +msgid "This message is from hellolib." +msgstr "這個訊息來自 hellolib" + diff --git a/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/main.po b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/main.po new file mode 100644 index 000000000..b7c2bbf0a --- /dev/null +++ b/vendor/gems/gettext-2.1.0/samples/cgi/po/zh_TW/main.po @@ -0,0 +1,79 @@ +# CGI/ERB sample for Ruby-GetText-Package. +# +# Copyright (C) 2005,2006 Masao Mutoh +# +# This file is distributed under the same license as the Ruby-GetText-Package. +# +# LIN CHUNG-YI <xmarsh at gmail.com>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: cgi-sample 1.1.1\n" +"POT-Creation-Date: 2006-01-07 14:55+0900\n" +"PO-Revision-Date: 2006-08-18 14:43+0800\n" +"Last-Translator: LIN CHUNG-YI <xmarsh at gmail.com>\n" +"Language-Team: zh_TW <xmarsh at gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" + +#: index.cgi:36 +msgid "an ERB/CGI sample (UTF-8)." +msgstr "ERB/CGI 範例 (UTF-8)" + +#: index.cgi:37 +msgid "an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 but has a different rhtml file." +msgstr "ERB/CGI 範例 (UTF-8) 該範例使用範例一同樣的 container 只是 rhtml 檔案不同" + +#: index.cgi:38 +msgid "an ERB/CGI sample (Auto-Detect charset)." +msgstr "ERB/CGI 範例 (字集自動偵測)" + +#: index.cgi:50 +#: cookie.cgi:44 +msgid "Sample script for CGI/ERB and Ruby-GetText-Package" +msgstr "CGI/ERB 與 Ruby-GetText-Package 的範例程式" + +#: index.cgi:55 +msgid "Ruby-GetText CGI sample scripts" +msgstr "Ruby-GetText 的 CGI 範例" + +#: index.cgi:57 +msgid "Supported Locales:" +msgstr "支援字集:" + +#: index.cgi:58 +msgid "Auto-Detect a locale from the WWW browser" +msgstr "自動從瀏覽器判斷字集" + +#: index.cgi:66 +msgid "Set locale as a \"lang\" parameter" +msgstr "利用 \"lang\" 參數設定字集" + +#: index.cgi:82 +msgid "Set \"lang\" to cookie." +msgstr "設定 \"lang\" 到 cookie." + +#: index.cgi:83 +msgid "Click one of the link below, and then click \"Auto-Detect a locale from the WWW browser\" samples." +msgstr "按下面連結再按 \"自動從瀏覽器判斷字集\" 範例" + +#: index.cgi:92 +msgid "Source codes" +msgstr "原始碼" + +#: index.cgi:103 +msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)." +msgstr "index.cgi 也是 Ruby-GetText 的 CGI 範例 (非 ERB)" + +#: cookie.cgi:50 +msgid "Set [%s] as the cookie of your WWW Browser." +msgstr "設定 [%s] 為瀏覽器的 cookie" + +#: cookie.cgi:54 +msgid "Back" +msgstr "返回" + |