motiro 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +280 -0
- data/README +28 -0
- data/README.en +175 -0
- data/README.pt-br +175 -0
- data/Rakefile +10 -0
- data/app/controllers/account_controller.rb +62 -0
- data/app/controllers/application.rb +72 -0
- data/app/controllers/edition_controller.rb +13 -0
- data/app/controllers/javascript_controller.rb +21 -0
- data/app/controllers/report_controller.rb +79 -0
- data/app/controllers/root_controller.rb +7 -0
- data/app/controllers/wiki_controller.rb +102 -0
- data/app/core/cache_reporter.rb +53 -0
- data/app/core/cache_reporter_fetcher.rb +33 -0
- data/app/core/chief_editor.rb +69 -0
- data/app/core/reporter.rb +105 -0
- data/app/core/reporter_driver.rb +36 -0
- data/app/core/reporter_fetcher.rb +39 -0
- data/app/core/settings.rb +43 -0
- data/app/core/version.rb +1 -0
- data/app/core/wiki_page_not_found.rb +33 -0
- data/app/core/wiki_reporter.rb +83 -0
- data/app/helpers/account_helper.rb +2 -0
- data/app/helpers/application_helper.rb +68 -0
- data/app/helpers/default_page_provider.rb +28 -0
- data/app/helpers/report_helper.rb +2 -0
- data/app/helpers/root_helper.rb +2 -0
- data/app/helpers/wiki_helper.rb +3 -0
- data/app/models/change.rb +96 -0
- data/app/models/diff_table_builder.rb +285 -0
- data/app/models/event.rb +18 -0
- data/app/models/headline.rb +109 -0
- data/app/models/page.rb +114 -0
- data/app/models/page_sweeper.rb +26 -0
- data/app/models/user.rb +85 -0
- data/app/ports/chdir_runner.rb +36 -0
- data/app/ports/reporter_loader.rb +9 -0
- data/app/ports/runner.rb +64 -0
- data/app/reporters/darcs_connection.rb +54 -0
- data/app/reporters/darcs_reporter.rb +104 -0
- data/app/reporters/darcs_settings.rb +9 -0
- data/app/reporters/darcs_temp_repo.rb +40 -0
- data/app/reporters/events_reporter.rb +28 -0
- data/app/reporters/features_reporter.rb +24 -0
- data/app/reporters/subversion_reporter.rb +203 -0
- data/app/reporters/svn_connection.rb +62 -0
- data/app/reporters/svn_settings.rb +40 -0
- data/app/views/account/_authorization.rhtml +54 -0
- data/app/views/account/_availability.rhtml +5 -0
- data/app/views/account/availability.rhtml +1 -0
- data/app/views/account/login.rhtml +22 -0
- data/app/views/account/logout.rhtml +10 -0
- data/app/views/javascript/motiro.rjs +132 -0
- data/app/views/javascript/niftycube.rjs +300 -0
- data/app/views/layouts/_bottom.rhtml +5 -0
- data/app/views/layouts/_header.rhtml +7 -0
- data/app/views/layouts/_top.rhtml +25 -0
- data/app/views/layouts/application.rhtml +3 -0
- data/app/views/layouts/scaffold.rhtml +13 -0
- data/app/views/layouts/wiki_edit.rhtml +26 -0
- data/app/views/report/list.rhtml +32 -0
- data/app/views/report/older.rhtml +26 -0
- data/app/views/report/rss.rxml +29 -0
- data/app/views/report/show.rhtml +20 -0
- data/app/views/root/index.rhtml +33 -0
- data/app/views/wiki/_editbar.rhtml +26 -0
- data/app/views/wiki/_properties_edit.rhtml +5 -0
- data/app/views/wiki/_properties_show.rhtml +5 -0
- data/app/views/wiki/edit.rhtml +56 -0
- data/app/views/wiki/properties_edit.rhtml +1 -0
- data/app/views/wiki/show.rhtml +9 -0
- data/bin/motiro +44 -0
- data/config/boot.rb +19 -0
- data/config/database.yml +14 -0
- data/config/environment.rb +64 -0
- data/config/environments/development.rb +20 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +19 -0
- data/config/motiro.yml +43 -0
- data/config/routes.rb +79 -0
- data/db/migrate/005_globalize_migration.rb +11363 -0
- data/db/migrate/006_remove_headline_title.rb +14 -0
- data/db/migrate/007_stretch_rid.rb +11 -0
- data/db/migrate/008_add_page_editors.rb +12 -0
- data/db/migrate/009_add_page_original_author.rb +12 -0
- data/db/migrate/010_remove_empty_string_defaults_from_pages.rb +17 -0
- data/db/migrate/011_add_title_and_kind_to_pages.rb +13 -0
- data/db/migrate/012_page_modification_info.rb +13 -0
- data/db/migrate/013_nullify_initial_page_attributes.rb +21 -0
- data/db/migrate/014_events_are_wiki_pages.rb +13 -0
- data/db/migrate/015_migrate_previous_event_data.rb +23 -0
- data/db/migrate/1_initial_structure.rb +36 -0
- data/db/migrate/2_add_authentication.rb +12 -0
- data/db/migrate/3_drop_articles.rb +26 -0
- data/db/migrate/4_add_page_editing.rb +14 -0
- data/db/motirodb.sqlite.initial +0 -0
- data/db/schema_version +1 -0
- data/db/translation/pt-BR.rb +76 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails_installer_defaults.yml +5 -0
- data/lib/import_translations.rb +154 -0
- data/lib/login_system.rb +89 -0
- data/lib/relative_time.rb +48 -0
- data/lib/string_extensions.rb +10 -0
- data/lib/stub_hash.rb +22 -0
- data/lib/tasks/packaging.rake +93 -0
- data/lib/tasks/testing.rake +32 -0
- data/lib/tick_daemon.rb +41 -0
- data/lib/translator.rb +67 -0
- data/lib/wiki_renderer.rb +42 -0
- data/lib/wiki_url_generator.rb +29 -0
- data/log/.keepdir +0 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/calendar.png +0 -0
- data/public/images/rss.png +0 -0
- data/public/javascripts/controls.js +750 -0
- data/public/javascripts/dragdrop.js +584 -0
- data/public/javascripts/effects.js +854 -0
- data/public/javascripts/prototype.js +1785 -0
- data/public/robots.txt +1 -0
- data/public/stylesheets/motiro.css +269 -0
- data/public/stylesheets/niftyCorners.css +35 -0
- data/public/stylesheets/scaffold.css +74 -0
- data/script/about +3 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/ticker +29 -0
- data/test/acceptance/account_test.rb +186 -0
- data/test/acceptance/darcs_test.rb +62 -0
- data/test/acceptance/events_test.rb +47 -0
- data/test/acceptance/main_page_test.rb +92 -0
- data/test/acceptance/subversion_test.rb +319 -0
- data/test/acceptance/ts_all_suites.rb +27 -0
- data/test/acceptance/wiki_test.rb +202 -0
- data/test/contract/darcs_test.rb +51 -0
- data/test/contract/remote_darcs_test.rb +61 -0
- data/test/contract/svn_test.rb +53 -0
- data/test/fixtures/changes.yml +25 -0
- data/test/fixtures/headlines.yml +45 -0
- data/test/fixtures/pages.yml +98 -0
- data/test/fixtures/users.yml +31 -0
- data/test/functional/account_controller_test.rb +96 -0
- data/test/functional/report_controller_test.rb +113 -0
- data/test/functional/report_features_test.rb +38 -0
- data/test/functional/report_subversion_test.rb +79 -0
- data/test/functional/root_controller_test.rb +127 -0
- data/test/functional/wiki_controller_test.rb +280 -0
- data/test/lib/acceptance_test_case.rb +43 -0
- data/test/lib/configuration.rb +53 -0
- data/test/lib/darcs_excerpts.rb +181 -0
- data/test/lib/darcs_repo.rb +77 -0
- data/test/lib/live_mode_test.rb +51 -0
- data/test/lib/local_svn.rb +157 -0
- data/test/lib/netutils.rb +42 -0
- data/test/lib/platform_thread.rb +62 -0
- data/test/lib/repoutils.rb +23 -0
- data/test/lib/selenium_extensions.rb +32 -0
- data/test/lib/stubio.rb +37 -0
- data/test/lib/svn_excerpts.rb +288 -0
- data/test/lib/test_configuration.rb +14 -0
- data/test/lib/webserver.rb +71 -0
- data/test/meta/configuration_test.rb +72 -0
- data/test/meta/darcs_repo_test.rb +118 -0
- data/test/meta/local_svn_test.rb +125 -0
- data/test/meta/platform_thread_test.rb +46 -0
- data/test/meta/stubio_test.rb +44 -0
- data/test/mocks/headline.rb +34 -0
- data/test/mocks/svn_reporter.rb +29 -0
- data/test/stubs/svn_settings.rb +19 -0
- data/test/stubs/url_generator.rb +24 -0
- data/test/test_helper.rb +36 -0
- data/test/unit/cache_reporter_fetcher_test.rb +46 -0
- data/test/unit/cache_reporter_test.rb +97 -0
- data/test/unit/caching_test.rb +78 -0
- data/test/unit/change_test.rb +152 -0
- data/test/unit/chdir_runner_test.rb +77 -0
- data/test/unit/chief_editor_test.rb +234 -0
- data/test/unit/darcs_connection_test.rb +109 -0
- data/test/unit/darcs_reporter_test.rb +146 -0
- data/test/unit/darcs_settings_test.rb +37 -0
- data/test/unit/darcs_temp_repo_test.rb +51 -0
- data/test/unit/default_page_provider_test.rb +46 -0
- data/test/unit/diff_table_builder_test.rb +602 -0
- data/test/unit/headline_test.rb +259 -0
- data/test/unit/page_test.rb +145 -0
- data/test/unit/relative_time_test.rb +56 -0
- data/test/unit/reporter_driver_test.rb +85 -0
- data/test/unit/reporter_fetcher_test.rb +31 -0
- data/test/unit/reporter_test.rb +81 -0
- data/test/unit/runner_test.rb +93 -0
- data/test/unit/settings_test.rb +55 -0
- data/test/unit/string_extensions_test.rb +10 -0
- data/test/unit/svn_connection_test.rb +183 -0
- data/test/unit/svn_reporter_interaction_test.rb +38 -0
- data/test/unit/svn_reporter_test.rb +286 -0
- data/test/unit/svn_settings_test.rb +86 -0
- data/test/unit/translator_test.rb +96 -0
- data/test/unit/user_test.rb +125 -0
- data/test/unit/wiki_renderer_test.rb +87 -0
- data/test/unit/wiki_reporter_test.rb +94 -0
- data/test/unit/wiki_url_generator_test.rb +31 -0
- data/vendor/motiro-installer.rb +159 -0
- data/vendor/plugins/globalize/LICENSE +9 -0
- data/vendor/plugins/globalize/README +49 -0
- data/vendor/plugins/globalize/data/country_data.csv +240 -0
- data/vendor/plugins/globalize/data/language_data.csv +188 -0
- data/vendor/plugins/globalize/data/translation_data.csv +3421 -0
- data/vendor/plugins/globalize/generators/globalize/USAGE +10 -0
- data/vendor/plugins/globalize/generators/globalize/globalize_generator.rb +42 -0
- data/vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz +0 -0
- data/vendor/plugins/globalize/generators/globalize/templates/tiny_migration.rb.gz +0 -0
- data/vendor/plugins/globalize/init.rb +30 -0
- data/vendor/plugins/globalize/lib/globalize/localization/core_ext.rb +170 -0
- data/vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb +33 -0
- data/vendor/plugins/globalize/lib/globalize/localization/db_translate.rb +494 -0
- data/vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb +152 -0
- data/vendor/plugins/globalize/lib/globalize/localization/locale.rb +173 -0
- data/vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb +40 -0
- data/vendor/plugins/globalize/lib/globalize/models/country.rb +24 -0
- data/vendor/plugins/globalize/lib/globalize/models/currency.rb +188 -0
- data/vendor/plugins/globalize/lib/globalize/models/language.rb +84 -0
- data/vendor/plugins/globalize/lib/globalize/models/model_translation.rb +4 -0
- data/vendor/plugins/globalize/lib/globalize/models/translation.rb +9 -0
- data/vendor/plugins/globalize/lib/globalize/models/view_translation.rb +14 -0
- data/vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb +125 -0
- data/vendor/plugins/globalize/lib/globalize/rails/action_view.rb +79 -0
- data/vendor/plugins/globalize/lib/globalize/rails/active_record.rb +129 -0
- data/vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb +33 -0
- data/vendor/plugins/globalize/populators/pop_dates.rb +81 -0
- data/vendor/plugins/globalize/populators/pop_migration.rb +18 -0
- data/vendor/plugins/globalize/populators/pop_pluralization.rb +26 -0
- data/vendor/plugins/globalize/populators/pop_seps.rb +32 -0
- data/vendor/plugins/globalize/tasks/data.rake +130 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en-US.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.he.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test.rb +54 -0
- data/vendor/plugins/globalize/test/config/database.yml.default +16 -0
- data/vendor/plugins/globalize/test/config/database.yml.example +22 -0
- data/vendor/plugins/globalize/test/core_ext_test.rb +61 -0
- data/vendor/plugins/globalize/test/currency_test.rb +141 -0
- data/vendor/plugins/globalize/test/date_helper_test.rb +634 -0
- data/vendor/plugins/globalize/test/db/schema.rb +90 -0
- data/vendor/plugins/globalize/test/db_translation_test.rb +374 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_categories.yml +7 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml +7 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_countries.yml +41 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_languages.yml +64 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml +5 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_products.yml +29 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_simples.yml +5 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_translations.yml +354 -0
- data/vendor/plugins/globalize/test/locale_test.rb +27 -0
- data/vendor/plugins/globalize/test/mime_responds_test.rb +358 -0
- data/vendor/plugins/globalize/test/model_test.rb +17 -0
- data/vendor/plugins/globalize/test/standard_data_test_helper.rb +33 -0
- data/vendor/plugins/globalize/test/test_helper.rb +19 -0
- data/vendor/plugins/globalize/test/test_standard_data.rb +54 -0
- data/vendor/plugins/globalize/test/validation_test.rb +29 -0
- data/vendor/plugins/globalize/test/view_picking_test.rb +49 -0
- data/vendor/plugins/globalize/test/view_translation_test.rb +237 -0
- data/vendor/plugins/globalize/test/views/layouts/standard.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rxml +1 -0
- data/vendor/plugins/globalize/test/views/test.he-IL.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test2.he.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test2.rhtml +1 -0
- data/vendor/plugins/test_xml/MIT-LICENSE +20 -0
- data/vendor/plugins/test_xml/README +20 -0
- data/vendor/plugins/test_xml/Rakefile +22 -0
- data/vendor/plugins/test_xml/init.rb +7 -0
- data/vendor/plugins/test_xml/lib/xml_assertions.rb +22 -0
- data/vendor/plugins/test_xml/test/test_xml_test.rb +40 -0
- metadata +505 -0
@@ -0,0 +1,354 @@
|
|
1
|
+
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
2
|
+
prod_1_facet_1_he_tr:
|
3
|
+
id: 4
|
4
|
+
table_name: globalize_products
|
5
|
+
item_id: 1
|
6
|
+
facet: description
|
7
|
+
language_id: 2
|
8
|
+
text: זהו תיאור המוצר הראשון
|
9
|
+
type: ModelTranslation
|
10
|
+
mfr_1_facet_1_he_tr:
|
11
|
+
id: 5
|
12
|
+
table_name: globalize_manufacturers
|
13
|
+
item_id: 1
|
14
|
+
facet: name
|
15
|
+
language_id: 2
|
16
|
+
text: רברנד
|
17
|
+
type: ModelTranslation
|
18
|
+
prod_3_facet_1_he_tr:
|
19
|
+
id: 9
|
20
|
+
table_name: globalize_products
|
21
|
+
item_id: 3
|
22
|
+
facet: name
|
23
|
+
language_id: 2
|
24
|
+
text: סקר
|
25
|
+
type: ModelTranslation
|
26
|
+
prod_4_facet_1_he_tr:
|
27
|
+
id: 10
|
28
|
+
table_name: globalize_products
|
29
|
+
item_id: 4
|
30
|
+
facet: name
|
31
|
+
language_id: 2
|
32
|
+
text: סארט
|
33
|
+
type: ModelTranslation
|
34
|
+
prod_5_facet_1_he_tr:
|
35
|
+
id: 11
|
36
|
+
table_name: globalize_products
|
37
|
+
item_id: 5
|
38
|
+
facet: name
|
39
|
+
language_id: 2
|
40
|
+
text: סארי
|
41
|
+
type: ModelTranslation
|
42
|
+
|
43
|
+
view_he_tr_1:
|
44
|
+
id: 12
|
45
|
+
type: ViewTranslation
|
46
|
+
language_id: 2
|
47
|
+
pluralization_index: 1
|
48
|
+
tr_key: And now in Hebrew
|
49
|
+
text: "ועכשיו בעברית"
|
50
|
+
|
51
|
+
view_pl_tr_1_1:
|
52
|
+
id: 13
|
53
|
+
type: ViewTranslation
|
54
|
+
language_id: 4
|
55
|
+
tr_key: "%d file"
|
56
|
+
pluralization_index: 1
|
57
|
+
text: "%d plik"
|
58
|
+
view_pl_tr_1_2:
|
59
|
+
id: 14
|
60
|
+
type: ViewTranslation
|
61
|
+
language_id: 4
|
62
|
+
pluralization_index: 2
|
63
|
+
tr_key: "%d file"
|
64
|
+
text: "%d pliki"
|
65
|
+
view_pl_tr_1_3:
|
66
|
+
id: 15
|
67
|
+
type: ViewTranslation
|
68
|
+
language_id: 4
|
69
|
+
pluralization_index: 3
|
70
|
+
tr_key: "%d file"
|
71
|
+
text: "%d plików"
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
view_ur_tr_1_1:
|
76
|
+
id: 16
|
77
|
+
type: ViewTranslation
|
78
|
+
language_id: 3
|
79
|
+
tr_key: "I have %d bogus numbers"
|
80
|
+
pluralization_index: 1
|
81
|
+
text: "I have %d bogus number"
|
82
|
+
view_ur_tr_1_2:
|
83
|
+
id: 17
|
84
|
+
type: ViewTranslation
|
85
|
+
language_id: 3
|
86
|
+
tr_key: "I have %d bogus numbers"
|
87
|
+
pluralization_index: 2
|
88
|
+
text: "I have %d bogus numbers"
|
89
|
+
|
90
|
+
view_he_tr_singular:
|
91
|
+
id: 18
|
92
|
+
type: ViewTranslation
|
93
|
+
language_id: 2
|
94
|
+
tr_key: "I have %d files"
|
95
|
+
pluralization_index: 1
|
96
|
+
text: "יש לי קובץ אחד"
|
97
|
+
|
98
|
+
view_he_tr_validation_1:
|
99
|
+
id: 19
|
100
|
+
type: ViewTranslation
|
101
|
+
language_id: 2
|
102
|
+
tr_key: "Specs is too long (maximum is %d characters)"
|
103
|
+
pluralization_index: 1
|
104
|
+
text: "המפרט ארוך מדי (המקסימום הוא תו אחד)"
|
105
|
+
view_he_tr_validation_2:
|
106
|
+
id: 20
|
107
|
+
type: ViewTranslation
|
108
|
+
language_id: 2
|
109
|
+
tr_key: "Specs is too long (maximum is %d characters)"
|
110
|
+
pluralization_index: 2
|
111
|
+
text: "המפרט ארוך מדי (המקסימום הוא %d תווים)"
|
112
|
+
|
113
|
+
date_he_oct_abbr:
|
114
|
+
id: 21
|
115
|
+
type: ViewTranslation
|
116
|
+
language_id: 2
|
117
|
+
tr_key: 'Oct [abbreviated month]'
|
118
|
+
pluralization_index: 1
|
119
|
+
text: "אוק"
|
120
|
+
|
121
|
+
date_he_mon_abbr:
|
122
|
+
id: 22
|
123
|
+
type: ViewTranslation
|
124
|
+
language_id: 2
|
125
|
+
tr_key: 'Mon [abbreviated weekday]'
|
126
|
+
pluralization_index: 1
|
127
|
+
text: "יום ב'"
|
128
|
+
|
129
|
+
text_substitution_en:
|
130
|
+
id: 23
|
131
|
+
type: ViewTranslation
|
132
|
+
language_id: 1
|
133
|
+
tr_key: 'welcome, %s'
|
134
|
+
pluralization_index: 1
|
135
|
+
text: 'Welcome, %s'
|
136
|
+
|
137
|
+
text_substitution_he:
|
138
|
+
id: 24
|
139
|
+
type: ViewTranslation
|
140
|
+
language_id: 2
|
141
|
+
tr_key: 'welcome, %s'
|
142
|
+
pluralization_index: 1
|
143
|
+
text: 'ברוכים הבאים, %s'
|
144
|
+
|
145
|
+
view_he_tr_plural:
|
146
|
+
id: 25
|
147
|
+
type: ViewTranslation
|
148
|
+
language_id: 2
|
149
|
+
tr_key: "I have %d files"
|
150
|
+
pluralization_index: 2
|
151
|
+
text: "יש לי %d קבצים"
|
152
|
+
|
153
|
+
view_he_tr_ltm:
|
154
|
+
id: 26
|
155
|
+
type: ViewTranslation
|
156
|
+
language_id: 2
|
157
|
+
tr_key: "less than a minute"
|
158
|
+
pluralization_index: 1
|
159
|
+
text: "פחות מדקה"
|
160
|
+
|
161
|
+
view_he_tr_lts:
|
162
|
+
id: 27
|
163
|
+
type: ViewTranslation
|
164
|
+
language_id: 2
|
165
|
+
tr_key: "less than %d seconds"
|
166
|
+
pluralization_index: 1
|
167
|
+
text: "פחות משנייה"
|
168
|
+
|
169
|
+
view_he_tr_lts_pl:
|
170
|
+
id: 28
|
171
|
+
type: ViewTranslation
|
172
|
+
language_id: 2
|
173
|
+
tr_key: "less than %d seconds"
|
174
|
+
pluralization_index: 2
|
175
|
+
text: "פחות מ-%d שניות"
|
176
|
+
|
177
|
+
view_he_tr_hm:
|
178
|
+
id: 29
|
179
|
+
type: ViewTranslation
|
180
|
+
language_id: 2
|
181
|
+
tr_key: "half a minute"
|
182
|
+
pluralization_index: 1
|
183
|
+
text: "חצי דקה"
|
184
|
+
|
185
|
+
view_he_tr_minutes:
|
186
|
+
id: 30
|
187
|
+
type: ViewTranslation
|
188
|
+
language_id: 2
|
189
|
+
tr_key: "%d minutes"
|
190
|
+
pluralization_index: 1
|
191
|
+
text: "דקה"
|
192
|
+
|
193
|
+
view_he_tr_minutes_pl:
|
194
|
+
id: 31
|
195
|
+
type: ViewTranslation
|
196
|
+
language_id: 2
|
197
|
+
tr_key: "%d minutes"
|
198
|
+
pluralization_index: 2
|
199
|
+
text: "%d דקות"
|
200
|
+
|
201
|
+
view_he_tr_hours:
|
202
|
+
id: 32
|
203
|
+
type: ViewTranslation
|
204
|
+
language_id: 2
|
205
|
+
tr_key: "about %d hours"
|
206
|
+
pluralization_index: 1
|
207
|
+
text: "כשעה"
|
208
|
+
|
209
|
+
view_he_tr_hours_pl:
|
210
|
+
id: 33
|
211
|
+
type: ViewTranslation
|
212
|
+
language_id: 2
|
213
|
+
tr_key: "about %d hours"
|
214
|
+
pluralization_index: 2
|
215
|
+
text: "כ-%d שעות"
|
216
|
+
|
217
|
+
view_he_tr_days:
|
218
|
+
id: 34
|
219
|
+
type: ViewTranslation
|
220
|
+
language_id: 2
|
221
|
+
tr_key: "%d days"
|
222
|
+
pluralization_index: 1
|
223
|
+
text: "יום אחד"
|
224
|
+
|
225
|
+
view_he_tr_days_pl:
|
226
|
+
id: 35
|
227
|
+
type: ViewTranslation
|
228
|
+
language_id: 2
|
229
|
+
tr_key: "%d days"
|
230
|
+
pluralization_index: 2
|
231
|
+
text: "%d ימים"
|
232
|
+
|
233
|
+
view_he_tr_month_jan:
|
234
|
+
id: 36
|
235
|
+
type: ViewTranslation
|
236
|
+
language_id: 2
|
237
|
+
tr_key: 'January [month]'
|
238
|
+
pluralization_index: 1
|
239
|
+
text: "ינואר"
|
240
|
+
|
241
|
+
view_he_tr_month_feb:
|
242
|
+
id: 37
|
243
|
+
type: ViewTranslation
|
244
|
+
language_id: 2
|
245
|
+
tr_key: 'February [month]'
|
246
|
+
pluralization_index: 1
|
247
|
+
text: "פברואר"
|
248
|
+
|
249
|
+
view_he_tr_month_feb:
|
250
|
+
id: 38
|
251
|
+
type: ViewTranslation
|
252
|
+
language_id: 2
|
253
|
+
tr_key: 'February [month]'
|
254
|
+
pluralization_index: 1
|
255
|
+
text: "פברואר"
|
256
|
+
|
257
|
+
view_he_tr_month_mar:
|
258
|
+
id: 39
|
259
|
+
type: ViewTranslation
|
260
|
+
language_id: 2
|
261
|
+
tr_key: 'March [month]'
|
262
|
+
pluralization_index: 1
|
263
|
+
text: "מרץ"
|
264
|
+
|
265
|
+
view_he_tr_month_apr:
|
266
|
+
id: 40
|
267
|
+
type: ViewTranslation
|
268
|
+
language_id: 2
|
269
|
+
tr_key: 'April [month]'
|
270
|
+
pluralization_index: 1
|
271
|
+
text: "אפריל"
|
272
|
+
|
273
|
+
view_he_tr_month_may:
|
274
|
+
id: 41
|
275
|
+
type: ViewTranslation
|
276
|
+
language_id: 2
|
277
|
+
tr_key: 'May [month]'
|
278
|
+
pluralization_index: 1
|
279
|
+
text: "מאי"
|
280
|
+
|
281
|
+
view_he_tr_month_jun:
|
282
|
+
id: 43
|
283
|
+
type: ViewTranslation
|
284
|
+
language_id: 2
|
285
|
+
tr_key: 'June [month]'
|
286
|
+
pluralization_index: 1
|
287
|
+
text: "יוני"
|
288
|
+
|
289
|
+
view_he_tr_month_jul:
|
290
|
+
id: 44
|
291
|
+
type: ViewTranslation
|
292
|
+
language_id: 2
|
293
|
+
tr_key: 'July [month]'
|
294
|
+
pluralization_index: 1
|
295
|
+
text: "יולי"
|
296
|
+
|
297
|
+
view_he_tr_month_aug:
|
298
|
+
id: 45
|
299
|
+
type: ViewTranslation
|
300
|
+
language_id: 2
|
301
|
+
tr_key: 'August [month]'
|
302
|
+
pluralization_index: 1
|
303
|
+
text: "אוגוסט"
|
304
|
+
|
305
|
+
view_he_tr_month_sep:
|
306
|
+
id: 46
|
307
|
+
type: ViewTranslation
|
308
|
+
language_id: 2
|
309
|
+
tr_key: 'September [month]'
|
310
|
+
pluralization_index: 1
|
311
|
+
text: "ספטמבר"
|
312
|
+
|
313
|
+
view_he_tr_month_oct:
|
314
|
+
id: 47
|
315
|
+
type: ViewTranslation
|
316
|
+
language_id: 2
|
317
|
+
tr_key: 'October [month]'
|
318
|
+
pluralization_index: 1
|
319
|
+
text: "אוקטובר"
|
320
|
+
|
321
|
+
view_he_tr_month_nov:
|
322
|
+
id: 48
|
323
|
+
type: ViewTranslation
|
324
|
+
language_id: 2
|
325
|
+
tr_key: 'November [month]'
|
326
|
+
pluralization_index: 1
|
327
|
+
text: "נובמבר"
|
328
|
+
|
329
|
+
view_he_tr_month_dec:
|
330
|
+
id: 49
|
331
|
+
type: ViewTranslation
|
332
|
+
language_id: 2
|
333
|
+
tr_key: 'December [month]'
|
334
|
+
pluralization_index: 1
|
335
|
+
text: "דצמבר"
|
336
|
+
|
337
|
+
model_simple_name_1:
|
338
|
+
id: 50
|
339
|
+
table_name: globalize_simples
|
340
|
+
item_id: 1
|
341
|
+
facet: name
|
342
|
+
language_id: 2
|
343
|
+
text: זהו השם הראשון
|
344
|
+
type: ModelTranslation
|
345
|
+
|
346
|
+
model_simple_desc_1:
|
347
|
+
id: 51
|
348
|
+
table_name: globalize_simples
|
349
|
+
item_id: 1
|
350
|
+
facet: description
|
351
|
+
language_id: 2
|
352
|
+
text: זהו התיאור הראשון
|
353
|
+
type: ModelTranslation
|
354
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/test_helper'
|
2
|
+
|
3
|
+
class LocaleTest < Test::Unit::TestCase
|
4
|
+
include Globalize
|
5
|
+
|
6
|
+
fixtures :globalize_languages, :globalize_countries
|
7
|
+
|
8
|
+
def setup
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_rfc
|
12
|
+
rfc = RFC_3066.parse 'en-US'
|
13
|
+
assert_equal 'en', rfc.language
|
14
|
+
assert_equal 'US', rfc.country
|
15
|
+
assert_equal 'en-US', rfc.locale
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_new
|
19
|
+
loc = Locale.new('en-US')
|
20
|
+
assert_equal 'en', loc.language.code
|
21
|
+
assert_equal 'US', loc.country.code
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_base
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|