gettext 1.10.0 → 1.90.0
Sign up to get free protection for your applications and to get access to all the features.
- 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/ext/gettext/extconf.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
extconf.rb
|
3
|
-
|
4
|
-
Copyright (C) 2002-2006 Masao Mutoh <mutoh@highway.ne.jp>
|
5
|
-
|
6
|
-
You may redistribute it and/or modify it under the same
|
7
|
-
license terms as Ruby.
|
8
|
-
|
9
|
-
$Id: extconf.rb,v 1.1 2006/02/07 00:24:45 mutoh Exp $
|
10
|
-
=end
|
11
|
-
|
12
|
-
require 'mkmf'
|
13
|
-
|
14
|
-
if RUBY_PLATFORM =~ /cygwin|mingw|mswin32|bccwin32/
|
15
|
-
have_header 'windows.h'
|
16
|
-
else
|
17
|
-
have_func 'setlocale'
|
18
|
-
have_func 'nl_langinfo'
|
19
|
-
end
|
20
|
-
create_makefile 'locale_system'
|
data/ext/gettext/locale_system.c
DELETED
@@ -1,83 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; tab-width: 4 -*-
|
2
|
-
*
|
3
|
-
* Copyright (C) 2002-2006 Masao Mutoh
|
4
|
-
*
|
5
|
-
* You may redistribute it and/or modify it under the same
|
6
|
-
* license terms as Ruby.
|
7
|
-
*
|
8
|
-
* $Id: locale_system.c,v 1.6 2006/06/04 14:43:37 mutoh Exp $
|
9
|
-
*/
|
10
|
-
|
11
|
-
#include "ruby.h"
|
12
|
-
|
13
|
-
#if defined HAVE_WINDOWS_H
|
14
|
-
# include <windows.h>
|
15
|
-
#else
|
16
|
-
# if defined HAVE_SETLOCALE
|
17
|
-
# include <locale.h>
|
18
|
-
# endif
|
19
|
-
# if defined HAVE_NL_LANGINFO
|
20
|
-
# include <langinfo.h>
|
21
|
-
# endif
|
22
|
-
#endif
|
23
|
-
#ifndef StringValuePtr
|
24
|
-
#define StringValuePtr(s) STR2CSTR(s)
|
25
|
-
#endif
|
26
|
-
|
27
|
-
#if defined HAVE_WINDOWS_H
|
28
|
-
static VALUE
|
29
|
-
gt_locale_id_win32(self)
|
30
|
-
VALUE self;
|
31
|
-
{
|
32
|
-
return INT2NUM(GetUserDefaultLangID());
|
33
|
-
}
|
34
|
-
#endif
|
35
|
-
static VALUE
|
36
|
-
gt_setlocale(self, type, locale)
|
37
|
-
VALUE self, type, locale;
|
38
|
-
{
|
39
|
-
# if defined HAVE_SETLOCALE
|
40
|
-
char* ret = setlocale(NUM2INT(type),
|
41
|
-
NIL_P(locale) ? NULL : StringValuePtr(locale));
|
42
|
-
return ret == NULL ? Qnil : rb_str_new2(ret);
|
43
|
-
# else
|
44
|
-
return Qnil;
|
45
|
-
# endif
|
46
|
-
}
|
47
|
-
|
48
|
-
static VALUE
|
49
|
-
gt_codeset(self)
|
50
|
-
VALUE self;
|
51
|
-
{
|
52
|
-
#if defined HAVE_WINDOWS_H
|
53
|
-
/* This isn't used now. See lib/gettext/locale_win32.rb */
|
54
|
-
char buf[2 + 10 + 1];
|
55
|
-
sprintf (buf, "CP%u", GetACP ());
|
56
|
-
return rb_str_new2(buf);
|
57
|
-
#elif defined HAVE_NL_LANGINFO && defined CODESET
|
58
|
-
return rb_str_new2(nl_langinfo(CODESET));
|
59
|
-
#else
|
60
|
-
return Qnil;
|
61
|
-
#endif
|
62
|
-
}
|
63
|
-
|
64
|
-
void Init_locale_system()
|
65
|
-
{
|
66
|
-
VALUE mLocale = rb_define_module("Locale");
|
67
|
-
VALUE mSystem = rb_define_module_under(mLocale, "System");
|
68
|
-
#if defined HAVE_WINDOWS_H
|
69
|
-
rb_define_module_function(mSystem, "locale_id", gt_locale_id_win32, 0);
|
70
|
-
#endif
|
71
|
-
rb_define_module_function(mSystem, "set", gt_setlocale, 2);
|
72
|
-
rb_define_module_function(mSystem, "codeset", gt_codeset, 0);
|
73
|
-
# if defined HAVE_SETLOCALE
|
74
|
-
rb_define_const(mSystem, "ALL", INT2NUM(LC_ALL));
|
75
|
-
rb_define_const(mSystem, "COLLATE", INT2NUM(LC_COLLATE));
|
76
|
-
rb_define_const(mSystem, "CTYPE", INT2NUM(LC_CTYPE));
|
77
|
-
rb_define_const(mSystem, "MESSAGES", INT2NUM(LC_MESSAGES));
|
78
|
-
rb_define_const(mSystem, "MONETARY", INT2NUM(LC_MONETARY));
|
79
|
-
rb_define_const(mSystem, "NUMERIC", INT2NUM(LC_NUMERIC));
|
80
|
-
rb_define_const(mSystem, "TIME", INT2NUM(LC_TIME));
|
81
|
-
#endif
|
82
|
-
|
83
|
-
}
|
data/lib/gettext/locale_posix.rb
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
locale_posix.rb
|
3
|
-
|
4
|
-
Copyright (C) 2002-2006 Masao Mutoh
|
5
|
-
|
6
|
-
You may redistribute it and/or modify it under the same
|
7
|
-
license terms as Ruby.
|
8
|
-
|
9
|
-
$Id: locale_posix.rb,v 1.5 2006/12/14 16:35:57 mutoh Exp $
|
10
|
-
=end
|
11
|
-
|
12
|
-
|
13
|
-
module Locale
|
14
|
-
# Locale::SystemPosix module for Posix OS (Unix)
|
15
|
-
# This is a low-level class. Application shouldn't use this directly.
|
16
|
-
module SystemPosix
|
17
|
-
extend Locale::System
|
18
|
-
module_function
|
19
|
-
@@default_locale = Locale::Object.new("C", nil, "UTF-8")
|
20
|
-
|
21
|
-
# Gets the system locale using setlocale and nl_langinfo.
|
22
|
-
# * Returns the system locale (Locale::Object).
|
23
|
-
def system
|
24
|
-
locale = nil
|
25
|
-
[ENV["LC_ALL"], ENV["LC_MESSAGES"], ENV["LANG"],
|
26
|
-
@@default_locale.orig_str].each do |loc|
|
27
|
-
if loc != nil and loc.size > 0
|
28
|
-
locale = Locale::Object.new(loc)
|
29
|
-
locale.charset = get_charset(locale)
|
30
|
-
break
|
31
|
-
end
|
32
|
-
end
|
33
|
-
locale
|
34
|
-
end
|
35
|
-
|
36
|
-
# Gets the charset of the locale.
|
37
|
-
# * locale: Locale::Object
|
38
|
-
# * Returns: the charset of the locale
|
39
|
-
def get_charset(locale)
|
40
|
-
old = set(Locale::System::CTYPE, nil)
|
41
|
-
set(Locale::System::CTYPE, locale.orig_str)
|
42
|
-
ret = codeset
|
43
|
-
set(Locale::System::CTYPE, old)
|
44
|
-
ret
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
# Sets a default locale. en.UTF-8 is the default value if not set.
|
49
|
-
# * locale: Locale::Object object. You can't set nil.
|
50
|
-
# * Returns: self
|
51
|
-
def set_default_locale(locale)
|
52
|
-
raise "Wrong parameter: #{locale}" if locale.nil?
|
53
|
-
@@default_locale = locale
|
54
|
-
self
|
55
|
-
end
|
56
|
-
|
57
|
-
# Sets a default locale. en.UTF-8 is the default value if not set.
|
58
|
-
# * locale: Locale::Object
|
59
|
-
# * Returns: locale
|
60
|
-
def default_locale=(locale)
|
61
|
-
set_default_locale(locale)
|
62
|
-
locale
|
63
|
-
end
|
64
|
-
|
65
|
-
# Gets the default Locale::Object.
|
66
|
-
# * Returns: the default locale
|
67
|
-
def default_locale
|
68
|
-
@@default_locale
|
69
|
-
end
|
70
|
-
|
71
|
-
if defined? Locale::System::MESSAGES
|
72
|
-
CTYPE = Locale::System::CTYPE #:nodoc:
|
73
|
-
NUMERIC = Locale::System::NUMERIC #:nodoc:
|
74
|
-
TIME = Locale::System::TIME #:nodoc:
|
75
|
-
COLLATE = Locale::System::COLLATE #:nodoc:
|
76
|
-
MONETARY = Locale::System::MONETARY #:nodoc:
|
77
|
-
MESSAGES = Locale::System::MESSAGES #:nodoc:
|
78
|
-
ALL = Locale::System::ALL #:nodoc:
|
79
|
-
end
|
80
|
-
@@locale_system_module = SystemPosix
|
81
|
-
end
|
82
|
-
|
data/lib/gettext/locale_win32.rb
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
locale_win32.rb
|
3
|
-
|
4
|
-
Copyright (C) 2002-2006 Masao Mutoh <mutoh@highway.ne.jp>
|
5
|
-
|
6
|
-
You may redistribute it and/or modify it under the same
|
7
|
-
license terms as Ruby.
|
8
|
-
|
9
|
-
$Id: locale_win32.rb,v 1.16 2007/07/03 16:57:07 mutoh Exp $
|
10
|
-
=end
|
11
|
-
|
12
|
-
require 'gettext/locale_table_win32'
|
13
|
-
|
14
|
-
module Locale
|
15
|
-
# Locale::SystemWin32 module for win32.
|
16
|
-
# This is a low-level class. Application shouldn't use this directly.
|
17
|
-
module SystemWin32
|
18
|
-
extend Locale::System
|
19
|
-
|
20
|
-
@@default_locale = Locale::Object.new("en", nil, "CP1252")
|
21
|
-
|
22
|
-
module_function
|
23
|
-
# Gets the charset of the locale. ENV(LC_ALL > LC_CTYPE > LC_MESSAGES > LANG) >
|
24
|
-
# the default locale from GetUserDefaultLangID.
|
25
|
-
# * locale: Locale::Object
|
26
|
-
# * Returns the charset of the locale
|
27
|
-
def get_charset(locale)
|
28
|
-
loc = LocaleTable.find{|v| v[1] == locale.to_win}
|
29
|
-
loc = LocaleTable.find{|v| v[1] =~ /^#{locale.language}-/} unless loc
|
30
|
-
loc ? loc[2] : "CP1252"
|
31
|
-
end
|
32
|
-
|
33
|
-
# Gets the system locale.
|
34
|
-
# * Returns the system locale (Locale::Object)
|
35
|
-
def system
|
36
|
-
lang = nil
|
37
|
-
ret = nil
|
38
|
-
["LC_ALL", "LC_CTYPE", "LC_MESSAGES", "LANG"].each do |env|
|
39
|
-
lang = ENV[env]
|
40
|
-
if lang
|
41
|
-
ret = Locale::Object.new(lang)
|
42
|
-
ret.charset = get_charset(ret)
|
43
|
-
break
|
44
|
-
end
|
45
|
-
end
|
46
|
-
unless lang
|
47
|
-
lang = LocaleTable.assoc(locale_id)
|
48
|
-
if lang
|
49
|
-
ret = Locale::Object.new(lang[1], nil, lang[2])
|
50
|
-
else
|
51
|
-
ret = @@default_locale
|
52
|
-
end
|
53
|
-
end
|
54
|
-
ret
|
55
|
-
end
|
56
|
-
|
57
|
-
# Sets a default locale. en.UTF-8 is the default value if not set.
|
58
|
-
# * locale: Locale::Object object. You can't set nil.
|
59
|
-
# * Returns: self
|
60
|
-
def set_default_locale(locale)
|
61
|
-
raise "Wrong parameter: #{locale}" if locale.nil?
|
62
|
-
@@default_locale = locale
|
63
|
-
self
|
64
|
-
end
|
65
|
-
|
66
|
-
# Sets a default locale. en.UTF-8 is the default value if not set.
|
67
|
-
# * locale: Locale::Object
|
68
|
-
# * Returns: locale
|
69
|
-
def default_locale=(locale)
|
70
|
-
set_default_locale(locale)
|
71
|
-
locale
|
72
|
-
end
|
73
|
-
|
74
|
-
# Gets the default Locale::Object.
|
75
|
-
# * Returns: the default locale
|
76
|
-
def default_locale
|
77
|
-
@@default_locale
|
78
|
-
end
|
79
|
-
end
|
80
|
-
@@locale_system_module = SystemWin32
|
81
|
-
end
|
82
|
-
|
data/samples/cgi/ruby.bat
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
# blog_controller.rb - a sample script for Ruby on Rails
|
2
|
-
#
|
3
|
-
# Copyright (C) 2005 Masao Mutoh
|
4
|
-
#
|
5
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
6
|
-
|
7
|
-
class BlogController < ApplicationController
|
8
|
-
# If you want to have textdomains each as controllers.
|
9
|
-
# You need to bind textdomain here.
|
10
|
-
|
11
|
-
#init_gettext "blog"
|
12
|
-
|
13
|
-
def index
|
14
|
-
list
|
15
|
-
render :action => 'list'
|
16
|
-
end
|
17
|
-
|
18
|
-
def list
|
19
|
-
@articles = Article.find(:all, :order => 'lastupdate desc, id desc')
|
20
|
-
end
|
21
|
-
|
22
|
-
def show
|
23
|
-
@article = Article.find(params[:id])
|
24
|
-
end
|
25
|
-
|
26
|
-
def new
|
27
|
-
@article = Article.new
|
28
|
-
end
|
29
|
-
|
30
|
-
def create
|
31
|
-
@article = Article.new(params[:article])
|
32
|
-
if @article.save
|
33
|
-
flash[:notice] = _('Article was successfully created.')
|
34
|
-
redirect_to :action => 'list'
|
35
|
-
else
|
36
|
-
render :action => 'new'
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def edit
|
41
|
-
@article = Article.find(params[:id])
|
42
|
-
end
|
43
|
-
|
44
|
-
def update
|
45
|
-
@article = Article.find(params[:id])
|
46
|
-
if @article.update_attributes(params[:article])
|
47
|
-
flash[:notice] = _('Article was successfully updated.')
|
48
|
-
redirect_to :action => 'show', :id => @article
|
49
|
-
else
|
50
|
-
render :action => 'edit'
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
def destroy
|
55
|
-
Article.find(params[:id]).destroy
|
56
|
-
redirect_to :action => 'list'
|
57
|
-
end
|
58
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# _form.rhtml - a sample script for Ruby on Rails
|
3
|
-
#
|
4
|
-
# Copyright (C) 2005 Masao Mutoh
|
5
|
-
#
|
6
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
7
|
-
|
8
|
-
# Views are bound a textdomain which is bound in application.rb or
|
9
|
-
# blog_controller.rb.
|
10
|
-
# So you don't need to call bindtextdomain here.
|
11
|
-
%>
|
12
|
-
|
13
|
-
<%= error_messages_for 'article' %>
|
14
|
-
|
15
|
-
<!--[form:article]-->
|
16
|
-
<p><label for="article_lastupdate"><%= _("Lastupdate") %></label><br/>
|
17
|
-
<%= date_select 'article', 'lastupdate', :use_month_numbers => true %></p>
|
18
|
-
<p><label for="article_title"><%= _("Title: Required.") %></label><br/>
|
19
|
-
<%= text_field 'article', 'title' %></p>
|
20
|
-
|
21
|
-
<p><label for="article_description"><%= _("Description: More than 10 characters.") %></label><br/>
|
22
|
-
<%= text_area 'article', 'description' %></p>
|
23
|
-
|
24
|
-
<!--[eoform:article]-->
|
25
|
-
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# edit.rhtml - a sample script for Ruby on Rails
|
3
|
-
#
|
4
|
-
# Copyright (C) 2005 Masao Mutoh
|
5
|
-
#
|
6
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
7
|
-
|
8
|
-
# Views are bound a textdomain which is bound in application.rb or
|
9
|
-
# blog_controller.rb.
|
10
|
-
# So you don't need to call bindtextdomain here.
|
11
|
-
%>
|
12
|
-
<h1><%= _('Editing article') %></h1>
|
13
|
-
|
14
|
-
<%= start_form_tag :action => 'update', :id => @article %>
|
15
|
-
<%= render_partial 'form' %>
|
16
|
-
<p><%= submit_tag _('Edit') %></p>
|
17
|
-
<%= end_form_tag %>
|
18
|
-
<p>
|
19
|
-
<%= link_to _('Show'), :action => 'show', :id => @article %> |
|
20
|
-
<%= link_to _('Destroy'), {:action => 'destroy', :id => @article}, :confirm => _('Are you sure?') %> |
|
21
|
-
<%= link_to _('Back'), :action => 'list' %>
|
22
|
-
</p>
|
@@ -1,29 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# list.rhtml - a sample script for Ruby on Rails
|
3
|
-
#
|
4
|
-
# Copyright (C) 2005 Masao Mutoh
|
5
|
-
#
|
6
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
7
|
-
|
8
|
-
# Views are bound a textdomain which is bound in application.rb or
|
9
|
-
# blog_controller.rb.
|
10
|
-
# So you don't need to call bindtextdomain here.
|
11
|
-
%>
|
12
|
-
|
13
|
-
<h1><%= _("GetText Sample Blog on RoR") %></h1>
|
14
|
-
<p style="text-align:right">
|
15
|
-
<%= link_to _('New article'), :action => 'new' %>
|
16
|
-
</p>
|
17
|
-
<% if @articles.size == 0 %>
|
18
|
-
<p><%= _("No articles were found.") %></p>
|
19
|
-
<% else %>
|
20
|
-
<%
|
21
|
-
@articles.each_with_index do |article, index|
|
22
|
-
%>
|
23
|
-
<%= show_article(article) %>
|
24
|
-
<%
|
25
|
-
break if index > 1
|
26
|
-
end
|
27
|
-
%>
|
28
|
-
<% end %>
|
29
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# new.rhtml - a sample script for Ruby on Rails
|
3
|
-
#
|
4
|
-
# Copyright (C) 2005 Masao Mutoh
|
5
|
-
#
|
6
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
7
|
-
|
8
|
-
# Views are bound a textdomain which is bound in application.rb or
|
9
|
-
# blog_controller.rb.
|
10
|
-
# So you don't need to call bindtextdomain here.
|
11
|
-
%>
|
12
|
-
|
13
|
-
<h1><%= _('New article') %></h1>
|
14
|
-
|
15
|
-
<%= start_form_tag :action => 'create' %>
|
16
|
-
<%= render_partial 'form' %>
|
17
|
-
<p><%= submit_tag _('Create') %></p>
|
18
|
-
<%= end_form_tag %>
|
19
|
-
<p>
|
20
|
-
<%= link_to _('Back'), :action => 'list' %>
|
21
|
-
</p>
|
@@ -1,18 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# show.rhtml - a sample script for Ruby on Rails
|
3
|
-
#
|
4
|
-
# Copyright (C) 2005 Masao Mutoh
|
5
|
-
#
|
6
|
-
# This file is distributed under the same license as Ruby-GetText-Package.
|
7
|
-
|
8
|
-
# Views are bound a textdomain which is bound in application.rb or
|
9
|
-
# blog_controller.rb.
|
10
|
-
# So you don't need to call bindtextdomain here.
|
11
|
-
%>
|
12
|
-
|
13
|
-
<h1><%= _("GetText Sample Blog on RoR") %></h1>
|
14
|
-
<%= show_article(@article, false) %>
|
15
|
-
<p>
|
16
|
-
<%= link_to _('Edit'), :action => 'edit', :id => @article %> |
|
17
|
-
<%= link_to _('Back'), :action => 'list' %>
|
18
|
-
</p>
|