gettext 1.10.0 → 1.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +156 -2
- data/NEWS +28 -0
- data/README +128 -138
- data/Rakefile +83 -43
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
- data/doc/classes/ActiveRecord/Base.html +360 -0
- data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +182 -0
- data/doc/classes/ActiveRecord/Migration.html +118 -0
- data/doc/classes/GetText.html +1790 -0
- data/doc/classes/GetText/ActiveRecordParser.html +236 -0
- data/doc/classes/GetText/Container.html +119 -0
- data/doc/classes/GetText/ErbContainer.html +223 -0
- data/doc/classes/GetText/ErbParser.html +156 -0
- data/doc/classes/GetText/GladeParser.html +133 -0
- data/doc/classes/GetText/NoboundTextDomainError.html +119 -0
- data/doc/classes/GetText/PoParser.html +169 -0
- data/doc/classes/GetText/Rails.html +293 -0
- data/doc/classes/GetText/RubyParser.html +123 -0
- data/doc/classes/GetText/TextDomain.html +572 -0
- data/doc/classes/GetText/TextDomainManager.html +443 -0
- data/doc/classes/Iconv.html +257 -0
- data/doc/classes/Iconv/Failure.html +105 -0
- data/doc/classes/Iconv/IllegalSequence.html +118 -0
- data/doc/classes/Iconv/InvalidCharacter.html +118 -0
- data/doc/classes/Iconv/InvalidEncoding.html +118 -0
- data/doc/classes/Locale.html +839 -0
- data/doc/classes/Locale/Object.html +799 -0
- data/doc/classes/Locale/SystemBase.html +271 -0
- data/doc/classes/Locale/SystemCGI.html +312 -0
- data/doc/classes/Locale/SystemJRuby.html +112 -0
- data/doc/classes/Locale/SystemPosix.html +113 -0
- data/doc/classes/Locale/SystemWin32.html +182 -0
- data/doc/classes/MOFile.html +678 -0
- data/doc/classes/MOFile/InvalidFormat.html +111 -0
- data/doc/classes/Module.html +158 -0
- data/doc/classes/String.html +225 -0
- data/doc/created.rid +1 -0
- data/doc/files/ChangeLog.html +2355 -0
- data/doc/files/README.html +510 -0
- data/doc/files/lib/gettext/active_record_rb.html +110 -0
- data/doc/files/lib/gettext/cgi_rb.html +110 -0
- data/doc/files/lib/gettext/container_rb.html +108 -0
- data/doc/files/lib/gettext/erb_rb.html +109 -0
- data/doc/files/lib/gettext/iconv_rb.html +109 -0
- data/doc/files/lib/gettext/mo_rb.html +108 -0
- data/doc/files/lib/gettext/parser/active_record_rb.html +119 -0
- data/doc/files/lib/gettext/parser/erb_rb.html +109 -0
- data/doc/files/lib/gettext/parser/glade_rb.html +109 -0
- data/doc/files/lib/gettext/parser/ruby_rb.html +110 -0
- data/doc/files/lib/gettext/poparser_rb.html +108 -0
- data/doc/files/lib/gettext/rails_compat_rb.html +108 -0
- data/doc/files/lib/gettext/rails_rb.html +112 -0
- data/doc/files/lib/gettext/rgettext_rb.html +110 -0
- data/doc/files/lib/gettext/rmsgfmt_rb.html +112 -0
- data/doc/files/lib/gettext/rmsgmerge_rb.html +112 -0
- data/doc/files/lib/gettext/string_rb.html +101 -0
- data/doc/files/lib/gettext/textdomain_rb.html +109 -0
- data/doc/files/lib/gettext/textdomainmanager_rb.html +109 -0
- data/doc/files/lib/gettext/utils_rb.html +111 -0
- data/doc/files/lib/gettext/version_rb.html +101 -0
- data/doc/files/lib/gettext_rb.html +113 -0
- data/doc/files/lib/locale/base_rb.html +101 -0
- data/doc/files/lib/locale/cgi_rb.html +108 -0
- data/doc/files/lib/locale/jruby_rb.html +110 -0
- data/doc/files/lib/locale/object_rb.html +101 -0
- data/doc/files/lib/locale/posix_rb.html +108 -0
- data/doc/files/lib/locale/win32_rb.html +110 -0
- data/doc/files/lib/locale/win32_table_rb.html +101 -0
- data/doc/files/lib/locale_rb.html +111 -0
- data/doc/fr_class_index.html +57 -0
- data/doc/fr_file_index.html +58 -0
- data/doc/fr_method_index.html +155 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/gettext.rb +102 -50
- data/lib/gettext/cgi.rb +2 -27
- data/lib/gettext/iconv.rb +76 -62
- data/lib/gettext/mo.rb +3 -3
- data/lib/gettext/parser/erb.rb +2 -2
- data/lib/gettext/rails.rb +69 -48
- data/lib/gettext/rgettext.rb +2 -2
- data/lib/gettext/rmsgmerge.rb +2 -2
- data/lib/gettext/string.rb +9 -5
- data/lib/gettext/textdomain.rb +3 -3
- data/lib/gettext/textdomainmanager.rb +5 -5
- data/lib/gettext/utils.rb +4 -3
- data/lib/gettext/version.rb +1 -1
- data/lib/{gettext/locale.rb → locale.rb} +11 -58
- data/lib/locale/base.rb +60 -0
- data/lib/{gettext/locale_cgi.rb → locale/cgi.rb} +30 -28
- data/lib/locale/jruby.rb +36 -0
- data/lib/{gettext/locale_object.rb → locale/object.rb} +78 -24
- data/lib/locale/posix.rb +22 -0
- data/lib/locale/win32.rb +48 -0
- data/lib/{gettext/locale_table_win32.rb → locale/win32_table.rb} +3 -2
- data/po/es/rails.po +1 -2
- data/po/hu/rails.po +139 -0
- data/po/hu/rgettext.po +126 -0
- data/po/ja/rails.po +5 -5
- data/po/ua/rails.po +150 -0
- data/po/ua/rgettext.po +132 -0
- data/pre-setup.rb +2 -4
- data/samples/cgi/cookie.cgi +1 -0
- data/samples/cgi/helloerb1.cgi +6 -3
- data/samples/cgi/helloerb2.cgi +6 -3
- data/samples/cgi/http.rb +3 -7
- data/samples/cgi/index.cgi +2 -1
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/hu/helloerb1.po +59 -0
- data/samples/cgi/po/hu/helloerb2.po +51 -0
- data/samples/cgi/po/hu/hellolib.po +23 -0
- data/samples/cgi/po/hu/main.po +82 -0
- data/samples/cgi/po/ua/helloerb1.po +62 -0
- data/samples/cgi/po/ua/helloerb2.po +54 -0
- data/samples/cgi/po/ua/hellolib.po +26 -0
- data/samples/cgi/po/ua/main.po +84 -0
- data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/hu/hello.po +22 -0
- data/samples/po/hu/hello2.po +30 -0
- data/samples/po/hu/hello_noop.po +26 -0
- data/samples/po/hu/hello_plural.po +25 -0
- data/samples/po/hu/helloglade2.po +31 -0
- data/samples/po/hu/hellogtk.po +22 -0
- data/samples/po/hu/hellotk.po +23 -0
- data/samples/po/ua/hello.po +22 -0
- data/samples/po/ua/hello2.po +30 -0
- data/samples/po/ua/hello_noop.po +26 -0
- data/samples/po/ua/hello_plural.po +29 -0
- data/samples/po/ua/helloglade2.po +34 -0
- data/samples/po/ua/hellogtk.po +22 -0
- data/samples/po/ua/hellotk.po +26 -0
- data/samples/rails/README +15 -31
- data/samples/rails/Rakefile +1 -1
- data/samples/rails/app/controllers/application.rb +11 -4
- data/samples/rails/app/controllers/articles_controller.rb +96 -0
- data/samples/rails/app/helpers/application_helper.rb +1 -1
- data/samples/rails/app/helpers/{blog_helper.rb → articles_helper.rb} +6 -7
- data/samples/rails/app/views/articles/edit.html.erb +18 -0
- data/samples/rails/app/views/articles/index.html.erb +17 -0
- data/samples/rails/app/views/articles/new.html.erb +16 -0
- data/samples/rails/app/views/articles/show.html.erb +6 -0
- data/samples/rails/app/views/layouts/articles.html.erb +26 -0
- data/samples/rails/config/boot.rb +104 -13
- data/samples/rails/config/database.yml +24 -21
- data/samples/rails/config/environment.rb +35 -30
- data/samples/rails/config/environments/development.rb +5 -6
- data/samples/rails/config/environments/production.rb +2 -3
- data/samples/rails/config/environments/test.rb +5 -2
- data/samples/rails/config/initializers/inflections.rb +10 -0
- data/samples/rails/config/initializers/mime_types.rb +5 -0
- data/samples/rails/config/routes.rb +30 -11
- data/samples/rails/db/migrate/001_create_articles.rb +14 -0
- data/samples/rails/db/schema.rb +16 -5
- data/samples/rails/lib/tasks/gettext.rake +2 -2
- data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/po/blog.pot +24 -24
- data/samples/rails/po/bs/blog.po +29 -29
- data/samples/rails/po/ca/blog.po +27 -27
- data/samples/rails/po/cs/blog.po +27 -27
- data/samples/rails/po/de/blog.po +27 -27
- data/samples/rails/po/el/blog.po +27 -27
- data/samples/rails/po/en/blog.po +24 -24
- data/samples/rails/po/eo/blog.po +27 -27
- data/samples/rails/po/es/blog.po +27 -27
- data/samples/rails/po/fr/blog.po +27 -27
- data/samples/rails/po/hr/blog.po +29 -29
- data/samples/rails/po/hu/blog.po +105 -0
- data/samples/rails/po/it/blog.po +27 -27
- data/samples/rails/po/ja/blog.po +27 -27
- data/samples/rails/po/ko/blog.po +27 -27
- data/samples/rails/po/nb/blog.po +26 -27
- data/samples/rails/po/nl/blog.po +27 -27
- data/samples/rails/po/pt_BR/blog.po +27 -27
- data/samples/rails/po/ru/blog.po +27 -27
- data/samples/rails/po/ua/blog.po +108 -0
- data/samples/rails/po/vi/blog.po +26 -31
- data/samples/rails/po/zh/blog.po +27 -27
- data/samples/rails/po/zh_TW/blog.po +27 -27
- data/samples/rails/public/404.html +27 -5
- data/samples/rails/public/422.html +30 -0
- data/samples/rails/public/500.html +27 -5
- data/samples/rails/public/index.html +6 -6
- data/samples/rails/public/javascripts/application.js +2 -0
- data/samples/rails/public/javascripts/controls.js +532 -319
- data/samples/rails/public/javascripts/dragdrop.js +521 -133
- data/samples/rails/public/javascripts/effects.js +708 -442
- data/samples/rails/public/javascripts/prototype.js +3393 -953
- data/samples/rails/public/stylesheets/blog.css +4 -0
- data/samples/rails/public/stylesheets/scaffold.css +5 -5
- data/samples/rails/test/functional/articles_controller_test.rb +51 -0
- data/samples/rails/test/test_helper.rb +31 -19
- data/samples/rails/test/unit/article_test.rb +2 -9
- data/samples/rails/vendor/plugins/gettext/init.rb +5 -3
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +9 -10
- data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +28 -0
- data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +27 -0
- data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +30 -0
- data/test/Rakefile +2 -1
- data/test/benchmark.rb +28 -0
- data/test/fixtures/topic.rb +15 -0
- data/test/rails/Rakefile +2 -1
- data/test/rails/app/controllers/articles_controller.rb +1 -1
- data/test/rails/app/controllers/users_controller.rb +10 -0
- data/test/rails/app/models/user.rb +2 -1
- data/test/rails/app/views/articles/{_form.rhtml → _form.html.erb} +0 -0
- data/test/rails/app/views/articles/active_form_error.html.erb +1 -0
- data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +21 -0
- data/test/rails/app/views/articles/{edit.rhtml → edit.html.erb} +0 -0
- data/test/rails/app/views/articles/{list.rhtml → list.html.erb} +0 -3
- data/test/rails/app/views/articles/{list_fr.rhtml → list_fr.html.erb} +0 -0
- data/test/rails/app/views/articles/{multi_error_messages_for.rhtml → multi_error_messages_for.html.erb} +0 -0
- data/test/rails/app/views/articles/{new.rhtml → new.html.erb} +0 -0
- data/test/rails/app/views/articles/{show.rhtml → show.html.erb} +0 -0
- data/test/rails/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
- data/test/rails/app/views/layouts/{mailer.rhtml → mailer.html.erb} +0 -0
- data/test/rails/app/views/layouts/users.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message_fr.html.erb +13 -0
- data/test/rails/config/environment.rb +6 -1
- data/test/rails/config/environments/development.rb +0 -3
- data/test/rails/db/schema.rb +17 -10
- data/test/rails/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
- data/test/rails/log/development.log +136 -29
- data/test/rails/log/test.log +2002 -128
- data/test/rails/po/ja/rails_test.po +68 -61
- data/test/rails/po/rails_test.pot +57 -55
- data/test/rails/test/fixtures/users.yml +5 -0
- data/test/rails/test/functional/articles_controller_test.rb +6 -1
- data/test/rails/test/functional/users_controller_test.rb +65 -0
- data/test/rails/test/result/en/custom_error_message.html +83 -0
- data/test/rails/test/result/en/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/en/list.html +0 -3
- data/test/rails/test/result/en/multi_error_messages_for.html +1 -1
- data/test/rails/test/result/fr/custom_error_message.html +83 -0
- data/test/rails/test/result/fr/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/custom_error_message.html +83 -0
- data/test/rails/test/result/ja/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/list.html +0 -3
- data/test/rails/test/result/ja/multi_error_messages_for.html +1 -1
- data/test/test.sh +5 -7
- data/test/{gettext_test_active_record.rb → test_active_record.rb} +20 -10
- data/test/{gettext_test_cgi.rb → test_cgi.rb} +0 -0
- data/test/{gettext_test.rb → test_gettext.rb} +91 -9
- data/test/test_java.sh +12 -0
- data/test/{gettext_test_locale.rb → test_locale.rb} +3 -8
- data/test/{gettext_test_multi_textdomain.rb → test_multi_textdomain.rb} +2 -2
- data/test/{gettext_test_parser.rb → test_parser.rb} +77 -77
- data/test/{gettext_test_rails.rb → test_rails.rb} +0 -0
- data/test/{gettext_test_rails_caching.rb → test_rails_caching.rb} +16 -2
- data/test/{gettext_test_string.rb → test_string.rb} +1 -0
- data/test/{test_rubyparser_N.rb → testlib/N_.rb} +0 -0
- data/test/testlib/erb.rhtml +15 -0
- data/test/testlib/erb.rxml +16 -0
- data/test/{test_rubyparser.rb → testlib/gettext.rb} +0 -0
- data/test/testlib/gladeparser.glade +183 -0
- data/test/{test_rubyparser_n_.rb → testlib/ngettext.rb} +0 -0
- data/test/{test_nsgettext.rb → testlib/nsgettext.rb} +0 -0
- data/test/{test_sgettext.rb → testlib/sgettext.rb} +0 -0
- data/test/{testlib1.rb → testlib/testlib1.rb} +0 -0
- data/test/{testlib2.rb → testlib/testlib2.rb} +1 -1
- data/test/{testlib3.rb → testlib/testlib3.rb} +0 -0
- data/test/{testlib4.rb → testlib/testlib4.rb} +1 -1
- data/test/{testlib5.rb → testlib/testlib5.rb} +0 -0
- data/test/{testlib6.rb → testlib/testlib6.rb} +0 -0
- metadata +1374 -1171
- data/ext/gettext/extconf.rb +0 -20
- data/ext/gettext/locale_system.c +0 -83
- data/lib/gettext/locale_posix.rb +0 -82
- data/lib/gettext/locale_win32.rb +0 -82
- data/samples/cgi/ruby.bat +0 -4
- data/samples/rails/app/controllers/blog_controller.rb +0 -58
- data/samples/rails/app/views/blog/_form.rhtml +0 -25
- data/samples/rails/app/views/blog/edit.rhtml +0 -22
- data/samples/rails/app/views/blog/list.rhtml +0 -29
- data/samples/rails/app/views/blog/new.rhtml +0 -21
- data/samples/rails/app/views/blog/show.rhtml +0 -18
- data/samples/rails/app/views/layouts/blog.rhtml +0 -36
- data/samples/rails/test/functional/blog_controller_test.rb +0 -98
- data/test/gettext_runner.rb +0 -22
data/po/ua/rgettext.po
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
# translation of rgettext.po to Ukrainian
|
|
2
|
+
# a po-file for Ruby-GetText-Package
|
|
3
|
+
#
|
|
4
|
+
# Copyright (C) 2004-2006 Masao Mutoh
|
|
5
|
+
#
|
|
6
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
7
|
+
#
|
|
8
|
+
msgid ""
|
|
9
|
+
msgstr ""
|
|
10
|
+
"Project-Id-Version: ruby-gettext 1.9.0\n"
|
|
11
|
+
"POT-Creation-Date: 2007-06-26 14:09+0900\n"
|
|
12
|
+
"PO-Revision-Date: 2007-11-16 04:13+0200\n"
|
|
13
|
+
"Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
|
|
14
|
+
"Language-Team: Ukrainian\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
|
19
|
+
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
20
|
+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
21
|
+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
22
|
+
|
|
23
|
+
#: lib/gettext/utils.rb:52
|
|
24
|
+
msgid "Failed to merge with %{defpo} - skipping!"
|
|
25
|
+
msgstr "Не вдалось об'єднати із %{defpo} - пропущено!"
|
|
26
|
+
|
|
27
|
+
#: lib/gettext/utils.rb:53
|
|
28
|
+
msgid "Please check new .pot in %{failed_filename}"
|
|
29
|
+
msgstr "Будь ласка, перевірте новий .pot в %{failed_filename}"
|
|
30
|
+
|
|
31
|
+
#: lib/gettext/rmsgfmt.rb:31 lib/gettext/rgettext.rb:196
|
|
32
|
+
msgid "no input files"
|
|
33
|
+
msgstr "не задані вхідні файли"
|
|
34
|
+
|
|
35
|
+
#: lib/gettext/rmsgfmt.rb:47
|
|
36
|
+
msgid "Usage: %s input.po [-o output.mo]"
|
|
37
|
+
msgstr "Використання: %s input.po [-o output.mo]"
|
|
38
|
+
|
|
39
|
+
#: lib/gettext/rmsgfmt.rb:49
|
|
40
|
+
msgid "Generate binary message catalog from textual translation description."
|
|
41
|
+
msgstr "Генерує бінарний каталог повідомлень із перекладу."
|
|
42
|
+
|
|
43
|
+
#: lib/gettext/rmsgfmt.rb:51 lib/gettext/rmsgmerge.rb:408
|
|
44
|
+
#: lib/gettext/rgettext.rb:153
|
|
45
|
+
msgid "Specific options:"
|
|
46
|
+
msgstr "Додаткові параметри:"
|
|
47
|
+
|
|
48
|
+
#: lib/gettext/rmsgfmt.rb:53 lib/gettext/rmsgmerge.rb:410
|
|
49
|
+
#: lib/gettext/rgettext.rb:155
|
|
50
|
+
msgid "write output to specified file"
|
|
51
|
+
msgstr "записати результат у вказаний файл"
|
|
52
|
+
|
|
53
|
+
#: lib/gettext/rmsgfmt.rb:57 lib/gettext/rmsgmerge.rb:421
|
|
54
|
+
#: lib/gettext/rgettext.rb:172
|
|
55
|
+
msgid "display version information and exit"
|
|
56
|
+
msgstr "показати інформацію про версію і завершити роботу"
|
|
57
|
+
|
|
58
|
+
#: lib/gettext/rmsgmerge.rb:403
|
|
59
|
+
msgid "Usage: %s def.po ref.pot [-o output.pot]"
|
|
60
|
+
msgstr "Використання: %s def.po ref.pot [-o output.pot]"
|
|
61
|
+
|
|
62
|
+
#: lib/gettext/rmsgmerge.rb:406
|
|
63
|
+
msgid ""
|
|
64
|
+
"Merges two Uniforum style .po files together. The def.po file is an existing "
|
|
65
|
+
"PO file with translations. The ref.pot file is the last created PO file with "
|
|
66
|
+
"up-to-date source references. ref.pot is generally created by rgettext."
|
|
67
|
+
msgstr ""
|
|
68
|
+
"Об'єднує файли .po Uniforum формату. В файлі def.po зберігаються уже "
|
|
69
|
+
"перекладені стрічки. Файл ref.pot є оновленою версією PO файлу із "
|
|
70
|
+
"вихідних текстів і не містить перекладів. ref.pot зазвичай створюють "
|
|
71
|
+
"за допомогою програми rgettext."
|
|
72
|
+
|
|
73
|
+
#: lib/gettext/rmsgmerge.rb:447
|
|
74
|
+
msgid "definition po is not given."
|
|
75
|
+
msgstr "не вказано файл def.po."
|
|
76
|
+
|
|
77
|
+
#: lib/gettext/rmsgmerge.rb:449
|
|
78
|
+
msgid "reference pot is not given."
|
|
79
|
+
msgstr "не вказано файл ref.po."
|
|
80
|
+
|
|
81
|
+
#: lib/gettext/parser/glade.rb:74
|
|
82
|
+
msgid "`%{file}' is not glade-2.0 format."
|
|
83
|
+
msgstr "`%{file}' не в форматі glade-2.0."
|
|
84
|
+
|
|
85
|
+
#: lib/gettext/parser/active_record.rb:39
|
|
86
|
+
msgid "'%{file}' is not found."
|
|
87
|
+
msgstr "'%{file}' не знайдено."
|
|
88
|
+
|
|
89
|
+
#: lib/gettext/parser/active_record.rb:80
|
|
90
|
+
msgid "Ignored '%{file}'. Solve dependencies first."
|
|
91
|
+
msgstr "Проігноровано '%{file}'. "
|
|
92
|
+
"Будь ласка, вирішіть проблему із залежностями."
|
|
93
|
+
|
|
94
|
+
#: lib/gettext/parser/active_record.rb:104
|
|
95
|
+
msgid "No database is available."
|
|
96
|
+
msgstr "Немає доступної бази даних."
|
|
97
|
+
|
|
98
|
+
#: lib/gettext/parser/active_record.rb:138
|
|
99
|
+
msgid "rubygems are not found."
|
|
100
|
+
msgstr "rubygems не знайдено."
|
|
101
|
+
|
|
102
|
+
#: lib/gettext/rgettext.rb:43
|
|
103
|
+
msgid "'%{klass}' is ignored."
|
|
104
|
+
msgstr "проігноровано '%{klass}'."
|
|
105
|
+
|
|
106
|
+
#: lib/gettext/rgettext.rb:149
|
|
107
|
+
msgid "Usage: %s input.rb [-r parser.rb] [-o output.pot]"
|
|
108
|
+
msgstr "Використання: %s input.rb [-r parser.rb] [-o output.pot]"
|
|
109
|
+
|
|
110
|
+
#: lib/gettext/rgettext.rb:151
|
|
111
|
+
msgid "Extract translatable strings from given input files."
|
|
112
|
+
msgstr "Витягувати стрічки для перекладу із вказаних вхідних файлів."
|
|
113
|
+
|
|
114
|
+
#: lib/gettext/rgettext.rb:159
|
|
115
|
+
msgid "File '%s' already exists."
|
|
116
|
+
msgstr "Файл '%s' уже існує."
|
|
117
|
+
|
|
118
|
+
#: lib/gettext/rgettext.rb:164
|
|
119
|
+
msgid "require the library before executing rgettext"
|
|
120
|
+
msgstr "для виконання rgettext необхідна бібліотека"
|
|
121
|
+
|
|
122
|
+
#: lib/gettext/rgettext.rb:168
|
|
123
|
+
msgid "run in debugging mode"
|
|
124
|
+
msgstr "запуск в режимі відлагодження"
|
|
125
|
+
|
|
126
|
+
#: src/poparser.ry:26 src/poparser.ry:41
|
|
127
|
+
msgid "Warning: fuzzy message was ignored.\n"
|
|
128
|
+
msgstr "Попередження: проігноровано неточний переклад повідомлення.\n"
|
|
129
|
+
|
|
130
|
+
#: src/poparser.ry:125
|
|
131
|
+
msgid "Warning: obsolete msgid exists.\n"
|
|
132
|
+
msgstr "Попередження: є застаріла стрічка msgid.\n"
|
data/pre-setup.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
pre-setup.rb
|
|
3
3
|
|
|
4
|
-
Copyright(c) 2005
|
|
4
|
+
Copyright(c) 2005-2007 Masao Mutoh
|
|
5
5
|
This program is licenced under the same licence as Ruby.
|
|
6
6
|
|
|
7
|
-
$Id: pre-setup.rb,v 1.
|
|
7
|
+
$Id: pre-setup.rb,v 1.7 2007/11/10 02:51:21 mutoh Exp $
|
|
8
8
|
=end
|
|
9
9
|
|
|
10
10
|
require 'fileutils'
|
|
@@ -14,9 +14,7 @@ ruby = config("ruby-path")
|
|
|
14
14
|
gettext = "#{File.join(config("siterubyver"), "gettext.rb")}"
|
|
15
15
|
gettext_dir = "#{File.join(config("siterubyver"), "gettext")}"
|
|
16
16
|
gettext_dir2 = "#{File.join(config("siterubyverarch"), "gettext")}"
|
|
17
|
-
locale = "#{File.join(config("siterubyverarch"), "_locale.so")}"
|
|
18
17
|
FileUtils.rm_f gettext if FileTest.exist?(gettext)
|
|
19
18
|
FileUtils.rm_rf gettext_dir if FileTest.exist?(gettext_dir)
|
|
20
19
|
FileUtils.rm_rf gettext_dir2 if FileTest.exist?(gettext_dir2)
|
|
21
|
-
FileUtils.rm_f locale if FileTest.exist?(locale)
|
|
22
20
|
|
data/samples/cgi/cookie.cgi
CHANGED
data/samples/cgi/helloerb1.cgi
CHANGED
|
@@ -23,8 +23,9 @@ require 'gettext/erb'
|
|
|
23
23
|
class SimpleContainer1
|
|
24
24
|
include GetText::ErbContainer
|
|
25
25
|
|
|
26
|
-
def initialize(domainname, domainpath
|
|
27
|
-
|
|
26
|
+
def initialize(domainname, domainpath, cgi)
|
|
27
|
+
set_cgi(cgi)
|
|
28
|
+
bindtextdomain(domainname, :path => domainpath)
|
|
28
29
|
@domainname = domainname
|
|
29
30
|
end
|
|
30
31
|
|
|
@@ -42,7 +43,9 @@ GetText.output_charset = "UTF-8"
|
|
|
42
43
|
|
|
43
44
|
print "Content-type:text/html; charset=UTF-8\n\n"
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
cgi = CGI.new
|
|
47
|
+
|
|
48
|
+
con = SimpleContainer1.new("helloerb1", "locale", cgi)
|
|
46
49
|
|
|
47
50
|
if GetText.cgi["other"] == "true"
|
|
48
51
|
print con.to_html("other.rhtml")
|
data/samples/cgi/helloerb2.cgi
CHANGED
|
@@ -25,8 +25,8 @@ require 'gettext/erb'
|
|
|
25
25
|
class SimpleContainer2
|
|
26
26
|
include GetText::ErbContainer
|
|
27
27
|
|
|
28
|
-
def initialize(domainname, domainpath
|
|
29
|
-
bindtextdomain(domainname, domainpath
|
|
28
|
+
def initialize(domainname, domainpath)
|
|
29
|
+
bindtextdomain(domainname, :path => domainpath)
|
|
30
30
|
@domainname = domainname
|
|
31
31
|
end
|
|
32
32
|
|
|
@@ -39,7 +39,10 @@ class SimpleContainer2
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
cgi = CGI.new
|
|
43
|
+
GetText.set_cgi(cgi)
|
|
44
|
+
|
|
45
|
+
print "Content-type:text/html; charset=#{Locale.get.charset}\n\n"
|
|
43
46
|
|
|
44
47
|
con = SimpleContainer2.new("helloerb2", "locale")
|
|
45
48
|
|
data/samples/cgi/http.rb
CHANGED
|
@@ -2,24 +2,20 @@
|
|
|
2
2
|
=begin
|
|
3
3
|
http.rb - An WebServer for helloerb sample.
|
|
4
4
|
|
|
5
|
-
Copyright (C) 2005
|
|
5
|
+
Copyright (C) 2005-2008 Masao Mutoh
|
|
6
6
|
|
|
7
7
|
You may redistribute it and/or modify it under the same
|
|
8
8
|
license terms as Ruby.
|
|
9
9
|
|
|
10
|
-
$Id: http.rb,v 1.
|
|
10
|
+
$Id: http.rb,v 1.3 2008/02/02 16:47:40 mutoh Exp $
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'webrick'
|
|
14
14
|
require 'cgi'
|
|
15
15
|
require 'rbconfig'
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
interpreter = '.\ruby.bat'
|
|
19
|
-
else
|
|
20
|
-
interpreter = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']) +
|
|
17
|
+
interpreter = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']) +
|
|
21
18
|
Config::CONFIG['EXEEXT']
|
|
22
|
-
end
|
|
23
19
|
|
|
24
20
|
srv = WEBrick::HTTPServer.new({:BindAddress => '127.0.0.1',
|
|
25
21
|
:Logger => WEBrick::Log::new($stderr, WEBrick::Log::DEBUG),
|
data/samples/cgi/index.cgi
CHANGED
|
@@ -22,6 +22,7 @@ end
|
|
|
22
22
|
require 'gettext/cgi'
|
|
23
23
|
|
|
24
24
|
include GetText
|
|
25
|
+
set_cgi(CGI.new)
|
|
25
26
|
|
|
26
27
|
print "Content-type:text/html; charset=UTF-8\n\n"
|
|
27
28
|
|
|
@@ -101,7 +102,7 @@ puts %Q[</ol>
|
|
|
101
102
|
<hr/>
|
|
102
103
|
<div class="copyright">
|
|
103
104
|
<p>] + _("index.cgi is also a Ruby-GetText sample script using CGI(not ERB).")+ %Q[</p>
|
|
104
|
-
<p>Copyright (C) 2005 Masao Mutoh</p>
|
|
105
|
+
<p>Copyright (C) 2005-2008 Masao Mutoh</p>
|
|
105
106
|
</div>
|
|
106
107
|
</body>
|
|
107
108
|
</html>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# CGI/ERB sample for Ruby-GetText-Package.
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2005,2006 Masao Mutoh
|
|
4
|
+
#
|
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
6
|
+
#
|
|
7
|
+
# Tamás Tompa <tompata at gmail.com>, 2008.
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: cgi-sample 1.1.1\n"
|
|
12
|
+
"POT-Creation-Date: 2006-01-07 14:48+0900\n"
|
|
13
|
+
"PO-Revision-Date: 2008-01-15 00:00+0900\n"
|
|
14
|
+
"Last-Translator: Tamás Tompa <tompata at gmail.com>\n"
|
|
15
|
+
"Language-Team: Hungarian\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
|
|
21
|
+
#: helloerb1.cgi:32
|
|
22
|
+
msgid "Sample script for CGI/ERB (UTF-8)."
|
|
23
|
+
msgstr "Példa script CGI/ERB (UTF-8)-hoz."
|
|
24
|
+
|
|
25
|
+
#: helloerb.rhtml:5 other.rhtml:5
|
|
26
|
+
msgid "Sample script for CGI/ERB and Ruby-GetText-Package"
|
|
27
|
+
msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez"
|
|
28
|
+
|
|
29
|
+
#: helloerb.rhtml:12
|
|
30
|
+
msgid "Hello World"
|
|
31
|
+
msgstr "Hello világ"
|
|
32
|
+
|
|
33
|
+
#: helloerb.rhtml:15 other.rhtml:11
|
|
34
|
+
msgid "locale"
|
|
35
|
+
msgstr "locale"
|
|
36
|
+
|
|
37
|
+
#: helloerb.rhtml:16 other.rhtml:12
|
|
38
|
+
msgid "output_charset"
|
|
39
|
+
msgstr "output_charset"
|
|
40
|
+
|
|
41
|
+
#: helloerb.rhtml:17 other.rhtml:13
|
|
42
|
+
msgid "QUERY_STRING"
|
|
43
|
+
msgstr "QUERY_STRING"
|
|
44
|
+
|
|
45
|
+
#: helloerb.rhtml:19
|
|
46
|
+
msgid "Call a library method which has another textdomain."
|
|
47
|
+
msgstr "Könyvtári metódus hívása, ami egy másik textdomain-ben van."
|
|
48
|
+
|
|
49
|
+
#: helloerb.rhtml:21 other.rhtml:15
|
|
50
|
+
msgid "Back"
|
|
51
|
+
msgstr "Vissza"
|
|
52
|
+
|
|
53
|
+
#: other.rhtml:8
|
|
54
|
+
msgid "Another sample"
|
|
55
|
+
msgstr "Másik példa"
|
|
56
|
+
|
|
57
|
+
#: other.rhtml:9
|
|
58
|
+
msgid "This sample(other.rhtml) is the another ERB file of helloerb1.cgi."
|
|
59
|
+
msgstr "Ez a példa (other.rhtml) egy másik ERB fájl a helloerb1.cgi-hez."
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# CGI/ERB sample for Ruby-GetText-Package.
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2005,2006 Masao Mutoh
|
|
4
|
+
#
|
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
6
|
+
#
|
|
7
|
+
# Tamás Tompa <tompata at gmail.com>, 2008.
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: cgi-sample 1.1.1\n"
|
|
12
|
+
"POT-Creation-Date: 2006-01-07 14:51+0900\n"
|
|
13
|
+
"PO-Revision-Date: 2008-01-15 00:00+0900\n"
|
|
14
|
+
"Last-Translator: Tamás Tompa <tompata at gmail.com>\n"
|
|
15
|
+
"Language-Team: Hungarian\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
|
|
21
|
+
#: helloerb2.cgi:34
|
|
22
|
+
msgid "Sample script for CGI/ERB (Auto-Detect charset)."
|
|
23
|
+
msgstr "Példa script CGI/ERB (Automatikus karakterkódolás felismerő)-höz."
|
|
24
|
+
|
|
25
|
+
#: helloerb.rhtml:5
|
|
26
|
+
msgid "Sample script for CGI/ERB and Ruby-GetText-Package"
|
|
27
|
+
msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez"
|
|
28
|
+
|
|
29
|
+
#: helloerb.rhtml:12
|
|
30
|
+
msgid "Hello World"
|
|
31
|
+
msgstr "Hello világ"
|
|
32
|
+
|
|
33
|
+
#: helloerb.rhtml:15
|
|
34
|
+
msgid "locale"
|
|
35
|
+
msgstr "locale"
|
|
36
|
+
|
|
37
|
+
#: helloerb.rhtml:16
|
|
38
|
+
msgid "output_charset"
|
|
39
|
+
msgstr "output_charset"
|
|
40
|
+
|
|
41
|
+
#: helloerb.rhtml:17
|
|
42
|
+
msgid "QUERY_STRING"
|
|
43
|
+
msgstr "QUERY_STRING"
|
|
44
|
+
|
|
45
|
+
#: helloerb.rhtml:19
|
|
46
|
+
msgid "Call a library method which has another textdomain."
|
|
47
|
+
msgstr "Könyvtári metódus hívása, ami egy másik textdomain-ben van."
|
|
48
|
+
|
|
49
|
+
#: helloerb.rhtml:21
|
|
50
|
+
msgid "Back"
|
|
51
|
+
msgstr "Vissza"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# CGI/ERB sample for Ruby-GetText-Package.
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2005,2006 Masao Mutoh
|
|
4
|
+
#
|
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
6
|
+
#
|
|
7
|
+
# Tamás Tompa <tompata at gmail.com>, 2008.
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: cgi-sample 1.1.1\n"
|
|
12
|
+
"POT-Creation-Date: 2006-01-07 14:53+0900\n"
|
|
13
|
+
"PO-Revision-Date: 2008-01-15 00:00+0900\n"
|
|
14
|
+
"Last-Translator: Tamás Tompa <tompata at gmail.com>\n"
|
|
15
|
+
"Language-Team: Hungarian\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
|
|
21
|
+
#: hellolib.rb:19
|
|
22
|
+
msgid "This message is from hellolib."
|
|
23
|
+
msgstr "Az az üzenet a hellolib-ből jön."
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# CGI/ERB sample for Ruby-GetText-Package.
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2005,2006 Masao Mutoh
|
|
4
|
+
#
|
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
6
|
+
#
|
|
7
|
+
# Tamás Tompa <tompata at gmail.com>, 2008.
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: cgi-sample 1.1.1\n"
|
|
12
|
+
"POT-Creation-Date: 2006-01-07 14:55+0900\n"
|
|
13
|
+
"PO-Revision-Date: 2008-01-15 00:00+0900\n"
|
|
14
|
+
"Last-Translator: Tamás Tompa <tompata at gmail.com>\n"
|
|
15
|
+
"Language-Team: Hungarian\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
|
|
21
|
+
#: index.cgi:36
|
|
22
|
+
msgid "an ERB/CGI sample (UTF-8)."
|
|
23
|
+
msgstr "egy ERB/CGI példa (UTF-8)."
|
|
24
|
+
|
|
25
|
+
#: index.cgi:37
|
|
26
|
+
msgid ""
|
|
27
|
+
"an ERB/CGI sample (UTF-8). This sample uses the same container as sample 1 "
|
|
28
|
+
"but has a different rhtml file."
|
|
29
|
+
msgstr ""
|
|
30
|
+
"egy ERB/CGI példa (UTF-8). Ez a példa ugyanazt a container-t használja, mint a példa 1"
|
|
31
|
+
"de másik rhtml fájlt."
|
|
32
|
+
|
|
33
|
+
#: index.cgi:38
|
|
34
|
+
msgid "an ERB/CGI sample (Auto-Detect charset)."
|
|
35
|
+
msgstr "egy ERB/CGI példa (Automatikus karakterkódolás felismerő)."
|
|
36
|
+
|
|
37
|
+
#: index.cgi:50 cookie.cgi:44
|
|
38
|
+
msgid "Sample script for CGI/ERB and Ruby-GetText-Package"
|
|
39
|
+
msgstr "Példa script CGI/ERB-hez és a Ruby-GetText-Package-hez"
|
|
40
|
+
|
|
41
|
+
#: index.cgi:55
|
|
42
|
+
msgid "Ruby-GetText CGI sample scripts"
|
|
43
|
+
msgstr "Ruby-GetText CGI példa script-ek"
|
|
44
|
+
|
|
45
|
+
#: index.cgi:57
|
|
46
|
+
msgid "Supported Locales:"
|
|
47
|
+
msgstr "Támogatott területek (locale-ek):"
|
|
48
|
+
|
|
49
|
+
#: index.cgi:58
|
|
50
|
+
msgid "Auto-Detect a locale from the WWW browser"
|
|
51
|
+
msgstr "Automatikus (locale) felismerés böngészőből"
|
|
52
|
+
|
|
53
|
+
#: index.cgi:66
|
|
54
|
+
msgid "Set locale as a \"lang\" parameter"
|
|
55
|
+
msgstr "Locale beállítása mint \"lang\" paraméter"
|
|
56
|
+
|
|
57
|
+
#: index.cgi:82
|
|
58
|
+
msgid "Set \"lang\" to cookie."
|
|
59
|
+
msgstr "A megfelelő \"lang\" cookie beállítása."
|
|
60
|
+
|
|
61
|
+
#: index.cgi:83
|
|
62
|
+
msgid ""
|
|
63
|
+
"Click one of the link below, and then click \"Auto-Detect a locale from the "
|
|
64
|
+
"WWW browser\" samples."
|
|
65
|
+
msgstr ""
|
|
66
|
+
"Kattints az alábbi linkre, aztán kattints az \"Automatikus (locale) felismerés böngészőből\" példákra."
|
|
67
|
+
|
|
68
|
+
#: index.cgi:92
|
|
69
|
+
msgid "Source codes"
|
|
70
|
+
msgstr "Forrás kód"
|
|
71
|
+
|
|
72
|
+
#: index.cgi:103
|
|
73
|
+
msgid "index.cgi is also a Ruby-GetText sample script using CGI(not ERB)."
|
|
74
|
+
msgstr "az index.cgi is egy Ruby-GetText példa script, ami CGI-t használ (nem ERB)."
|
|
75
|
+
|
|
76
|
+
#: cookie.cgi:50
|
|
77
|
+
msgid "Set [%s] as the cookie of your WWW Browser."
|
|
78
|
+
msgstr "Cookie [%s] beállítása a böngésződben."
|
|
79
|
+
|
|
80
|
+
#: cookie.cgi:54
|
|
81
|
+
msgid "Back"
|
|
82
|
+
msgstr "Vissza"
|