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,314 @@
|
|
|
1
|
+
nb:
|
|
2
|
+
locomotive:
|
|
3
|
+
buttons:
|
|
4
|
+
login: Logg inn
|
|
5
|
+
send_password: Send
|
|
6
|
+
change_password: Endre
|
|
7
|
+
new_item: "+ ny"
|
|
8
|
+
switch_to_site: Vis
|
|
9
|
+
delete: Slett
|
|
10
|
+
close: Lukk
|
|
11
|
+
|
|
12
|
+
locales:
|
|
13
|
+
en: Engelsk
|
|
14
|
+
de: Tysk
|
|
15
|
+
fr: Fransk
|
|
16
|
+
pl: Polsk
|
|
17
|
+
pt-BR: "Brazilian Portuguese"
|
|
18
|
+
it: Italiensk
|
|
19
|
+
nl: Nederlandsk
|
|
20
|
+
nb: Norsk
|
|
21
|
+
es: Spansk
|
|
22
|
+
ru: Russisk
|
|
23
|
+
et: Estisk
|
|
24
|
+
|
|
25
|
+
messages:
|
|
26
|
+
confirm: Er du sikker?
|
|
27
|
+
sending_form: Skjemaet blir sendt
|
|
28
|
+
|
|
29
|
+
shared:
|
|
30
|
+
header:
|
|
31
|
+
welcome: Velkommen, %{name}
|
|
32
|
+
see: Vis nettsiden
|
|
33
|
+
switch: Bytt til en annen nettside
|
|
34
|
+
help: Hjelp
|
|
35
|
+
logout: Logg ut
|
|
36
|
+
menu:
|
|
37
|
+
contents: Innhold
|
|
38
|
+
assets: Assets
|
|
39
|
+
settings: Innstillinger
|
|
40
|
+
pages: Sider
|
|
41
|
+
snippets: Snutter
|
|
42
|
+
account: Min konto
|
|
43
|
+
site: Siden
|
|
44
|
+
theme_assets: Temafiler
|
|
45
|
+
form:
|
|
46
|
+
change_file: Endre
|
|
47
|
+
delete_file: Slett
|
|
48
|
+
cancel: Avbryt
|
|
49
|
+
form_actions:
|
|
50
|
+
back: Tilbake uten å lagre
|
|
51
|
+
create: Opprett
|
|
52
|
+
update: Lagre
|
|
53
|
+
send: Send
|
|
54
|
+
disable_with: "Vent litt.."
|
|
55
|
+
list:
|
|
56
|
+
untranslated: ikke oversatt
|
|
57
|
+
footer:
|
|
58
|
+
who_is_behind: "LocomotiveCMS er utviklet av %{development} og designet av <a href=\"http://www.sachagreif.com\">Sacha Greif</a> — <small>versjon</small> %{version}"
|
|
59
|
+
|
|
60
|
+
errors:
|
|
61
|
+
"500":
|
|
62
|
+
title: Applikasjonsfeil
|
|
63
|
+
notice: "Vi beklager, noe gikk galt"
|
|
64
|
+
link: "→ Tilbake til applikasjonen"
|
|
65
|
+
"404":
|
|
66
|
+
title: Siden finnes ikke
|
|
67
|
+
notice: "Siden som ble forsøkt åpnet finnes ikke."
|
|
68
|
+
link: "→ Tilbake til applikasjonen"
|
|
69
|
+
|
|
70
|
+
notifications:
|
|
71
|
+
new_content_entry:
|
|
72
|
+
subject: "[%{domain}][%{type}] ny"
|
|
73
|
+
title: "Hei %{name}, varsler om at en ny instanse ble opprettet %{date}"
|
|
74
|
+
type: "Modell: %{type}"
|
|
75
|
+
|
|
76
|
+
sites_picker:
|
|
77
|
+
new: + ny nettside
|
|
78
|
+
|
|
79
|
+
custom_fields:
|
|
80
|
+
edit:
|
|
81
|
+
title: Redigerer tilpasset felt
|
|
82
|
+
text_formatting:
|
|
83
|
+
none: Ingen
|
|
84
|
+
html: HTML
|
|
85
|
+
types:
|
|
86
|
+
file:
|
|
87
|
+
delete_file: Slett fil
|
|
88
|
+
has_many:
|
|
89
|
+
empty: Tom
|
|
90
|
+
new_entry: + Legg til ny
|
|
91
|
+
many_to_many:
|
|
92
|
+
empty: Listen er tom. Legg til ny fra listen nedenfor.
|
|
93
|
+
|
|
94
|
+
form:
|
|
95
|
+
required: Nødvendig
|
|
96
|
+
default_label: Feltnavn
|
|
97
|
+
select_options:
|
|
98
|
+
ask_name: "Skriv inn etiketten for dette valget"
|
|
99
|
+
|
|
100
|
+
sessions:
|
|
101
|
+
new:
|
|
102
|
+
title: Innlogging
|
|
103
|
+
link: "Glemt passordet?"
|
|
104
|
+
email: "Epost"
|
|
105
|
+
password: "Passord"
|
|
106
|
+
|
|
107
|
+
passwords:
|
|
108
|
+
new:
|
|
109
|
+
title: Glemt passord
|
|
110
|
+
link: "→ Tilbake til innlogging"
|
|
111
|
+
email: "Din epostadresse"
|
|
112
|
+
edit:
|
|
113
|
+
title: Endre passord
|
|
114
|
+
link: "→ Tilbake til innlogging"
|
|
115
|
+
password: "Nytt passord"
|
|
116
|
+
password_confirmation: "Bekreft passordet"
|
|
117
|
+
|
|
118
|
+
pages:
|
|
119
|
+
index:
|
|
120
|
+
title: Sideoversikt
|
|
121
|
+
help: "Sidene er organisert i en trestruktur. Du kan sortere både sider og mapper."
|
|
122
|
+
no_items: "Det har ikke blitt opprettet noen sider ennå. Klikk <a href=\"%{url}\">her</a> for lage den første."
|
|
123
|
+
new: ny side
|
|
124
|
+
latest_entries: Siste sider
|
|
125
|
+
new:
|
|
126
|
+
title: Ny side
|
|
127
|
+
help: "Fyll ut skjemaet nedenfor for å opprette en ny side. Publisering er skrudd av som standard."
|
|
128
|
+
page:
|
|
129
|
+
updated_at: sist oppdatert
|
|
130
|
+
edit:
|
|
131
|
+
show: vis
|
|
132
|
+
help: "Tittelen til siden kan oppdateres ved å klikke på den. For å lagre endringene, klikk på \"Lagre\" -knappen."
|
|
133
|
+
ask_for_title: "Endre tittelen"
|
|
134
|
+
form:
|
|
135
|
+
change_file: endre
|
|
136
|
+
delete_file: slett fil
|
|
137
|
+
cancel: avbryt
|
|
138
|
+
default_block: Standard
|
|
139
|
+
cache_strategy:
|
|
140
|
+
none: Ingen
|
|
141
|
+
simple: Enkel
|
|
142
|
+
hour: 1 time
|
|
143
|
+
day: 1 dag
|
|
144
|
+
week: 1 uke
|
|
145
|
+
month: 1 måned
|
|
146
|
+
|
|
147
|
+
snippets:
|
|
148
|
+
index:
|
|
149
|
+
title: HTML snutter
|
|
150
|
+
help: "Snutter brukes til HTML-kode som skal repeteres flere steder i nettsiden (f.eks. en footer)"
|
|
151
|
+
no_items: "Det har ikke opprettet noen snutter ennå. Klikk <a href=\"%{url}\">her</a> for å lage den første."
|
|
152
|
+
new: Ny HTML-snutt
|
|
153
|
+
new:
|
|
154
|
+
title: Ny HTML-snutt
|
|
155
|
+
help: "Fyll ut skjemaet nedenfor for å oppdatere snutten."
|
|
156
|
+
edit:
|
|
157
|
+
title: Redigerer HTML-snutt
|
|
158
|
+
help: "Dette er liquid-syntaksen for å inkludere denne snutten i en mal: <span class='code'>{% include '%{slug}' %}</span>."
|
|
159
|
+
snippet:
|
|
160
|
+
updated_at: Sist oppdatert
|
|
161
|
+
|
|
162
|
+
sites:
|
|
163
|
+
new:
|
|
164
|
+
title: Ny nettside
|
|
165
|
+
help: "Fyll ut skjemaet nedenfor for å opprette en ny nettside."
|
|
166
|
+
domains:
|
|
167
|
+
empty: "Det er ingen domener tilknyttet denne siden ennå. Legg til domenene dine nedenfor. <b>Ikke glem å oppdatere DNS-pekerene.</b>"
|
|
168
|
+
|
|
169
|
+
current_site:
|
|
170
|
+
edit:
|
|
171
|
+
new_membership: legg til konto
|
|
172
|
+
help: "Navnet på siden kan oppdateres ved å trykke på det. For å lagre endringen, trykk på \"Lagre\" -knappen."
|
|
173
|
+
ask_for_name: "Skriv inn det nye navnet"
|
|
174
|
+
|
|
175
|
+
memberships:
|
|
176
|
+
roles:
|
|
177
|
+
admin: Administrator
|
|
178
|
+
designer: Designer
|
|
179
|
+
author: Forfatter
|
|
180
|
+
new:
|
|
181
|
+
title: Nytt medlemsskap
|
|
182
|
+
help: "Oppgi epostadressen til brukerkontoen. Hvis denne ikke finnes blir du sendt til skjemaet for å opprette ny konto."
|
|
183
|
+
|
|
184
|
+
accounts:
|
|
185
|
+
new:
|
|
186
|
+
title: Ny brukerkonto
|
|
187
|
+
help: "Fyll ut skjemaet nedenfor for å opprette en ny brukerkonto."
|
|
188
|
+
|
|
189
|
+
my_account:
|
|
190
|
+
edit:
|
|
191
|
+
help: "Navnet ditt kan endres ved å trykke på det. For å lagre endringen, trykk på \"Lagre\" -knappen."
|
|
192
|
+
new_site: ny nettside
|
|
193
|
+
ask_for_name: "Rediger navnet ditt"
|
|
194
|
+
|
|
195
|
+
theme_assets:
|
|
196
|
+
index:
|
|
197
|
+
title: Temafiler
|
|
198
|
+
help: "I denne seksjonen kan du håndtere alle layout-relaterte filer. Hvis du trenger et bildegalleri så opprett en ny innholdstype i stedet.<br/><b>Advarsel:</b> hvis det er enkelte filer du ikke ser så kan dette skyldes manglende rettigheter."
|
|
199
|
+
quick_upload: Hurtigopplasting
|
|
200
|
+
new: ny fil
|
|
201
|
+
snippets: HTML-snutter
|
|
202
|
+
css_and_js: Stilark og javascript
|
|
203
|
+
fonts: Fonter
|
|
204
|
+
images: Bilder
|
|
205
|
+
media: Media
|
|
206
|
+
no_items: "Det er ingen filer her ennå."
|
|
207
|
+
asset:
|
|
208
|
+
updated_at: Sist oppdatert
|
|
209
|
+
new:
|
|
210
|
+
title: Ny fil
|
|
211
|
+
help: "Du kan enten laste opp en fil eller opprette kopiere inn koden som klartekst"
|
|
212
|
+
edit:
|
|
213
|
+
title: "Redigerer %{file}"
|
|
214
|
+
help: "Denne filen er tilgjengelig fra følgende url: <a href='%{url}'>%{url}</a>"
|
|
215
|
+
help_image: "Bruk følgende liquid-syntax for å inkludere bildet i en mal: <span class='code'>{{ '%{path}' | theme_image_tag }}</span>.<br/>Nåværende bildedimensjoner: <b>%{width}px x %{height}px</b>.<br/>"
|
|
216
|
+
help_javascript: "Inkluder javascript-filer i malene med følgende kode: <span class='code'>{{ '%{path}' | javascript_tag }}</span>.<br/>"
|
|
217
|
+
help_stylesheet: "Inkluder stilarkene i malene med følgende kode: <span class='code'>{{ '%{path}' | stylesheet_tag }}</span>.<br/>"
|
|
218
|
+
form:
|
|
219
|
+
picker_link: Sett inn en fil i koden
|
|
220
|
+
choose_file: Velg fil
|
|
221
|
+
choose_plain_text: Velg klartekst
|
|
222
|
+
image_picker:
|
|
223
|
+
title: "Sett inn bilde"
|
|
224
|
+
no_items: "Det finnes ingen bilder foreløpig."
|
|
225
|
+
upload: "Last opp bilder"
|
|
226
|
+
|
|
227
|
+
content_assets:
|
|
228
|
+
picker:
|
|
229
|
+
title: "Sett inn media"
|
|
230
|
+
no_items: "Det finnes ingen media foreløpig."
|
|
231
|
+
upload: "Last opp media"
|
|
232
|
+
|
|
233
|
+
content_types:
|
|
234
|
+
index:
|
|
235
|
+
new: Ny modell
|
|
236
|
+
edit: Rediger modell
|
|
237
|
+
new:
|
|
238
|
+
title: Ny modell
|
|
239
|
+
help: "Lag din egen datamodell (Prosjekter, Ansatte, ...etc). Modellen må ha minst ett felt. Det første feltet vil være obligatorisk for elementer som opprettes av denne innholdstypen."
|
|
240
|
+
edit:
|
|
241
|
+
title: Redigerer modell
|
|
242
|
+
help: "Modellen må ha minst ett felt. Det første feltet vil være obligatorisk for elementer som opprettes av denne innholdstypen."
|
|
243
|
+
show_entries: vis elementer
|
|
244
|
+
new_entry: nytt element
|
|
245
|
+
form:
|
|
246
|
+
order_by:
|
|
247
|
+
created_at: 'Etter dato opprettet'
|
|
248
|
+
updated_at: 'Etter dato oppdatert'
|
|
249
|
+
position_in_list: Manuell
|
|
250
|
+
order_direction:
|
|
251
|
+
asc: Stigende
|
|
252
|
+
desc: Synkende
|
|
253
|
+
|
|
254
|
+
content_entries:
|
|
255
|
+
index:
|
|
256
|
+
title: 'Viser alle "%{type}"'
|
|
257
|
+
edit: rediger modell
|
|
258
|
+
destroy: fjern modell
|
|
259
|
+
download: last ned elementer
|
|
260
|
+
new: nytt element
|
|
261
|
+
category_noname: "Navn mangler"
|
|
262
|
+
latest_entries: "Siste elementer"
|
|
263
|
+
updated_at: "Sist oppdatert"
|
|
264
|
+
list:
|
|
265
|
+
no_entries: "Det finnes ingen elementer her ennå. Klikk <a href=\"%{url}\">her</a> for å opprette det første."
|
|
266
|
+
new:
|
|
267
|
+
title: '%{type} — nytt element'
|
|
268
|
+
edit:
|
|
269
|
+
title: '%{type} — rediger element'
|
|
270
|
+
form:
|
|
271
|
+
has_many:
|
|
272
|
+
new_item: Nytt element
|
|
273
|
+
|
|
274
|
+
image_picker:
|
|
275
|
+
link: Sett inn et bilde i koden
|
|
276
|
+
|
|
277
|
+
cross_domain_sessions:
|
|
278
|
+
new:
|
|
279
|
+
title: Cross-domain authentication
|
|
280
|
+
notice: Du blir sendt videre til nettsiden i løpet av noen få sekunder.
|
|
281
|
+
|
|
282
|
+
installation:
|
|
283
|
+
common:
|
|
284
|
+
title: Locomotive førstegangsoppsett
|
|
285
|
+
next: Neste
|
|
286
|
+
step_1:
|
|
287
|
+
title: "Steg 1/2 — Lag brukerkonto"
|
|
288
|
+
name: Kontonavn
|
|
289
|
+
email: Epost
|
|
290
|
+
password: Passord
|
|
291
|
+
password_confirmation: Bekreft passord
|
|
292
|
+
done: "Du har allerede opprettet en konto:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
293
|
+
next: Opprett konto
|
|
294
|
+
step_2:
|
|
295
|
+
title: "Steg 2/2 — Lag din første nettside"
|
|
296
|
+
explanations: "Hvis du allerede har lastet opp standardmalen (se instruksjoner), så kan du bruke denne med en gang. Du kan også laste opp en sidemal som en zip-fil (gratis maler finnes <a href=\"http://www.locomotivecms.com/support/themes\">her</a>)."
|
|
297
|
+
default_site_locale: Språk
|
|
298
|
+
default_site_locales_hints: Du kan legge til flere språk under Innstilinger senere
|
|
299
|
+
next: Opprett side
|
|
300
|
+
|
|
301
|
+
public:
|
|
302
|
+
pages:
|
|
303
|
+
show_toolbar:
|
|
304
|
+
statuses:
|
|
305
|
+
loading: "Vent litt...."
|
|
306
|
+
disabled: "Inline Editor disabled"
|
|
307
|
+
labels:
|
|
308
|
+
save_changes: "Lagre endringer: "
|
|
309
|
+
editing_mode: "Redigeringsmodus: "
|
|
310
|
+
lang: "Språk: "
|
|
311
|
+
buttons:
|
|
312
|
+
back: Tilbake til admin-siden
|
|
313
|
+
confirm: Bekreft
|
|
314
|
+
cancel: Avbryt
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
nl:
|
|
2
|
+
locomotive:
|
|
3
|
+
buttons:
|
|
4
|
+
login: Inloggen
|
|
5
|
+
send_password: Verstuur
|
|
6
|
+
change_password: Wijzig
|
|
7
|
+
new_item: "+ voeg toe"
|
|
8
|
+
switch_to_site: Ga
|
|
9
|
+
|
|
10
|
+
messages:
|
|
11
|
+
confirm: Weet u het zeker ?
|
|
12
|
+
sending_form: "locomotive.messages.sending_form"
|
|
13
|
+
|
|
14
|
+
shared:
|
|
15
|
+
header:
|
|
16
|
+
welcome: Welkom, %{name}
|
|
17
|
+
see: Bekijk website
|
|
18
|
+
logout: Uitloggen
|
|
19
|
+
menu:
|
|
20
|
+
contents: Inhoud
|
|
21
|
+
assets: Bronmaterialen
|
|
22
|
+
settings: Instellingen
|
|
23
|
+
pages: Pagina's
|
|
24
|
+
snippets: Fragmenten
|
|
25
|
+
account: Mijn account
|
|
26
|
+
site: Site
|
|
27
|
+
theme_assets: Thema bestanden
|
|
28
|
+
footer:
|
|
29
|
+
who_is_behind: "Service ontwikkeld door %{development} en vormgegeven door <a href=\"http://www.sachagreif.com\">Sacha Greif</a>"
|
|
30
|
+
form_actions:
|
|
31
|
+
back: Terug zonder opslaan
|
|
32
|
+
create: Maak
|
|
33
|
+
update: Update
|
|
34
|
+
send: Verstuur
|
|
35
|
+
disable_with: "locomotive.disable_with.form_actions"
|
|
36
|
+
|
|
37
|
+
errors:
|
|
38
|
+
"500":
|
|
39
|
+
title: Applicatie fout
|
|
40
|
+
notice: "Sorry, maar er ging iets fout"
|
|
41
|
+
link: "→ Terug naar de applicatie"
|
|
42
|
+
"404":
|
|
43
|
+
title: Pagina niet gevonden
|
|
44
|
+
notice: "De pagina die u opvroeg, bestaat niet."
|
|
45
|
+
link: "→ Terug naar de applicatie"
|
|
46
|
+
|
|
47
|
+
notifications:
|
|
48
|
+
new_content_entry:
|
|
49
|
+
subject: "[%{domain}][%{type}] nieuw"
|
|
50
|
+
title: "Hallo %{name}, dit bericht is om te laten weten dat er een nieuwe instantie is gemaakt op %{date}"
|
|
51
|
+
type: "Model: %{type}"
|
|
52
|
+
|
|
53
|
+
custom_fields:
|
|
54
|
+
edit:
|
|
55
|
+
title: Bewerk aangepast veld
|
|
56
|
+
text_formatting:
|
|
57
|
+
none: Geen
|
|
58
|
+
html: HTML
|
|
59
|
+
custom_form:
|
|
60
|
+
delete_file: Verwijder bestand
|
|
61
|
+
index:
|
|
62
|
+
is_required: is verplicht
|
|
63
|
+
default_label: Veldnaam
|
|
64
|
+
|
|
65
|
+
sessions:
|
|
66
|
+
new:
|
|
67
|
+
title: Inloggen
|
|
68
|
+
link: "Ik ben mijn wachtwoord vergeten"
|
|
69
|
+
email: "E-mail"
|
|
70
|
+
password: "Wachtwoord"
|
|
71
|
+
|
|
72
|
+
passwords:
|
|
73
|
+
new:
|
|
74
|
+
title: Wachtwoord vergeten
|
|
75
|
+
link: "→ Terug naar de inlogpagina"
|
|
76
|
+
email: "Uw e-mail"
|
|
77
|
+
edit:
|
|
78
|
+
title: Update mijn wachtwoord
|
|
79
|
+
link: "→ Terug naar de inlogpagina"
|
|
80
|
+
password: "Uw nieuwe wachtwoord"
|
|
81
|
+
password_confirmation: "Bevestiging van uw nieuwe wachtwoord"
|
|
82
|
+
|
|
83
|
+
pages:
|
|
84
|
+
index:
|
|
85
|
+
title: Pagina overzicht
|
|
86
|
+
help: "Pagina's zijn georganiseerd als een boom. U kunt zowel pagina's als mappen ordenen"
|
|
87
|
+
no_items: "Er zijn momenteel geen pagina's. Klik <a href=\"%{url}\">hier</a> om de eerste pagina te maken."
|
|
88
|
+
new: Nieuwe pagina
|
|
89
|
+
latest_entries: "Laatste pagina's"
|
|
90
|
+
new:
|
|
91
|
+
title: Nieuwe pagina
|
|
92
|
+
help: "Voer onderstaande formulier in om uw pagina te maken. Opgelet, de pagina is niet gepubliseerd"
|
|
93
|
+
page:
|
|
94
|
+
updated_at: gewijzigd op
|
|
95
|
+
edit:
|
|
96
|
+
show: toon
|
|
97
|
+
help: "De paginatitel kan gewijzigd worden door er op te klikken."
|
|
98
|
+
ask_for_title: "Typ de nieuwe paginatitel in"
|
|
99
|
+
form:
|
|
100
|
+
delete_file: Verwijder bestand
|
|
101
|
+
default_block: Standaard
|
|
102
|
+
cache_strategy:
|
|
103
|
+
none: Geen
|
|
104
|
+
simple: Simpel
|
|
105
|
+
hour: 1 uur
|
|
106
|
+
day: 1 dag
|
|
107
|
+
week: 1 week
|
|
108
|
+
month: 1 maand
|
|
109
|
+
|
|
110
|
+
snippets:
|
|
111
|
+
index:
|
|
112
|
+
title: Overzicht fragmenten
|
|
113
|
+
help: "Fragmenten zijn stukken HTML code, welke gevonden kunnen worden op verschillende delen van de website (zoals een voettekst)."
|
|
114
|
+
no_items: "Er zijn momenteel geen fragmenten Klik <a href=\"%{url}\">here</a> om de eerste te maken."
|
|
115
|
+
new: nieuw fragment
|
|
116
|
+
new:
|
|
117
|
+
title: Nieuw fragment
|
|
118
|
+
help: "Vul onderstaande formulier in om het fragment te wijzigen."
|
|
119
|
+
edit:
|
|
120
|
+
title: Wijzig fragment
|
|
121
|
+
help: "Vul onderstaande formulier in om het fragment te wijzigen."
|
|
122
|
+
snippet:
|
|
123
|
+
updated_at: Gewijzigd op
|
|
124
|
+
|
|
125
|
+
sites:
|
|
126
|
+
new:
|
|
127
|
+
title: Nieuwe website
|
|
128
|
+
help: "Vul onderstaande formulier in om uw nieuwe website aan te maken."
|
|
129
|
+
|
|
130
|
+
current_site:
|
|
131
|
+
edit:
|
|
132
|
+
import: importeren
|
|
133
|
+
new_membership: voeg account toe
|
|
134
|
+
help: "De website kan worden gewijzigd door er op te klikken."
|
|
135
|
+
ask_for_name: "Voer de nieuwe website naam in."
|
|
136
|
+
|
|
137
|
+
memberships:
|
|
138
|
+
new:
|
|
139
|
+
title: Nieuw lidmaatschap
|
|
140
|
+
help: "Geef het emailaccount op dat u wilt toevoegen. Als het account niet bestaat, dan wordt u doorgestuurd naar het aanmaakformulier."
|
|
141
|
+
|
|
142
|
+
accounts:
|
|
143
|
+
new:
|
|
144
|
+
title: Nieuw account
|
|
145
|
+
help: "Vul onderstaande formulier in om een nieuw account aan te maken"
|
|
146
|
+
|
|
147
|
+
my_account:
|
|
148
|
+
edit:
|
|
149
|
+
help: "Uw naam kan gewijzigd worden door het aan te klikken"
|
|
150
|
+
new_site: nieuwe website
|
|
151
|
+
en: Engels
|
|
152
|
+
de: Duits
|
|
153
|
+
fr: Frans
|
|
154
|
+
pt-BR: "Braziliaans Portugees"
|
|
155
|
+
it: Italiaans
|
|
156
|
+
nl: Nederlands
|
|
157
|
+
nb: Noors
|
|
158
|
+
ru: Russisch
|
|
159
|
+
et: Estlands
|
|
160
|
+
ask_for_name: "Voer uw nieuwe naam in"
|
|
161
|
+
|
|
162
|
+
theme_assets:
|
|
163
|
+
index:
|
|
164
|
+
title: Overzicht thema bestanden
|
|
165
|
+
help: "De thema bestanden sectie is de plaats waar je bestanden kan beheren die benodigd zijn voor de opmaak, ...etc. Ga naar de bronbestanden sectie als u een afbeeldingen wilt beheren."
|
|
166
|
+
all: alle brondbestanden
|
|
167
|
+
new: nieuw bestand
|
|
168
|
+
snippets: Fragmenten
|
|
169
|
+
css_and_js: Stijlen en javascripts
|
|
170
|
+
fonts: Lettertypes
|
|
171
|
+
images: Afbeeldingen
|
|
172
|
+
media: Media
|
|
173
|
+
no_items: "Er zijn momenteel geen bestanden. Klik <a href=\"%{url}\">hier</a> om de eerste aan te maken."
|
|
174
|
+
asset:
|
|
175
|
+
updated_at: Gewijzigd op
|
|
176
|
+
new:
|
|
177
|
+
title: Nieuw bestand
|
|
178
|
+
help: "U heeft de keuze om of een bestand te uploaden of om een stylesheet of javascript in platte tekst te te kopiëren/plakken."
|
|
179
|
+
edit:
|
|
180
|
+
title: "Bewerk %{file}"
|
|
181
|
+
help: "Dit bronbestand is alleen toegankelijk via de volgende url: <a href='%{url}'>%{url}</a>"
|
|
182
|
+
form:
|
|
183
|
+
picker_link: Plaats een bestand in de code
|
|
184
|
+
choose_file: Kies bestand
|
|
185
|
+
choose_plain_text: Kies platte tekst
|
|
186
|
+
images:
|
|
187
|
+
title: Overzicht afbeeldingen
|
|
188
|
+
no_items: "Er zijn momenteel geen bestanden."
|
|
189
|
+
|
|
190
|
+
assets:
|
|
191
|
+
new:
|
|
192
|
+
title: Nieuw bronbestand
|
|
193
|
+
help: "Vul onderstaande formulier in om een nieuw bronbestand te maken."
|
|
194
|
+
edit:
|
|
195
|
+
title: Wijzig bronbestand
|
|
196
|
+
help: "Vul onderstaande formulier in om uw bronbestand te wijzigen."
|
|
197
|
+
|
|
198
|
+
content_types:
|
|
199
|
+
index:
|
|
200
|
+
new: nieuw model
|
|
201
|
+
new:
|
|
202
|
+
title: Nieuw model
|
|
203
|
+
help: "Maak uw eigen data model aan (Projecten, Mensen, ...etc). Uw model moet tenminste 1 veld bevatten. Het eerste veld moet verplicht zijn voor de items gemaakt voor dit content type."
|
|
204
|
+
edit:
|
|
205
|
+
title: Wijzig model
|
|
206
|
+
help: "Uw data model moet tenminste 1 veld bevatten. Het eerste veld moet verplicht zijn voor de items gemaakt voor dit content type."
|
|
207
|
+
show_items: toon items
|
|
208
|
+
new_item: nieuw item
|
|
209
|
+
form:
|
|
210
|
+
order_by:
|
|
211
|
+
created_at: 'Door "gemaakt op" datum'
|
|
212
|
+
updated_at: 'Door "gewijzigd op" datum'
|
|
213
|
+
position_in_list: Handmatig
|
|
214
|
+
order_direction:
|
|
215
|
+
asc: Oplopend
|
|
216
|
+
desc: Aflopend
|
|
217
|
+
|
|
218
|
+
content_entries:
|
|
219
|
+
index:
|
|
220
|
+
title: 'Toon "%{type}"'
|
|
221
|
+
edit: wijzig model
|
|
222
|
+
destroy: verwijder model
|
|
223
|
+
download: download items
|
|
224
|
+
new: nieuw item
|
|
225
|
+
category_noname: "Geen naam"
|
|
226
|
+
latest_entries: "Laatste items"
|
|
227
|
+
updated_at: "Gewijzigd op"
|
|
228
|
+
list:
|
|
229
|
+
no_entries: "Er zijn momenteel geen items. Klik hier <a href=\"%{url}\">here</a> om de eerste te maken."
|
|
230
|
+
new:
|
|
231
|
+
title: '%{type} — nieuw item'
|
|
232
|
+
edit:
|
|
233
|
+
title: '%{type} — wijzig item'
|
|
234
|
+
form:
|
|
235
|
+
has_many:
|
|
236
|
+
new_item: Nieuw item
|
|
237
|
+
|
|
238
|
+
image_picker:
|
|
239
|
+
link: Voeg een afbeelding toe aan de code
|
|
240
|
+
|
|
241
|
+
cross_domain_sessions:
|
|
242
|
+
new:
|
|
243
|
+
title: Authenticatie voor verschillende domeinen
|
|
244
|
+
notice: U wordt binnen enkele seconden doorgestuurd naar de website.
|
|
245
|
+
|
|
246
|
+
imports:
|
|
247
|
+
new:
|
|
248
|
+
title: Importeer website template
|
|
249
|
+
help: "Wees voorzichtig wanneer je een nieuwe template upload voor uw bestaande website, omdat de bestaande data kan worden aangepast of verwijderd."
|
|
250
|
+
show:
|
|
251
|
+
title: Importeren in uitvoering
|
|
252
|
+
help: "Uw website wordt momenteel gewijzigd door het thema .zip-bestand die u zojuist heeft geupload. Dit duurt een aantal seconden."
|
|
253
|
+
steps:
|
|
254
|
+
site: Website informatie
|
|
255
|
+
content_types: aangepaste content typen
|
|
256
|
+
assets: Thema bestanden
|
|
257
|
+
snippets: Fragmenten
|
|
258
|
+
pages: Pagina's'
|
|
259
|
+
messages:
|
|
260
|
+
success: "Uw website is succesvol gewijzigd."
|
|
261
|
+
failure: "Het importeren is niet gelukt."
|
|
262
|
+
|
|
263
|
+
installation:
|
|
264
|
+
common:
|
|
265
|
+
title: Eerste Locomotive Installatie
|
|
266
|
+
next: Volgende
|
|
267
|
+
step_1:
|
|
268
|
+
title: "Stap 1/2 — Account aanmaken"
|
|
269
|
+
name: Account naam
|
|
270
|
+
email: E-mail
|
|
271
|
+
password: Wachtwoord
|
|
272
|
+
password_confirmation: Wachtwoord bevestiging
|
|
273
|
+
done: "U heeft al een account toegevoegd:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
274
|
+
next: Account aanmaken
|
|
275
|
+
step_2:
|
|
276
|
+
title: "Stap 2/2 — Maak u eerste website"
|
|
277
|
+
explanations: "U kunt de template gelijk gebruiken, als u reeds de standaard website template heeft geupload. Of u kunt een website template uploaden als .zip bestand (gratis beschikbare templates <a href=\"http://www.locomotivecms.com/support/themes\">hier</a>)."
|
|
278
|
+
back_to_default_template: "Klik <a href='#'>here</a> om de standaard website te selecteren"
|
|
279
|
+
next: Maak website aan
|