infopark_rails_connector 6.8.0.beta.200.621.4c8e1b0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +59 -0
- data/app/assets/images/admin/minus.gif +0 -0
- data/app/assets/images/bg80.png +0 -0
- data/app/assets/images/edit.png +0 -0
- data/app/assets/images/icons/mm_generic.png +0 -0
- data/app/assets/images/icons/mm_menu.png +0 -0
- data/app/assets/images/ratings/star.gif +0 -0
- data/app/assets/images/time_machine/calendar-menuarrow.gif +0 -0
- data/app/assets/images/time_machine/calendar_bg.png +0 -0
- data/app/assets/images/time_machine/icon.png +0 -0
- data/app/assets/images/time_machine/slider_bg.png +0 -0
- data/app/assets/images/time_machine/slider_handle.png +0 -0
- data/app/assets/images/time_machine/timemachine_bg.png +0 -0
- data/app/assets/javascripts/comments.js +29 -0
- data/app/assets/javascripts/editmarker.js +240 -0
- data/app/assets/javascripts/infopark_rails_connector.js.erb +3 -0
- data/app/assets/javascripts/initializer.js +9 -0
- data/app/assets/javascripts/ratings.js +26 -0
- data/app/assets/javascripts/time_machine/calendar-setup.js +200 -0
- data/app/assets/javascripts/time_machine/calendar.js +1806 -0
- data/app/assets/javascripts/time_machine/lang/calendar-de.js +127 -0
- data/app/assets/javascripts/time_machine/lang/calendar-en.js +127 -0
- data/app/assets/javascripts/time_machine/lang/calendar-es.js +129 -0
- data/app/assets/javascripts/time_machine/lang/calendar-fr.js +125 -0
- data/app/assets/javascripts/time_machine/lang/calendar-it.js +124 -0
- data/app/assets/javascripts/time_machine/slider.js +278 -0
- data/app/assets/javascripts/time_machine.js +8 -0
- data/app/assets/stylesheets/editmarker.css +70 -0
- data/app/assets/stylesheets/infopark_rails_connector.css.erb +4 -0
- data/app/assets/stylesheets/ratings.css +97 -0
- data/app/assets/stylesheets/time_machine/time_machine.css +292 -0
- data/app/assets/stylesheets/time_machine.css +6 -0
- data/app/controllers/cms_controller.rb +6 -0
- data/app/controllers/comments_controller.rb +6 -0
- data/app/controllers/crm_form_controller.rb +2 -0
- data/app/controllers/pdf_controller.rb +6 -0
- data/app/controllers/rails_connector/default_cms_controller.rb +40 -0
- data/app/controllers/rails_connector/default_comments_controller.rb +71 -0
- data/app/controllers/rails_connector/default_crm_form_controller.rb +167 -0
- data/app/controllers/rails_connector/default_pdf_controller.rb +136 -0
- data/app/controllers/rails_connector/default_ratings_controller.rb +84 -0
- data/app/controllers/rails_connector/default_rss_controller.rb +29 -0
- data/app/controllers/rails_connector/default_search_controller.rb +60 -0
- data/app/controllers/rails_connector/default_user_controller.rb +267 -0
- data/app/controllers/rails_connector/pdf_external_controller.rb +54 -0
- data/app/controllers/rails_connector/time_machine_controller.rb +48 -0
- data/app/controllers/ratings_controller.rb +6 -0
- data/app/controllers/rss_controller.rb +6 -0
- data/app/controllers/search_controller.rb +2 -0
- data/app/controllers/seo_sitemap_controller.rb +12 -0
- data/app/controllers/user_controller.rb +2 -0
- data/app/helpers/cms_helper.rb +6 -0
- data/app/helpers/cms_routing_helper.rb +6 -0
- data/app/helpers/crm_form_helper.rb +3 -0
- data/app/helpers/rails_connector/cms_asset_helper.rb +51 -0
- data/app/helpers/rails_connector/default_cms_helper.rb +27 -0
- data/app/helpers/rails_connector/default_cms_routing_helper.rb +93 -0
- data/app/helpers/rails_connector/default_crm_form_helper.rb +58 -0
- data/app/helpers/rails_connector/default_ratings_helper.rb +38 -0
- data/app/helpers/rails_connector/default_user_helper.rb +90 -0
- data/app/helpers/rails_connector/display_helper.rb +117 -0
- data/app/helpers/rails_connector/error_messages_helper.rb +23 -0
- data/app/helpers/rails_connector/layout_helper.rb +30 -0
- data/app/helpers/rails_connector/link_helper.rb +88 -0
- data/app/helpers/rails_connector/mandatory_label_helper.rb +10 -0
- data/app/helpers/rails_connector/marker_helper.rb +363 -0
- data/app/helpers/rails_connector/menu_helper.rb +72 -0
- data/app/helpers/rails_connector/micronav_helper.rb +107 -0
- data/app/helpers/rails_connector/seo_helper.rb +44 -0
- data/app/helpers/rails_connector/table_of_contents_helper.rb +20 -0
- data/app/helpers/rails_connector/time_machine_helper.rb +24 -0
- data/app/helpers/rails_connector/tracking_helper.rb +32 -0
- data/app/helpers/ratings_helper.rb +4 -0
- data/app/helpers/user_helper.rb +3 -0
- data/app/mailers/confirmation_mailer.rb +13 -0
- data/app/models/crm_form.rb +2 -0
- data/app/models/named_link.rb +2 -0
- data/app/models/obj.rb +9 -0
- data/app/models/rails_connector/default_comment.rb +28 -0
- data/app/models/rails_connector/default_rating.rb +20 -0
- data/app/models/rails_connector/link_list.rb +30 -0
- data/app/views/cms/_comments.html.erb +44 -0
- data/app/views/cms/_index.html.erb +7 -0
- data/app/views/cms/_rating.html.erb +31 -0
- data/app/views/cms/index.html.erb +3 -0
- data/app/views/comments/_comment.html.erb +28 -0
- data/app/views/confirmation_mailer/register_confirmation.erb +5 -0
- data/app/views/confirmation_mailer/reset_password.erb +5 -0
- data/app/views/crm_form/_flash_messages.html.erb +11 -0
- data/app/views/crm_form/_form.html.erb +17 -0
- data/app/views/crm_form/confirmation.html.erb +3 -0
- data/app/views/crm_form/index.html.erb +5 -0
- data/app/views/crm_form/not_logged_in.html.erb +1 -0
- data/app/views/errors/403_forbidden.html.erb +3 -0
- data/app/views/errors/410_gone.html.erb +7 -0
- data/app/views/layouts/rails_connector/time_machine.html.erb +12 -0
- data/app/views/pdf/index.html.erb +7 -0
- data/app/views/pdf/index.xsl +1240 -0
- data/app/views/rails_connector/time_machine/index.html.erb +88 -0
- data/app/views/rss/_item.rss.builder +11 -0
- data/app/views/rss/index.rss.builder +11 -0
- data/app/views/search/_hit.html.erb +12 -0
- data/app/views/search/_hits.html.erb +11 -0
- data/app/views/search/_mini_panel.html.erb +4 -0
- data/app/views/search/_pagination.html.erb +5 -0
- data/app/views/search/_panel.html.erb +4 -0
- data/app/views/search/search.html.erb +12 -0
- data/app/views/seo_sitemap/show.xml.builder +16 -0
- data/app/views/user/_flash_messages.html.erb +11 -0
- data/app/views/user/edit.html.erb +6 -0
- data/app/views/user/edit_password.html.erb +11 -0
- data/app/views/user/forgot_password.html.erb +7 -0
- data/app/views/user/login.html.erb +15 -0
- data/app/views/user/new.html.erb +11 -0
- data/app/views/user/profile.html.erb +8 -0
- data/app/views/user/register_pending.html.erb +1 -0
- data/app/views/user/set_password.html.erb +14 -0
- data/config/cms_routes.rb +13 -0
- data/config/locales/de.rails_connector.controllers.yml +30 -0
- data/config/locales/de.rails_connector.errors.yml +11 -0
- data/config/locales/de.rails_connector.helpers.yml +9 -0
- data/config/locales/de.rails_connector.lib.yml +6 -0
- data/config/locales/de.rails_connector.models.yml +8 -0
- data/config/locales/de.rails_connector.views.yml +87 -0
- data/config/locales/en.rails_connector.controllers.yml +30 -0
- data/config/locales/en.rails_connector.errors.yml +10 -0
- data/config/locales/en.rails_connector.helpers.yml +9 -0
- data/config/locales/en.rails_connector.lib.yml +6 -0
- data/config/locales/en.rails_connector.models.yml +8 -0
- data/config/locales/en.rails_connector.views.yml +87 -0
- data/config/routes.rb +37 -0
- data/lib/generators/rails_connector/comments/comments_generator.rb +21 -0
- data/lib/generators/rails_connector/comments/templates/migration.rb +17 -0
- data/lib/generators/rails_connector/install/install_generator.rb +38 -0
- data/lib/generators/rails_connector/install/templates/initializers/rails_connector.rb +58 -0
- data/lib/generators/rails_connector/install/templates/local/configuration.rb +2 -0
- data/lib/generators/rails_connector/install/templates/obj_extensions.rb +25 -0
- data/lib/generators/rails_connector/ratings/ratings_generator.rb +21 -0
- data/lib/generators/rails_connector/ratings/templates/migration.rb +15 -0
- data/lib/infopark_rails_connector.rb +31 -0
- data/lib/obj_extensions.rb +6 -0
- data/lib/rails_connector/authenticable.rb +30 -0
- data/lib/rails_connector/cms_accessible.rb +114 -0
- data/lib/rails_connector/cms_dispatch_controller.rb +47 -0
- data/lib/rails_connector/cms_env.rb +55 -0
- data/lib/rails_connector/cms_test_request.rb +23 -0
- data/lib/rails_connector/commentable.rb +23 -0
- data/lib/rails_connector/configuration/google_analytics.rb +29 -0
- data/lib/rails_connector/configuration/pdf_generator.rb +15 -0
- data/lib/rails_connector/configuration/rss.rb +46 -0
- data/lib/rails_connector/configuration.rb +235 -0
- data/lib/rails_connector/core_extensions/time.rb +18 -0
- data/lib/rails_connector/core_extensions.rb +1 -0
- data/lib/rails_connector/crm.rb +282 -0
- data/lib/rails_connector/engine.rb +78 -0
- data/lib/rails_connector/fop.rb +18 -0
- data/lib/rails_connector/fop_on_rails/document/dom_tree.rb +42 -0
- data/lib/rails_connector/fop_on_rails/document/images.rb +34 -0
- data/lib/rails_connector/fop_on_rails/document/tables.rb +67 -0
- data/lib/rails_connector/fop_on_rails/document.rb +25 -0
- data/lib/rails_connector/fop_on_rails.rb +92 -0
- data/lib/rails_connector/googlebot_checker.rb +47 -0
- data/lib/rails_connector/html_string.rb +19 -0
- data/lib/rails_connector/infopark_base.rb +2 -0
- data/lib/rails_connector/link_resolvable.rb +9 -0
- data/lib/rails_connector/liquid_support/action_marker.rb +69 -0
- data/lib/rails_connector/liquid_support/field_value_drop.rb +22 -0
- data/lib/rails_connector/liquid_support/general_helper_tag.rb +44 -0
- data/lib/rails_connector/liquid_support/link_drop.rb +22 -0
- data/lib/rails_connector/liquid_support/liquid_template_handler.rb +162 -0
- data/lib/rails_connector/liquid_support/named_object_drop.rb +14 -0
- data/lib/rails_connector/liquid_support/obj_drop.rb +43 -0
- data/lib/rails_connector/liquid_support/obj_filters.rb +77 -0
- data/lib/rails_connector/liquid_support.rb +23 -0
- data/lib/rails_connector/markdown_string.rb +19 -0
- data/lib/rails_connector/rateable.rb +57 -0
- data/lib/rails_connector/seo.rb +52 -0
- data/lib/rails_connector/ses.rb +72 -0
- data/lib/rails_connector/string_tagging.rb +29 -0
- data/lib/rails_connector/syndicateable.rb +11 -0
- data/lib/search_request.rb +2 -0
- data/lib/tasks/check.rake +25 -0
- data/lib/tasks/cms_license_check.rake +17 -0
- metadata +489 -0
@@ -0,0 +1,127 @@
|
|
1
|
+
// ** I18N
|
2
|
+
|
3
|
+
// Calendar DE language
|
4
|
+
// Author: Jack (tR), <jack@jtr.de>
|
5
|
+
// Encoding: utf-8
|
6
|
+
// Distributed under the same terms as the calendar itself.
|
7
|
+
|
8
|
+
// For translators: please use UTF-8 if possible. We strongly believe that
|
9
|
+
// Unicode is the answer to a real internationalized world. Also please
|
10
|
+
// include your contact information in the header, as can be seen above.
|
11
|
+
|
12
|
+
// full day names
|
13
|
+
Calendar._DN = new Array
|
14
|
+
("Sonntag",
|
15
|
+
"Montag",
|
16
|
+
"Dienstag",
|
17
|
+
"Mittwoch",
|
18
|
+
"Donnerstag",
|
19
|
+
"Freitag",
|
20
|
+
"Samstag",
|
21
|
+
"Sonntag");
|
22
|
+
|
23
|
+
// Please note that the following array of short day names (and the same goes
|
24
|
+
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
25
|
+
// for exemplification on how one can customize the short day names, but if
|
26
|
+
// they are simply the first N letters of the full name you can simply say:
|
27
|
+
//
|
28
|
+
// Calendar._SDN_len = N; // short day name length
|
29
|
+
// Calendar._SMN_len = N; // short month name length
|
30
|
+
//
|
31
|
+
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
32
|
+
// present, to be compatible with translation files that were written before
|
33
|
+
// this feature.
|
34
|
+
|
35
|
+
// short day names
|
36
|
+
Calendar._SDN = new Array
|
37
|
+
("So",
|
38
|
+
"Mo",
|
39
|
+
"Di",
|
40
|
+
"Mi",
|
41
|
+
"Do",
|
42
|
+
"Fr",
|
43
|
+
"Sa",
|
44
|
+
"So");
|
45
|
+
|
46
|
+
// First day of the week. "0" means display Sunday first, "1" means display
|
47
|
+
// Monday first, etc.
|
48
|
+
Calendar._FD = 1;
|
49
|
+
|
50
|
+
// full month names
|
51
|
+
Calendar._MN = new Array
|
52
|
+
("Januar",
|
53
|
+
"Februar",
|
54
|
+
"März",
|
55
|
+
"April",
|
56
|
+
"Mai",
|
57
|
+
"Juni",
|
58
|
+
"Juli",
|
59
|
+
"August",
|
60
|
+
"September",
|
61
|
+
"Oktober",
|
62
|
+
"November",
|
63
|
+
"Dezember");
|
64
|
+
|
65
|
+
// short month names
|
66
|
+
Calendar._SMN = new Array
|
67
|
+
("Jan",
|
68
|
+
"Feb",
|
69
|
+
"Mär",
|
70
|
+
"Apr",
|
71
|
+
"May",
|
72
|
+
"Jun",
|
73
|
+
"Jul",
|
74
|
+
"Aug",
|
75
|
+
"Sep",
|
76
|
+
"Okt",
|
77
|
+
"Nov",
|
78
|
+
"Dez");
|
79
|
+
|
80
|
+
// tooltips
|
81
|
+
Calendar._TT = {};
|
82
|
+
Calendar._TT["INFO"] = "Über dieses Kalendarmodul";
|
83
|
+
|
84
|
+
Calendar._TT["ABOUT"] =
|
85
|
+
"DHTML Date/Time Selector\n" +
|
86
|
+
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-)
|
87
|
+
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
88
|
+
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
89
|
+
"\n\n" +
|
90
|
+
"Datum auswählen:\n" +
|
91
|
+
"- Benutzen Sie die \xab, \xbb Buttons um das Jahr zu wählen\n" +
|
92
|
+
"- Benutzen Sie die " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " Buttons um den Monat zu wählen\n" +
|
93
|
+
"- Für eine Schnellauswahl halten Sie die Maustaste über diesen Buttons fest.";
|
94
|
+
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
95
|
+
"Zeit auswählen:\n" +
|
96
|
+
"- Klicken Sie auf die Teile der Uhrzeit, um diese zu erhöhen\n" +
|
97
|
+
"- oder klicken Sie mit festgehaltener Shift-Taste um diese zu verringern\n" +
|
98
|
+
"- oder klicken und festhalten für Schnellauswahl.";
|
99
|
+
|
100
|
+
Calendar._TT["PREV_YEAR"] = "Voriges Jahr (Festhalten für Schnellauswahl)";
|
101
|
+
Calendar._TT["PREV_MONTH"] = "Voriger Monat (Festhalten für Schnellauswahl)";
|
102
|
+
Calendar._TT["GO_TODAY"] = "Heute auswählen";
|
103
|
+
Calendar._TT["NEXT_MONTH"] = "Nächst. Monat (Festhalten für Schnellauswahl)";
|
104
|
+
Calendar._TT["NEXT_YEAR"] = "Nächst. Jahr (Festhalten für Schnellauswahl)";
|
105
|
+
Calendar._TT["SEL_DATE"] = "Datum auswählen";
|
106
|
+
Calendar._TT["DRAG_TO_MOVE"] = "Zum Bewegen festhalten";
|
107
|
+
Calendar._TT["PART_TODAY"] = " (Heute)";
|
108
|
+
|
109
|
+
// the following is to inform that "%s" is to be the first day of week
|
110
|
+
// %s will be replaced with the day name.
|
111
|
+
Calendar._TT["DAY_FIRST"] = "Woche beginnt mit %s ";
|
112
|
+
|
113
|
+
// This may be locale-dependent. It specifies the week-end days, as an array
|
114
|
+
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
115
|
+
// means Monday, etc.
|
116
|
+
Calendar._TT["WEEKEND"] = "0,6";
|
117
|
+
|
118
|
+
Calendar._TT["CLOSE"] = "Schließen";
|
119
|
+
Calendar._TT["TODAY"] = "Heute";
|
120
|
+
Calendar._TT["TIME_PART"] = "(Shift-)Klick oder Festhalten und Ziehen um den Wert zu ändern";
|
121
|
+
|
122
|
+
// date formats
|
123
|
+
Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%Y";
|
124
|
+
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
125
|
+
|
126
|
+
Calendar._TT["WK"] = "KW";
|
127
|
+
Calendar._TT["TIME"] = "Zeit:";
|
@@ -0,0 +1,127 @@
|
|
1
|
+
// ** I18N
|
2
|
+
|
3
|
+
// Calendar EN language
|
4
|
+
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
|
5
|
+
// Encoding: any
|
6
|
+
// Distributed under the same terms as the calendar itself.
|
7
|
+
|
8
|
+
// For translators: please use UTF-8 if possible. We strongly believe that
|
9
|
+
// Unicode is the answer to a real internationalized world. Also please
|
10
|
+
// include your contact information in the header, as can be seen above.
|
11
|
+
|
12
|
+
// full day names
|
13
|
+
Calendar._DN = new Array
|
14
|
+
("Sunday",
|
15
|
+
"Monday",
|
16
|
+
"Tuesday",
|
17
|
+
"Wednesday",
|
18
|
+
"Thursday",
|
19
|
+
"Friday",
|
20
|
+
"Saturday",
|
21
|
+
"Sunday");
|
22
|
+
|
23
|
+
// Please note that the following array of short day names (and the same goes
|
24
|
+
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
25
|
+
// for exemplification on how one can customize the short day names, but if
|
26
|
+
// they are simply the first N letters of the full name you can simply say:
|
27
|
+
//
|
28
|
+
// Calendar._SDN_len = N; // short day name length
|
29
|
+
// Calendar._SMN_len = N; // short month name length
|
30
|
+
//
|
31
|
+
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
32
|
+
// present, to be compatible with translation files that were written before
|
33
|
+
// this feature.
|
34
|
+
|
35
|
+
// short day names
|
36
|
+
Calendar._SDN = new Array
|
37
|
+
("Sun",
|
38
|
+
"Mon",
|
39
|
+
"Tue",
|
40
|
+
"Wed",
|
41
|
+
"Thu",
|
42
|
+
"Fri",
|
43
|
+
"Sat",
|
44
|
+
"Sun");
|
45
|
+
|
46
|
+
// First day of the week. "0" means display Sunday first, "1" means display
|
47
|
+
// Monday first, etc.
|
48
|
+
Calendar._FD = 0;
|
49
|
+
|
50
|
+
// full month names
|
51
|
+
Calendar._MN = new Array
|
52
|
+
("January",
|
53
|
+
"February",
|
54
|
+
"March",
|
55
|
+
"April",
|
56
|
+
"May",
|
57
|
+
"June",
|
58
|
+
"July",
|
59
|
+
"August",
|
60
|
+
"September",
|
61
|
+
"October",
|
62
|
+
"November",
|
63
|
+
"December");
|
64
|
+
|
65
|
+
// short month names
|
66
|
+
Calendar._SMN = new Array
|
67
|
+
("Jan",
|
68
|
+
"Feb",
|
69
|
+
"Mar",
|
70
|
+
"Apr",
|
71
|
+
"May",
|
72
|
+
"Jun",
|
73
|
+
"Jul",
|
74
|
+
"Aug",
|
75
|
+
"Sep",
|
76
|
+
"Oct",
|
77
|
+
"Nov",
|
78
|
+
"Dec");
|
79
|
+
|
80
|
+
// tooltips
|
81
|
+
Calendar._TT = {};
|
82
|
+
Calendar._TT["INFO"] = "About the calendar";
|
83
|
+
|
84
|
+
Calendar._TT["ABOUT"] =
|
85
|
+
"DHTML Date/Time Selector\n" +
|
86
|
+
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
87
|
+
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
88
|
+
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
89
|
+
"\n\n" +
|
90
|
+
"Date selection:\n" +
|
91
|
+
"- Use the \xab, \xbb buttons to select year\n" +
|
92
|
+
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
|
93
|
+
"- Hold mouse button on any of the above buttons for faster selection.";
|
94
|
+
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
95
|
+
"Time selection:\n" +
|
96
|
+
"- Click on any of the time parts to increase it\n" +
|
97
|
+
"- or Shift-click to decrease it\n" +
|
98
|
+
"- or click and drag for faster selection.";
|
99
|
+
|
100
|
+
Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)";
|
101
|
+
Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)";
|
102
|
+
Calendar._TT["GO_TODAY"] = "Go Today";
|
103
|
+
Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)";
|
104
|
+
Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)";
|
105
|
+
Calendar._TT["SEL_DATE"] = "Select date";
|
106
|
+
Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
|
107
|
+
Calendar._TT["PART_TODAY"] = " (today)";
|
108
|
+
|
109
|
+
// the following is to inform that "%s" is to be the first day of week
|
110
|
+
// %s will be replaced with the day name.
|
111
|
+
Calendar._TT["DAY_FIRST"] = "Display %s first";
|
112
|
+
|
113
|
+
// This may be locale-dependent. It specifies the week-end days, as an array
|
114
|
+
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
115
|
+
// means Monday, etc.
|
116
|
+
Calendar._TT["WEEKEND"] = "0,6";
|
117
|
+
|
118
|
+
Calendar._TT["CLOSE"] = "Close";
|
119
|
+
Calendar._TT["TODAY"] = "Today";
|
120
|
+
Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
|
121
|
+
|
122
|
+
// date formats
|
123
|
+
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
|
124
|
+
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
125
|
+
|
126
|
+
Calendar._TT["WK"] = "wk";
|
127
|
+
Calendar._TT["TIME"] = "Time:";
|
@@ -0,0 +1,129 @@
|
|
1
|
+
// ** I18N
|
2
|
+
|
3
|
+
// Calendar ES (spanish) language
|
4
|
+
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
|
5
|
+
// Updater: Servilio Afre Puentes <servilios@yahoo.com>
|
6
|
+
// Updated: 2004-06-03
|
7
|
+
// Encoding: utf-8
|
8
|
+
// Distributed under the same terms as the calendar itself.
|
9
|
+
|
10
|
+
// For translators: please use UTF-8 if possible. We strongly believe that
|
11
|
+
// Unicode is the answer to a real internationalized world. Also please
|
12
|
+
// include your contact information in the header, as can be seen above.
|
13
|
+
|
14
|
+
// full day names
|
15
|
+
Calendar._DN = new Array
|
16
|
+
("Domingo",
|
17
|
+
"Lunes",
|
18
|
+
"Martes",
|
19
|
+
"Miércoles",
|
20
|
+
"Jueves",
|
21
|
+
"Viernes",
|
22
|
+
"Sábado",
|
23
|
+
"Domingo");
|
24
|
+
|
25
|
+
// Please note that the following array of short day names (and the same goes
|
26
|
+
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
27
|
+
// for exemplification on how one can customize the short day names, but if
|
28
|
+
// they are simply the first N letters of the full name you can simply say:
|
29
|
+
//
|
30
|
+
// Calendar._SDN_len = N; // short day name length
|
31
|
+
// Calendar._SMN_len = N; // short month name length
|
32
|
+
//
|
33
|
+
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
34
|
+
// present, to be compatible with translation files that were written before
|
35
|
+
// this feature.
|
36
|
+
|
37
|
+
// short day names
|
38
|
+
Calendar._SDN = new Array
|
39
|
+
("Dom",
|
40
|
+
"Lun",
|
41
|
+
"Mar",
|
42
|
+
"Mié",
|
43
|
+
"Jue",
|
44
|
+
"Vie",
|
45
|
+
"Sáb",
|
46
|
+
"Dom");
|
47
|
+
|
48
|
+
// First day of the week. "0" means display Sunday first, "1" means display
|
49
|
+
// Monday first, etc.
|
50
|
+
Calendar._FD = 1;
|
51
|
+
|
52
|
+
// full month names
|
53
|
+
Calendar._MN = new Array
|
54
|
+
("Enero",
|
55
|
+
"Febrero",
|
56
|
+
"Marzo",
|
57
|
+
"Abril",
|
58
|
+
"Mayo",
|
59
|
+
"Junio",
|
60
|
+
"Julio",
|
61
|
+
"Agosto",
|
62
|
+
"Septiembre",
|
63
|
+
"Octubre",
|
64
|
+
"Noviembre",
|
65
|
+
"Diciembre");
|
66
|
+
|
67
|
+
// short month names
|
68
|
+
Calendar._SMN = new Array
|
69
|
+
("Ene",
|
70
|
+
"Feb",
|
71
|
+
"Mar",
|
72
|
+
"Abr",
|
73
|
+
"May",
|
74
|
+
"Jun",
|
75
|
+
"Jul",
|
76
|
+
"Ago",
|
77
|
+
"Sep",
|
78
|
+
"Oct",
|
79
|
+
"Nov",
|
80
|
+
"Dic");
|
81
|
+
|
82
|
+
// tooltips
|
83
|
+
Calendar._TT = {};
|
84
|
+
Calendar._TT["INFO"] = "Acerca del calendario";
|
85
|
+
|
86
|
+
Calendar._TT["ABOUT"] =
|
87
|
+
"Selector DHTML de Fecha/Hora\n" +
|
88
|
+
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
89
|
+
"Para conseguir la última versión visite: http://www.dynarch.com/projects/calendar/\n" +
|
90
|
+
"Distribuido bajo licencia GNU LGPL. Visite http://gnu.org/licenses/lgpl.html para más detalles." +
|
91
|
+
"\n\n" +
|
92
|
+
"Selección de fecha:\n" +
|
93
|
+
"- Use los botones \xab, \xbb para seleccionar el año\n" +
|
94
|
+
"- Use los botones " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mes\n" +
|
95
|
+
"- Mantenga pulsado el ratón en cualquiera de estos botones para una selección rápida.";
|
96
|
+
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
97
|
+
"Selección de hora:\n" +
|
98
|
+
"- Pulse en cualquiera de las partes de la hora para incrementarla\n" +
|
99
|
+
"- o pulse las mayúsculas mientras hace clic para decrementarla\n" +
|
100
|
+
"- o haga clic y arrastre el ratón para una selección más rápida.";
|
101
|
+
|
102
|
+
Calendar._TT["PREV_YEAR"] = "Año anterior (mantener para menú)";
|
103
|
+
Calendar._TT["PREV_MONTH"] = "Mes anterior (mantener para menú)";
|
104
|
+
Calendar._TT["GO_TODAY"] = "Ir a hoy";
|
105
|
+
Calendar._TT["NEXT_MONTH"] = "Mes siguiente (mantener para menú)";
|
106
|
+
Calendar._TT["NEXT_YEAR"] = "Año siguiente (mantener para menú)";
|
107
|
+
Calendar._TT["SEL_DATE"] = "Seleccionar fecha";
|
108
|
+
Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar para mover";
|
109
|
+
Calendar._TT["PART_TODAY"] = " (hoy)";
|
110
|
+
|
111
|
+
// the following is to inform that "%s" is to be the first day of week
|
112
|
+
// %s will be replaced with the day name.
|
113
|
+
Calendar._TT["DAY_FIRST"] = "Hacer %s primer día de la semana";
|
114
|
+
|
115
|
+
// This may be locale-dependent. It specifies the week-end days, as an array
|
116
|
+
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
117
|
+
// means Monday, etc.
|
118
|
+
Calendar._TT["WEEKEND"] = "0,6";
|
119
|
+
|
120
|
+
Calendar._TT["CLOSE"] = "Cerrar";
|
121
|
+
Calendar._TT["TODAY"] = "Hoy";
|
122
|
+
Calendar._TT["TIME_PART"] = "(Mayúscula-)Clic o arrastre para cambiar valor";
|
123
|
+
|
124
|
+
// date formats
|
125
|
+
Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
|
126
|
+
Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
|
127
|
+
|
128
|
+
Calendar._TT["WK"] = "sem";
|
129
|
+
Calendar._TT["TIME"] = "Hora:";
|
@@ -0,0 +1,125 @@
|
|
1
|
+
// ** I18N
|
2
|
+
|
3
|
+
// Calendar FR language
|
4
|
+
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
|
5
|
+
// Encoding: utf-8
|
6
|
+
// Distributed under the same terms as the calendar itself.
|
7
|
+
|
8
|
+
// For translators: please use UTF-8 if possible. We strongly believe that
|
9
|
+
// Unicode is the answer to a real internationalized world. Also please
|
10
|
+
// include your contact information in the header, as can be seen above.
|
11
|
+
|
12
|
+
// Translator: David Duret, <pilgrim@mala-template.net> from previous french version
|
13
|
+
|
14
|
+
// full day names
|
15
|
+
Calendar._DN = new Array
|
16
|
+
("Dimanche",
|
17
|
+
"Lundi",
|
18
|
+
"Mardi",
|
19
|
+
"Mercredi",
|
20
|
+
"Jeudi",
|
21
|
+
"Vendredi",
|
22
|
+
"Samedi",
|
23
|
+
"Dimanche");
|
24
|
+
|
25
|
+
// Please note that the following array of short day names (and the same goes
|
26
|
+
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
27
|
+
// for exemplification on how one can customize the short day names, but if
|
28
|
+
// they are simply the first N letters of the full name you can simply say:
|
29
|
+
//
|
30
|
+
// Calendar._SDN_len = N; // short day name length
|
31
|
+
// Calendar._SMN_len = N; // short month name length
|
32
|
+
//
|
33
|
+
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
34
|
+
// present, to be compatible with translation files that were written before
|
35
|
+
// this feature.
|
36
|
+
|
37
|
+
// short day names
|
38
|
+
Calendar._SDN = new Array
|
39
|
+
("Dim",
|
40
|
+
"Lun",
|
41
|
+
"Mar",
|
42
|
+
"Mar",
|
43
|
+
"Jeu",
|
44
|
+
"Ven",
|
45
|
+
"Sam",
|
46
|
+
"Dim");
|
47
|
+
|
48
|
+
// full month names
|
49
|
+
Calendar._MN = new Array
|
50
|
+
("Janvier",
|
51
|
+
"Février",
|
52
|
+
"Mars",
|
53
|
+
"Avril",
|
54
|
+
"Mai",
|
55
|
+
"Juin",
|
56
|
+
"Juillet",
|
57
|
+
"Août",
|
58
|
+
"Septembre",
|
59
|
+
"Octobre",
|
60
|
+
"Novembre",
|
61
|
+
"Décembre");
|
62
|
+
|
63
|
+
// short month names
|
64
|
+
Calendar._SMN = new Array
|
65
|
+
("Jan",
|
66
|
+
"Fev",
|
67
|
+
"Mar",
|
68
|
+
"Avr",
|
69
|
+
"Mai",
|
70
|
+
"Juin",
|
71
|
+
"Juil",
|
72
|
+
"Aout",
|
73
|
+
"Sep",
|
74
|
+
"Oct",
|
75
|
+
"Nov",
|
76
|
+
"Dec");
|
77
|
+
|
78
|
+
// tooltips
|
79
|
+
Calendar._TT = {};
|
80
|
+
Calendar._TT["INFO"] = "A propos du calendrier";
|
81
|
+
|
82
|
+
Calendar._TT["ABOUT"] =
|
83
|
+
"DHTML Date/Heure Selecteur\n" +
|
84
|
+
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
85
|
+
"Pour la derniere version visitez : http://www.dynarch.com/projects/calendar/\n" +
|
86
|
+
"Distribué par GNU LGPL. Voir http://gnu.org/licenses/lgpl.html pour les details." +
|
87
|
+
"\n\n" +
|
88
|
+
"Selection de la date :\n" +
|
89
|
+
"- Utiliser les bouttons \xab, \xbb pour selectionner l\'annee\n" +
|
90
|
+
"- Utiliser les bouttons " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pour selectionner les mois\n" +
|
91
|
+
"- Garder la souris sur n'importe quels boutons pour une selection plus rapide";
|
92
|
+
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
93
|
+
"Selection de l\'heure :\n" +
|
94
|
+
"- Cliquer sur heures ou minutes pour incrementer\n" +
|
95
|
+
"- ou Maj-clic pour decrementer\n" +
|
96
|
+
"- ou clic et glisser-deplacer pour une selection plus rapide";
|
97
|
+
|
98
|
+
Calendar._TT["PREV_YEAR"] = "Année préc. (maintenir pour menu)";
|
99
|
+
Calendar._TT["PREV_MONTH"] = "Mois préc. (maintenir pour menu)";
|
100
|
+
Calendar._TT["GO_TODAY"] = "Atteindre la date du jour";
|
101
|
+
Calendar._TT["NEXT_MONTH"] = "Mois suiv. (maintenir pour menu)";
|
102
|
+
Calendar._TT["NEXT_YEAR"] = "Année suiv. (maintenir pour menu)";
|
103
|
+
Calendar._TT["SEL_DATE"] = "Sélectionner une date";
|
104
|
+
Calendar._TT["DRAG_TO_MOVE"] = "Déplacer";
|
105
|
+
Calendar._TT["PART_TODAY"] = " (Aujourd'hui)";
|
106
|
+
|
107
|
+
// the following is to inform that "%s" is to be the first day of week
|
108
|
+
// %s will be replaced with the day name.
|
109
|
+
Calendar._TT["DAY_FIRST"] = "Afficher %s en premier";
|
110
|
+
|
111
|
+
// This may be locale-dependent. It specifies the week-end days, as an array
|
112
|
+
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
113
|
+
// means Monday, etc.
|
114
|
+
Calendar._TT["WEEKEND"] = "0,6";
|
115
|
+
|
116
|
+
Calendar._TT["CLOSE"] = "Fermer";
|
117
|
+
Calendar._TT["TODAY"] = "Aujourd'hui";
|
118
|
+
Calendar._TT["TIME_PART"] = "(Maj-)Clic ou glisser pour modifier la valeur";
|
119
|
+
|
120
|
+
// date formats
|
121
|
+
Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
|
122
|
+
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
123
|
+
|
124
|
+
Calendar._TT["WK"] = "Sem.";
|
125
|
+
Calendar._TT["TIME"] = "Heure :";
|
@@ -0,0 +1,124 @@
|
|
1
|
+
// ** I18N
|
2
|
+
|
3
|
+
// Calendar IT language
|
4
|
+
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
|
5
|
+
// Translator: Fabio Di Bernardini, <altraqua@email.it>
|
6
|
+
// Encoding: utf-8
|
7
|
+
// Distributed under the same terms as the calendar itself.
|
8
|
+
|
9
|
+
// For translators: please use UTF-8 if possible. We strongly believe that
|
10
|
+
// Unicode is the answer to a real internationalized world. Also please
|
11
|
+
// include your contact information in the header, as can be seen above.
|
12
|
+
|
13
|
+
// full day names
|
14
|
+
Calendar._DN = new Array
|
15
|
+
("Domenica",
|
16
|
+
"Lunedì",
|
17
|
+
"Martedì",
|
18
|
+
"Mercoledì",
|
19
|
+
"Giovedì",
|
20
|
+
"Venerdì",
|
21
|
+
"Sabato",
|
22
|
+
"Domenica");
|
23
|
+
|
24
|
+
// Please note that the following array of short day names (and the same goes
|
25
|
+
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
26
|
+
// for exemplification on how one can customize the short day names, but if
|
27
|
+
// they are simply the first N letters of the full name you can simply say:
|
28
|
+
//
|
29
|
+
// Calendar._SDN_len = N; // short day name length
|
30
|
+
// Calendar._SMN_len = N; // short month name length
|
31
|
+
//
|
32
|
+
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
33
|
+
// present, to be compatible with translation files that were written before
|
34
|
+
// this feature.
|
35
|
+
|
36
|
+
// short day names
|
37
|
+
Calendar._SDN = new Array
|
38
|
+
("Dom",
|
39
|
+
"Lun",
|
40
|
+
"Mar",
|
41
|
+
"Mer",
|
42
|
+
"Gio",
|
43
|
+
"Ven",
|
44
|
+
"Sab",
|
45
|
+
"Dom");
|
46
|
+
|
47
|
+
// full month names
|
48
|
+
Calendar._MN = new Array
|
49
|
+
("Gennaio",
|
50
|
+
"Febbraio",
|
51
|
+
"Marzo",
|
52
|
+
"Aprile",
|
53
|
+
"Maggio",
|
54
|
+
"Giugno",
|
55
|
+
"Luglio",
|
56
|
+
"Augosto",
|
57
|
+
"Settembre",
|
58
|
+
"Ottobre",
|
59
|
+
"Novembre",
|
60
|
+
"Dicembre");
|
61
|
+
|
62
|
+
// short month names
|
63
|
+
Calendar._SMN = new Array
|
64
|
+
("Gen",
|
65
|
+
"Feb",
|
66
|
+
"Mar",
|
67
|
+
"Apr",
|
68
|
+
"Mag",
|
69
|
+
"Giu",
|
70
|
+
"Lug",
|
71
|
+
"Ago",
|
72
|
+
"Set",
|
73
|
+
"Ott",
|
74
|
+
"Nov",
|
75
|
+
"Dic");
|
76
|
+
|
77
|
+
// tooltips
|
78
|
+
Calendar._TT = {};
|
79
|
+
Calendar._TT["INFO"] = "Informazioni sul calendario";
|
80
|
+
|
81
|
+
Calendar._TT["ABOUT"] =
|
82
|
+
"DHTML Date/Time Selector\n" +
|
83
|
+
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
84
|
+
"Per gli aggiornamenti: http://www.dynarch.com/projects/calendar/\n" +
|
85
|
+
"Distribuito sotto licenza GNU LGPL. Vedi http://gnu.org/licenses/lgpl.html per i dettagli." +
|
86
|
+
"\n\n" +
|
87
|
+
"Selezione data:\n" +
|
88
|
+
"- Usa \xab, \xbb per selezionare l'anno\n" +
|
89
|
+
"- Usa " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " per i mesi\n" +
|
90
|
+
"- Tieni premuto a lungo il mouse per accedere alle funzioni di selezione veloce.";
|
91
|
+
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
92
|
+
"Selezione orario:\n" +
|
93
|
+
"- Clicca sul numero per incrementarlo\n" +
|
94
|
+
"- o Shift+click per decrementarlo\n" +
|
95
|
+
"- o click e sinistra o destra per variarlo.";
|
96
|
+
|
97
|
+
Calendar._TT["PREV_YEAR"] = "Anno prec.(clicca a lungo per il menù)";
|
98
|
+
Calendar._TT["PREV_MONTH"] = "Mese prec. (clicca a lungo per il menù)";
|
99
|
+
Calendar._TT["GO_TODAY"] = "Oggi";
|
100
|
+
Calendar._TT["NEXT_MONTH"] = "Pross. mese (clicca a lungo per il menù)";
|
101
|
+
Calendar._TT["NEXT_YEAR"] = "Pross. anno (clicca a lungo per il menù)";
|
102
|
+
Calendar._TT["SEL_DATE"] = "Seleziona data";
|
103
|
+
Calendar._TT["DRAG_TO_MOVE"] = "Trascina per spostarlo";
|
104
|
+
Calendar._TT["PART_TODAY"] = " (oggi)";
|
105
|
+
|
106
|
+
// the following is to inform that "%s" is to be the first day of week
|
107
|
+
// %s will be replaced with the day name.
|
108
|
+
Calendar._TT["DAY_FIRST"] = "Mostra prima %s";
|
109
|
+
|
110
|
+
// This may be locale-dependent. It specifies the week-end days, as an array
|
111
|
+
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
112
|
+
// means Monday, etc.
|
113
|
+
Calendar._TT["WEEKEND"] = "0,6";
|
114
|
+
|
115
|
+
Calendar._TT["CLOSE"] = "Chiudi";
|
116
|
+
Calendar._TT["TODAY"] = "Oggi";
|
117
|
+
Calendar._TT["TIME_PART"] = "(Shift-)Click o trascina per cambiare il valore";
|
118
|
+
|
119
|
+
// date formats
|
120
|
+
Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
|
121
|
+
Calendar._TT["TT_DATE_FORMAT"] = "%a:%b:%e";
|
122
|
+
|
123
|
+
Calendar._TT["WK"] = "set";
|
124
|
+
Calendar._TT["TIME"] = "Ora:";
|