drg_cms 0.4.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +39 -0
- data/app/assets/images/drg_cms/add.png +0 -0
- data/app/assets/images/drg_cms/arrow_in.png +0 -0
- data/app/assets/images/drg_cms/arrow_out.png +0 -0
- data/app/assets/images/drg_cms/checkbox-checked.png +0 -0
- data/app/assets/images/drg_cms/checkbox-unchecked.png +0 -0
- data/app/assets/images/drg_cms/cols.png +0 -0
- data/app/assets/images/drg_cms/copy.png +0 -0
- data/app/assets/images/drg_cms/edit.png +0 -0
- data/app/assets/images/drg_cms/edit_design.png +0 -0
- data/app/assets/images/drg_cms/edit_page.png +0 -0
- data/app/assets/images/drg_cms/edit_site.png +0 -0
- data/app/assets/images/drg_cms/html.png +0 -0
- data/app/assets/images/drg_cms/pin.png +0 -0
- data/app/assets/images/drg_cms/printer.png +0 -0
- data/app/assets/images/drg_cms/reload.png +0 -0
- data/app/assets/images/drg_cms/search_16.png +0 -0
- data/app/assets/images/drg_cms/spinner.gif +0 -0
- data/app/assets/images/drg_cms/view_tile.png +0 -0
- data/app/assets/images/drg_cms/x.png +0 -0
- data/app/assets/javascripts/drg_cms/drg_cms.js +449 -0
- data/app/assets/javascripts/drg_cms/jquery-migrate.js +511 -0
- data/app/assets/javascripts/drg_cms/jquery.datetimepicker.js +1353 -0
- data/app/assets/javascripts/drg_cms/some_scripts.js +33 -0
- data/app/assets/javascripts/drg_cms_application.js +11 -0
- data/app/assets/javascripts/drg_cms_cms.js +28 -0
- data/app/assets/stylesheets/drg_cms/drg_cms.css +632 -0
- data/app/assets/stylesheets/drg_cms/jquery-ui.css +339 -0
- data/app/assets/stylesheets/drg_cms/jquery.datetimepicker.css +304 -0
- data/app/assets/stylesheets/drg_cms/th-bg.png +0 -0
- data/app/assets/stylesheets/drg_cms/theme.css +49 -0
- data/app/assets/stylesheets/drg_cms_application.css +12 -0
- data/app/assets/stylesheets/drg_cms_cms.css +26 -0
- data/app/controllers/cmsedit_controller.rb +673 -0
- data/app/controllers/dc_application_controller.rb +385 -0
- data/app/controllers/dc_at_the_beginning_controller.rb +120 -0
- data/app/controllers/dc_common_controller.rb +314 -0
- data/app/controllers/dc_mail_controller.rb +89 -0
- data/app/controllers/dc_main_controller.rb +40 -0
- data/app/controllers/drgcms_controls/dc_page_controls.rb +40 -0
- data/app/forms/all_options.yml +176 -0
- data/app/forms/cms_forms.yml +93 -0
- data/app/forms/cms_menu.yml +142 -0
- data/app/forms/dc_ad.yml +130 -0
- data/app/forms/dc_big_table.yml +59 -0
- data/app/forms/dc_big_table_locale.yml +41 -0
- data/app/forms/dc_big_table_value.yml +47 -0
- data/app/forms/dc_category.yml +57 -0
- data/app/forms/dc_design.yml +68 -0
- data/app/forms/dc_folder_permission.yml +49 -0
- data/app/forms/dc_forum_cat.yml +54 -0
- data/app/forms/dc_forum_forum.yml +53 -0
- data/app/forms/dc_forum_msg.yml +124 -0
- data/app/forms/dc_forum_privmsg.yml +125 -0
- data/app/forms/dc_forum_topic.yml +131 -0
- data/app/forms/dc_journal.yml +85 -0
- data/app/forms/dc_link.yml +55 -0
- data/app/forms/dc_mail.yml +88 -0
- data/app/forms/dc_mail_address.yml +56 -0
- data/app/forms/dc_mail_list.yml +44 -0
- data/app/forms/dc_mail_list_member.yml +42 -0
- data/app/forms/dc_menu.yml +62 -0
- data/app/forms/dc_menu_item.yml +81 -0
- data/app/forms/dc_page.yml +145 -0
- data/app/forms/dc_part.yml +102 -0
- data/app/forms/dc_permission.yml +50 -0
- data/app/forms/dc_piece.yml +105 -0
- data/app/forms/dc_policy.yml +57 -0
- data/app/forms/dc_policy_role.yml +42 -0
- data/app/forms/dc_policy_rule.yml +38 -0
- data/app/forms/dc_policy_rule_nocms.yml +38 -0
- data/app/forms/dc_poll.yml +113 -0
- data/app/forms/dc_poll_item.yml +76 -0
- data/app/forms/dc_simple_menu.yml +64 -0
- data/app/forms/dc_simple_menu_item.yml +80 -0
- data/app/forms/dc_site.yml +149 -0
- data/app/forms/dc_user.yml +142 -0
- data/app/forms/dc_user_role.yml +54 -0
- data/app/forms/drgcms_cms.yml +28 -0
- data/app/helpers/cmsedit_helper.rb +698 -0
- data/app/helpers/dc_ad_renderer.rb +206 -0
- data/app/helpers/dc_application_helper.rb +704 -0
- data/app/helpers/dc_big_menu_renderer.rb +180 -0
- data/app/helpers/dc_captcha_renderer.rb +100 -0
- data/app/helpers/dc_common_renderer.rb +132 -0
- data/app/helpers/dc_mail_renderer.rb +76 -0
- data/app/helpers/dc_menu_renderer.rb +143 -0
- data/app/helpers/dc_page_renderer.rb +80 -0
- data/app/helpers/dc_part_renderer.rb +162 -0
- data/app/helpers/dc_piece_renderer.rb +124 -0
- data/app/helpers/dc_poll_renderer.rb +219 -0
- data/app/helpers/dc_renderer.rb +56 -0
- data/app/helpers/dc_simple_menu_renderer.rb +244 -0
- data/app/helpers/drgcms_form_field.rb +863 -0
- data/app/models/__dc_global_data.rb +44 -0
- data/app/models/dc_ad.rb +52 -0
- data/app/models/dc_ad_stat.rb +34 -0
- data/app/models/dc_big_menu.rb +89 -0
- data/app/models/dc_big_table.rb +63 -0
- data/app/models/dc_big_table_locale.rb +35 -0
- data/app/models/dc_big_table_value.rb +38 -0
- data/app/models/dc_category.rb +48 -0
- data/app/models/dc_design.rb +48 -0
- data/app/models/dc_dummy.rb +30 -0
- data/app/models/dc_folder_permission.rb +43 -0
- data/app/models/dc_global_data.rb +44 -0
- data/app/models/dc_journal.rb +39 -0
- data/app/models/dc_key_value_store.rb +90 -0
- data/app/models/dc_link.rb +39 -0
- data/app/models/dc_mail.rb +64 -0
- data/app/models/dc_mail_address.rb +69 -0
- data/app/models/dc_mail_list.rb +48 -0
- data/app/models/dc_mail_list_member.rb +34 -0
- data/app/models/dc_menu.rb +59 -0
- data/app/models/dc_menu_item.rb +40 -0
- data/app/models/dc_page.rb +123 -0
- data/app/models/dc_part.rb +28 -0
- data/app/models/dc_permission.rb +58 -0
- data/app/models/dc_piece.rb +57 -0
- data/app/models/dc_policy.rb +94 -0
- data/app/models/dc_policy_role.rb +47 -0
- data/app/models/dc_policy_rule.rb +65 -0
- data/app/models/dc_poll.rb +46 -0
- data/app/models/dc_poll_item.rb +40 -0
- data/app/models/dc_sendmail.rb +48 -0
- data/app/models/dc_simple_menu.rb +58 -0
- data/app/models/dc_simple_menu_item.rb +39 -0
- data/app/models/dc_site.rb +92 -0
- data/app/models/dc_stat.rb +36 -0
- data/app/models/dc_user.rb +91 -0
- data/app/models/dc_user_role.rb +36 -0
- data/app/models/dc_visit.rb +35 -0
- data/app/views/cmsedit/_edit_stuff.html.erb +59 -0
- data/app/views/cmsedit/_edit_stuff.js.erb +6 -0
- data/app/views/cmsedit/_form.html.erb +21 -0
- data/app/views/cmsedit/_result.html.erb +20 -0
- data/app/views/cmsedit/edit.html.erb +6 -0
- data/app/views/cmsedit/error.html.erb +2 -0
- data/app/views/cmsedit/index.html.erb +6 -0
- data/app/views/cmsedit/new.html.erb +5 -0
- data/app/views/cmsedit/show.html.erb +21 -0
- data/app/views/dc_at_the_beginning/create.html.erb +9 -0
- data/app/views/dc_at_the_beginning/index.html.erb +19 -0
- data/app/views/dc_common/paste_clipboard.html.erb +17 -0
- data/app/views/dc_mail/subscribe.html.erb +7 -0
- data/app/views/dc_mail/unsubscribe.html.erb +19 -0
- data/app/views/layouts/cms.html.erb +17 -0
- data/app/views/layouts/cmsedit.html.erb +16 -0
- data/app/views/layouts/content.html.erb +16 -0
- data/config/initializers/kaminari_patch.rb +36 -0
- data/config/locales/datetimepicker.yml +13 -0
- data/config/locales/drgcms_en.yml +96 -0
- data/config/locales/drgcms_sl.yml +97 -0
- data/config/locales/en.yml +7 -0
- data/config/locales/kaminari.yml +26 -0
- data/config/locales/models_en.yml +790 -0
- data/config/locales/models_sl.yml +805 -0
- data/config/locales/mongoid_sl.yml +60 -0
- data/config/locales/sl.yml +211 -0
- data/config/routes.rb +2 -0
- data/drg_cms.gemspec +28 -0
- data/lib/drg_cms.rb +45 -0
- data/lib/drg_cms/engine.rb +30 -0
- data/lib/drg_cms/version.rb +3 -0
- data/lib/tasks/at_the_beginning.yml +26 -0
- data/lib/tasks/dc_cleanup.rake +94 -0
- data/lib/tasks/drg_cms_tasks.rake +118 -0
- data/lib/tasks/send_mail.rake +253 -0
- data/lib/tasks/site_statistics.rake +80 -0
- data/test/drg_cms_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- metadata +375 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title><%= @page_title %></title>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<%= stylesheet_link_tag "cms", media: 'all' %>
|
|
7
|
+
<style type="text/css" media="all"><%= "#{@site.css}#{@design.css}\n#{@page.css}".html_safe if @page %></style>
|
|
8
|
+
<%= @site.header.html_safe if @site %>
|
|
9
|
+
<%= javascript_include_tag "cms" %>
|
|
10
|
+
<%= csrf_meta_tags %>
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
|
|
14
|
+
<%= yield %>
|
|
15
|
+
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title><%= @page_title %></title>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<%= stylesheet_link_tag "cms", media: 'all' %>
|
|
7
|
+
<style type="text/css" media="all"><%= "#{@site.css}#{@design.css}\n#{@page.css}".html_safe if @page %></style>
|
|
8
|
+
<%= @site.header.html_safe if @site %>
|
|
9
|
+
<%= javascript_include_tag "cms" %>
|
|
10
|
+
<%= csrf_meta_tags %>
|
|
11
|
+
</head>
|
|
12
|
+
|
|
13
|
+
<body>
|
|
14
|
+
<%= yield %>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title><%= @page_title %></title>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<%= stylesheet_link_tag "application", media: 'all' %>
|
|
7
|
+
<style type="text/css" media="all"><%= "#{@site.css}#{@design.css}\n#{@page.css}".html_safe %></style>
|
|
8
|
+
<%= @site.header.html_safe %>
|
|
9
|
+
<%= javascript_include_tag "application" %>
|
|
10
|
+
<%= csrf_meta_tags %>
|
|
11
|
+
</head>
|
|
12
|
+
|
|
13
|
+
<body>
|
|
14
|
+
<%= yield %>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#coding: utf-8
|
|
2
|
+
#--
|
|
3
|
+
# Copyright (c) 2012-2013 Damjan Rems
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
# a copy of this software and associated documentation files (the
|
|
7
|
+
# "Software"), to deal in the Software without restriction, including
|
|
8
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
# the following conditions:
|
|
12
|
+
#
|
|
13
|
+
# The above copyright notice and this permission notice shall be
|
|
14
|
+
# included in all copies or substantial portions of the Software.
|
|
15
|
+
#
|
|
16
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
#++
|
|
24
|
+
|
|
25
|
+
###########################################################################
|
|
26
|
+
# This patch adds page param to url when page one is choosed.
|
|
27
|
+
###########################################################################
|
|
28
|
+
module Kaminari
|
|
29
|
+
module Helpers
|
|
30
|
+
class Tag
|
|
31
|
+
def page_url_for(page)
|
|
32
|
+
@template.url_for @params.merge(@param_name => (page < 1 ? 1 : page))
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2012-2013 Damjan Rems
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#++
|
|
23
|
+
|
|
24
|
+
# English (en) localization for drgCMS
|
|
25
|
+
en:
|
|
26
|
+
drgcms:
|
|
27
|
+
doc_deleted: Document deleted!
|
|
28
|
+
confirm_delete: Confirm document deletion!
|
|
29
|
+
confirm_dup: Confirm document duplication!
|
|
30
|
+
not_authorized: User not authorized for this operation!
|
|
31
|
+
doc_disabled: Document disabled!
|
|
32
|
+
doc_enabled: Document enabled!
|
|
33
|
+
doc_saved: Document saved!
|
|
34
|
+
doc_info: Info
|
|
35
|
+
doc_copy_clipboard: Display document data in new window
|
|
36
|
+
doc_paste_clipboard: Start update
|
|
37
|
+
doc_paste_title: Insert (update) documents from JSON data
|
|
38
|
+
doc_paste_update: Update existing document if document._id exists
|
|
39
|
+
edit_content: Edit content
|
|
40
|
+
edit_advanced: Advanced edit
|
|
41
|
+
edit_new_page: Create new page
|
|
42
|
+
edit_new_part: Create new part
|
|
43
|
+
edit_design: 'Edit: Design'
|
|
44
|
+
edit_site: 'Edit: Site'
|
|
45
|
+
edit_page: 'Edit: Page'
|
|
46
|
+
edit_selected: 'Edit: Selected table (collection)'
|
|
47
|
+
invalid_username: Invalid username or password!
|
|
48
|
+
system_menu: CMS system tables
|
|
49
|
+
menu_plus: Show alternative menu
|
|
50
|
+
not_email: is not valid e-mail address!
|
|
51
|
+
updated_by_other: Document was updated by other user. Please reenter your data.
|
|
52
|
+
|
|
53
|
+
edit: Edit
|
|
54
|
+
new: New
|
|
55
|
+
sort: Sort
|
|
56
|
+
filter: Filter
|
|
57
|
+
back: Back
|
|
58
|
+
delete: Delete
|
|
59
|
+
enable: Enable
|
|
60
|
+
disable: Disable
|
|
61
|
+
disabled: 'Disabled '
|
|
62
|
+
save: Save
|
|
63
|
+
save&back: Save & back
|
|
64
|
+
save&close: Save & close
|
|
65
|
+
filter_on: Filter ON
|
|
66
|
+
filter_off: Filter OFF
|
|
67
|
+
maximize: Maximize
|
|
68
|
+
minimize: Minimize
|
|
69
|
+
reload: Reload
|
|
70
|
+
error: Error!
|
|
71
|
+
errors_no: 'No. of errors:'
|
|
72
|
+
|
|
73
|
+
created_by: Created by
|
|
74
|
+
updated_by: Updated by
|
|
75
|
+
created_at: Created at
|
|
76
|
+
updated_at: Updated at
|
|
77
|
+
new_record: New record
|
|
78
|
+
|
|
79
|
+
choices4_filter_operators: 'Equal:eq,Like:like'
|
|
80
|
+
|
|
81
|
+
dc_journal:
|
|
82
|
+
zero_selected: No data selected!
|
|
83
|
+
restored: Data has been restored.
|
|
84
|
+
restore: Restore
|
|
85
|
+
|
|
86
|
+
dc_mail:
|
|
87
|
+
send: Send
|
|
88
|
+
send_to_test: Send test
|
|
89
|
+
mail_sent: Mail sending procedure was started!
|
|
90
|
+
test_mail_sent: Mail send to test recipient!
|
|
91
|
+
message_status_error: Message status must be Ready to send!
|
|
92
|
+
message_sent_to: "Message sent to %{number} address(es)."
|
|
93
|
+
message_errors: "%{number} addresses were in error!"
|
|
94
|
+
report: Report
|
|
95
|
+
unsubscription: Unsubscription
|
|
96
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2012-2013 Damjan Rems
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#++
|
|
23
|
+
|
|
24
|
+
# drgCMS slovenska (sl) lokalizacija
|
|
25
|
+
sl:
|
|
26
|
+
drgcms:
|
|
27
|
+
record_deleted: Dokument izbrisan!
|
|
28
|
+
confirm_delete: Potrdite izbris dokumenta!
|
|
29
|
+
confirm_dup: Potrdite podvajanje dokumenta!
|
|
30
|
+
not_authorized: Uporabnik nima pravic za to operacijo!
|
|
31
|
+
doc_disabled: Dokument onemogočen!
|
|
32
|
+
doc_enabled: Dokument omogočen!
|
|
33
|
+
doc_saved: Dokument zapisan!
|
|
34
|
+
doc_info: Info
|
|
35
|
+
doc_copy_clipboard: Pripravi vsebino dokumenta v novem oknu.
|
|
36
|
+
doc_paste_clipboard: Obdelaj podatke
|
|
37
|
+
doc_paste_title: Ustvari (spremeni) dokumente iz JSON zapisa
|
|
38
|
+
doc_paste_update: Spremeni obstoječ dokument, če dokument._id obstaja
|
|
39
|
+
edit_content: Urejanje vsebine
|
|
40
|
+
edit_advanced: Napredno urejanje
|
|
41
|
+
edit_new_page: Ustvarite novo stran
|
|
42
|
+
edit_new_part: Ustvarite nov element na strani
|
|
43
|
+
edit_design: 'Uredi: Dizajn'
|
|
44
|
+
edit_site: 'Uredi: Spletišče'
|
|
45
|
+
edit_page: 'Uredi: Stran'
|
|
46
|
+
edit_selected: 'Uredi: Izbrano tabelo'
|
|
47
|
+
invalid_username: Napaka uporabnik ali geslo!
|
|
48
|
+
system_menu: CMS sistemske tabele
|
|
49
|
+
menu_plus: Malo drugačen menu
|
|
50
|
+
not_email: ni veljaven e-naslov!
|
|
51
|
+
updated_by_other: Dokument je spremenil drug uporabnik. Prosimo ponovite vpis podatkov.
|
|
52
|
+
|
|
53
|
+
edit: Urejanje
|
|
54
|
+
new: Dodaj
|
|
55
|
+
sort: Razvrsti
|
|
56
|
+
filter: Filter
|
|
57
|
+
back: Nazaj
|
|
58
|
+
delete: Izbris
|
|
59
|
+
enable: Omogoči
|
|
60
|
+
disable: Onemogoči
|
|
61
|
+
disabled: 'Neaktivna '
|
|
62
|
+
save: Shrani
|
|
63
|
+
save&back: Shrani in nazaj
|
|
64
|
+
save&close: Shrani in zapri
|
|
65
|
+
filter_on: Vklopi filter
|
|
66
|
+
filter_off: Izklopi filter
|
|
67
|
+
maximize: Povečaj
|
|
68
|
+
minimize: Pomanjšaj
|
|
69
|
+
reload: Osveži
|
|
70
|
+
error: Napaka!
|
|
71
|
+
errors_no: 'Število napak:'
|
|
72
|
+
|
|
73
|
+
created_by: Ustvaril
|
|
74
|
+
updated_by: Spremenil
|
|
75
|
+
created_at: Ustvarjeno
|
|
76
|
+
updated_at: Spremenjeno
|
|
77
|
+
new_record: Nov zapis
|
|
78
|
+
|
|
79
|
+
choices4_filter_operators: 'Je enak:eq,Vsebuje:like'
|
|
80
|
+
|
|
81
|
+
dc_journal:
|
|
82
|
+
zero_selected: Ni izbranih podatkov!
|
|
83
|
+
restored: Podatki so restavrirani.
|
|
84
|
+
restore: Restavriraj
|
|
85
|
+
|
|
86
|
+
dc_mail:
|
|
87
|
+
send: Pošlji
|
|
88
|
+
send_to_test: Pošlji test
|
|
89
|
+
mail_sent: Postopek za pošiljanje sporočila je zagnan!
|
|
90
|
+
test_mail_sent: Sporočilo je bilo poslano na naslov za test!
|
|
91
|
+
message_status_error: Stanje sporočila mora biti pripravljeno!
|
|
92
|
+
message_sent_to: "Sporočilo je bilo poslano na %{number} naslov(ov)."
|
|
93
|
+
message_errors: "%{number} naslov(ov) z napakami!"
|
|
94
|
+
report: Poročilo
|
|
95
|
+
unsubscription: Odjava
|
|
96
|
+
|
|
97
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
en:
|
|
2
|
+
views:
|
|
3
|
+
pagination:
|
|
4
|
+
first: "« First"
|
|
5
|
+
last: "Last »"
|
|
6
|
+
previous: "‹ Prev"
|
|
7
|
+
next: "Next ›"
|
|
8
|
+
truncate: "..."
|
|
9
|
+
|
|
10
|
+
sl:
|
|
11
|
+
views:
|
|
12
|
+
pagination:
|
|
13
|
+
first: "«"
|
|
14
|
+
last: "»"
|
|
15
|
+
previous: "‹"
|
|
16
|
+
next: "›"
|
|
17
|
+
truncate: "..."
|
|
18
|
+
|
|
19
|
+
sx:
|
|
20
|
+
views:
|
|
21
|
+
pagination:
|
|
22
|
+
first: "« Prva"
|
|
23
|
+
last: "Zadnja »"
|
|
24
|
+
previous: "‹ Nazaj"
|
|
25
|
+
next: "Naprej ›"
|
|
26
|
+
truncate: "..."
|
|
@@ -0,0 +1,790 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2012-2013 Damjan Rems
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#++
|
|
23
|
+
|
|
24
|
+
# English (en) localization for drgCMS common models
|
|
25
|
+
|
|
26
|
+
en:
|
|
27
|
+
helpers:
|
|
28
|
+
# labels for forms #####################################################
|
|
29
|
+
label:
|
|
30
|
+
|
|
31
|
+
dc_site:
|
|
32
|
+
tabletitle: Sites
|
|
33
|
+
1basic: Basic
|
|
34
|
+
2parameters: Parameters
|
|
35
|
+
3advanced: Advanced
|
|
36
|
+
4design: Design
|
|
37
|
+
5permissions: Permissions
|
|
38
|
+
|
|
39
|
+
name: Name
|
|
40
|
+
description: Description
|
|
41
|
+
homepage_link: HomePage link
|
|
42
|
+
error_link: Error link
|
|
43
|
+
css: CSS
|
|
44
|
+
header: Header
|
|
45
|
+
route_name: Route name
|
|
46
|
+
page_title: Page title
|
|
47
|
+
logo: Logo picture
|
|
48
|
+
document_extension: Document extension
|
|
49
|
+
page_table: Page table
|
|
50
|
+
page_class: Page class
|
|
51
|
+
menu_class: Menu class
|
|
52
|
+
files_directory: Files directory
|
|
53
|
+
active: Active
|
|
54
|
+
dc_policies: Access policies
|
|
55
|
+
settings: Settings
|
|
56
|
+
menu_name: Menu name
|
|
57
|
+
alias_for: Alias for
|
|
58
|
+
rails_view: Rails view
|
|
59
|
+
design: Standard design
|
|
60
|
+
|
|
61
|
+
dc_design:
|
|
62
|
+
tabletitle: Designs
|
|
63
|
+
tab1: Base
|
|
64
|
+
tab2: Parts
|
|
65
|
+
|
|
66
|
+
name: Name
|
|
67
|
+
description: Description
|
|
68
|
+
body: Body
|
|
69
|
+
css: CSS
|
|
70
|
+
author: Author
|
|
71
|
+
updated_by: Updated by
|
|
72
|
+
active: Active
|
|
73
|
+
dc_parts: Parts
|
|
74
|
+
rails_view: Rails view filename
|
|
75
|
+
|
|
76
|
+
dc_user_role:
|
|
77
|
+
tabletitle: User roles
|
|
78
|
+
|
|
79
|
+
dc_policy_role_id: Role
|
|
80
|
+
valid_from: Valid from
|
|
81
|
+
valid_to: Valid to
|
|
82
|
+
updated_by: Updated by
|
|
83
|
+
active: Active
|
|
84
|
+
|
|
85
|
+
dc_user:
|
|
86
|
+
tabletitle: Users
|
|
87
|
+
|
|
88
|
+
id: Id
|
|
89
|
+
username: Username
|
|
90
|
+
title: Title
|
|
91
|
+
first_name: First name
|
|
92
|
+
middle_name: Middle name
|
|
93
|
+
last_name: Last name
|
|
94
|
+
name: Name
|
|
95
|
+
address: Address
|
|
96
|
+
post: Post
|
|
97
|
+
country: Country
|
|
98
|
+
phone: Phone
|
|
99
|
+
email: e-Mail
|
|
100
|
+
picture: Picture
|
|
101
|
+
birthdate: Birthdate
|
|
102
|
+
about: About
|
|
103
|
+
last_visit: Last visit
|
|
104
|
+
active: Active
|
|
105
|
+
valid_from: Valid from
|
|
106
|
+
valid_to: Valid to
|
|
107
|
+
updated_by: Updated by
|
|
108
|
+
type: Type
|
|
109
|
+
members: Members
|
|
110
|
+
dc_user_roles: Roles
|
|
111
|
+
password: Password
|
|
112
|
+
password_confirmation: Confirm password
|
|
113
|
+
|
|
114
|
+
dc_poll:
|
|
115
|
+
tabletitle: Polls
|
|
116
|
+
choices4_operation: 'Submit poll:poll_submit,Link:link'
|
|
117
|
+
choices4_display: 'Top-Down:td,Left-Right:lr'
|
|
118
|
+
tab1: Base
|
|
119
|
+
tab2: Form
|
|
120
|
+
tab3: Items
|
|
121
|
+
|
|
122
|
+
name: Poll name
|
|
123
|
+
|
|
124
|
+
title: Title
|
|
125
|
+
sub_text: Short description
|
|
126
|
+
operation: Operation
|
|
127
|
+
parameters: Parameters
|
|
128
|
+
display: Display
|
|
129
|
+
css: CSS
|
|
130
|
+
valid_from: Valid from
|
|
131
|
+
valid_to: Valid to
|
|
132
|
+
dc_poll_items: Items
|
|
133
|
+
form: Form
|
|
134
|
+
captcha_type: Catpcha type
|
|
135
|
+
|
|
136
|
+
dc_poll_item:
|
|
137
|
+
tabletitle: Poll items
|
|
138
|
+
choices4_type: Text:text_field,Text area:text_area,Select:select,Check box:check_box,Submit:submit_tag,Link:link_to,Password:password_field
|
|
139
|
+
choices4_separator: Space: ,Empty line:<br />,Horizontal line:<hr>
|
|
140
|
+
|
|
141
|
+
name: Name
|
|
142
|
+
text: Caption
|
|
143
|
+
type: Type
|
|
144
|
+
Size: Size
|
|
145
|
+
mandatory: Mandatory
|
|
146
|
+
separator: Separator
|
|
147
|
+
options: Options
|
|
148
|
+
order: Order
|
|
149
|
+
active: Active
|
|
150
|
+
|
|
151
|
+
dc_policy:
|
|
152
|
+
tabletitle: Access policy declarations
|
|
153
|
+
|
|
154
|
+
name: Policy name
|
|
155
|
+
description: Description
|
|
156
|
+
is_default: Is default
|
|
157
|
+
active: Active
|
|
158
|
+
dc_policy_rules: Policy rules
|
|
159
|
+
message: Error message
|
|
160
|
+
|
|
161
|
+
dc_policy_rule:
|
|
162
|
+
tabletitle: Access policy rules
|
|
163
|
+
choices4_permission: NO_ACCESS:0,CAN_VIEW:1,CAN_CREATE:2,CAN_EDIT:4,CAN_EDIT_ALL:8,CAN_DELETE:16,CAN_DELETE_ALL:32,CAN_ADMIN:64,SUPERADMIN:128
|
|
164
|
+
choices4_site_permission: NO_ACCESS:0,CAN_VIEW:1,CAN_EDIT:4
|
|
165
|
+
|
|
166
|
+
active: Active
|
|
167
|
+
updated_by: Updated by
|
|
168
|
+
dc_policy_role_id: User role
|
|
169
|
+
permission: Permission
|
|
170
|
+
|
|
171
|
+
dc_policy_role:
|
|
172
|
+
tabletitle: User roles
|
|
173
|
+
|
|
174
|
+
name: Name
|
|
175
|
+
system_name: System name
|
|
176
|
+
active: Active
|
|
177
|
+
|
|
178
|
+
dc_simple_menu:
|
|
179
|
+
tabletitle: Simple (my first) menus
|
|
180
|
+
tab1: Base
|
|
181
|
+
tab2: Items
|
|
182
|
+
tab3: CSS
|
|
183
|
+
|
|
184
|
+
name: Menu name
|
|
185
|
+
description: Description
|
|
186
|
+
div_name: Menu div
|
|
187
|
+
css: CSS
|
|
188
|
+
active: Active
|
|
189
|
+
dc_simple_menu_items: Menu items
|
|
190
|
+
dc_site_id: Site
|
|
191
|
+
|
|
192
|
+
dc_simple_menu_item:
|
|
193
|
+
tabletitle: drgCMS Simple menu items
|
|
194
|
+
|
|
195
|
+
caption: Caption
|
|
196
|
+
picture: Picture
|
|
197
|
+
link: Link
|
|
198
|
+
target: Target window
|
|
199
|
+
order: Order
|
|
200
|
+
submenu: Submenu
|
|
201
|
+
css: CSS
|
|
202
|
+
active: Active
|
|
203
|
+
policy_id: Display policy
|
|
204
|
+
|
|
205
|
+
dc_menu:
|
|
206
|
+
tabletitle: Menus
|
|
207
|
+
tab1: Base
|
|
208
|
+
tab2: Menu items
|
|
209
|
+
tab3: CSS
|
|
210
|
+
|
|
211
|
+
name: Menu name
|
|
212
|
+
description: Description
|
|
213
|
+
div_name: Menu div
|
|
214
|
+
css: CSS
|
|
215
|
+
active: Active
|
|
216
|
+
dc_menu_items: Menu items
|
|
217
|
+
|
|
218
|
+
dc_menu_item:
|
|
219
|
+
tabletitle: Menu items
|
|
220
|
+
tab1: Base
|
|
221
|
+
tab2: Menu items
|
|
222
|
+
|
|
223
|
+
caption: Caption
|
|
224
|
+
picture: Picture
|
|
225
|
+
link: Link
|
|
226
|
+
target: Target window
|
|
227
|
+
order: Order
|
|
228
|
+
dc_menu_items: Submenus
|
|
229
|
+
page_id: Page
|
|
230
|
+
css: CSS
|
|
231
|
+
active: Active
|
|
232
|
+
policy_id: Display policy
|
|
233
|
+
|
|
234
|
+
dc_page:
|
|
235
|
+
tabletitle: Pages
|
|
236
|
+
choices4_comments: 'Allowed:1,Not allowed:0'
|
|
237
|
+
1base: Base
|
|
238
|
+
2advanced: Advanced
|
|
239
|
+
3content: Content
|
|
240
|
+
4parts: Parts
|
|
241
|
+
|
|
242
|
+
subject: Subject
|
|
243
|
+
subject_link: Subject link
|
|
244
|
+
sub_subject: Sub subject
|
|
245
|
+
picture: Picture
|
|
246
|
+
gallery: Gallery id
|
|
247
|
+
alt_link: Alt link
|
|
248
|
+
css: CSS
|
|
249
|
+
script: Skript
|
|
250
|
+
params: Parameters
|
|
251
|
+
body: Body
|
|
252
|
+
menu_id: Menu
|
|
253
|
+
author_id: Author
|
|
254
|
+
author_name: Author
|
|
255
|
+
publish_date: Publish date
|
|
256
|
+
valid_from: Valid from
|
|
257
|
+
valid_to: Valid to
|
|
258
|
+
comments: Comments
|
|
259
|
+
active: Active
|
|
260
|
+
dc_parts: Parts
|
|
261
|
+
policy_id: Access policy
|
|
262
|
+
dc_design_id: Design
|
|
263
|
+
dc_poll_id: Poll
|
|
264
|
+
kats: Categories
|
|
265
|
+
gallery: Gallery name
|
|
266
|
+
updated_at: Updated
|
|
267
|
+
|
|
268
|
+
dc_part:
|
|
269
|
+
tabletitle: Parts of page
|
|
270
|
+
1base: Base
|
|
271
|
+
2content: Content
|
|
272
|
+
3advanced: Advanced
|
|
273
|
+
|
|
274
|
+
tab1: Base
|
|
275
|
+
tab2: Advanced
|
|
276
|
+
tab3: Content
|
|
277
|
+
|
|
278
|
+
name: Name
|
|
279
|
+
description: Description
|
|
280
|
+
picture: Picture
|
|
281
|
+
thumbnail: Thumbnail
|
|
282
|
+
body: Body
|
|
283
|
+
css: CSS
|
|
284
|
+
script: Script
|
|
285
|
+
script_type: Script type
|
|
286
|
+
piece_id: Piece
|
|
287
|
+
div_id: Div
|
|
288
|
+
order: Order
|
|
289
|
+
updated_by: Updated by
|
|
290
|
+
updated_at: Last updated at
|
|
291
|
+
active: Active
|
|
292
|
+
valid_from: Valid from
|
|
293
|
+
valid_to: Valid to
|
|
294
|
+
policy_id: Access policy
|
|
295
|
+
|
|
296
|
+
dc_piece:
|
|
297
|
+
tabletitle: Pieces of content
|
|
298
|
+
tab1: Base
|
|
299
|
+
tab2: Advanced
|
|
300
|
+
tab3: Content
|
|
301
|
+
|
|
302
|
+
name: Name
|
|
303
|
+
description: Description
|
|
304
|
+
picture: Picture
|
|
305
|
+
thumbnail: Thumbnail
|
|
306
|
+
body: Body
|
|
307
|
+
css: CSS
|
|
308
|
+
script: Script
|
|
309
|
+
script_type: Script type
|
|
310
|
+
piece_id: Piece
|
|
311
|
+
site_id: Site
|
|
312
|
+
div_id: Div
|
|
313
|
+
order: Order
|
|
314
|
+
updated_by: Updated by
|
|
315
|
+
updated_at: Last updated at
|
|
316
|
+
active: Active
|
|
317
|
+
valid_from: Valid from
|
|
318
|
+
valid_to: Valid to
|
|
319
|
+
|
|
320
|
+
dc_ad:
|
|
321
|
+
tabletitle: Ads
|
|
322
|
+
choices4_type: Picture:1,Flash:2,Script:3
|
|
323
|
+
choices4_link_target: Same window:_self,New window:_blank
|
|
324
|
+
|
|
325
|
+
position: Position
|
|
326
|
+
description: Description
|
|
327
|
+
type: Type
|
|
328
|
+
script: Script
|
|
329
|
+
file: Filename
|
|
330
|
+
link: Link
|
|
331
|
+
height: Height
|
|
332
|
+
width: Width
|
|
333
|
+
valid_from: Valid from
|
|
334
|
+
valid_to: Valid to
|
|
335
|
+
displays: Displays
|
|
336
|
+
clicks: Clicks
|
|
337
|
+
priority: Priority
|
|
338
|
+
displayed: Displayed
|
|
339
|
+
clicked: Clicked
|
|
340
|
+
active: Active
|
|
341
|
+
updated_by: Updated by
|
|
342
|
+
dc_site_id: Site
|
|
343
|
+
link_target: Link open in
|
|
344
|
+
|
|
345
|
+
dc_permission:
|
|
346
|
+
tabletitle: Collection permissions
|
|
347
|
+
|
|
348
|
+
table_name: Collection name
|
|
349
|
+
is_default: Is default
|
|
350
|
+
active: Active
|
|
351
|
+
dc_policy_rules: Policy rules
|
|
352
|
+
|
|
353
|
+
dc_folder_permission:
|
|
354
|
+
tabletitle: Folders permissions
|
|
355
|
+
|
|
356
|
+
folder_name: Folder name
|
|
357
|
+
is_default: Is default
|
|
358
|
+
inherited: Inhrited
|
|
359
|
+
active: Active
|
|
360
|
+
dc_policy_rules: Policy rules
|
|
361
|
+
|
|
362
|
+
dc_link:
|
|
363
|
+
tabletitle: Alternative links
|
|
364
|
+
|
|
365
|
+
name: Link name
|
|
366
|
+
params: Parameters
|
|
367
|
+
dc_site_id: Valid for site
|
|
368
|
+
page_id: Link to page
|
|
369
|
+
active: Active
|
|
370
|
+
|
|
371
|
+
dc_category:
|
|
372
|
+
tabletitle: Categories
|
|
373
|
+
choices4_ctype: '1:1,2:2,3:3,4:4'
|
|
374
|
+
|
|
375
|
+
name: Name
|
|
376
|
+
description: Description
|
|
377
|
+
ctype: Category type
|
|
378
|
+
order: Order
|
|
379
|
+
parent: Parent
|
|
380
|
+
active: Active
|
|
381
|
+
updated_at: Spremenjen
|
|
382
|
+
|
|
383
|
+
dc_mail:
|
|
384
|
+
tabletitle: Mails
|
|
385
|
+
tab1: Message
|
|
386
|
+
tab2: Recipients
|
|
387
|
+
tab3: Other
|
|
388
|
+
choices4_status: 'Preparing:0,Ready to send:1,Sending:2,Error:3,Completed:10'
|
|
389
|
+
|
|
390
|
+
subject: Subject
|
|
391
|
+
body: Body
|
|
392
|
+
from: From
|
|
393
|
+
to_test: Test email
|
|
394
|
+
to_list: Mail lists
|
|
395
|
+
to_test: Mail addresses
|
|
396
|
+
schedule: Schedule send
|
|
397
|
+
send_time: Time send
|
|
398
|
+
status: Status
|
|
399
|
+
css: CSS
|
|
400
|
+
|
|
401
|
+
dc_mail_list:
|
|
402
|
+
tabletitle: Mail lists
|
|
403
|
+
|
|
404
|
+
name: Name
|
|
405
|
+
description: Description
|
|
406
|
+
params: Parameters
|
|
407
|
+
active: Active
|
|
408
|
+
|
|
409
|
+
dc_mail_address:
|
|
410
|
+
tabletitle: Mail addresses
|
|
411
|
+
|
|
412
|
+
email: e-Mail
|
|
413
|
+
dc_user_id: User
|
|
414
|
+
active: Active
|
|
415
|
+
reason: Not active reason
|
|
416
|
+
dc_mail_list_members: Mail lists
|
|
417
|
+
|
|
418
|
+
dc_mail_list_member:
|
|
419
|
+
tabletitle: Mail lists
|
|
420
|
+
|
|
421
|
+
dc_mail_list_id: Mail list
|
|
422
|
+
active: Active
|
|
423
|
+
reason: Not active reason
|
|
424
|
+
|
|
425
|
+
dc_big_table:
|
|
426
|
+
tabletitle: Big Table
|
|
427
|
+
|
|
428
|
+
key: Key
|
|
429
|
+
active: Description
|
|
430
|
+
site_id: Site
|
|
431
|
+
dc_big_table_values: Values
|
|
432
|
+
active: Active
|
|
433
|
+
|
|
434
|
+
dc_big_table_value:
|
|
435
|
+
tabletitle: Big Table - values
|
|
436
|
+
|
|
437
|
+
value: Value
|
|
438
|
+
description: Value description
|
|
439
|
+
dc_big_table_values: Locales
|
|
440
|
+
active: Active
|
|
441
|
+
|
|
442
|
+
dc_big_table_locale:
|
|
443
|
+
tabletitle: Big Table - locales
|
|
444
|
+
|
|
445
|
+
locale: Locale
|
|
446
|
+
description: Value description
|
|
447
|
+
|
|
448
|
+
dc_journal:
|
|
449
|
+
tabletitle: Update journal
|
|
450
|
+
1diff: Difference
|
|
451
|
+
2ids: Identification
|
|
452
|
+
|
|
453
|
+
operation: Operation
|
|
454
|
+
ip: IP address
|
|
455
|
+
time: Update time
|
|
456
|
+
site_id: Site
|
|
457
|
+
user_id: User
|
|
458
|
+
tables: Table name
|
|
459
|
+
id: Record id
|
|
460
|
+
ids: Parent ids
|
|
461
|
+
diff: Differences
|
|
462
|
+
|
|
463
|
+
# help for forms #####################################################
|
|
464
|
+
|
|
465
|
+
help:
|
|
466
|
+
dc_site:
|
|
467
|
+
name: Name of the site eg. www.mysite.com
|
|
468
|
+
description: Short description of site
|
|
469
|
+
homepage_link: Shortcut link when just site name is in the url
|
|
470
|
+
error_link: Link to error page
|
|
471
|
+
css: Site wide CSS
|
|
472
|
+
header: Additional data used in page html header
|
|
473
|
+
route_name: Route name used when creating page link. Defaults to page.
|
|
474
|
+
page_title: Default page title displayed in browser's top menu when title can not be extracted from document
|
|
475
|
+
document_extension: Default document extension eg. html
|
|
476
|
+
page_table: Name of table holding data for pages
|
|
477
|
+
page_class: Rails model class name which defines table holding pages data usually DcPage
|
|
478
|
+
menu_class: Rails model class name which defines table holding menu data usually DcMenu
|
|
479
|
+
files_directory: Directory name where uploaded files are located
|
|
480
|
+
logo: Logotype picture for the site
|
|
481
|
+
dc_policies: Access policies defined for the site
|
|
482
|
+
active: Is the site active
|
|
483
|
+
settings: Various site settings
|
|
484
|
+
menu_name: Menu name for this site
|
|
485
|
+
ck_config: CK editor configuration javascript file
|
|
486
|
+
ck_css: CK editor configuration CSS file
|
|
487
|
+
alias_for: Is alias name for entered site name
|
|
488
|
+
rails_view: Rails view filename used as standard design
|
|
489
|
+
design: Standard design can also be defined at the site level
|
|
490
|
+
|
|
491
|
+
dc_user:
|
|
492
|
+
username: Username
|
|
493
|
+
title: Title (dr, mag)
|
|
494
|
+
first_name: Users first name
|
|
495
|
+
last_name: Users last name
|
|
496
|
+
name: Name colected from firstname, title and lastname
|
|
497
|
+
address: Home address
|
|
498
|
+
post: Post and post city
|
|
499
|
+
country: Country
|
|
500
|
+
phone: Phone number
|
|
501
|
+
email: e-Mail address
|
|
502
|
+
picture: Picture file name
|
|
503
|
+
birthdate: Date of birth
|
|
504
|
+
about: Short description of user
|
|
505
|
+
last_visit: Users last visit
|
|
506
|
+
active: Account is active
|
|
507
|
+
valid_from: Account is valid from
|
|
508
|
+
valid_to: Account is valid until
|
|
509
|
+
updated_by: Account last updated by
|
|
510
|
+
type: Type of user account
|
|
511
|
+
members: Members (if type is group)
|
|
512
|
+
dc_user_roles: Roles for this user
|
|
513
|
+
password: Password
|
|
514
|
+
password_confirmation: Password confirmation
|
|
515
|
+
|
|
516
|
+
dc_user_role:
|
|
517
|
+
dc_policy_role_id: User role
|
|
518
|
+
has_cms_menu: User is allowed to use CMS menu
|
|
519
|
+
valid_from: Role is valid from
|
|
520
|
+
valid_to: Role is valid to
|
|
521
|
+
updated_by: Role last updated b
|
|
522
|
+
active: Role is active
|
|
523
|
+
|
|
524
|
+
dc_design:
|
|
525
|
+
name: Unique design name
|
|
526
|
+
description: Short description of design
|
|
527
|
+
body: Body of design which will be rendered like any Rails view
|
|
528
|
+
css: CSS for design
|
|
529
|
+
author: Creater if design
|
|
530
|
+
updated_by: Last updated by
|
|
531
|
+
active: Is the design active
|
|
532
|
+
dc_parts: Parts of design
|
|
533
|
+
rails_view: Rails view (file) name which will be used to render design
|
|
534
|
+
|
|
535
|
+
dc_poll:
|
|
536
|
+
name: Unique poll name
|
|
537
|
+
title: Title for the poll
|
|
538
|
+
sub_text: Short description of the poll
|
|
539
|
+
operation: Operation performed on submit
|
|
540
|
+
parameters: Aditional parameters for operation
|
|
541
|
+
display: Select how fields are positioned on form
|
|
542
|
+
css: CSS specific to this poll
|
|
543
|
+
valid_from: Pole is valid from
|
|
544
|
+
valid_to: Pole is valid to
|
|
545
|
+
dc_poll_items: Items for this poll
|
|
546
|
+
captcha_type: Catpcha type name if captcha is used
|
|
547
|
+
form: You can specified input items by providing form acording to rules of drgCMS form.
|
|
548
|
+
|
|
549
|
+
dc_poll_item:
|
|
550
|
+
tabletitle: Poll items
|
|
551
|
+
choices4_type: Text:text_field,Text area:text_area,Select:select,Check box:check_box,Submit:submit_tag,Link:link_to,Password:password_field,Comment:comment
|
|
552
|
+
choices4_separator: Space: ,Empty line:<br />,Horizontal line:<hr>
|
|
553
|
+
|
|
554
|
+
name: Name (alias) of returned field name
|
|
555
|
+
text: Caption of item
|
|
556
|
+
type: Input item type
|
|
557
|
+
Size: Input item size
|
|
558
|
+
mandatory: Item entry is mandatory
|
|
559
|
+
separator: Separator between items
|
|
560
|
+
options: Options for the item. Depends on item type.
|
|
561
|
+
order: Order of item on poll
|
|
562
|
+
active: Item is active
|
|
563
|
+
|
|
564
|
+
dc_policy:
|
|
565
|
+
name: Unique policy name
|
|
566
|
+
description: Description for this policy
|
|
567
|
+
is_default: This is default policy for the site
|
|
568
|
+
active: Policy is active
|
|
569
|
+
dc_policy_rules: Policy rules
|
|
570
|
+
message: Error message when blocked by this policy
|
|
571
|
+
|
|
572
|
+
dc_policy_rule:
|
|
573
|
+
active: Rule is active
|
|
574
|
+
updated_by: Last updated by
|
|
575
|
+
dc_policy_role_id: User role access defined by this rule
|
|
576
|
+
permission: Access permission
|
|
577
|
+
has_cms_menu: Users have access to CMS menu
|
|
578
|
+
|
|
579
|
+
dc_policy_role:
|
|
580
|
+
name: Role name
|
|
581
|
+
system_name: System role name if required by application
|
|
582
|
+
active: Role is active
|
|
583
|
+
|
|
584
|
+
dc_simple_menu:
|
|
585
|
+
description: Short description of menu
|
|
586
|
+
css: CSS for this menu
|
|
587
|
+
div_name: Div id name around menu area
|
|
588
|
+
active: Active
|
|
589
|
+
dc_simple_menu: Menu items
|
|
590
|
+
dc_site_id: Site this menu belongs to
|
|
591
|
+
|
|
592
|
+
dc_simple_menu_item:
|
|
593
|
+
caption: Caption of menu
|
|
594
|
+
picture: Picture for the menu
|
|
595
|
+
link: Link called when menu is chosen
|
|
596
|
+
target: Target window for the link. Leave empty when same window.
|
|
597
|
+
order: Order on which menu item is shown. Lower number means prior position.
|
|
598
|
+
submenu: Submenu captions in form (caption\link).
|
|
599
|
+
css: CSS only for this menu item
|
|
600
|
+
active: Is active
|
|
601
|
+
policy_id: Menu item will be diplayed according to this policy
|
|
602
|
+
|
|
603
|
+
dc_menu:
|
|
604
|
+
description: Short description of menu
|
|
605
|
+
css: CSS for this menu
|
|
606
|
+
div_name: Div id name around menu area
|
|
607
|
+
active: Active
|
|
608
|
+
dc_menu_items: Menu items
|
|
609
|
+
dc_site_id: Site this menu belongs to
|
|
610
|
+
|
|
611
|
+
dc_menu_item:
|
|
612
|
+
caption: Caption of menu item
|
|
613
|
+
picture: Picture for the menu
|
|
614
|
+
link: Link called when menu is chosen
|
|
615
|
+
target: Target window for the link. Leave empty when same window.
|
|
616
|
+
order: Order on which menu item is shown. Lower number means prior position.
|
|
617
|
+
dc_menu_items: Submenu items
|
|
618
|
+
page_id: Page link
|
|
619
|
+
css: CSS only for this menu item
|
|
620
|
+
active: Is active
|
|
621
|
+
policy_id: Menu item will be diplayed according to this policy
|
|
622
|
+
|
|
623
|
+
dc_page:
|
|
624
|
+
subject: Articles subject
|
|
625
|
+
subject_link: Friendly link defined
|
|
626
|
+
sub_subject: Sub subject, short description of text
|
|
627
|
+
picture: Picture used in conjunction with page
|
|
628
|
+
gallery: Picture gallery id used with page. Id defines id's of parts which consist gallery
|
|
629
|
+
alt_link: Alternative link, by which page could be found
|
|
630
|
+
css: CSS only for this menu page
|
|
631
|
+
script: Javascript only for this page
|
|
632
|
+
params: Special parameters which may come handy when displaying page
|
|
633
|
+
menu_id: Top menu under where this page is displayed
|
|
634
|
+
author_id: Author of the article
|
|
635
|
+
author_name: Author of the article
|
|
636
|
+
publish_date: Publish date
|
|
637
|
+
valid_from: Article is valid from date
|
|
638
|
+
valid_to: Article is valid to date
|
|
639
|
+
comments: Comments on this article are allowed
|
|
640
|
+
active: Page is active
|
|
641
|
+
dc_parts: Parts of the article
|
|
642
|
+
policy_id: Access policy for the page
|
|
643
|
+
dc_design_id: Design used for rendering page
|
|
644
|
+
dc_poll_id: Select poll, if poll is to be used with page
|
|
645
|
+
kats: Categories for this article
|
|
646
|
+
gallery: Gallery pictures are defined in parts of page. Value defines name of parts which hold data about pictures in gallary.
|
|
647
|
+
body: Content of this page
|
|
648
|
+
|
|
649
|
+
dc_part:
|
|
650
|
+
name: Parts can be searched by name or by id
|
|
651
|
+
description: Short description of part
|
|
652
|
+
picture: Picture contents of part
|
|
653
|
+
thumbnail: Small version of picture if available
|
|
654
|
+
body: Content of this part
|
|
655
|
+
css: CSS
|
|
656
|
+
script: Script, if script is included in part
|
|
657
|
+
script_type: Script type
|
|
658
|
+
piece_id: Piece name if part is connected to piece
|
|
659
|
+
div_id: Div id (position name) where this part is displayed as defined on design
|
|
660
|
+
order: Order between parts
|
|
661
|
+
updated_by: Last updated by
|
|
662
|
+
updated_at: Last updated at
|
|
663
|
+
active: Part is active
|
|
664
|
+
valid_from: Part is valid from
|
|
665
|
+
valid_to: Part is valid to
|
|
666
|
+
policy_id: Access policy for the part
|
|
667
|
+
|
|
668
|
+
dc_piece:
|
|
669
|
+
name: Unique name for piece
|
|
670
|
+
description: Short description of piece
|
|
671
|
+
picture: Picture contents of piece
|
|
672
|
+
thumbnail: Small version of picture if available
|
|
673
|
+
body: Content of this piece
|
|
674
|
+
css: CSS
|
|
675
|
+
script: Script, if script is included in piece
|
|
676
|
+
script_type: Script type
|
|
677
|
+
site_id: Site name where this piece will belong to
|
|
678
|
+
div_id: Div (location) id on design where this piece is rendered
|
|
679
|
+
order: Order to be used when pieces are positioned in the same div (location)
|
|
680
|
+
updated_by: Last updated by
|
|
681
|
+
updated_at: Last updated at
|
|
682
|
+
active: Piece is active
|
|
683
|
+
valid_from: Piece is valid from
|
|
684
|
+
valid_to: Piece is valid to
|
|
685
|
+
|
|
686
|
+
dc_ad:
|
|
687
|
+
position: Position (div id) where this ad will be displayed
|
|
688
|
+
description: Short description
|
|
689
|
+
type: Content type of add
|
|
690
|
+
script: JavaScript script, when script type
|
|
691
|
+
link: Link to page (site, dokument) when ad is clicked
|
|
692
|
+
file: Picture or flash filename
|
|
693
|
+
height: Height of ad
|
|
694
|
+
width: Width of ad
|
|
695
|
+
valid_from: Ad is valid from
|
|
696
|
+
valid_to: Ad is valid to
|
|
697
|
+
displays: Maximum number of time this add is displayed
|
|
698
|
+
clicks: Maximum number of clicks this ad will receive
|
|
699
|
+
priority: Priority. Higher priority means ad is shown more often. Priority is calculated only between candidats to be displayed.
|
|
700
|
+
displayed: No. of times this add has been displayed
|
|
701
|
+
clicked: No. of times this ad has been clicked
|
|
702
|
+
active: Ad is active
|
|
703
|
+
updated_by: Record last updated by
|
|
704
|
+
dc_site_id: Ad is valid for the site
|
|
705
|
+
link_target: Define if link is open in new window or same
|
|
706
|
+
|
|
707
|
+
dc_permission:
|
|
708
|
+
table_name: Permission is valid for collection
|
|
709
|
+
is_default: This is default permission for all collections in database
|
|
710
|
+
active: Permission is active
|
|
711
|
+
dc_policy_rules: Defined policy rules
|
|
712
|
+
|
|
713
|
+
dc_folder_permission:
|
|
714
|
+
folder_name: Folder name
|
|
715
|
+
is_default: Is default
|
|
716
|
+
inherited: Inherit permissions from parent
|
|
717
|
+
active: Permission is valid
|
|
718
|
+
dc_policy_rules: Policy rules
|
|
719
|
+
|
|
720
|
+
dc_link:
|
|
721
|
+
name: Link name ex. homepage
|
|
722
|
+
params: Aditional parameters passed to document renderer
|
|
723
|
+
page_id: Page redirected to by this shortcut link
|
|
724
|
+
dc_site_id: Link is valid for site
|
|
725
|
+
active: Link is active
|
|
726
|
+
|
|
727
|
+
dc_category:
|
|
728
|
+
name: Category name
|
|
729
|
+
description: Additional description of category
|
|
730
|
+
ctype: Category type. Could be used for grouping categories.
|
|
731
|
+
order: Additional order, which can be used for sorting.
|
|
732
|
+
parent: Parent category. Leave blank if this is top level category.
|
|
733
|
+
active: Category is active.
|
|
734
|
+
updated_at: Last update
|
|
735
|
+
|
|
736
|
+
dc_mail:
|
|
737
|
+
subject: Message subject
|
|
738
|
+
body: Message body
|
|
739
|
+
from: Message sender
|
|
740
|
+
to_test: Address where test message will be sent
|
|
741
|
+
to_list: Mail addresses lists where message will be sent
|
|
742
|
+
to_address: Mail addresses where message will be sent
|
|
743
|
+
schedule: Message will be sent after this hour
|
|
744
|
+
send_time: Time when message was sent
|
|
745
|
+
status: Status of message
|
|
746
|
+
css: CSS added to final message
|
|
747
|
+
|
|
748
|
+
dc_mail_list:
|
|
749
|
+
name: Mail list name
|
|
750
|
+
description: Aditional description of mailing list
|
|
751
|
+
params: Aditional parameters for list
|
|
752
|
+
active: Mailing list is active
|
|
753
|
+
|
|
754
|
+
dc_mail_address:
|
|
755
|
+
email: email address
|
|
756
|
+
dc_user_id: User if user is listed in users database
|
|
757
|
+
active: Address is active
|
|
758
|
+
reason: Description of deactivation
|
|
759
|
+
dc_mail_list_members: email is a member of this mail lists
|
|
760
|
+
|
|
761
|
+
dc_mail_list_member:
|
|
762
|
+
dc_mail_list_id: Mail list
|
|
763
|
+
active: Address is active
|
|
764
|
+
reason: Description of deactivation
|
|
765
|
+
|
|
766
|
+
dc_big_table:
|
|
767
|
+
key: Key (ident) used to retrieve key/values
|
|
768
|
+
site_id: Data will be used only for defined site. If empty, then it is default for all sites in database.
|
|
769
|
+
active: This key is active
|
|
770
|
+
dc_big_table_values: Values defined by this key
|
|
771
|
+
|
|
772
|
+
dc_big_table_value:
|
|
773
|
+
value: Value
|
|
774
|
+
description: Short description of the value
|
|
775
|
+
dc_big_table_locales: Locale translations for the value
|
|
776
|
+
|
|
777
|
+
dc_big_table_locale:
|
|
778
|
+
locale: Locale
|
|
779
|
+
description: Short description translated for target locale
|
|
780
|
+
|
|
781
|
+
dc_journal:
|
|
782
|
+
operation: Operation
|
|
783
|
+
ip: ip address from where operation was performed
|
|
784
|
+
time: Time of operation
|
|
785
|
+
site_id: Site
|
|
786
|
+
user_id: User
|
|
787
|
+
tables: Table name
|
|
788
|
+
id: Record id
|
|
789
|
+
ids: Parent ids
|
|
790
|
+
diff: Differences
|