gettext_rails 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +55 -0
- data/ChangeLog +4 -0
- data/README.rdoc +173 -0
- data/Rakefile +113 -0
- data/data/locale/bg/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/bs/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ca/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/eo/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/et/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/hr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/it/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/lv/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/nb/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/sr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/vi/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/zh_TW/LC_MESSAGES/gettext_rails.mo +0 -0
- data/lib/gettext_rails.rb +33 -0
- data/lib/gettext_rails/action_controller.rb +104 -0
- data/lib/gettext_rails/action_mailer.rb +45 -0
- data/lib/gettext_rails/action_view.rb +16 -0
- data/lib/gettext_rails/action_view/active_record_helper.rb +109 -0
- data/lib/gettext_rails/action_view/date_helper.rb +48 -0
- data/lib/gettext_rails/action_view/form_builder.rb +26 -0
- data/lib/gettext_rails/tools.rb +22 -0
- data/lib/gettext_rails/version.rb +14 -0
- data/po/bg/gettext_rails.po +89 -0
- data/po/bs/gettext_rails.po +98 -0
- data/po/ca/gettext_rails.po +90 -0
- data/po/cs/gettext_rails.po +102 -0
- data/po/de/gettext_rails.po +94 -0
- data/po/el/gettext_rails.po +89 -0
- data/po/eo/gettext_rails.po +90 -0
- data/po/es/gettext_rails.po +90 -0
- data/po/et/gettext_rails.po +90 -0
- data/po/fr/gettext_rails.po +94 -0
- data/po/gettext_rails.pot +87 -0
- data/po/hr/gettext_rails.po +99 -0
- data/po/hu/gettext_rails.po +90 -0
- data/po/it/gettext_rails.po +89 -0
- data/po/ja/gettext_rails.po +90 -0
- data/po/ko/gettext_rails.po +87 -0
- data/po/lv/gettext_rails.po +95 -0
- data/po/nb/gettext_rails.po +91 -0
- data/po/nl/gettext_rails.po +91 -0
- data/po/pt_BR/gettext_rails.po +91 -0
- data/po/ru/gettext_rails.po +98 -0
- data/po/sr/gettext_rails.po +98 -0
- data/po/test.rb +11 -0
- data/po/ua/gettext_rails.po +104 -0
- data/po/vi/gettext_rails.po +90 -0
- data/po/zh/gettext_rails.po +86 -0
- data/po/zh_TW/gettext_rails.po +86 -0
- data/replace.rb +21 -0
- data/sample/README +80 -0
- data/sample/Rakefile +11 -0
- data/sample/app/controllers/application_controller.rb +37 -0
- data/sample/app/controllers/articles_controller.rb +97 -0
- data/sample/app/helpers/application_helper.rb +3 -0
- data/sample/app/helpers/articles_helper.rb +60 -0
- data/sample/app/models/article.rb +16 -0
- data/sample/app/views/articles/edit.html.erb +22 -0
- data/sample/app/views/articles/index.html.erb +18 -0
- data/sample/app/views/articles/new.html.erb +20 -0
- data/sample/app/views/articles/show.html.erb +7 -0
- data/sample/app/views/layouts/articles.html.erb +27 -0
- data/sample/config/boot.rb +109 -0
- data/sample/config/database.yml +22 -0
- data/sample/config/environment.rb +45 -0
- data/sample/config/environments/development.rb +17 -0
- data/sample/config/environments/production.rb +27 -0
- data/sample/config/environments/test.rb +27 -0
- data/sample/config/initializers/backtrace_silencers.rb +7 -0
- data/sample/config/initializers/inflections.rb +10 -0
- data/sample/config/initializers/mime_types.rb +5 -0
- data/sample/config/initializers/new_rails_defaults.rb +19 -0
- data/sample/config/initializers/session_store.rb +15 -0
- data/sample/config/routes.rb +45 -0
- data/sample/db/development.sqlite3 +0 -0
- data/sample/db/production.sqlite3 +0 -0
- data/sample/db/schema.rb +19 -0
- data/sample/db/test.sqlite3 +0 -0
- data/sample/doc/README_FOR_APP +2 -0
- data/sample/lib/tasks/gettext.rake +13 -0
- data/sample/locale/bg/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/bs/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ca/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/eo/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/hr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/hu/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/lv/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/nb/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/sr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ua/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/vi/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
- data/sample/log/development.log +635 -0
- data/sample/log/production.log +79475 -0
- data/sample/log/test.log +1592 -0
- data/sample/po/bg/blog.po +101 -0
- data/sample/po/blog.pot +102 -0
- data/sample/po/bs/blog.po +103 -0
- data/sample/po/ca/blog.po +101 -0
- data/sample/po/cs/blog.po +104 -0
- data/sample/po/de/blog.po +104 -0
- data/sample/po/el/blog.po +102 -0
- data/sample/po/en/blog.po +103 -0
- data/sample/po/eo/blog.po +102 -0
- data/sample/po/eo/tmp.patch +21 -0
- data/sample/po/es/blog.po +101 -0
- data/sample/po/fr/blog.po +102 -0
- data/sample/po/hr/blog.po +102 -0
- data/sample/po/hu/blog.po +101 -0
- data/sample/po/it/blog.po +102 -0
- data/sample/po/ja/blog.po +101 -0
- data/sample/po/ko/blog.po +102 -0
- data/sample/po/lv/blog.po +103 -0
- data/sample/po/nb/blog.po +102 -0
- data/sample/po/nl/blog.po +102 -0
- data/sample/po/pt_BR/blog.po +102 -0
- data/sample/po/ru/blog.po +102 -0
- data/sample/po/sr/blog.po +103 -0
- data/sample/po/ua/blog.po +105 -0
- data/sample/po/vi/blog.po +102 -0
- data/sample/po/zh/blog.po +101 -0
- data/sample/po/zh_TW/blog.po +103 -0
- data/sample/public/404.html +30 -0
- data/sample/public/422.html +30 -0
- data/sample/public/500.html +33 -0
- data/sample/public/favicon.ico +0 -0
- data/sample/public/images/rails.png +0 -0
- data/sample/public/index.html +275 -0
- data/sample/public/javascripts/application.js +2 -0
- data/sample/public/javascripts/controls.js +963 -0
- data/sample/public/javascripts/dragdrop.js +973 -0
- data/sample/public/javascripts/effects.js +1128 -0
- data/sample/public/javascripts/prototype.js +4320 -0
- data/sample/public/robots.txt +5 -0
- data/sample/public/stylesheets/blog.css +136 -0
- data/sample/public/stylesheets/scaffold.css +54 -0
- data/sample/script/about +4 -0
- data/sample/script/console +3 -0
- data/sample/script/dbconsole +3 -0
- data/sample/script/destroy +3 -0
- data/sample/script/generate +3 -0
- data/sample/script/performance/benchmarker +3 -0
- data/sample/script/performance/profiler +3 -0
- data/sample/script/plugin +3 -0
- data/sample/script/runner +3 -0
- data/sample/script/server +3 -0
- data/sample/test/fixtures/articles.yml +11 -0
- data/sample/test/functional/articles_controller_test.rb +45 -0
- data/sample/test/performance/browsing_test.rb +9 -0
- data/sample/test/result/en/list.html +69 -0
- data/sample/test/test_helper.rb +38 -0
- data/sample/test/unit/article_test.rb +8 -0
- data/sample/test/unit/helpers/articles_helper_test.rb +4 -0
- data/sample/vendor/plugins/lang_helper/README +17 -0
- data/sample/vendor/plugins/lang_helper/Rakefile +17 -0
- data/sample/vendor/plugins/lang_helper/init.rb +21 -0
- data/sample/vendor/plugins/lang_helper/lib/lang_helper.rb +32 -0
- data/sample/vendor/plugins/lang_helper/locale/bg/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/bs/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ca/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/cs/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/el/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/eo/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/fr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/hr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/hu/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/it/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ja/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/lv/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/nb/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/nl/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/pt_BR/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ru/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/sr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ua/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/vi/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/zh/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/zh_TW/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/po/bg/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/bs/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ca/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/cs/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/de/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/el/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/eo/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/es/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/fr/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/hr/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/hu/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/it/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ja/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/ko/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/lang_helper.pot +28 -0
- data/sample/vendor/plugins/lang_helper/po/lv/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/nb/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/nl/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/pt_BR/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ru/lang_helper.po +25 -0
- data/sample/vendor/plugins/lang_helper/po/sr/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/ua/lang_helper.po +30 -0
- data/sample/vendor/plugins/lang_helper/po/vi/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/zh/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/zh_TW/lang_helper.po +29 -0
- data/test/README +6 -0
- data/test/Rakefile +27 -0
- data/test/app/controllers/application_controller.rb +18 -0
- data/test/app/controllers/articles_controller.rb +114 -0
- data/test/app/controllers/mailers_controller.rb +18 -0
- data/test/app/controllers/users_controller.rb +19 -0
- data/test/app/helpers/application_helper.rb +3 -0
- data/test/app/helpers/articles_helper.rb +2 -0
- data/test/app/models/article.rb +9 -0
- data/test/app/models/human_resources/resume.rb +3 -0
- data/test/app/models/mailer.rb +38 -0
- data/test/app/models/user.rb +4 -0
- data/test/app/models/user_observer.rb +7 -0
- data/test/app/views/articles/_form.html.erb +13 -0
- data/test/app/views/articles/_form_fr.html.erb +1 -0
- data/test/app/views/articles/active_form_error.html.erb +1 -0
- data/test/app/views/articles/change_title_error_messages_for.html.erb +15 -0
- data/test/app/views/articles/edit.html.erb +9 -0
- data/test/app/views/articles/list.html.erb +25 -0
- data/test/app/views/articles/list_fr.html.erb +1 -0
- data/test/app/views/articles/multi_error_messages_for.html.erb +19 -0
- data/test/app/views/articles/new.html.erb +8 -0
- data/test/app/views/articles/show.html.erb +9 -0
- data/test/app/views/layouts/application.html.erb +16 -0
- data/test/app/views/layouts/mailers.html.erb +20 -0
- data/test/app/views/layouts/users.html.erb +14 -0
- data/test/app/views/mailer/coverpage.html.erb +6 -0
- data/test/app/views/mailer/coverpage_fr.html.erb +6 -0
- data/test/app/views/mailer/index.html.erb +1 -0
- data/test/app/views/mailer/singlepart.html.erb +3 -0
- data/test/app/views/mailer/singlepart_fr.html.erb +3 -0
- data/test/app/views/users/custom_error_message.html.erb +13 -0
- data/test/app/views/users/custom_error_message_fr.html.erb +13 -0
- data/test/app/views/users/distance_of_time_in_words.html.erb +18 -0
- data/test/config/boot.rb +109 -0
- data/test/config/database.yml +22 -0
- data/test/config/environment.rb +45 -0
- data/test/config/environments/development.rb +17 -0
- data/test/config/environments/production.rb +27 -0
- data/test/config/environments/test.rb +27 -0
- data/test/config/initializers/backtrace_silencers.rb +7 -0
- data/test/config/initializers/inflections.rb +10 -0
- data/test/config/initializers/mime_types.rb +5 -0
- data/test/config/initializers/new_rails_defaults.rb +19 -0
- data/test/config/initializers/session_store.rb +15 -0
- data/test/config/routes.rb +13 -0
- data/test/db/development.sqlite3 +0 -0
- data/test/db/schema.rb +45 -0
- data/test/db/test.sqlite3 +0 -0
- data/test/doc/README_FOR_APP +2 -0
- data/test/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
- data/test/log/development.log +1284 -0
- data/test/log/test.log +5595 -0
- data/test/po/ja/rails_test.po +206 -0
- data/test/po/rails_test.pot +206 -0
- data/test/public/404.html +30 -0
- data/test/public/422.html +30 -0
- data/test/public/500.html +33 -0
- data/test/public/favicon.ico +0 -0
- data/test/public/images/rails.png +0 -0
- data/test/public/index.html +28 -0
- data/test/public/javascripts/application.js +2 -0
- data/test/public/javascripts/controls.js +963 -0
- data/test/public/javascripts/dragdrop.js +973 -0
- data/test/public/javascripts/effects.js +1128 -0
- data/test/public/javascripts/prototype.js +4320 -0
- data/test/public/robots.txt +5 -0
- data/test/public/stylesheets/blog.css +136 -0
- data/test/public/stylesheets/scaffold.css +54 -0
- data/test/script/about +4 -0
- data/test/script/console +3 -0
- data/test/script/dbconsole +3 -0
- data/test/script/destroy +3 -0
- data/test/script/generate +3 -0
- data/test/script/performance/benchmarker +3 -0
- data/test/script/performance/profiler +3 -0
- data/test/script/plugin +3 -0
- data/test/script/runner +3 -0
- data/test/script/server +3 -0
- data/test/test/fixtures/articles.yml +13 -0
- data/test/test/functional/articles_controller_test.rb +97 -0
- data/test/test/functional/mailers_controller_test.rb +54 -0
- data/test/test/functional/users_controller_test.rb +47 -0
- data/test/test/performance/browsing_test.rb +9 -0
- data/test/test/result/en/change_title_error_messages_for.html +89 -0
- data/test/test/result/en/create_error.html +97 -0
- data/test/test/result/en/custom_error_message.html +84 -0
- data/test/test/result/en/custom_error_message_with_plural.html +84 -0
- data/test/test/result/en/distance_of_time_in_words.html +32 -0
- data/test/test/result/en/list.html +62 -0
- data/test/test/result/en/multi_error_messages_for.html +155 -0
- data/test/test/result/en/multipart.html +175 -0
- data/test/test/result/en/new.html +97 -0
- data/test/test/result/en/show.html +33 -0
- data/test/test/result/en/singlepart.html +10 -0
- data/test/test/result/fr/custom_error_message.html +84 -0
- data/test/test/result/fr/custom_error_message_with_plural.html +84 -0
- data/test/test/result/fr/distance_of_time_in_words.html +32 -0
- data/test/test/result/fr/list.html +17 -0
- data/test/test/result/fr/multipart.html +175 -0
- data/test/test/result/fr/new.html +25 -0
- data/test/test/result/fr/singlepart.html +10 -0
- data/test/test/result/ja/change_title_error_messages_for.html +89 -0
- data/test/test/result/ja/create_error.html +97 -0
- data/test/test/result/ja/custom_error_message.html +84 -0
- data/test/test/result/ja/custom_error_message_with_plural.html +84 -0
- data/test/test/result/ja/distance_of_time_in_words.html +32 -0
- data/test/test/result/ja/list.html +62 -0
- data/test/test/result/ja/multi_error_messages_for.html +155 -0
- data/test/test/result/ja/multipart.html +175 -0
- data/test/test/result/ja/new.html +97 -0
- data/test/test/result/ja/show.html +33 -0
- data/test/test/result/ja/singlepart.html +10 -0
- data/test/test/test_helper.rb +83 -0
- data/test/test/unit/article_test.rb +8 -0
- data/test/test/unit/helpers/articles_helper_test.rb +4 -0
- metadata +754 -0
@@ -0,0 +1,206 @@
|
|
1
|
+
# Japanese translations for PACKAGE package
|
2
|
+
# PACKAGE パッケージに対する英訳.
|
3
|
+
# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
|
4
|
+
# This file is distributed under the same license as the PACKAGE package.
|
5
|
+
# Masao Mutoh <mutoh@highway.ne.jp>, 2007.
|
6
|
+
#
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: rails_test 1.2.0\n"
|
10
|
+
"POT-Creation-Date: 2009-03-21 16:02+0900\n"
|
11
|
+
"PO-Revision-Date: 2007-04-08 20:47+0900\n"
|
12
|
+
"Last-Translator: Masao Mutoh <mutoh@highway.ne.jp>\n"
|
13
|
+
"Language-Team: Japanese\n"
|
14
|
+
"MIME-Version: 1.0\n"
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
17
|
+
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
18
|
+
|
19
|
+
#: app/models/user.rb:-
|
20
|
+
msgid "user"
|
21
|
+
msgstr "ユーザ"
|
22
|
+
|
23
|
+
#: app/models/user.rb:-
|
24
|
+
msgid "User|Name"
|
25
|
+
msgstr "名前"
|
26
|
+
|
27
|
+
#: app/models/user.rb:-
|
28
|
+
msgid "User|Lastupdate"
|
29
|
+
msgstr "最終更新日"
|
30
|
+
|
31
|
+
#: app/models/article.rb:-
|
32
|
+
msgid "article"
|
33
|
+
msgstr "記事"
|
34
|
+
|
35
|
+
#: app/models/article.rb:-
|
36
|
+
msgid "Article|Title"
|
37
|
+
msgstr "タイトル"
|
38
|
+
|
39
|
+
#: app/models/article.rb:-
|
40
|
+
msgid "Article|Description"
|
41
|
+
msgstr "内容"
|
42
|
+
|
43
|
+
#: app/models/article.rb:-
|
44
|
+
msgid "Article|Lastupdate"
|
45
|
+
msgstr "最終更新日"
|
46
|
+
|
47
|
+
#: app/models/article.rb:-
|
48
|
+
msgid "article property"
|
49
|
+
msgstr "記事"
|
50
|
+
|
51
|
+
#: app/models/article.rb:-
|
52
|
+
msgid "ArticleProperty|Article"
|
53
|
+
msgstr "タイトル"
|
54
|
+
|
55
|
+
#: app/models/article.rb:-
|
56
|
+
msgid "ArticleProperty|Key"
|
57
|
+
msgstr "キー"
|
58
|
+
|
59
|
+
#: app/models/article.rb:-
|
60
|
+
msgid "ArticleProperty|Value"
|
61
|
+
msgstr "値"
|
62
|
+
|
63
|
+
#: app/models/human_resources/resume.rb:-
|
64
|
+
msgid "resume"
|
65
|
+
msgstr "レジュメ"
|
66
|
+
|
67
|
+
#: app/models/human_resources/resume.rb:-
|
68
|
+
msgid "Resume|User"
|
69
|
+
msgstr "ユーザ"
|
70
|
+
|
71
|
+
#: app/models/human_resources/resume.rb:-
|
72
|
+
msgid "Resume|Content"
|
73
|
+
msgstr "内容"
|
74
|
+
|
75
|
+
#: app/models/mailer.rb:5
|
76
|
+
msgid "multipart test mail"
|
77
|
+
msgstr "マルチパートテストメール"
|
78
|
+
|
79
|
+
#: app/models/mailer.rb:34
|
80
|
+
msgid "singlepart test mail"
|
81
|
+
msgstr "シングルパートテストメール"
|
82
|
+
|
83
|
+
#: app/controllers/articles_controller.rb:60
|
84
|
+
msgid "Article was successfully created."
|
85
|
+
msgstr "記事を生成しました。"
|
86
|
+
|
87
|
+
#: app/controllers/articles_controller.rb:77
|
88
|
+
msgid "Article was successfully updated."
|
89
|
+
msgstr "記事を更新しました。"
|
90
|
+
|
91
|
+
#: app/views/users/custom_error_message_fr.html.erb:2
|
92
|
+
msgid "French: Singular Custom Error message %{record}: %{num}"
|
93
|
+
msgid_plural "French: Plural Custom Error message %{record}: %{num}"
|
94
|
+
msgstr[0] "単数形カスタムエラーメッセージ (%{record}: %{num})"
|
95
|
+
msgstr[1] "複数形カスタムエラーメッセージ (%{record}: %{num})"
|
96
|
+
|
97
|
+
#: app/views/users/custom_error_message_fr.html.erb:3
|
98
|
+
msgid "French: Singular Custom Error explanation %{num}"
|
99
|
+
msgid_plural "French: Plural Custom Error explanation %{num}"
|
100
|
+
msgstr[0] "単数形カスタムエラーメッセージ (%{num})"
|
101
|
+
msgstr[1] "複数形カスタムエラーメッセージ (%{num})"
|
102
|
+
|
103
|
+
#: app/views/users/custom_error_message_fr.html.erb:7
|
104
|
+
#: app/views/users/custom_error_message.html.erb:7
|
105
|
+
#: app/views/articles/multi_error_messages_for.html.erb:13
|
106
|
+
msgid "Name"
|
107
|
+
msgstr "名前"
|
108
|
+
|
109
|
+
#: app/views/users/custom_error_message_fr.html.erb:10
|
110
|
+
#: app/views/users/custom_error_message.html.erb:10
|
111
|
+
#: app/views/articles/multi_error_messages_for.html.erb:10
|
112
|
+
#: app/views/articles/multi_error_messages_for.html.erb:16
|
113
|
+
#: app/views/articles/_form.html.erb:10
|
114
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:12
|
115
|
+
msgid "Lastupdate"
|
116
|
+
msgstr "最終更新日"
|
117
|
+
|
118
|
+
#: app/views/users/custom_error_message.html.erb:2
|
119
|
+
msgid "Singular Custom Error message %{record}: %{num}"
|
120
|
+
msgid_plural "Plural Custom Error message %{record}: %{num}"
|
121
|
+
msgstr[0] "単数形カスタムエラーメッセージ (%{record}: %{num})"
|
122
|
+
msgstr[1] "複数形カスタムエラーメッセージ (%{record}: %{num})"
|
123
|
+
|
124
|
+
#: app/views/users/custom_error_message.html.erb:3
|
125
|
+
msgid "Singular Custom Error explanation %{num}"
|
126
|
+
msgid_plural "Plural Custom Error explanation %{num}"
|
127
|
+
msgstr[0] "単数形カスタムエラーメッセージ (%{num})"
|
128
|
+
msgstr[1] "複数形カスタムエラーメッセージ (%{num})"
|
129
|
+
|
130
|
+
#: app/views/articles/edit.html.erb:1
|
131
|
+
msgid "Editing article"
|
132
|
+
msgstr "記事の編集"
|
133
|
+
|
134
|
+
#: app/views/articles/edit.html.erb:5 app/views/articles/show.html.erb:7
|
135
|
+
#: app/views/articles/list.html.erb:16
|
136
|
+
msgid "Edit"
|
137
|
+
msgstr "編集"
|
138
|
+
|
139
|
+
#: app/views/articles/edit.html.erb:8 app/views/articles/list.html.erb:15
|
140
|
+
msgid "Show"
|
141
|
+
msgstr "表示"
|
142
|
+
|
143
|
+
#: app/views/articles/edit.html.erb:9 app/views/articles/show.html.erb:8
|
144
|
+
#: app/views/articles/new.html.erb:8
|
145
|
+
msgid "Back"
|
146
|
+
msgstr "戻る"
|
147
|
+
|
148
|
+
#: app/views/articles/multi_error_messages_for.html.erb:1
|
149
|
+
msgid "Contents"
|
150
|
+
msgstr "内容"
|
151
|
+
|
152
|
+
#: app/views/articles/multi_error_messages_for.html.erb:4
|
153
|
+
#: app/views/articles/_form.html.erb:4
|
154
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:6
|
155
|
+
msgid "Title"
|
156
|
+
msgstr "タイトル"
|
157
|
+
|
158
|
+
#: app/views/articles/multi_error_messages_for.html.erb:7
|
159
|
+
#: app/views/articles/_form.html.erb:7
|
160
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:9
|
161
|
+
msgid "Description"
|
162
|
+
msgstr "内容"
|
163
|
+
|
164
|
+
#: app/views/articles/list.html.erb:1
|
165
|
+
msgid "Listing articles"
|
166
|
+
msgstr "記事一覧"
|
167
|
+
|
168
|
+
#: app/views/articles/list.html.erb:17
|
169
|
+
msgid "Destroy"
|
170
|
+
msgstr "削除"
|
171
|
+
|
172
|
+
#: app/views/articles/list.html.erb:17
|
173
|
+
msgid "Are you sure?"
|
174
|
+
msgstr "よろしいですか?"
|
175
|
+
|
176
|
+
#: app/views/articles/list.html.erb:24 app/views/articles/new.html.erb:1
|
177
|
+
msgid "New article"
|
178
|
+
msgstr "新しい記事"
|
179
|
+
|
180
|
+
#: app/views/articles/new.html.erb:5
|
181
|
+
msgid "Create"
|
182
|
+
msgstr "作成"
|
183
|
+
|
184
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:1
|
185
|
+
msgid "Message Title"
|
186
|
+
msgid_plural "Message Titles"
|
187
|
+
msgstr[0] "メッセージタイトル"
|
188
|
+
msgstr[1] "メッセージタイトル(複数)"
|
189
|
+
|
190
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:2
|
191
|
+
msgid "Message Explanation"
|
192
|
+
msgid_plural "Message Explanations"
|
193
|
+
msgstr[0] "メッセージ説明"
|
194
|
+
msgstr[1] "メッセージ説明(複数)"
|
195
|
+
|
196
|
+
#: app/views/mailer/coverpage.html.erb:3
|
197
|
+
msgid "I attached public/images/* for example."
|
198
|
+
msgstr "サンプルとしてpublic/images/*を添付しました。"
|
199
|
+
|
200
|
+
#: app/views/mailer/singlepart.html.erb:1
|
201
|
+
msgid "Hi %{name},"
|
202
|
+
msgstr "こんにちわ %{name}さん"
|
203
|
+
|
204
|
+
#: app/views/mailer/singlepart.html.erb:3
|
205
|
+
msgid "This is a singlepart mail. OK?"
|
206
|
+
msgstr "シングルパートメールです。いいですか?"
|
@@ -0,0 +1,206 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: rails_test 1.2.0\n"
|
10
|
+
"POT-Creation-Date: 2009-03-21 16:02+0900\n"
|
11
|
+
"PO-Revision-Date: 2007-04-08 20:44+0900\n"
|
12
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14
|
+
"MIME-Version: 1.0\n"
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
17
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
18
|
+
|
19
|
+
#: app/models/user.rb:-
|
20
|
+
msgid "user"
|
21
|
+
msgstr ""
|
22
|
+
|
23
|
+
#: app/models/user.rb:-
|
24
|
+
msgid "User|Name"
|
25
|
+
msgstr ""
|
26
|
+
|
27
|
+
#: app/models/user.rb:-
|
28
|
+
msgid "User|Lastupdate"
|
29
|
+
msgstr ""
|
30
|
+
|
31
|
+
#: app/models/article.rb:-
|
32
|
+
msgid "article"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
#: app/models/article.rb:-
|
36
|
+
msgid "Article|Title"
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
#: app/models/article.rb:-
|
40
|
+
msgid "Article|Description"
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
#: app/models/article.rb:-
|
44
|
+
msgid "Article|Lastupdate"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
#: app/models/article.rb:-
|
48
|
+
msgid "article property"
|
49
|
+
msgstr ""
|
50
|
+
|
51
|
+
#: app/models/article.rb:-
|
52
|
+
msgid "ArticleProperty|Article"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
#: app/models/article.rb:-
|
56
|
+
msgid "ArticleProperty|Key"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
#: app/models/article.rb:-
|
60
|
+
msgid "ArticleProperty|Value"
|
61
|
+
msgstr ""
|
62
|
+
|
63
|
+
#: app/models/human_resources/resume.rb:-
|
64
|
+
msgid "resume"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
#: app/models/human_resources/resume.rb:-
|
68
|
+
msgid "Resume|User"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
#: app/models/human_resources/resume.rb:-
|
72
|
+
msgid "Resume|Content"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
#: app/models/mailer.rb:5
|
76
|
+
msgid "multipart test mail"
|
77
|
+
msgstr ""
|
78
|
+
|
79
|
+
#: app/models/mailer.rb:34
|
80
|
+
msgid "singlepart test mail"
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
#: app/controllers/articles_controller.rb:60
|
84
|
+
msgid "Article was successfully created."
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
#: app/controllers/articles_controller.rb:77
|
88
|
+
msgid "Article was successfully updated."
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: app/views/users/custom_error_message_fr.html.erb:2
|
92
|
+
msgid "French: Singular Custom Error message %{record}: %{num}"
|
93
|
+
msgid_plural "French: Plural Custom Error message %{record}: %{num}"
|
94
|
+
msgstr[0] ""
|
95
|
+
msgstr[1] ""
|
96
|
+
|
97
|
+
#: app/views/users/custom_error_message_fr.html.erb:3
|
98
|
+
msgid "French: Singular Custom Error explanation %{num}"
|
99
|
+
msgid_plural "French: Plural Custom Error explanation %{num}"
|
100
|
+
msgstr[0] ""
|
101
|
+
msgstr[1] ""
|
102
|
+
|
103
|
+
#: app/views/users/custom_error_message_fr.html.erb:7
|
104
|
+
#: app/views/users/custom_error_message.html.erb:7
|
105
|
+
#: app/views/articles/multi_error_messages_for.html.erb:13
|
106
|
+
msgid "Name"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
#: app/views/users/custom_error_message_fr.html.erb:10
|
110
|
+
#: app/views/users/custom_error_message.html.erb:10
|
111
|
+
#: app/views/articles/multi_error_messages_for.html.erb:10
|
112
|
+
#: app/views/articles/multi_error_messages_for.html.erb:16
|
113
|
+
#: app/views/articles/_form.html.erb:10
|
114
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:12
|
115
|
+
msgid "Lastupdate"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: app/views/users/custom_error_message.html.erb:2
|
119
|
+
msgid "Singular Custom Error message %{record}: %{num}"
|
120
|
+
msgid_plural "Plural Custom Error message %{record}: %{num}"
|
121
|
+
msgstr[0] ""
|
122
|
+
msgstr[1] ""
|
123
|
+
|
124
|
+
#: app/views/users/custom_error_message.html.erb:3
|
125
|
+
msgid "Singular Custom Error explanation %{num}"
|
126
|
+
msgid_plural "Plural Custom Error explanation %{num}"
|
127
|
+
msgstr[0] ""
|
128
|
+
msgstr[1] ""
|
129
|
+
|
130
|
+
#: app/views/articles/edit.html.erb:1
|
131
|
+
msgid "Editing article"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
#: app/views/articles/edit.html.erb:5 app/views/articles/show.html.erb:7
|
135
|
+
#: app/views/articles/list.html.erb:16
|
136
|
+
msgid "Edit"
|
137
|
+
msgstr ""
|
138
|
+
|
139
|
+
#: app/views/articles/edit.html.erb:8 app/views/articles/list.html.erb:15
|
140
|
+
msgid "Show"
|
141
|
+
msgstr ""
|
142
|
+
|
143
|
+
#: app/views/articles/edit.html.erb:9 app/views/articles/show.html.erb:8
|
144
|
+
#: app/views/articles/new.html.erb:8
|
145
|
+
msgid "Back"
|
146
|
+
msgstr ""
|
147
|
+
|
148
|
+
#: app/views/articles/multi_error_messages_for.html.erb:1
|
149
|
+
msgid "Contents"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
#: app/views/articles/multi_error_messages_for.html.erb:4
|
153
|
+
#: app/views/articles/_form.html.erb:4
|
154
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:6
|
155
|
+
msgid "Title"
|
156
|
+
msgstr ""
|
157
|
+
|
158
|
+
#: app/views/articles/multi_error_messages_for.html.erb:7
|
159
|
+
#: app/views/articles/_form.html.erb:7
|
160
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:9
|
161
|
+
msgid "Description"
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
#: app/views/articles/list.html.erb:1
|
165
|
+
msgid "Listing articles"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
#: app/views/articles/list.html.erb:17
|
169
|
+
msgid "Destroy"
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
#: app/views/articles/list.html.erb:17
|
173
|
+
msgid "Are you sure?"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
#: app/views/articles/list.html.erb:24 app/views/articles/new.html.erb:1
|
177
|
+
msgid "New article"
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
#: app/views/articles/new.html.erb:5
|
181
|
+
msgid "Create"
|
182
|
+
msgstr ""
|
183
|
+
|
184
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:1
|
185
|
+
msgid "Message Title"
|
186
|
+
msgid_plural "Message Titles"
|
187
|
+
msgstr[0] ""
|
188
|
+
msgstr[1] ""
|
189
|
+
|
190
|
+
#: app/views/articles/change_title_error_messages_for.html.erb:2
|
191
|
+
msgid "Message Explanation"
|
192
|
+
msgid_plural "Message Explanations"
|
193
|
+
msgstr[0] ""
|
194
|
+
msgstr[1] ""
|
195
|
+
|
196
|
+
#: app/views/mailer/coverpage.html.erb:3
|
197
|
+
msgid "I attached public/images/* for example."
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
#: app/views/mailer/singlepart.html.erb:1
|
201
|
+
msgid "Hi %{name},"
|
202
|
+
msgstr ""
|
203
|
+
|
204
|
+
#: app/views/mailer/singlepart.html.erb:3
|
205
|
+
msgid "This is a singlepart mail. OK?"
|
206
|
+
msgstr ""
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/404.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
27
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The change you wanted was rejected (422)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/422.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The change you wanted was rejected.</h1>
|
27
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|