tribeca_cms 0.1.1
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.
- data/Gemfile +58 -0
- data/LICENSE +1 -0
- data/README.textile +0 -0
- data/app/assets/images/locomotive/background/body.png +0 -0
- data/app/assets/images/locomotive/datepicker/ui-widget-content-top.png +0 -0
- data/app/assets/images/locomotive/form/error-arrow.png +0 -0
- data/app/assets/images/locomotive/form/input-sep.png +0 -0
- data/app/assets/images/locomotive/icons/flags/de.png +0 -0
- data/app/assets/images/locomotive/icons/flags/en.png +0 -0
- data/app/assets/images/locomotive/icons/flags/es.png +0 -0
- data/app/assets/images/locomotive/icons/flags/et.png +0 -0
- data/app/assets/images/locomotive/icons/flags/fr.png +0 -0
- data/app/assets/images/locomotive/icons/flags/it.png +0 -0
- data/app/assets/images/locomotive/icons/flags/nb.png +0 -0
- data/app/assets/images/locomotive/icons/flags/nl.png +0 -0
- data/app/assets/images/locomotive/icons/flags/pl.png +0 -0
- data/app/assets/images/locomotive/icons/flags/pt-BR.png +0 -0
- data/app/assets/images/locomotive/icons/flags/ru.png +0 -0
- data/app/assets/images/locomotive/icons/start.png +0 -0
- data/app/assets/images/locomotive/list/empty.png +0 -0
- data/app/assets/images/locomotive/list/item-left.png +0 -0
- data/app/assets/images/locomotive/nocoffee.png +0 -0
- data/app/assets/images/locomotive/plugins/sites_picker_top_arrow.png +0 -0
- data/app/assets/images/locomotive/rails.png +0 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/css/image.css +3 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/img/image.gif +0 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/lib/locomotive_media-plugin.js +96 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/fr/i18n.js +1 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/i18n.js +4 -0
- data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/package.json +1 -0
- data/app/assets/javascripts/locomotive.js +25 -0
- data/app/assets/javascripts/locomotive/aloha.js.coffee +2 -0
- data/app/assets/javascripts/locomotive/application.js.coffee +12 -0
- data/app/assets/javascripts/locomotive/inline_editor.js.coffee +22 -0
- data/app/assets/javascripts/locomotive/models/account.js.coffee +11 -0
- data/app/assets/javascripts/locomotive/models/content_asset.js.coffee +20 -0
- data/app/assets/javascripts/locomotive/models/content_entry.js.coffee +61 -0
- data/app/assets/javascripts/locomotive/models/content_type.js.coffee +26 -0
- data/app/assets/javascripts/locomotive/models/custom_field.js.coffee +38 -0
- data/app/assets/javascripts/locomotive/models/custom_field_select_option.js.coffee +16 -0
- data/app/assets/javascripts/locomotive/models/domain.js.coffee +3 -0
- data/app/assets/javascripts/locomotive/models/editable_element.js.coffee +27 -0
- data/app/assets/javascripts/locomotive/models/membership.js.coffee +13 -0
- data/app/assets/javascripts/locomotive/models/page.js.coffee +27 -0
- data/app/assets/javascripts/locomotive/models/site.js.coffee +34 -0
- data/app/assets/javascripts/locomotive/models/snippet.js.coffee +11 -0
- data/app/assets/javascripts/locomotive/models/theme_asset.js.coffee +11 -0
- data/app/assets/javascripts/locomotive/models/translation.js.coffee +5 -0
- data/app/assets/javascripts/locomotive/not_logged_in.js.coffee +1 -0
- data/app/assets/javascripts/locomotive/utils/aloha_settings.js.coffee +37 -0
- data/app/assets/javascripts/locomotive/utils/core_ext.js +75 -0
- data/app/assets/javascripts/locomotive/utils/growl.js +14 -0
- data/app/assets/javascripts/locomotive/utils/handlebar_helpers.js.coffee +9 -0
- data/app/assets/javascripts/locomotive/utils/tinymce_settings.js.coffee +48 -0
- data/app/assets/javascripts/locomotive/views/application_view.js.coffee +92 -0
- data/app/assets/javascripts/locomotive/views/content_assets/picker_item_view.js.coffee +30 -0
- data/app/assets/javascripts/locomotive/views/content_assets/picker_view.js.coffee +58 -0
- data/app/assets/javascripts/locomotive/views/content_entries/_form_view.js.coffee +144 -0
- data/app/assets/javascripts/locomotive/views/content_entries/_popup_form_view.js.coffee +90 -0
- data/app/assets/javascripts/locomotive/views/content_entries/edit_view.js.coffee +9 -0
- data/app/assets/javascripts/locomotive/views/content_entries/index_view.js.coffee +36 -0
- data/app/assets/javascripts/locomotive/views/content_entries/new_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/content_types/_form_view.js.coffee +86 -0
- data/app/assets/javascripts/locomotive/views/content_types/custom_field_entry_view.js.coffee +104 -0
- data/app/assets/javascripts/locomotive/views/content_types/custom_fields_view.coffee +94 -0
- data/app/assets/javascripts/locomotive/views/content_types/edit_view.coffee +14 -0
- data/app/assets/javascripts/locomotive/views/content_types/new_view.js.coffee +11 -0
- data/app/assets/javascripts/locomotive/views/content_types/select_options_view.js.coffee +89 -0
- data/app/assets/javascripts/locomotive/views/current_site/edit_view.js.coffee +86 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/control_view.js.coffee +24 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/edit_all_view.js.coffee +83 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/file_view.js.coffee +74 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/long_text_view.js.coffee +36 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/short_text_view.js.coffee +22 -0
- data/app/assets/javascripts/locomotive/views/inline_editor/application_view.js.coffee +124 -0
- data/app/assets/javascripts/locomotive/views/inline_editor/toolbar_view.js.coffee +145 -0
- data/app/assets/javascripts/locomotive/views/my_account/edit_view.js.coffee +24 -0
- data/app/assets/javascripts/locomotive/views/pages/_form_view.js.coffee +162 -0
- data/app/assets/javascripts/locomotive/views/pages/edit_view.js.coffee +31 -0
- data/app/assets/javascripts/locomotive/views/pages/index_view.js.coffee +11 -0
- data/app/assets/javascripts/locomotive/views/pages/list_view.js.coffee +40 -0
- data/app/assets/javascripts/locomotive/views/pages/new_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/shared/asset_picker_view.js.coffee +92 -0
- data/app/assets/javascripts/locomotive/views/shared/fields/file_view.js.coffee +88 -0
- data/app/assets/javascripts/locomotive/views/shared/fields/has_many_view.js.coffee +125 -0
- data/app/assets/javascripts/locomotive/views/shared/fields/many_to_many_view.js.coffee +131 -0
- data/app/assets/javascripts/locomotive/views/shared/fields/select_view.js.coffee +83 -0
- data/app/assets/javascripts/locomotive/views/shared/form_view.js.coffee +138 -0
- data/app/assets/javascripts/locomotive/views/shared/list_item_view.js.coffee +22 -0
- data/app/assets/javascripts/locomotive/views/shared/list_view.js.coffee +53 -0
- data/app/assets/javascripts/locomotive/views/sites/domain_entry_view.js.coffee +26 -0
- data/app/assets/javascripts/locomotive/views/sites/domains_view.js.coffee +84 -0
- data/app/assets/javascripts/locomotive/views/sites/membership_entry_view.js.coffee +31 -0
- data/app/assets/javascripts/locomotive/views/sites/memberships_view.js.coffee +41 -0
- data/app/assets/javascripts/locomotive/views/sites/new_view.js.coffee +43 -0
- data/app/assets/javascripts/locomotive/views/snippets/_form_view.js.coffee +75 -0
- data/app/assets/javascripts/locomotive/views/snippets/edit_view.js.coffee +6 -0
- data/app/assets/javascripts/locomotive/views/snippets/list_item_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/snippets/list_view.js.coffee +17 -0
- data/app/assets/javascripts/locomotive/views/snippets/new_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/_form_view.js.coffee +104 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/edit_view.js.coffee +16 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/image_picker_view.js.coffee +48 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/index_view.js.coffee +91 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/list_item_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/list_view.js.coffee +17 -0
- data/app/assets/javascripts/locomotive/views/theme_assets/new_view.js.coffee +8 -0
- data/app/assets/javascripts/locomotive/views/translations/_form_view.js.coffee +20 -0
- data/app/assets/javascripts/locomotive/views/translations/edit_view.js.coffee +6 -0
- data/app/assets/javascripts/locomotive/views/translations/new_view.js.coffee +8 -0
- data/app/assets/javascripts/tinymce/plugins/jqueryinlinepopups/editor_plugin.js +240 -0
- data/app/assets/javascripts/tinymce/plugins/locomotive_media/editor_plugin.js +78 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/content.css +66 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/dialog.css.scss +78 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/butt2.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/button-bg.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/buttons.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/down_arrow.gif +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/fade-butt.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/icons.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/items.gif +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-arrow.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-check.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/progress.gif +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/tabs.gif +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/toolbarbg.png +0 -0
- data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/ui.css +1018 -0
- data/app/assets/stylesheets/locomotive.css +16 -0
- data/app/assets/stylesheets/locomotive/backoffice/_box.css.scss +157 -0
- data/app/assets/stylesheets/locomotive/backoffice/_buttons.css.scss +178 -0
- data/app/assets/stylesheets/locomotive/backoffice/application.css.scss +332 -0
- data/app/assets/stylesheets/locomotive/backoffice/codemirror_changes.css.scss +19 -0
- data/app/assets/stylesheets/locomotive/backoffice/content_assets.css.scss +130 -0
- data/app/assets/stylesheets/locomotive/backoffice/datepicker.css.scss +178 -0
- data/app/assets/stylesheets/locomotive/backoffice/dialog_changes.css.scss +141 -0
- data/app/assets/stylesheets/locomotive/backoffice/editable_elements.css.scss +71 -0
- data/app/assets/stylesheets/locomotive/backoffice/formtastic_changes.css.scss +735 -0
- data/app/assets/stylesheets/locomotive/backoffice/layout.css.scss +205 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu.css +8 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu/_colors.css.scss +125 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu/_helpers.css.scss +6 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu/default.css.scss +32 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu/main.css.scss +127 -0
- data/app/assets/stylesheets/locomotive/backoffice/menu/sub.css.scss +276 -0
- data/app/assets/stylesheets/locomotive/backoffice/sites_picker.css.scss +12 -0
- data/app/assets/stylesheets/locomotive/inline_editor.css +13 -0
- data/app/assets/stylesheets/locomotive/inline_editor/_buttons.css.scss +60 -0
- data/app/assets/stylesheets/locomotive/inline_editor/layout.css.scss +22 -0
- data/app/assets/stylesheets/locomotive/inline_editor/toolbar.css.scss +114 -0
- data/app/assets/stylesheets/locomotive/not_logged_in.css +8 -0
- data/app/assets/stylesheets/locomotive/not_logged_in/installation.css.scss +62 -0
- data/app/assets/stylesheets/locomotive/not_logged_in/layout.css.scss +185 -0
- data/app/assets/stylesheets/locomotive/shared/_helpers.css.scss +150 -0
- data/app/assets/stylesheets/locomotive/shared/_picker.css.scss +73 -0
- data/app/assets/stylesheets/locomotive/shared/common.css.scss +34 -0
- data/app/assets/stylesheets/locomotive/shared/content_locale_picker.css.scss +80 -0
- data/app/assets/stylesheets/locomotive/shared/growl.css.scss +29 -0
- data/app/cells/locomotive/content_locale_picker/show.html.haml +7 -0
- data/app/cells/locomotive/content_locale_picker_cell.rb +21 -0
- data/app/cells/locomotive/global_actions/show.html.haml +12 -0
- data/app/cells/locomotive/global_actions_cell.rb +36 -0
- data/app/cells/locomotive/main_menu/show.html.haml +13 -0
- data/app/cells/locomotive/main_menu_cell.rb +12 -0
- data/app/cells/locomotive/menu/show.html.haml +1 -0
- data/app/cells/locomotive/menu_cell.rb +102 -0
- data/app/cells/locomotive/settings_menu_cell.rb +14 -0
- data/app/cells/locomotive/sub_menu/show.html.haml +4 -0
- data/app/cells/locomotive/sub_menu_cell.rb +13 -0
- data/app/controllers/locomotive/accounts_controller.rb +18 -0
- data/app/controllers/locomotive/api/accounts_controller.rb +79 -0
- data/app/controllers/locomotive/api/base_controller.rb +50 -0
- data/app/controllers/locomotive/api/content_assets_controller.rb +39 -0
- data/app/controllers/locomotive/api/content_entries_controller.rb +45 -0
- data/app/controllers/locomotive/api/content_types_controller.rb +39 -0
- data/app/controllers/locomotive/api/current_site_controller.rb +58 -0
- data/app/controllers/locomotive/api/documentation_controller.rb +15 -0
- data/app/controllers/locomotive/api/memberships_controller.rb +97 -0
- data/app/controllers/locomotive/api/my_account_controller.rb +35 -0
- data/app/controllers/locomotive/api/pages_controller.rb +41 -0
- data/app/controllers/locomotive/api/sites_controller.rb +93 -0
- data/app/controllers/locomotive/api/snippets_controller.rb +40 -0
- data/app/controllers/locomotive/api/theme_assets_controller.rb +39 -0
- data/app/controllers/locomotive/api/tokens_controller.rb +54 -0
- data/app/controllers/locomotive/api/translations_controller.rb +31 -0
- data/app/controllers/locomotive/base_controller.rb +61 -0
- data/app/controllers/locomotive/content_assets_controller.rb +23 -0
- data/app/controllers/locomotive/content_entries_controller.rb +71 -0
- data/app/controllers/locomotive/content_types_controller.rb +40 -0
- data/app/controllers/locomotive/current_site_controller.rb +52 -0
- data/app/controllers/locomotive/installation_controller.rb +72 -0
- data/app/controllers/locomotive/memberships_controller.rb +29 -0
- data/app/controllers/locomotive/my_account_controller.rb +24 -0
- data/app/controllers/locomotive/pages_controller.rb +63 -0
- data/app/controllers/locomotive/passwords_controller.rb +19 -0
- data/app/controllers/locomotive/public/base_controller.rb +22 -0
- data/app/controllers/locomotive/public/content_entries_controller.rb +55 -0
- data/app/controllers/locomotive/public/pages_controller.rb +50 -0
- data/app/controllers/locomotive/public/robots_controller.rb +16 -0
- data/app/controllers/locomotive/public/sitemaps_controller.rb +14 -0
- data/app/controllers/locomotive/sessions_controller.rb +29 -0
- data/app/controllers/locomotive/sites_controller.rb +33 -0
- data/app/controllers/locomotive/snippets_controller.rb +47 -0
- data/app/controllers/locomotive/theme_assets_controller.rb +52 -0
- data/app/controllers/locomotive/translations_controller.rb +32 -0
- data/app/helpers/locomotive/accounts_helper.rb +13 -0
- data/app/helpers/locomotive/base_helper.rb +182 -0
- data/app/helpers/locomotive/content_entries_helper.rb +15 -0
- data/app/helpers/locomotive/content_types_helper.rb +72 -0
- data/app/helpers/locomotive/custom_fields_helper.rb +70 -0
- data/app/helpers/locomotive/installation_helper.rb +9 -0
- data/app/helpers/locomotive/pages_helper.rb +95 -0
- data/app/helpers/locomotive/sites_helper.rb +15 -0
- data/app/helpers/locomotive/snippets_helper.rb +20 -0
- data/app/helpers/locomotive/theme_assets_helper.rb +30 -0
- data/app/helpers/locomotive/translations_helper.rb +19 -0
- data/app/inputs/locomotive/code_input.rb +51 -0
- data/app/inputs/locomotive/empty_input.rb +35 -0
- data/app/inputs/locomotive/file_input.rb +45 -0
- data/app/inputs/locomotive/locale_input.rb +40 -0
- data/app/inputs/locomotive/locales_input.rb +60 -0
- data/app/inputs/locomotive/rte_input.rb +13 -0
- data/app/inputs/locomotive/small_code_input.rb +22 -0
- data/app/inputs/locomotive/subdomain_input.rb +22 -0
- data/app/inputs/locomotive/toggle_input.rb +13 -0
- data/app/mailers/locomotive/devise_mailer.rb +10 -0
- data/app/mailers/locomotive/notifications.rb +15 -0
- data/app/models/locomotive/ability.rb +89 -0
- data/app/models/locomotive/account.rb +117 -0
- data/app/models/locomotive/content_asset.rb +40 -0
- data/app/models/locomotive/content_entry.rb +197 -0
- data/app/models/locomotive/content_type.rb +224 -0
- data/app/models/locomotive/editable_control.rb +52 -0
- data/app/models/locomotive/editable_element.rb +122 -0
- data/app/models/locomotive/editable_file.rb +85 -0
- data/app/models/locomotive/editable_long_text.rb +5 -0
- data/app/models/locomotive/editable_short_text.rb +66 -0
- data/app/models/locomotive/extensions/asset/types.rb +31 -0
- data/app/models/locomotive/extensions/asset/vignette.rb +19 -0
- data/app/models/locomotive/extensions/content_type/default_values.rb +57 -0
- data/app/models/locomotive/extensions/content_type/item_template.rb +49 -0
- data/app/models/locomotive/extensions/content_type/sync.rb +62 -0
- data/app/models/locomotive/extensions/page/editable_elements.rb +105 -0
- data/app/models/locomotive/extensions/page/listed.rb +18 -0
- data/app/models/locomotive/extensions/page/parse.rb +125 -0
- data/app/models/locomotive/extensions/page/redirect.rb +25 -0
- data/app/models/locomotive/extensions/page/render.rb +93 -0
- data/app/models/locomotive/extensions/page/templatized.rb +163 -0
- data/app/models/locomotive/extensions/page/tree.rb +133 -0
- data/app/models/locomotive/extensions/shared/seo.rb +16 -0
- data/app/models/locomotive/extensions/site/first_installation.rb +20 -0
- data/app/models/locomotive/extensions/site/locales.rb +112 -0
- data/app/models/locomotive/extensions/site/subdomain_domains.rb +91 -0
- data/app/models/locomotive/membership.rb +75 -0
- data/app/models/locomotive/page.rb +130 -0
- data/app/models/locomotive/site.rb +79 -0
- data/app/models/locomotive/snippet.rb +70 -0
- data/app/models/locomotive/theme_asset.rb +175 -0
- data/app/models/locomotive/translation.rb +32 -0
- data/app/presenters/locomotive/account_presenter.rb +19 -0
- data/app/presenters/locomotive/base_presenter.rb +99 -0
- data/app/presenters/locomotive/content_asset_presenter.rb +43 -0
- data/app/presenters/locomotive/content_entry_presenter.rb +217 -0
- data/app/presenters/locomotive/content_field_presenter.rb +71 -0
- data/app/presenters/locomotive/content_type_presenter.rb +68 -0
- data/app/presenters/locomotive/editable_control_presenter.rb +19 -0
- data/app/presenters/locomotive/editable_element_presenter.rb +40 -0
- data/app/presenters/locomotive/editable_file_presenter.rb +29 -0
- data/app/presenters/locomotive/editable_long_text_presenter.rb +5 -0
- data/app/presenters/locomotive/editable_short_text_presenter.rb +27 -0
- data/app/presenters/locomotive/membership_presenter.rb +36 -0
- data/app/presenters/locomotive/page_presenter.rb +58 -0
- data/app/presenters/locomotive/site_presenter.rb +36 -0
- data/app/presenters/locomotive/snippet_presenter.rb +22 -0
- data/app/presenters/locomotive/theme_asset_presenter.rb +61 -0
- data/app/presenters/locomotive/translation_presenter.rb +9 -0
- data/app/uploaders/locomotive/content_asset_uploader.rb +13 -0
- data/app/uploaders/locomotive/editable_file_uploader.rb +15 -0
- data/app/uploaders/locomotive/theme_asset_uploader.rb +28 -0
- data/app/views/locomotive/accounts/new.html.haml +21 -0
- data/app/views/locomotive/content_assets/_asset.html.haml +5 -0
- data/app/views/locomotive/content_assets/_picker.html.haml +33 -0
- data/app/views/locomotive/content_entries/_form.html.haml +22 -0
- data/app/views/locomotive/content_entries/_list.html.haml +18 -0
- data/app/views/locomotive/content_entries/edit.html.haml +21 -0
- data/app/views/locomotive/content_entries/index.html.haml +32 -0
- data/app/views/locomotive/content_entries/new.html.haml +19 -0
- data/app/views/locomotive/content_types/_form.html.haml +39 -0
- data/app/views/locomotive/content_types/edit.html.haml +19 -0
- data/app/views/locomotive/content_types/new.html.haml +15 -0
- data/app/views/locomotive/current_site/_form.html.haml +36 -0
- data/app/views/locomotive/current_site/edit.html.haml +19 -0
- data/app/views/locomotive/custom_fields/_form.html.haml +61 -0
- data/app/views/locomotive/custom_fields/_select_templates.html.haml +16 -0
- data/app/views/locomotive/custom_fields/types/_belongs_to.html.haml +5 -0
- data/app/views/locomotive/custom_fields/types/_boolean.html.haml +4 -0
- data/app/views/locomotive/custom_fields/types/_date.html.haml +5 -0
- data/app/views/locomotive/custom_fields/types/_file.html.haml +4 -0
- data/app/views/locomotive/custom_fields/types/_has_many.html.haml +70 -0
- data/app/views/locomotive/custom_fields/types/_many_to_many.html.haml +41 -0
- data/app/views/locomotive/custom_fields/types/_select.html.haml +34 -0
- data/app/views/locomotive/custom_fields/types/_string.html.haml +4 -0
- data/app/views/locomotive/custom_fields/types/_text.html.haml +5 -0
- data/app/views/locomotive/devise_mailer/reset_password_instructions.html.haml +12 -0
- data/app/views/locomotive/errors/404.html.haml +7 -0
- data/app/views/locomotive/errors/500.html.haml +7 -0
- data/app/views/locomotive/errors/no_page.html.haml +1 -0
- data/app/views/locomotive/errors/no_site.html.haml +1 -0
- data/app/views/locomotive/installation/step_1.html.haml +23 -0
- data/app/views/locomotive/installation/step_2.html.haml +24 -0
- data/app/views/locomotive/layouts/application.html.haml +34 -0
- data/app/views/locomotive/layouts/error.html.haml +1 -0
- data/app/views/locomotive/layouts/not_logged_in.html.haml +18 -0
- data/app/views/locomotive/memberships/new.html.haml +14 -0
- data/app/views/locomotive/my_account/edit.html.haml +40 -0
- data/app/views/locomotive/notifications/new_content_entry.html.haml +29 -0
- data/app/views/locomotive/pages/_editable_elements.html.haml +64 -0
- data/app/views/locomotive/pages/_form.html.haml +61 -0
- data/app/views/locomotive/pages/_page.html.haml +42 -0
- data/app/views/locomotive/pages/edit.html.haml +18 -0
- data/app/views/locomotive/pages/index.html.haml +19 -0
- data/app/views/locomotive/pages/new.html.haml +15 -0
- data/app/views/locomotive/passwords/edit.html.haml +18 -0
- data/app/views/locomotive/passwords/new.html.haml +17 -0
- data/app/views/locomotive/public/pages/show_toolbar.html.haml +64 -0
- data/app/views/locomotive/public/sitemaps/show.xml.builder +29 -0
- data/app/views/locomotive/sessions/new.html.haml +17 -0
- data/app/views/locomotive/shared/_footer.html.haml +1 -0
- data/app/views/locomotive/shared/_form_actions.html.haml +14 -0
- data/app/views/locomotive/shared/_head.html.haml +38 -0
- data/app/views/locomotive/shared/_header.html.haml +10 -0
- data/app/views/locomotive/shared/_locale_picker_link.html.haml +6 -0
- data/app/views/locomotive/shared/_main_app_head.html.haml +1 -0
- data/app/views/locomotive/shared/_site_picker.html.haml +10 -0
- data/app/views/locomotive/shared/actions/_contents.html.haml +7 -0
- data/app/views/locomotive/shared/menu/_contents.html.haml +51 -0
- data/app/views/locomotive/sites/_domains.html.haml +22 -0
- data/app/views/locomotive/sites/_form.html.haml +12 -0
- data/app/views/locomotive/sites/_memberships.html.haml +27 -0
- data/app/views/locomotive/sites/new.html.haml +12 -0
- data/app/views/locomotive/snippets/_form.html.haml +13 -0
- data/app/views/locomotive/snippets/_snippet.html.haml +8 -0
- data/app/views/locomotive/snippets/edit.html.haml +18 -0
- data/app/views/locomotive/snippets/new.html.haml +15 -0
- data/app/views/locomotive/theme_assets/_asset.html.haml +11 -0
- data/app/views/locomotive/theme_assets/_form.html.haml +35 -0
- data/app/views/locomotive/theme_assets/_list.html.haml +7 -0
- data/app/views/locomotive/theme_assets/_picker.html.haml +25 -0
- data/app/views/locomotive/theme_assets/edit.html.haml +21 -0
- data/app/views/locomotive/theme_assets/index.html.haml +50 -0
- data/app/views/locomotive/theme_assets/new.html.haml +12 -0
- data/app/views/locomotive/translations/_form.html.haml +12 -0
- data/app/views/locomotive/translations/edit.html.haml +15 -0
- data/app/views/locomotive/translations/index.html.haml +26 -0
- data/app/views/locomotive/translations/new.html.haml +12 -0
- data/config/cucumber.yml +8 -0
- data/config/initializers/deny_phantomjs_ttf.rb +29 -0
- data/config/initializers/devise.rb +15 -0
- data/config/initializers/formtastic.rb +4 -0
- data/config/initializers/haml.rb +2 -0
- data/config/initializers/locomotive_loaded_first.rb +19 -0
- data/config/locales/admin_ui.de.yml +316 -0
- data/config/locales/admin_ui.en.yml +332 -0
- data/config/locales/admin_ui.es.yml +296 -0
- data/config/locales/admin_ui.et.yml +315 -0
- data/config/locales/admin_ui.fr.yml +326 -0
- data/config/locales/admin_ui.it.yml +295 -0
- data/config/locales/admin_ui.nb.yml +314 -0
- data/config/locales/admin_ui.nl.yml +279 -0
- data/config/locales/admin_ui.pl.yml +319 -0
- data/config/locales/admin_ui.pt-BR.yml +274 -0
- data/config/locales/admin_ui.ru.yml +313 -0
- data/config/locales/carrierwave.de.yml +4 -0
- data/config/locales/carrierwave.en.yml +4 -0
- data/config/locales/carrierwave.es.yml +4 -0
- data/config/locales/carrierwave.et.yml +4 -0
- data/config/locales/carrierwave.fr.yml +4 -0
- data/config/locales/carrierwave.it.yml +4 -0
- data/config/locales/carrierwave.nb.yml +4 -0
- data/config/locales/carrierwave.nl.yml +4 -0
- data/config/locales/carrierwave.pl.yml +4 -0
- data/config/locales/carrierwave.pt-BR.yml +4 -0
- data/config/locales/carrierwave.ru.yml +4 -0
- data/config/locales/default.de.yml +244 -0
- data/config/locales/default.en.yml +43 -0
- data/config/locales/default.es.yml +216 -0
- data/config/locales/default.et.yml +240 -0
- data/config/locales/default.fr.yml +224 -0
- data/config/locales/default.it.yml +243 -0
- data/config/locales/default.nb.yml +313 -0
- data/config/locales/default.nl.yml +170 -0
- data/config/locales/default.pl.yml +317 -0
- data/config/locales/default.pt-BR.yml +211 -0
- data/config/locales/default.ru.yml +279 -0
- data/config/locales/devise.de.yml +62 -0
- data/config/locales/devise.en.yml +63 -0
- data/config/locales/devise.es.yml +63 -0
- data/config/locales/devise.et.yml +64 -0
- data/config/locales/devise.fr.yml +67 -0
- data/config/locales/devise.it.yml +63 -0
- data/config/locales/devise.nb.yml +63 -0
- data/config/locales/devise.nl.yml +63 -0
- data/config/locales/devise.pl.yml +63 -0
- data/config/locales/devise.pt-BR.yml +61 -0
- data/config/locales/devise.ru.yml +63 -0
- data/config/locales/flash.de.yml +106 -0
- data/config/locales/flash.en.yml +115 -0
- data/config/locales/flash.es.yml +106 -0
- data/config/locales/flash.et.yml +106 -0
- data/config/locales/flash.fr.yml +106 -0
- data/config/locales/flash.it.yml +106 -0
- data/config/locales/flash.nb.yml +106 -0
- data/config/locales/flash.nl.yml +106 -0
- data/config/locales/flash.pl.yml +106 -0
- data/config/locales/flash.pt-BR.yml +106 -0
- data/config/locales/flash.ru.yml +106 -0
- data/config/locales/formtastic.de.yml +97 -0
- data/config/locales/formtastic.en.yml +105 -0
- data/config/locales/formtastic.es.yml +84 -0
- data/config/locales/formtastic.et.yml +103 -0
- data/config/locales/formtastic.fr.yml +94 -0
- data/config/locales/formtastic.it.yml +99 -0
- data/config/locales/formtastic.nb.yml +103 -0
- data/config/locales/formtastic.nl.yml +85 -0
- data/config/locales/formtastic.pl.yml +105 -0
- data/config/locales/formtastic.pt-BR.yml +70 -0
- data/config/locales/formtastic.ru.yml +103 -0
- data/config/routes.rb +116 -0
- data/lib/generators/locomotive/install/install_generator.rb +35 -0
- data/lib/generators/locomotive/install/templates/README +26 -0
- data/lib/generators/locomotive/install/templates/carrierwave.rb +28 -0
- data/lib/generators/locomotive/install/templates/dragonfly.rb +22 -0
- data/lib/generators/locomotive/install/templates/locomotive.rb +69 -0
- data/lib/generators/locomotive/install/templates/mongoid.yml +34 -0
- data/lib/locomotive.rb +136 -0
- data/lib/locomotive/action_controller.rb +5 -0
- data/lib/locomotive/action_controller/locale_helpers.rb +61 -0
- data/lib/locomotive/action_controller/public_responder.rb +17 -0
- data/lib/locomotive/action_controller/responder.rb +78 -0
- data/lib/locomotive/action_controller/section_helpers.rb +29 -0
- data/lib/locomotive/action_controller/url_helpers.rb +38 -0
- data/lib/locomotive/carrierwave.rb +10 -0
- data/lib/locomotive/carrierwave/asset.rb +72 -0
- data/lib/locomotive/carrierwave/base.rb +15 -0
- data/lib/locomotive/carrierwave/patches.rb +32 -0
- data/lib/locomotive/configuration.rb +122 -0
- data/lib/locomotive/core_ext.rb +64 -0
- data/lib/locomotive/custom_fields.rb +66 -0
- data/lib/locomotive/dependencies.rb +30 -0
- data/lib/locomotive/devise.rb +1 -0
- data/lib/locomotive/dragonfly.rb +38 -0
- data/lib/locomotive/engine.rb +37 -0
- data/lib/locomotive/formtastic.rb +13 -0
- data/lib/locomotive/haml.rb +1 -0
- data/lib/locomotive/httparty.rb +2 -0
- data/lib/locomotive/httparty/patches.rb +18 -0
- data/lib/locomotive/httparty/webservice.rb +42 -0
- data/lib/locomotive/kaminari.rb +35 -0
- data/lib/locomotive/liquid.rb +7 -0
- data/lib/locomotive/liquid/drops/base.rb +42 -0
- data/lib/locomotive/liquid/drops/content_entry.rb +76 -0
- data/lib/locomotive/liquid/drops/content_types.rb +50 -0
- data/lib/locomotive/liquid/drops/current_user.rb +21 -0
- data/lib/locomotive/liquid/drops/page.rb +55 -0
- data/lib/locomotive/liquid/drops/proxy_collection.rb +56 -0
- data/lib/locomotive/liquid/drops/site.rb +19 -0
- data/lib/locomotive/liquid/drops/uploader.rb +15 -0
- data/lib/locomotive/liquid/errors.rb +7 -0
- data/lib/locomotive/liquid/filters/base.rb +47 -0
- data/lib/locomotive/liquid/filters/date.rb +54 -0
- data/lib/locomotive/liquid/filters/html.rb +115 -0
- data/lib/locomotive/liquid/filters/misc.rb +65 -0
- data/lib/locomotive/liquid/filters/resize.rb +16 -0
- data/lib/locomotive/liquid/filters/text.rb +45 -0
- data/lib/locomotive/liquid/filters/translate.rb +16 -0
- data/lib/locomotive/liquid/patches.rb +21 -0
- data/lib/locomotive/liquid/tags/consume.rb +67 -0
- data/lib/locomotive/liquid/tags/csrf.rb +40 -0
- data/lib/locomotive/liquid/tags/editable.rb +5 -0
- data/lib/locomotive/liquid/tags/editable/base.rb +88 -0
- data/lib/locomotive/liquid/tags/editable/control.rb +31 -0
- data/lib/locomotive/liquid/tags/editable/file.rb +39 -0
- data/lib/locomotive/liquid/tags/editable/long_text.rb +33 -0
- data/lib/locomotive/liquid/tags/editable/short_text.rb +41 -0
- data/lib/locomotive/liquid/tags/extends.rb +47 -0
- data/lib/locomotive/liquid/tags/google_analytics.rb +39 -0
- data/lib/locomotive/liquid/tags/inherited_block.rb +31 -0
- data/lib/locomotive/liquid/tags/inline_editor.rb +40 -0
- data/lib/locomotive/liquid/tags/locale_switcher.rb +83 -0
- data/lib/locomotive/liquid/tags/nav.rb +155 -0
- data/lib/locomotive/liquid/tags/paginate.rb +111 -0
- data/lib/locomotive/liquid/tags/seo.rb +72 -0
- data/lib/locomotive/liquid/tags/snippet.rb +75 -0
- data/lib/locomotive/liquid/tags/with_scope.rb +47 -0
- data/lib/locomotive/logger.rb +11 -0
- data/lib/locomotive/middlewares.rb +4 -0
- data/lib/locomotive/middlewares/cache.rb +27 -0
- data/lib/locomotive/middlewares/fonts.rb +42 -0
- data/lib/locomotive/middlewares/inline_editor.rb +36 -0
- data/lib/locomotive/middlewares/seo_trailing_slash.rb +24 -0
- data/lib/locomotive/misc/api_documentation.rb +96 -0
- data/lib/locomotive/misc/api_documentation/bootstrap.html.haml +119 -0
- data/lib/locomotive/mongoid.rb +4 -0
- data/lib/locomotive/mongoid/document.rb +19 -0
- data/lib/locomotive/mongoid/liquid.rb +39 -0
- data/lib/locomotive/mongoid/patches.rb +106 -0
- data/lib/locomotive/mongoid/presenter.rb +73 -0
- data/lib/locomotive/presentable.rb +212 -0
- data/lib/locomotive/rails.rb +1 -0
- data/lib/locomotive/rails/action_view.rb +9 -0
- data/lib/locomotive/regexps.rb +11 -0
- data/lib/locomotive/render.rb +177 -0
- data/lib/locomotive/routing.rb +2 -0
- data/lib/locomotive/routing/default_constraint.rb +42 -0
- data/lib/locomotive/routing/site_dispatcher.rb +54 -0
- data/lib/locomotive/session_store.rb +64 -0
- data/lib/locomotive/version.rb +3 -0
- data/lib/locomotive_cms.rb +1 -0
- data/lib/tasks/cucumber.rake +66 -0
- data/lib/tasks/locomotive.rake +220 -0
- data/public/favicon.ico +0 -0
- data/vendor/assets/fonts/locomotive/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/locomotive/fontawesome-webfont.svg +255 -0
- data/vendor/assets/fonts/locomotive/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/locomotive/fontawesome-webfont.woff +0 -0
- data/vendor/assets/javascripts/locomotive/ICanHandlebarz.js +88 -0
- data/vendor/assets/javascripts/locomotive/backbone.modelbinding.js +565 -0
- data/vendor/assets/javascripts/locomotive/backbone.sync.js +113 -0
- data/vendor/assets/javascripts/locomotive/cmd.js +31 -0
- data/vendor/assets/javascripts/locomotive/cookies.js +96 -0
- data/vendor/assets/javascripts/locomotive/datepicker_i18n.js.erb +28 -0
- data/vendor/assets/javascripts/locomotive/editable_field.js +50 -0
- data/vendor/assets/javascripts/locomotive/form_submit_notification.js +39 -0
- data/vendor/assets/javascripts/locomotive/growl.js +143 -0
- data/vendor/assets/javascripts/locomotive/handlebars.js +1493 -0
- data/vendor/assets/javascripts/locomotive/liquid_mode.js +42 -0
- data/vendor/assets/javascripts/locomotive/menu_toggler.js +37 -0
- data/vendor/assets/javascripts/locomotive/resize.js +9 -0
- data/vendor/assets/javascripts/locomotive/slugify.js +31 -0
- data/vendor/assets/javascripts/locomotive/smartupdater.js +296 -0
- data/vendor/assets/javascripts/locomotive/subscribe.js +367 -0
- data/vendor/assets/javascripts/locomotive/toggle.js +143 -0
- data/vendor/assets/javascripts/locomotive/vendor.js +1 -0
- data/vendor/assets/stylesheets/locomotive/blueprint/ie.css +26 -0
- data/vendor/assets/stylesheets/locomotive/blueprint/print.css +30 -0
- data/vendor/assets/stylesheets/locomotive/blueprint/screen.css +253 -0
- data/vendor/assets/stylesheets/locomotive/font-awesome.scss +329 -0
- data/vendor/assets/stylesheets/locomotive/jquery.css +3 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_222222_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_2e83ff_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_454545_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_888888_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_ffffff_256x240.png +0 -0
- data/vendor/assets/stylesheets/locomotive/jquery/ui.css +406 -0
- data/vendor/assets/stylesheets/locomotive/liquid_mode.css +7 -0
- data/vendor/assets/stylesheets/locomotive/toggle.css.scss +75 -0
- metadata +1171 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
require 'active_support/dependencies'
|
|
2
|
+
|
|
3
|
+
module ActiveSupport::Dependencies
|
|
4
|
+
|
|
5
|
+
alias_method :require_or_load_without_multiple, :require_or_load
|
|
6
|
+
|
|
7
|
+
def require_or_load(file_name, const_path = nil)
|
|
8
|
+
if file_name.starts_with?(Rails.root.to_s + '/app')
|
|
9
|
+
relative_name = file_name.gsub(Rails.root.to_s, '')
|
|
10
|
+
@engine_paths ||= Rails::Application::Railties.engines.collect{|engine| engine.config.root.to_s }
|
|
11
|
+
@engine_paths.each do |path|
|
|
12
|
+
engine_file = File.join(path, relative_name)
|
|
13
|
+
require_or_load_without_multiple(engine_file, const_path) if File.file?(engine_file)
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
require_or_load_without_multiple(file_name, const_path)
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
end
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
de:
|
|
2
|
+
locomotive:
|
|
3
|
+
errors:
|
|
4
|
+
"500":
|
|
5
|
+
title: Anwendungs-Fehler
|
|
6
|
+
notice: "Entschuldigung, irgendetwas ist hier schief gelaufen."
|
|
7
|
+
link: "→ Zurück zur Anwendung"
|
|
8
|
+
"404":
|
|
9
|
+
title: Seite nicht gefunden
|
|
10
|
+
notice: "Die angefragte Seite existiert nicht."
|
|
11
|
+
link: "→ Zurück zur Anwendung"
|
|
12
|
+
|
|
13
|
+
locales:
|
|
14
|
+
en: Englisch
|
|
15
|
+
de: Deutsch
|
|
16
|
+
fr: Französisch
|
|
17
|
+
pl: Polnisch
|
|
18
|
+
pt-BR: "Bras. Portugiesisch"
|
|
19
|
+
it: Italienisch
|
|
20
|
+
nl: Niederländisch
|
|
21
|
+
nb: Norwegisch
|
|
22
|
+
es: Spanisch
|
|
23
|
+
ru: Russisch
|
|
24
|
+
et: Estnisch
|
|
25
|
+
|
|
26
|
+
buttons:
|
|
27
|
+
login: Einloggen
|
|
28
|
+
send_password: Senden
|
|
29
|
+
change_password: Update
|
|
30
|
+
new_item: "+ hinzufügen"
|
|
31
|
+
switch_to_site: Los
|
|
32
|
+
delete: "Löschen"
|
|
33
|
+
close: "Schließen"
|
|
34
|
+
|
|
35
|
+
messages:
|
|
36
|
+
confirm: Sind Sie sicher ?
|
|
37
|
+
sending_form: "Formular wird gesendet"
|
|
38
|
+
|
|
39
|
+
shared:
|
|
40
|
+
header:
|
|
41
|
+
welcome: Willkommen, %{name}
|
|
42
|
+
see: Webseite zeigen
|
|
43
|
+
switch: Webseite wechseln
|
|
44
|
+
help: Hilfe
|
|
45
|
+
logout: Ausloggen
|
|
46
|
+
menu:
|
|
47
|
+
contents: Inhalte
|
|
48
|
+
assets: Medien
|
|
49
|
+
settings: Einstellungen
|
|
50
|
+
pages: Seiten
|
|
51
|
+
snippets: Snippets
|
|
52
|
+
account: Mein Zugang
|
|
53
|
+
site: Webseite
|
|
54
|
+
theme_assets: Dateien
|
|
55
|
+
list:
|
|
56
|
+
untranslated: "Nicht übersetzt"
|
|
57
|
+
form:
|
|
58
|
+
change_file: ändern
|
|
59
|
+
delete_file: Löschen
|
|
60
|
+
cancel: Abbrechen
|
|
61
|
+
form_actions:
|
|
62
|
+
back: Ohne Speichern zurück
|
|
63
|
+
create: Neu
|
|
64
|
+
update: Speichern
|
|
65
|
+
send: Senden
|
|
66
|
+
disable_with: "Transfer..."
|
|
67
|
+
footer:
|
|
68
|
+
who_is_behind: "LocomitveCMS - entwickelt von %{development} und entworfen von <a href=\"http://www.sachagreif.com\">Sacha Greif</a> — <small>version</small> %{version}"
|
|
69
|
+
|
|
70
|
+
notifications:
|
|
71
|
+
new_content_entry:
|
|
72
|
+
subject: "[%{domain}][%{type}] neu"
|
|
73
|
+
title: "Hi %{name}, nur damit Sie Bescheid wissen, am %{date} wurde eine neue Instanz erstellt."
|
|
74
|
+
type: "Model: %{type}"
|
|
75
|
+
|
|
76
|
+
sites_picker:
|
|
77
|
+
new: + Neue Webseite
|
|
78
|
+
|
|
79
|
+
custom_fields:
|
|
80
|
+
edit:
|
|
81
|
+
title: Benutzerdefinierte Felder bearbeiten
|
|
82
|
+
text_formatting:
|
|
83
|
+
none: Keine
|
|
84
|
+
html: HTML
|
|
85
|
+
types:
|
|
86
|
+
file:
|
|
87
|
+
delete_file: Datei löschen
|
|
88
|
+
has_many:
|
|
89
|
+
empty: Die Liste ist leer
|
|
90
|
+
new_entry: + Neuer Eintrag
|
|
91
|
+
many_to_many:
|
|
92
|
+
empty: Die Liste ist leer. Wählen Sie einen Eintrag unten aus.
|
|
93
|
+
|
|
94
|
+
form:
|
|
95
|
+
required: Pflichtfeld
|
|
96
|
+
default_label: Feldname
|
|
97
|
+
select_options:
|
|
98
|
+
ask_name: "Geben Sie den Namen der Auswahloption an."
|
|
99
|
+
|
|
100
|
+
sessions:
|
|
101
|
+
new:
|
|
102
|
+
title: Login
|
|
103
|
+
link: "Ich habe mein Passwort vergessen"
|
|
104
|
+
email: "Email"
|
|
105
|
+
password: "Passwort"
|
|
106
|
+
|
|
107
|
+
passwords:
|
|
108
|
+
new:
|
|
109
|
+
title: Passwort vergessen
|
|
110
|
+
link: "→ Zurück zur Login-Seite"
|
|
111
|
+
email: "Deine Email"
|
|
112
|
+
edit:
|
|
113
|
+
title: Passwort bearbeiten
|
|
114
|
+
link: "→ Zurück zur Login-Seite"
|
|
115
|
+
password: "Ihr neues Passwort"
|
|
116
|
+
password_confirmation: "Wiederholung ihres neuen Passworts"
|
|
117
|
+
|
|
118
|
+
pages:
|
|
119
|
+
index:
|
|
120
|
+
title: Seiten anzeigen
|
|
121
|
+
help: "Seiten sind als Baum organisiert. Sie können die Seiten also wie Ordner sortieren und verschachteln."
|
|
122
|
+
no_items: "Momentan gibt es keine Seiten. Klicken Sie einfach <a href='%{url}'>hier</a>, um die erste Seite zu erstellen."
|
|
123
|
+
new: neue Seite
|
|
124
|
+
latest_entries: Neueste Seiten
|
|
125
|
+
new:
|
|
126
|
+
title: Neue Seite
|
|
127
|
+
help: "Füllen Sie bitte das folgende Formular aus, um eine neue Seite zu erstellen. Nur zur Info: Die Seite wird nicht standardmäßig publiziert!"
|
|
128
|
+
page:
|
|
129
|
+
updated_at: bearbeitet am
|
|
130
|
+
edit:
|
|
131
|
+
show: anzeigen
|
|
132
|
+
help: "Der Seiten-Titel kann durch anklicken bearbeitet werden."
|
|
133
|
+
ask_for_title: "Bitte geben Sie den neuen Seiten-Titel ein"
|
|
134
|
+
form:
|
|
135
|
+
change_file: Datei ändern
|
|
136
|
+
delete_file: Datei löschen
|
|
137
|
+
cancel: Abbrechen
|
|
138
|
+
default_block: Standard
|
|
139
|
+
cache_strategy:
|
|
140
|
+
none: Keine
|
|
141
|
+
simple: Einfach
|
|
142
|
+
hour: 1 Stunde
|
|
143
|
+
day: 1 Tag
|
|
144
|
+
week: 1 Woche
|
|
145
|
+
month: 1 Monat
|
|
146
|
+
|
|
147
|
+
snippets:
|
|
148
|
+
index:
|
|
149
|
+
title: Snipptes anzeigen
|
|
150
|
+
help: "Snippets sind HTML-Code Ausschnitte, die an verschiedenen Stellen der Webseite eingesetzt werden können (z.B. die Fußzeile)."
|
|
151
|
+
no_items: "Momentan gibt es keine Snippets. Klicken Sie einfach <a href='%{url}'>hier</a>, um das erste Snippet zu erstellen."
|
|
152
|
+
new: neues Snippet
|
|
153
|
+
new:
|
|
154
|
+
title: Neues Snippet
|
|
155
|
+
help: "Füllen Sie bitte das folgende Formular aus, um ein neues Snippet zu erstellen."
|
|
156
|
+
edit:
|
|
157
|
+
title: Snippet bearbeiten
|
|
158
|
+
help: "Füllen Sie bitte das folgende Formular aus, um ihr Snippet zu aktualisieren."
|
|
159
|
+
snippet:
|
|
160
|
+
updated_at: Aktualisiert am
|
|
161
|
+
|
|
162
|
+
sites:
|
|
163
|
+
new:
|
|
164
|
+
title: Neue Webseite
|
|
165
|
+
help: "Füllen Sie das folgende Formular aus, um eine neue Webseite zu erstellen."
|
|
166
|
+
domains:
|
|
167
|
+
empty: "Bisher sind keine Domains/Hostnamen an diese Seite gebunden. Wenn Sie unten Domains/Hostnamen angeben, achten Sie bitte darauf <b>Ihren DNS Server zu prüfen/aktualisieren.</b>"
|
|
168
|
+
|
|
169
|
+
current_site:
|
|
170
|
+
edit:
|
|
171
|
+
new_membership: Account hinzufügen
|
|
172
|
+
help: "Der Name der Webseiten kann durch einen Klick auf den Namen bearbeitet werden."
|
|
173
|
+
ask_for_name: "Bitte geben Sie den neuen Namen der Webseite ein"
|
|
174
|
+
|
|
175
|
+
memberships:
|
|
176
|
+
roles:
|
|
177
|
+
admin: Administrator
|
|
178
|
+
designer: Designer
|
|
179
|
+
author: Autor
|
|
180
|
+
new:
|
|
181
|
+
title: Neuer Account
|
|
182
|
+
help: "Bitte geben Sie eine Email für den neuen Account an. Wenn diese noch nicht registriert ist, werden Sie zu einem Formular zur Erstellung des Accounts weitergeleitet."
|
|
183
|
+
|
|
184
|
+
accounts:
|
|
185
|
+
new:
|
|
186
|
+
title: Neuer Account
|
|
187
|
+
help: "Füllen Sie das folgende Formular aus, um einen neuen Account anzulegen."
|
|
188
|
+
|
|
189
|
+
my_account:
|
|
190
|
+
edit:
|
|
191
|
+
help: "Ihren Namen können Sie durch einen Klick auf denselben ändern."
|
|
192
|
+
new_site: Neue Webseite
|
|
193
|
+
ask_for_name: "Bitte geben Sie Ihren Namen an."
|
|
194
|
+
|
|
195
|
+
theme_assets:
|
|
196
|
+
index:
|
|
197
|
+
title: Layout-Dateien
|
|
198
|
+
help: "In diesem Bereich können Sie alle Dateien organisieren, die für das Layout verwendet werden."
|
|
199
|
+
new: neue Datei
|
|
200
|
+
snippets: Snippets
|
|
201
|
+
css_and_js: Style und Javascript
|
|
202
|
+
images: Bilder
|
|
203
|
+
media: Medien
|
|
204
|
+
fonts: Fonts
|
|
205
|
+
no_items: "Momentan gibt es keine Dateien. Klicken Sie einfach <a href='%{url}'>hier</a>, um die erste Datei zu erstellen."
|
|
206
|
+
quick_upload: Schneller Upload
|
|
207
|
+
asset:
|
|
208
|
+
updated_at: Aktualisiert am
|
|
209
|
+
new:
|
|
210
|
+
title: Neue Datei
|
|
211
|
+
help: "Sie haben die Wahl entweder eine neue Datei hochzuladen oder ein bestehendes Stylesheet / Javascript als Text einzufügen."
|
|
212
|
+
edit:
|
|
213
|
+
title: "Bearbeite %{file}"
|
|
214
|
+
help: "Diese Datei kann über folgende URL erreicht werden: <a href='%{url}'>%{url}</a>"
|
|
215
|
+
help_image: "Sie können das Bild in Templates oder Snippets mit folgendem Code einbinden : <span class='code'>{{ '%{path}' | theme_image_tag }}</span>.<br/>Aktuelle Breite x Höhe : <b>%{width}px x %{height}px</b>.<br/>"
|
|
216
|
+
help_javascript: "Sie können die Javascript Datei in Templates oder Snippets mit folgendem Code einbinden: <span class='code'>{{ '%{path}' | javascript_tag }}</span>.<br/>"
|
|
217
|
+
help_stylesheet: "Sie können die CSS Datei in Templates oder Snippets mit folgendem Code einbinden : <span class='code'>{{ '%{path}' | stylesheet_tag }}</span>.<br/>"
|
|
218
|
+
form:
|
|
219
|
+
picker_link: Fügen Sie eine Datei in den Code ein
|
|
220
|
+
choose_file: Datei auswählen
|
|
221
|
+
choose_plain_text: Text einfügen
|
|
222
|
+
images:
|
|
223
|
+
title: "Bilder anzeigen"
|
|
224
|
+
no_items: "Momentan gibt es keine Bilder."
|
|
225
|
+
upload: "Bilder hochladen"
|
|
226
|
+
|
|
227
|
+
content_assets:
|
|
228
|
+
picker:
|
|
229
|
+
title: "Eine Mediendatei einfügen"
|
|
230
|
+
no_items: "Es gibt bisher keine Mediendateien."
|
|
231
|
+
upload: "Mediendatei hochladen"
|
|
232
|
+
|
|
233
|
+
content_types:
|
|
234
|
+
index:
|
|
235
|
+
new: Neuer Baustein
|
|
236
|
+
edit: "Baustein bearbeiten"
|
|
237
|
+
new:
|
|
238
|
+
title: Neuer Baustein
|
|
239
|
+
help: "Erstellen Sie ihren eigenen Baustein (Projekte, Leute, ...usw). Der Baustein muss mindestens ein Feld haben. Das erste Feld ist dabei immer verpflichtend auszufüllen."
|
|
240
|
+
edit:
|
|
241
|
+
title: Vorlage bearbeiten
|
|
242
|
+
help: "Ihre Vorlage muss mindestens ein Feld haben. Das erste Feld ist dabei immer verpflichtend auszufüllen."
|
|
243
|
+
show_items: zeige Elemente
|
|
244
|
+
new_item: neues Element
|
|
245
|
+
form:
|
|
246
|
+
order_by:
|
|
247
|
+
created_at: '"Erstellt am" Datum'
|
|
248
|
+
updated_at: '"Aktualisiert am" Datum'
|
|
249
|
+
position_in_list: Manuell
|
|
250
|
+
order_direction:
|
|
251
|
+
asc: Aufsteigend
|
|
252
|
+
desc: Absteigend
|
|
253
|
+
|
|
254
|
+
content_entries:
|
|
255
|
+
index:
|
|
256
|
+
title: '"%{type}" anzeigen'
|
|
257
|
+
edit: Baustein bearbeiten
|
|
258
|
+
destroy: Baustein löschen
|
|
259
|
+
download: Elemente herunterladen
|
|
260
|
+
new: neues Element
|
|
261
|
+
category_noname: "Kein Name"
|
|
262
|
+
latest_entries: "Neueste Elemente"
|
|
263
|
+
updated_at: "Aktualisiert am"
|
|
264
|
+
list:
|
|
265
|
+
no_entries: "Momentan gibt es keine Elemente. Klicken Sie einfach <a href='%{url}'>hier</a>, um das erste Element zu erstellen."
|
|
266
|
+
new:
|
|
267
|
+
title: '%{type} — neues Element'
|
|
268
|
+
edit:
|
|
269
|
+
title: '%{type} — editing item'
|
|
270
|
+
form:
|
|
271
|
+
has_many:
|
|
272
|
+
new_item: Neues Element
|
|
273
|
+
|
|
274
|
+
image_picker:
|
|
275
|
+
link: Füge ein Bild in den Code ein
|
|
276
|
+
|
|
277
|
+
cross_domain_sessions:
|
|
278
|
+
new:
|
|
279
|
+
title: Cross-Domain Authentifizierung
|
|
280
|
+
notice: Sie werden zu der Webseite in ein paar Sekunden weitergeleitet.
|
|
281
|
+
|
|
282
|
+
installation:
|
|
283
|
+
common:
|
|
284
|
+
title: Erst-Installation von Locomotive CMS
|
|
285
|
+
next: Weiter
|
|
286
|
+
step_1:
|
|
287
|
+
title: "Schritt 1/2 — Zugang erstellen"
|
|
288
|
+
name: Name
|
|
289
|
+
email: E-Mail
|
|
290
|
+
password: Passwort
|
|
291
|
+
password_confirmation: Passwort-Bestätigung
|
|
292
|
+
done: "Sie haben bereits einen Zugang hinzugefügt:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
293
|
+
next: Zugang erstellen
|
|
294
|
+
step_2:
|
|
295
|
+
title: "Schritt 2/2 — Webseite erstellen"
|
|
296
|
+
explanations: "Es ist fast geschafft. Bitte geben Sie Ihrer ersten Webseite einen Namen und wählen Sie eine Sprache aus."
|
|
297
|
+
default_site_locale: Sprachauswahl
|
|
298
|
+
default_site_locales_hints: Sie können später weitere Sprachen im Einstellungsdialog vornehmen.
|
|
299
|
+
next: Webseite erstellen
|
|
300
|
+
back_to_default_template: "Klicken Sie <a href='#'>hier</a> um die Standardeinstellungen wieder herzustellen"
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
public:
|
|
304
|
+
pages:
|
|
305
|
+
show_toolbar:
|
|
306
|
+
statuses:
|
|
307
|
+
loading: "Laden..."
|
|
308
|
+
disabled: "Inline Editor deaktiviert"
|
|
309
|
+
labels:
|
|
310
|
+
save_changes: "Änderungen speichern: "
|
|
311
|
+
editing_mode: "Bearbeitungsmodus: "
|
|
312
|
+
lang: "Sprache: "
|
|
313
|
+
buttons:
|
|
314
|
+
back: "Zur Administration zurück"
|
|
315
|
+
confirm: Bestätigen
|
|
316
|
+
cancel: Abbrechen
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
en:
|
|
2
|
+
locomotive:
|
|
3
|
+
buttons:
|
|
4
|
+
login: Log in
|
|
5
|
+
send_password: Send
|
|
6
|
+
change_password: Update
|
|
7
|
+
new_item: "+ add"
|
|
8
|
+
switch_to_site: Go
|
|
9
|
+
delete: "Delete"
|
|
10
|
+
close: "Close"
|
|
11
|
+
|
|
12
|
+
locales:
|
|
13
|
+
en: English
|
|
14
|
+
de: German
|
|
15
|
+
fr: French
|
|
16
|
+
pl: Polish
|
|
17
|
+
pt-BR: "Brazilian Portuguese"
|
|
18
|
+
it: Italian
|
|
19
|
+
nl: Dutch
|
|
20
|
+
nb: Norwegian
|
|
21
|
+
es: Spanish
|
|
22
|
+
ru: Russian
|
|
23
|
+
et: Estonian
|
|
24
|
+
|
|
25
|
+
messages:
|
|
26
|
+
confirm: Are you sure ?
|
|
27
|
+
sending_form: Your form is being submitted
|
|
28
|
+
|
|
29
|
+
shared:
|
|
30
|
+
header:
|
|
31
|
+
welcome: Welcome, %{name}
|
|
32
|
+
see: See website
|
|
33
|
+
switch: Switch to another site
|
|
34
|
+
help: Help
|
|
35
|
+
logout: Log out
|
|
36
|
+
menu:
|
|
37
|
+
contents: Contents
|
|
38
|
+
assets: Assets
|
|
39
|
+
settings: Settings
|
|
40
|
+
pages: Pages
|
|
41
|
+
snippets: Snippets
|
|
42
|
+
account: My account
|
|
43
|
+
site: Site
|
|
44
|
+
theme_assets: Theme files
|
|
45
|
+
translations: Translations
|
|
46
|
+
form:
|
|
47
|
+
change_file: change
|
|
48
|
+
delete_file: delete
|
|
49
|
+
cancel: cancel
|
|
50
|
+
form_actions:
|
|
51
|
+
back: Back without saving
|
|
52
|
+
create: Create
|
|
53
|
+
update: Save
|
|
54
|
+
send: Send
|
|
55
|
+
disable_with: Pending...
|
|
56
|
+
list:
|
|
57
|
+
untranslated: untranslated
|
|
58
|
+
footer:
|
|
59
|
+
who_is_behind: "LocomotiveCMS is developed by %{development} and designed by <a href=\"http://www.sachagreif.com\">Sacha Greif</a> — <small>version</small> %{version}"
|
|
60
|
+
|
|
61
|
+
errors:
|
|
62
|
+
"500":
|
|
63
|
+
title: Application Error
|
|
64
|
+
notice: "We're sorry, but something went wrong"
|
|
65
|
+
link: "→ Back to the application"
|
|
66
|
+
"404":
|
|
67
|
+
title: Page not found
|
|
68
|
+
notice: "The page you requested does not exist."
|
|
69
|
+
link: "→ Back to the application"
|
|
70
|
+
|
|
71
|
+
notifications:
|
|
72
|
+
new_content_entry:
|
|
73
|
+
subject: "[%{domain}][%{type}] new entry"
|
|
74
|
+
title: "Hi %{name}, just to let you know that a new instance has been created on %{date} for the site <b>%{domain}</b>"
|
|
75
|
+
type: "Model: %{type}"
|
|
76
|
+
|
|
77
|
+
sites_picker:
|
|
78
|
+
new: + new site
|
|
79
|
+
|
|
80
|
+
custom_fields:
|
|
81
|
+
edit:
|
|
82
|
+
title: Editing custom field
|
|
83
|
+
text_formatting:
|
|
84
|
+
none: None
|
|
85
|
+
html: HTML
|
|
86
|
+
types:
|
|
87
|
+
file:
|
|
88
|
+
delete_file: Delete file
|
|
89
|
+
has_many:
|
|
90
|
+
empty: The list is empty
|
|
91
|
+
new_entry: + Add a new entry
|
|
92
|
+
many_to_many:
|
|
93
|
+
empty: The list is empty. Add an entry from the select box below.
|
|
94
|
+
|
|
95
|
+
form:
|
|
96
|
+
required: Required
|
|
97
|
+
default_label: Field name
|
|
98
|
+
select_options:
|
|
99
|
+
ask_name: "Type the label of the option"
|
|
100
|
+
|
|
101
|
+
sessions:
|
|
102
|
+
new:
|
|
103
|
+
title: Log in
|
|
104
|
+
link: "I forgot my password"
|
|
105
|
+
email: "Email"
|
|
106
|
+
password: "Password"
|
|
107
|
+
|
|
108
|
+
passwords:
|
|
109
|
+
new:
|
|
110
|
+
title: Forgot password
|
|
111
|
+
link: "→ Back to login page"
|
|
112
|
+
email: "Your email"
|
|
113
|
+
edit:
|
|
114
|
+
title: Update my password
|
|
115
|
+
link: "→ Back to login page"
|
|
116
|
+
password: "Your new password"
|
|
117
|
+
password_confirmation: "Confirmation of your new password"
|
|
118
|
+
|
|
119
|
+
pages:
|
|
120
|
+
index:
|
|
121
|
+
title: Listing pages
|
|
122
|
+
help: "Pages are organized as a tree. You can order pages as well as folders"
|
|
123
|
+
no_items: "There are no pages for now. Just click <a href=\"%{url}\">here</a> to create the first one."
|
|
124
|
+
new: new page
|
|
125
|
+
latest_entries: Latest pages
|
|
126
|
+
new:
|
|
127
|
+
title: New page
|
|
128
|
+
help: "Please fill in the below form to create your page. Be careful, by default, the page is not published."
|
|
129
|
+
page:
|
|
130
|
+
updated_at: updated at
|
|
131
|
+
edit:
|
|
132
|
+
show: show
|
|
133
|
+
help: "The page title can be updated by clicking it. To apply your changes, click on the \"Save\" button."
|
|
134
|
+
ask_for_title: "Please type the new page title"
|
|
135
|
+
form:
|
|
136
|
+
change_file: change
|
|
137
|
+
delete_file: delete
|
|
138
|
+
cancel: cancel
|
|
139
|
+
default_block: Default
|
|
140
|
+
cache_strategy:
|
|
141
|
+
none: None
|
|
142
|
+
simple: Simple
|
|
143
|
+
hour: 1 hour
|
|
144
|
+
day: 1 day
|
|
145
|
+
week: 1 week
|
|
146
|
+
month: 1 month
|
|
147
|
+
redirect_type:
|
|
148
|
+
permanent: "Permanent (301)"
|
|
149
|
+
temporary: "Temporary (302)"
|
|
150
|
+
|
|
151
|
+
snippets:
|
|
152
|
+
index:
|
|
153
|
+
title: Listing snippets
|
|
154
|
+
help: "Snippets are portion of HTML code which can be found at different places within the site (such as a footer)."
|
|
155
|
+
no_items: "There are no snippets for now. Just click <a href=\"%{url}\">here</a> to create the first one."
|
|
156
|
+
new: new snippet
|
|
157
|
+
new:
|
|
158
|
+
title: New snippet
|
|
159
|
+
help: "Fill in the form below to update your snippet."
|
|
160
|
+
edit:
|
|
161
|
+
title: Editing snippet
|
|
162
|
+
help: "Include your snippet in your page templates with the following liquid code : <span class='code'>{% include '%{slug}' %}</span>."
|
|
163
|
+
snippet:
|
|
164
|
+
updated_at: Updated at
|
|
165
|
+
|
|
166
|
+
sites:
|
|
167
|
+
new:
|
|
168
|
+
title: New site
|
|
169
|
+
help: "Fill in the form below to create your new site."
|
|
170
|
+
domains:
|
|
171
|
+
empty: "There are no domains tied this site yet. Simply add your domains just below. <b>Do not forget to upgrade your DNS.</b>"
|
|
172
|
+
|
|
173
|
+
current_site:
|
|
174
|
+
edit:
|
|
175
|
+
new_membership: add account
|
|
176
|
+
help: "The site name can be updated by clicking it. To apply your changes, click on the \"Save\" button."
|
|
177
|
+
ask_for_name: "Please type the new site name"
|
|
178
|
+
|
|
179
|
+
memberships:
|
|
180
|
+
roles:
|
|
181
|
+
admin: Administrator
|
|
182
|
+
designer: Designer
|
|
183
|
+
author: Author
|
|
184
|
+
new:
|
|
185
|
+
title: New membership
|
|
186
|
+
help: "Please give the account email to add. If it does not exist, you will be redirected to the account creation form."
|
|
187
|
+
|
|
188
|
+
accounts:
|
|
189
|
+
new:
|
|
190
|
+
title: New account
|
|
191
|
+
help: "Fill in the form below to add a new account."
|
|
192
|
+
|
|
193
|
+
my_account:
|
|
194
|
+
edit:
|
|
195
|
+
help: "Your name can be updated by clicking it. To apply your changes, click on the \"Save\" button."
|
|
196
|
+
new_site: new site
|
|
197
|
+
ask_for_name: "Please type your new name"
|
|
198
|
+
|
|
199
|
+
theme_assets:
|
|
200
|
+
index:
|
|
201
|
+
title: Listing theme files
|
|
202
|
+
help: "The theme files section is the place where you manage the files needed by your layout, snippets...etc. If you need to manage an image gallery, create a new content type instead.<br/><b>Warning:</b> you may not see all the assets depending on your rights."
|
|
203
|
+
quick_upload: Quick upload
|
|
204
|
+
new: new file
|
|
205
|
+
snippets: Snippets
|
|
206
|
+
css_and_js: Style and javascript
|
|
207
|
+
fonts: Fonts
|
|
208
|
+
images: Images
|
|
209
|
+
media: Media
|
|
210
|
+
no_items: "There are no files for now."
|
|
211
|
+
asset:
|
|
212
|
+
updated_at: Updated at
|
|
213
|
+
new:
|
|
214
|
+
title: New file
|
|
215
|
+
help: "You have the choice to either upload any file or to copy/paste a stylesheet or a javascript in plain text."
|
|
216
|
+
edit:
|
|
217
|
+
title: "Editing %{file}"
|
|
218
|
+
help: "This asset is accessible directly from the following url: <a href='%{url}'>%{url}</a>"
|
|
219
|
+
help_image: "Include your image in your page templates or snippets with the following liquid code : <span class='code'>{{ '%{path}' | theme_image_tag }}</span>.<br/>Your current image dimensions : <b>%{width}px x %{height}px</b>.<br/>"
|
|
220
|
+
help_javascript: "Include your javascript file in your page templates or snippets with the following code : <span class='code'>{{ '%{path}' | javascript_tag }}</span>.<br/>"
|
|
221
|
+
help_stylesheet: "Include your stylesheet file in your page templates or snippets with the following code : <span class='code'>{{ '%{path}' | stylesheet_tag }}</span>.<br/>"
|
|
222
|
+
form:
|
|
223
|
+
picker_link: Insert a file into the code
|
|
224
|
+
choose_file: Choose file
|
|
225
|
+
choose_plain_text: Choose plain text
|
|
226
|
+
image_picker:
|
|
227
|
+
title: "Insert theme image"
|
|
228
|
+
no_items: "There are no images for now."
|
|
229
|
+
upload: "Upload theme images"
|
|
230
|
+
|
|
231
|
+
translations:
|
|
232
|
+
untranslated: "Untranslated locales: %{list}"
|
|
233
|
+
index:
|
|
234
|
+
title: Translations
|
|
235
|
+
new: new translation
|
|
236
|
+
new:
|
|
237
|
+
title: "New translation"
|
|
238
|
+
help: "Pages/snippets can share the same template for all the locales except for some labels which can be handled by the <b>translate</b> liquid tag."
|
|
239
|
+
edit:
|
|
240
|
+
title: "Editing %{key}"
|
|
241
|
+
help: "You can use that translation key with the following liquid code : <span class='code'>{{ '%{key}' | translate }}</span>."
|
|
242
|
+
|
|
243
|
+
content_assets:
|
|
244
|
+
picker:
|
|
245
|
+
title: "Insert media"
|
|
246
|
+
no_items: "There are no media for now."
|
|
247
|
+
upload: "Upload media"
|
|
248
|
+
|
|
249
|
+
content_types:
|
|
250
|
+
index:
|
|
251
|
+
new: new model
|
|
252
|
+
edit: edit model
|
|
253
|
+
new:
|
|
254
|
+
title: New model
|
|
255
|
+
help: "Create your own data model (Projects, People, ...etc). Your model should have one field at least. The items created from this content type would have their first field mandatory."
|
|
256
|
+
edit:
|
|
257
|
+
title: Editing model
|
|
258
|
+
help: "Your model should have one field at least. The items created from this content type would have their first field mandatory."
|
|
259
|
+
show_entries: show entries
|
|
260
|
+
new_entry: new entry
|
|
261
|
+
form:
|
|
262
|
+
order_by:
|
|
263
|
+
created_at: 'By creation date'
|
|
264
|
+
updated_at: 'By updating date'
|
|
265
|
+
position_in_list: Manually
|
|
266
|
+
order_direction:
|
|
267
|
+
asc: Ascending
|
|
268
|
+
desc: Descending
|
|
269
|
+
|
|
270
|
+
content_entries:
|
|
271
|
+
index:
|
|
272
|
+
title: 'Listing "%{type}"'
|
|
273
|
+
edit: edit model
|
|
274
|
+
destroy: remove model
|
|
275
|
+
download: download entries
|
|
276
|
+
new: new entry
|
|
277
|
+
category_noname: "No name"
|
|
278
|
+
latest_entries: "Latest entries"
|
|
279
|
+
updated_at: "Updated at"
|
|
280
|
+
list:
|
|
281
|
+
no_items: "There are no entries for now. Just click <a href=\"%{url}\">here</a> to create the first one."
|
|
282
|
+
new:
|
|
283
|
+
title: '%{type} — new entry'
|
|
284
|
+
edit:
|
|
285
|
+
title: '%{type} — editing entry'
|
|
286
|
+
form:
|
|
287
|
+
edit_select_options: edit options
|
|
288
|
+
has_many:
|
|
289
|
+
new_entry: New entry
|
|
290
|
+
|
|
291
|
+
code_editing:
|
|
292
|
+
image_picker: Insert an image into the code
|
|
293
|
+
copy_template: Copy template from main locale
|
|
294
|
+
|
|
295
|
+
cross_domain_sessions:
|
|
296
|
+
new:
|
|
297
|
+
title: Cross-domain authentication
|
|
298
|
+
notice: You will be redirected to the website in a couple of seconds.
|
|
299
|
+
|
|
300
|
+
installation:
|
|
301
|
+
common:
|
|
302
|
+
title: First Locomotive Installation
|
|
303
|
+
next: Next
|
|
304
|
+
step_1:
|
|
305
|
+
title: "Step 1/2 — Create account"
|
|
306
|
+
name: Account name
|
|
307
|
+
email: Email
|
|
308
|
+
password: Password
|
|
309
|
+
password_confirmation: Password confirmation
|
|
310
|
+
done: "You have already added an account:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
311
|
+
next: Create account
|
|
312
|
+
step_2:
|
|
313
|
+
title: "Step 2/2 — Create your first site"
|
|
314
|
+
explanations: "You are almost done. Please give a name to your first site and pick up the default locale."
|
|
315
|
+
default_site_locale: Site locale
|
|
316
|
+
default_site_locales_hints: You can add more locales in the Settings panel later.
|
|
317
|
+
next: Create site
|
|
318
|
+
|
|
319
|
+
public:
|
|
320
|
+
pages:
|
|
321
|
+
show_toolbar:
|
|
322
|
+
statuses:
|
|
323
|
+
loading: "Loading...."
|
|
324
|
+
disabled: "Inline Editor disabled"
|
|
325
|
+
labels:
|
|
326
|
+
save_changes: "Save changes: "
|
|
327
|
+
editing_mode: "Editing mode: "
|
|
328
|
+
lang: "Lang: "
|
|
329
|
+
buttons:
|
|
330
|
+
back: Return to back-office
|
|
331
|
+
confirm: Confirm
|
|
332
|
+
cancel: Cancel
|