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,319 @@
|
|
|
1
|
+
pl:
|
|
2
|
+
locomotive:
|
|
3
|
+
buttons:
|
|
4
|
+
login: Zaloguj się
|
|
5
|
+
send_password: Prześlij
|
|
6
|
+
change_password: Zmień
|
|
7
|
+
new_item: "+ dodaj"
|
|
8
|
+
switch_to_site: Dalej
|
|
9
|
+
delete: "Usuń"
|
|
10
|
+
close: "Zamknij"
|
|
11
|
+
|
|
12
|
+
locales:
|
|
13
|
+
en: angielski
|
|
14
|
+
de: niemiecki
|
|
15
|
+
fr: francuski
|
|
16
|
+
pl: polski
|
|
17
|
+
pt-BR: "portugalski (brazylijski)"
|
|
18
|
+
it: włoski
|
|
19
|
+
nl: niderlandzki
|
|
20
|
+
nb: norweski
|
|
21
|
+
es: hiszpański
|
|
22
|
+
ru: rosyjski
|
|
23
|
+
et: estoński
|
|
24
|
+
|
|
25
|
+
messages:
|
|
26
|
+
confirm: Na pewno ?
|
|
27
|
+
sending_form: Twój formularz jest przesyłany
|
|
28
|
+
|
|
29
|
+
shared:
|
|
30
|
+
header:
|
|
31
|
+
welcome: Witaj, %{name}
|
|
32
|
+
see: Obejrzyj stronę
|
|
33
|
+
switch: Przełącz na inną stronę
|
|
34
|
+
help: Pomoc
|
|
35
|
+
logout: Wyloguj
|
|
36
|
+
menu:
|
|
37
|
+
contents: Zawartość
|
|
38
|
+
assets: Zasoby
|
|
39
|
+
settings: Ustawienia
|
|
40
|
+
pages: Strony
|
|
41
|
+
snippets: Wstawki
|
|
42
|
+
account: Moje konto
|
|
43
|
+
site: Witryna
|
|
44
|
+
theme_assets: Pliki motywów
|
|
45
|
+
form:
|
|
46
|
+
change_file: zmień
|
|
47
|
+
delete_file: usuń
|
|
48
|
+
cancel: anuluj
|
|
49
|
+
form_actions:
|
|
50
|
+
back: Wróć bez zapisywania
|
|
51
|
+
create: Utwórz
|
|
52
|
+
update: Zapisz
|
|
53
|
+
send: Wyślij
|
|
54
|
+
disable_with: Oczekiwanie...
|
|
55
|
+
list:
|
|
56
|
+
untranslated: nieprzetłumaczone
|
|
57
|
+
footer:
|
|
58
|
+
who_is_behind: "LocomotiveCMS jest rozwijany przez %{development} i projektowany przez <a href=\"http://www.sachagreif.com\">Sachę Greifa</a> — <small>wersja</small> %{version}"
|
|
59
|
+
|
|
60
|
+
errors:
|
|
61
|
+
"500":
|
|
62
|
+
title: Błąd aplikacji
|
|
63
|
+
notice: "Przepraszamy, ale coś poszło nie tak"
|
|
64
|
+
link: "→ Powrót do aplikacji"
|
|
65
|
+
"404":
|
|
66
|
+
title: Strona nie znaleziona
|
|
67
|
+
notice: "Żądana przez Ciebie strona nie istnieje."
|
|
68
|
+
link: "→ Powrót do aplikacji"
|
|
69
|
+
|
|
70
|
+
notifications:
|
|
71
|
+
new_content_entry:
|
|
72
|
+
subject: "[%{domain}][%{type}] nowy wpis"
|
|
73
|
+
title: "Cześć %{name}, dnia %{date} w witrynie <b>%{domain}</b> pojawiła się nowa zawartość."
|
|
74
|
+
type: "Model: %{type}"
|
|
75
|
+
|
|
76
|
+
sites_picker:
|
|
77
|
+
new: + nowa witryna
|
|
78
|
+
|
|
79
|
+
custom_fields:
|
|
80
|
+
edit:
|
|
81
|
+
title: Edycja pola własnego
|
|
82
|
+
text_formatting:
|
|
83
|
+
none: brak
|
|
84
|
+
html: HTML
|
|
85
|
+
types:
|
|
86
|
+
file:
|
|
87
|
+
delete_file: Usuń plik
|
|
88
|
+
has_many:
|
|
89
|
+
empty: Lista jest pusta
|
|
90
|
+
new_entry: + Dodaj nową pozycję
|
|
91
|
+
many_to_many:
|
|
92
|
+
empty: "Lista jest pusta. Dodaj pozycję, używając poniższego pola wyboru."
|
|
93
|
+
|
|
94
|
+
form:
|
|
95
|
+
required: wymagane
|
|
96
|
+
default_label: Nazwa pola
|
|
97
|
+
select_options:
|
|
98
|
+
ask_name: "Wprowadź nazwę etykiety dla opcji"
|
|
99
|
+
|
|
100
|
+
sessions:
|
|
101
|
+
new:
|
|
102
|
+
title: Zaloguj się
|
|
103
|
+
link: "I forgot my password"
|
|
104
|
+
email: "Email"
|
|
105
|
+
password: "Password"
|
|
106
|
+
|
|
107
|
+
passwords:
|
|
108
|
+
new:
|
|
109
|
+
title: Przypomnienie hasła
|
|
110
|
+
link: "→ Powrót do strony logowania"
|
|
111
|
+
email: "Twój adres e-mailowy"
|
|
112
|
+
edit:
|
|
113
|
+
title: Ustawianie hasła
|
|
114
|
+
link: "→ Powrót do strony logowania"
|
|
115
|
+
password: "Twoje nowe hasło"
|
|
116
|
+
password_confirmation: "Powtórzenie Twojego nowego hasła"
|
|
117
|
+
|
|
118
|
+
pages:
|
|
119
|
+
index:
|
|
120
|
+
title: Wykaz stron
|
|
121
|
+
help: "Strony zorganizowane są w drzewiastej strukturze. Zarówno kolejność stron, jak i folderów, może być zmieniana."
|
|
122
|
+
no_items: "Nie ma jeszcze stron. Kliknij <a href=\"%{url}\">tutaj</a>, aby utworzyć pierwszą."
|
|
123
|
+
new: nowa strona
|
|
124
|
+
latest_entries: Ostatnie strony
|
|
125
|
+
new:
|
|
126
|
+
title: Nowa strona
|
|
127
|
+
help: "Wypełnij pola poniższego formularza, aby utworzyć stronę. Zauważ, że strona nie będzie od razu opublikowana."
|
|
128
|
+
page:
|
|
129
|
+
updated_at: zaktualizowano
|
|
130
|
+
edit:
|
|
131
|
+
show: pokaż
|
|
132
|
+
help: "Możesz zmienić tytuł strony, klikając go. Użyj przycisku \"Zapisz\", aby zatwierdzić zmiany."
|
|
133
|
+
ask_for_title: "Wprowadź tytuł strony"
|
|
134
|
+
form:
|
|
135
|
+
change_file: zmień
|
|
136
|
+
delete_file: usuń
|
|
137
|
+
cancel: anuluj
|
|
138
|
+
default_block: Domyślny
|
|
139
|
+
cache_strategy:
|
|
140
|
+
none: brak
|
|
141
|
+
simple: proste
|
|
142
|
+
hour: 1 godzina
|
|
143
|
+
day: 1 dzień
|
|
144
|
+
week: 1 tydzień
|
|
145
|
+
month: 1 miesiąc
|
|
146
|
+
|
|
147
|
+
snippets:
|
|
148
|
+
index:
|
|
149
|
+
title: Wykaz wstawek
|
|
150
|
+
help: "Wstawki to porcje kodu HTML, które mogą znajdować się w różnych miejscach strony (np. w stopce)."
|
|
151
|
+
no_items: "Nie ma jeszcze żadnych wstawek. Kliknij <a href=\"%{url}\">tutaj</a>, aby utworzyć pierwszą."
|
|
152
|
+
new: nowa wstawka
|
|
153
|
+
new:
|
|
154
|
+
title: Nowa wstawka
|
|
155
|
+
help: "Wypełnij pola poniższego formularza, aby utworzyć wstawkę."
|
|
156
|
+
edit:
|
|
157
|
+
title: Edycja wstawki
|
|
158
|
+
help: "Użyj następującego kodu liquid, aby zawrzeć wstawkę w szablonie strony: <span class='code'>{% include '%{slug}' %}</span>."
|
|
159
|
+
snippet:
|
|
160
|
+
updated_at: zaktualizowano
|
|
161
|
+
|
|
162
|
+
sites:
|
|
163
|
+
new:
|
|
164
|
+
title: Nowa witryna
|
|
165
|
+
help: "Wypełnij pola poniższego formularza, aby utworzyć witrynę."
|
|
166
|
+
domains:
|
|
167
|
+
empty: "Do tej witryny nie przypisano jeszcze żadnych nazw domenowych. Poniżej możesz je dodać. <b>Nie zapomnij o zaktualizowaniu wpisów w DNS.</b>"
|
|
168
|
+
|
|
169
|
+
current_site:
|
|
170
|
+
edit:
|
|
171
|
+
new_membership: dodaj konto
|
|
172
|
+
help: "Możesz zmienić nazwę witryny, klikając ją. Użyj przycisku \"Zapisz\", aby zatwierdzić zmiany."
|
|
173
|
+
ask_for_name: "Wprowadź nową nazwę witryny"
|
|
174
|
+
|
|
175
|
+
memberships:
|
|
176
|
+
roles:
|
|
177
|
+
admin: Administrator
|
|
178
|
+
designer: Projektant
|
|
179
|
+
author: Autor
|
|
180
|
+
new:
|
|
181
|
+
title: Nowe członkostwo
|
|
182
|
+
help: "Podaj e-mail skojarzony z kontem. Jeśli jeszcze nie istnieje, nastąpi przekierowanie do formularza tworzenia konta."
|
|
183
|
+
|
|
184
|
+
accounts:
|
|
185
|
+
new:
|
|
186
|
+
title: Nowe konto
|
|
187
|
+
help: "Wypełnij pola poniższego formularza, aby dodać konto."
|
|
188
|
+
|
|
189
|
+
my_account:
|
|
190
|
+
edit:
|
|
191
|
+
help: "Możesz zmienić własną nazwę, klikając ją. Użyj przycisku \"Zapisz\", aby zatwierdzić zmiany."
|
|
192
|
+
new_site: nowa witryna
|
|
193
|
+
ask_for_name: "Wprowadź nową nazwę"
|
|
194
|
+
|
|
195
|
+
theme_assets:
|
|
196
|
+
picker:
|
|
197
|
+
updated_at: zaktualizowano
|
|
198
|
+
|
|
199
|
+
index:
|
|
200
|
+
title: Wykaz plików motywów
|
|
201
|
+
help: "Sekcja zawierająca pliki należące do motywów jest miejscem, gdzie możesz zarządzać zbiorami wykorzystywanymi w układzie graficznym, we wstawkach, itd. Są to zasoby używane przy projektowaniu wyglądu witryny, więc jeśli chcesz po prostu zarządzać galerią obrazów, to utwórz nowy typ zawartości, zamiast dodawać elementy tutaj. <b>Uwaga:</b> możesz nie widzieć wszystkich zasobów; zależy to od Twoich uprawnień."
|
|
202
|
+
quick_upload: szybka wysyłka
|
|
203
|
+
new: nowy plik
|
|
204
|
+
snippets: Wstawki
|
|
205
|
+
css_and_js: Style i skrypty
|
|
206
|
+
fonts: Czcionki ekranowe
|
|
207
|
+
images: Obrazy
|
|
208
|
+
media: Media
|
|
209
|
+
no_items: "Nie ma jeszcze żadnych plików."
|
|
210
|
+
asset:
|
|
211
|
+
updated_at: zaktualizowano
|
|
212
|
+
new:
|
|
213
|
+
title: Nowy plik
|
|
214
|
+
help: "Możesz przesłać plik, albo wkleić tekstową zawartość arkusza stylów lub skryptu JS."
|
|
215
|
+
edit:
|
|
216
|
+
title: "Edycja %{file}"
|
|
217
|
+
help: "Ten zasób jest bezpośrednio dostępny z użyciem łańcucha url: <a href='%{url}'>%{url}</a>"
|
|
218
|
+
help_image: "Użyj następującego kodu liquid, aby umieścić obraz w szablonach stron lub wstawkach: <span class='code'>{{ '%{path}' | theme_image_tag }}</span>.<br/>Wymiary bieżącego obrazu: <b>%{width}px x %{height}px</b>.<br/>"
|
|
219
|
+
help_javascript: "Użyj następującego kodu liquid, aby umieścić odwołanie do kodu javascript w szablonach stron lub wstawkach: <span class='code'>{{ '%{path}' | javascript_tag }}</span>.<br/>"
|
|
220
|
+
help_stylesheet: "Użyj następującego kodu liquid, aby umieścić odwołanie do arkusza stylów w szablonach stron lub wstawkach: <span class='code'>{{ '%{path}' | stylesheet_tag }}</span>.<br/>"
|
|
221
|
+
form:
|
|
222
|
+
picker_link: Wstaw plik do kodu
|
|
223
|
+
choose_file: Wybierz plik
|
|
224
|
+
choose_plain_text: Wybierz zwykły tekst
|
|
225
|
+
image_picker:
|
|
226
|
+
title: "Wstaw obraz motywu"
|
|
227
|
+
no_items: "Nie ma jeszcze żadnych obrazów."
|
|
228
|
+
upload: "Prześlij obrazy motywu"
|
|
229
|
+
|
|
230
|
+
content_assets:
|
|
231
|
+
picker:
|
|
232
|
+
title: "Wstaw medium"
|
|
233
|
+
no_items: "Nie ma jeszcze żadnych mediów."
|
|
234
|
+
upload: "Prześlij medium"
|
|
235
|
+
updated_at: zaktualizowano
|
|
236
|
+
|
|
237
|
+
content_types:
|
|
238
|
+
index:
|
|
239
|
+
new: nowy model
|
|
240
|
+
edit: edytuj model
|
|
241
|
+
new:
|
|
242
|
+
title: Nowy model
|
|
243
|
+
help: "Stwórz własny model danych (Projects, People, ..., itp). Twój model powinien mieć przynajmniej jedno pole. Jego wypełnienie będzie obowiązkowe we wpisach tworzonych w oparciu o ten stworzony typ zawartości."
|
|
244
|
+
edit:
|
|
245
|
+
title: Edycja modelu
|
|
246
|
+
help: "Twój model powinien mieć przynajmniej jedno pole. Jego wypełnienie będzie obowiązkowe we wpisach tworzonych w oparciu o ten stworzony typ zawartości."
|
|
247
|
+
show_entries: pokaż pozycje
|
|
248
|
+
new_entry: nowa pozycja
|
|
249
|
+
form:
|
|
250
|
+
order_by:
|
|
251
|
+
created_at: 'daty utworzenia'
|
|
252
|
+
updated_at: 'daty aktualizacji'
|
|
253
|
+
position_in_list: ręcznie
|
|
254
|
+
order_direction:
|
|
255
|
+
asc: rosnąco
|
|
256
|
+
desc: malejąco
|
|
257
|
+
|
|
258
|
+
content_entries:
|
|
259
|
+
index:
|
|
260
|
+
title: 'Wykaz "%{type}"'
|
|
261
|
+
edit: edycja modelu
|
|
262
|
+
destroy: usuwanie modelu
|
|
263
|
+
download: pobieranie treści
|
|
264
|
+
new: nowa pozycja
|
|
265
|
+
category_noname: "Brak nazwy"
|
|
266
|
+
latest_entries: "Ostatnie pozycje"
|
|
267
|
+
updated_at: "zaktualizowano"
|
|
268
|
+
list:
|
|
269
|
+
no_items: "Nie ma jeszcze żadnych pozycji. Kliknij <a href=\"%{url}\">tutaj</a>, aby utworzyć pierwszą."
|
|
270
|
+
new:
|
|
271
|
+
title: '%{type} — nowa treść'
|
|
272
|
+
edit:
|
|
273
|
+
title: '%{type} — edycja treści'
|
|
274
|
+
form:
|
|
275
|
+
edit_select_options: edycja opcji
|
|
276
|
+
has_many:
|
|
277
|
+
new_entry: Nowa treść
|
|
278
|
+
|
|
279
|
+
image_picker:
|
|
280
|
+
link: Wstaw obraz do kodu
|
|
281
|
+
|
|
282
|
+
cross_domain_sessions:
|
|
283
|
+
new:
|
|
284
|
+
title: Uwierzytelnianie międzydomenowe
|
|
285
|
+
notice: W ciągu kilku sekund następi przekierowanie do strony.
|
|
286
|
+
|
|
287
|
+
installation:
|
|
288
|
+
common:
|
|
289
|
+
title: Pierwsza instalacja Locomotive
|
|
290
|
+
next: Następny
|
|
291
|
+
step_1:
|
|
292
|
+
title: "Krok 1/2 — Tworzenie konta"
|
|
293
|
+
name: Nazwa konta
|
|
294
|
+
email: Adres e-mailowy
|
|
295
|
+
password: Hasło
|
|
296
|
+
password_confirmation: Powtórzenie hasła
|
|
297
|
+
done: "Dodano już konto:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
298
|
+
next: Utwórz konto
|
|
299
|
+
step_2:
|
|
300
|
+
title: "Krok 2/2 — Tworzenie pierwszej witryny"
|
|
301
|
+
explanations: "Prawie skończyliśmy. Wprowadź proszę nazwę pierwszej witryny i wybierz domyślny język."
|
|
302
|
+
default_site_locale: Język witryny
|
|
303
|
+
default_site_locales_hints: "Możesz później dodać więcej języków, korzystając z panelu ustawień."
|
|
304
|
+
next: Utwórz witrynę
|
|
305
|
+
|
|
306
|
+
public:
|
|
307
|
+
pages:
|
|
308
|
+
show_toolbar:
|
|
309
|
+
statuses:
|
|
310
|
+
loading: "Ładowanie...."
|
|
311
|
+
disabled: "Wbudowany edytor jest wyłączony"
|
|
312
|
+
labels:
|
|
313
|
+
save_changes: "Zapisz zmiany: "
|
|
314
|
+
editing_mode: "Tryb edycji: "
|
|
315
|
+
lang: "Język: "
|
|
316
|
+
buttons:
|
|
317
|
+
back: Zwróć do zaplecza
|
|
318
|
+
confirm: Potwierdź
|
|
319
|
+
cancel: Anuluj
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
pt-BR:
|
|
2
|
+
locomotive:
|
|
3
|
+
buttons:
|
|
4
|
+
login: Entrar
|
|
5
|
+
send_password: Enviar
|
|
6
|
+
change_password: Mudar
|
|
7
|
+
new_item: "+ adicionar"
|
|
8
|
+
switch_to_site: Ir
|
|
9
|
+
|
|
10
|
+
messages:
|
|
11
|
+
confirm: Você tem certeza ?
|
|
12
|
+
sending_form: "locomotive.messages.sending_form"
|
|
13
|
+
|
|
14
|
+
shared:
|
|
15
|
+
header:
|
|
16
|
+
welcome: Bem-Vindo, %{name}
|
|
17
|
+
see: Ver websiste
|
|
18
|
+
logout: Sair
|
|
19
|
+
menu:
|
|
20
|
+
contents: Conteúdos
|
|
21
|
+
assets: Arquivos
|
|
22
|
+
settings: Configurações
|
|
23
|
+
pages: Páginas
|
|
24
|
+
snippets: Blocos de código
|
|
25
|
+
account: Minha Conta
|
|
26
|
+
site: Site
|
|
27
|
+
theme_assets: Arquivos do Tema
|
|
28
|
+
footer:
|
|
29
|
+
who_is_behind: "Desenvovido por %{development} e desenhado por <a href=\"http://www.sachagreif.com\">Sacha Greif</a>"
|
|
30
|
+
form_actions:
|
|
31
|
+
back: Voltar sem salvar
|
|
32
|
+
create: Criar
|
|
33
|
+
update: Atualizar
|
|
34
|
+
send: Enviar
|
|
35
|
+
disable_with: "locomotive.disable_with.form_actions"
|
|
36
|
+
|
|
37
|
+
errors:
|
|
38
|
+
"500":
|
|
39
|
+
title: Erro de aplicação
|
|
40
|
+
notice: "Desculpe-nos, algo não está funcionando como deveria"
|
|
41
|
+
link: "→ Voltar a aplicação"
|
|
42
|
+
"404":
|
|
43
|
+
title: Página não encontrada
|
|
44
|
+
notice: "A página requisitada não existe."
|
|
45
|
+
link: "→ Voltar a aplicação"
|
|
46
|
+
|
|
47
|
+
notifications:
|
|
48
|
+
new_content_entry:
|
|
49
|
+
subject: "[%{domain}] Novo [%{type}] "
|
|
50
|
+
title: "Olá %{name}, apenas informando que uma nova instância foi criada em %{date}"
|
|
51
|
+
type: "Modelo: %{type}"
|
|
52
|
+
|
|
53
|
+
custom_fields:
|
|
54
|
+
edit:
|
|
55
|
+
title: Editando campo customizado
|
|
56
|
+
text_formatting:
|
|
57
|
+
none: Nenhum
|
|
58
|
+
html: HTML
|
|
59
|
+
types:
|
|
60
|
+
file:
|
|
61
|
+
delete_file: Excluir arquivo
|
|
62
|
+
|
|
63
|
+
sessions:
|
|
64
|
+
new:
|
|
65
|
+
title: Login
|
|
66
|
+
link: "Esqueci minha senha"
|
|
67
|
+
email: "Email"
|
|
68
|
+
password: "Senha"
|
|
69
|
+
|
|
70
|
+
passwords:
|
|
71
|
+
new:
|
|
72
|
+
title: Esqueci minha senha
|
|
73
|
+
link: "→ Voltar a página de login"
|
|
74
|
+
email: "Seu email"
|
|
75
|
+
edit:
|
|
76
|
+
title: Atualizar minha senha
|
|
77
|
+
link: "→ Voltar a página de login"
|
|
78
|
+
password: "Sua nova senha"
|
|
79
|
+
password_confirmation: "Confirmação da sua nova senha"
|
|
80
|
+
|
|
81
|
+
pages:
|
|
82
|
+
index:
|
|
83
|
+
title: Listando páginas
|
|
84
|
+
help: "As páginas são organizadas como uma árvore. Você pode reordenar as páginas como se fossem pastas"
|
|
85
|
+
no_items: "Não existe nenhuma página ainda. Clique <a href=\"%{url}\">aqui</a> para criar a primeira."
|
|
86
|
+
new: nova página
|
|
87
|
+
latest_entries: Últmas páginas
|
|
88
|
+
new:
|
|
89
|
+
title: Nova página
|
|
90
|
+
help: "Por favor, preencha o formulário a seguir para criar sua página. Atenção: Por padrão a página não é publicada."
|
|
91
|
+
page:
|
|
92
|
+
updated_at: atualizada em
|
|
93
|
+
edit:
|
|
94
|
+
show: mostrar
|
|
95
|
+
help: "O título da página pode ser alterado clicando nele."
|
|
96
|
+
ask_for_title: "Por favor preencha o novo título"
|
|
97
|
+
form:
|
|
98
|
+
delete_file: Excluir arquivo
|
|
99
|
+
default_block: Padrão
|
|
100
|
+
cache_strategy:
|
|
101
|
+
none: Nenhum
|
|
102
|
+
simple: Simples
|
|
103
|
+
hour: 1 hora
|
|
104
|
+
day: 1 dia
|
|
105
|
+
week: 1 semana
|
|
106
|
+
month: 1 mês
|
|
107
|
+
|
|
108
|
+
snippets:
|
|
109
|
+
index:
|
|
110
|
+
title: Listando Blocos de Código
|
|
111
|
+
help: "Blocos de código são alguns códigos HTML que pode sem encontrados em diferentes lugares do site e podem ser reutilizados ( como o rodapé )."
|
|
112
|
+
no_items: "Você ainda não tem blocos de código. Clique <a href=\"%{url}\">aqui</a> para criar o primeiro."
|
|
113
|
+
new: novo bloco
|
|
114
|
+
new:
|
|
115
|
+
title: Novo bloco
|
|
116
|
+
help: "Preecha o formulário a seguirar para atulizar o seu bloco de código."
|
|
117
|
+
edit:
|
|
118
|
+
title: Editing snippet
|
|
119
|
+
help: "Preecha o formulário a seguirar para atulizar o seu bloco de código."
|
|
120
|
+
snippet:
|
|
121
|
+
updated_at: Atualizado em
|
|
122
|
+
|
|
123
|
+
sites:
|
|
124
|
+
new:
|
|
125
|
+
title: Novo site
|
|
126
|
+
help: "Preencha o formulário a seguir para criar um novo site."
|
|
127
|
+
|
|
128
|
+
current_site:
|
|
129
|
+
edit:
|
|
130
|
+
import: importar
|
|
131
|
+
new_membership: adicionar conta
|
|
132
|
+
help: "O nome do site pode ser alterado clicando nele."
|
|
133
|
+
ask_for_name: "Por favor, digite o novo nome do site"
|
|
134
|
+
|
|
135
|
+
memberships:
|
|
136
|
+
new:
|
|
137
|
+
title: Novo usuário
|
|
138
|
+
help: "Por favor, forneça o e-mail que deseja adicionar. Se ele não exister, você será redirecionado para o formulário de criação."
|
|
139
|
+
|
|
140
|
+
accounts:
|
|
141
|
+
new:
|
|
142
|
+
title: Nova conta
|
|
143
|
+
help: "Preencha o formulário a seguir para criar uma nova conta."
|
|
144
|
+
|
|
145
|
+
my_account:
|
|
146
|
+
edit:
|
|
147
|
+
help: "Seu nome pode ser atualizado clicando nele."
|
|
148
|
+
new_site: novo site
|
|
149
|
+
en: Inglês
|
|
150
|
+
de: Alemão
|
|
151
|
+
fr: Francês
|
|
152
|
+
pl: Polonês
|
|
153
|
+
pt-BR: "Português do Brasil"
|
|
154
|
+
it: Italiano
|
|
155
|
+
nl: Holandês
|
|
156
|
+
nb: Norueguês
|
|
157
|
+
es: Espanhol
|
|
158
|
+
ru: Russo
|
|
159
|
+
et: Estoniano
|
|
160
|
+
ask_for_name: "Por favor preencha o novo nome"
|
|
161
|
+
|
|
162
|
+
theme_assets:
|
|
163
|
+
index:
|
|
164
|
+
title: Listando arquivos do tema
|
|
165
|
+
help: "Nesta seção todos os arquivos relacionados a layout são armazenados e gerenciados. Se você precisa de uma galeria de imagens, vá a seção de Arquivos."
|
|
166
|
+
new: novo arquivo
|
|
167
|
+
snippets: Blocos
|
|
168
|
+
css_and_js: CSS e Javascript
|
|
169
|
+
fonts: Fontes
|
|
170
|
+
images: Imagens
|
|
171
|
+
media: Mídia
|
|
172
|
+
no_items: "Ainda não existem arquivos. Clique <a href=\"%{url}\">aqui</a> para criar o primeiro."
|
|
173
|
+
asset:
|
|
174
|
+
updated_at: Atualizado em
|
|
175
|
+
new:
|
|
176
|
+
title: Novo arquivo
|
|
177
|
+
help: "Você pode escolher em enviar qualquer arquivo ou copiar/colar um arquivo de css/javascript em texto."
|
|
178
|
+
edit:
|
|
179
|
+
title: "Editando %{file}"
|
|
180
|
+
help: "Esse arquivo pode ser acessado pela seguinte URL: <a href='%{url}'>%{url}</a>"
|
|
181
|
+
form:
|
|
182
|
+
picker_link: Insira um arquivo no código
|
|
183
|
+
choose_file: Escolha um arquivo
|
|
184
|
+
choose_plain_text: Escolher texto plano
|
|
185
|
+
images:
|
|
186
|
+
title: Listando imagens
|
|
187
|
+
no_items: "Não existem imagens ainda."
|
|
188
|
+
|
|
189
|
+
assets:
|
|
190
|
+
new:
|
|
191
|
+
title: Novo arquivo
|
|
192
|
+
help: "Preencha o formulário a seguir para criar o seu arquivo."
|
|
193
|
+
edit:
|
|
194
|
+
title: Editar arquivo
|
|
195
|
+
help: "Preencha o formulário a seguir para atualizar o seu arquivo."
|
|
196
|
+
|
|
197
|
+
content_types:
|
|
198
|
+
index:
|
|
199
|
+
new: novo modelo
|
|
200
|
+
new:
|
|
201
|
+
title: Novo modelo
|
|
202
|
+
help: "Crie o seu próprio modelo de dados (Projetos, Pessoas, ...etc). Seu modelo deve conter um campo pelo menos. Os itens criados a partir desse tipo de conteúdo terão seu primeiro campo como obrigatório."
|
|
203
|
+
edit:
|
|
204
|
+
title: Editar modelo
|
|
205
|
+
help: "Seu modelo deve conter um campo pelo menos. Os itens criados a partir desse tipo de conteúdo terão seu primeiro campo como obrigatório."
|
|
206
|
+
show_items: mostrar itens
|
|
207
|
+
new_item: novo item
|
|
208
|
+
form:
|
|
209
|
+
order_by:
|
|
210
|
+
created_at: 'Por "criado em" data'
|
|
211
|
+
updated_at: 'Por "atualizado em" data'
|
|
212
|
+
position_in_list: Manual
|
|
213
|
+
|
|
214
|
+
content_entries:
|
|
215
|
+
index:
|
|
216
|
+
title: 'Listando "%{type}"'
|
|
217
|
+
edit: editar modelo
|
|
218
|
+
destroy: excluir modelo
|
|
219
|
+
download: download dos itens
|
|
220
|
+
new: novo item
|
|
221
|
+
category_noname: "Sem nome"
|
|
222
|
+
latest_entries: "Últimos itens"
|
|
223
|
+
updated_at: "Atualizado em"
|
|
224
|
+
list:
|
|
225
|
+
no_entries: "Não existem itens ainda. Clique <a href=\"%{url}\">aqui</a> para criar o primeiro."
|
|
226
|
+
new:
|
|
227
|
+
title: '%{type} — novo item'
|
|
228
|
+
edit:
|
|
229
|
+
title: '%{type} — editando item'
|
|
230
|
+
form:
|
|
231
|
+
has_many:
|
|
232
|
+
new_item: Novo item
|
|
233
|
+
|
|
234
|
+
image_picker:
|
|
235
|
+
link: Insira uma imagem no código
|
|
236
|
+
|
|
237
|
+
cross_domain_sessions:
|
|
238
|
+
new:
|
|
239
|
+
title: Autenticação por mútiplos domínios.
|
|
240
|
+
notice: Você será redirecionado para o site em alguns segundos.
|
|
241
|
+
|
|
242
|
+
import:
|
|
243
|
+
new:
|
|
244
|
+
title: Importar
|
|
245
|
+
help: "Tenha cuidado ao enviar um novo tema ao seu site que já existe, seus dados atuais podem ser atualizados ou até removidos."
|
|
246
|
+
show:
|
|
247
|
+
title: Importação em progresso
|
|
248
|
+
help: "Seu site está sendo atualizado pelo arquivo zip enviado. Irá demorar alguns segundos."
|
|
249
|
+
steps:
|
|
250
|
+
site: Informações do site
|
|
251
|
+
content_types: Tipos de Conteúdo customizados
|
|
252
|
+
assets: Arquivos do Tema
|
|
253
|
+
snippets: Blocos
|
|
254
|
+
pages: Páginas
|
|
255
|
+
messages:
|
|
256
|
+
success: "Seu site foi atualizado com sucesso"
|
|
257
|
+
failure: "A importação não funcionou."
|
|
258
|
+
|
|
259
|
+
installation:
|
|
260
|
+
common:
|
|
261
|
+
title: Primeira instalação do Locomotive
|
|
262
|
+
next: Próximo
|
|
263
|
+
step_1:
|
|
264
|
+
title: "Passo 1/2 — Criar conta"
|
|
265
|
+
name: Nome da Conta
|
|
266
|
+
email: Email
|
|
267
|
+
password: Senha
|
|
268
|
+
password_confirmation: Confirmação da Senha
|
|
269
|
+
done: "Você ja adicionou uma conta com:<br/><strong>%{name}</strong>, <em>%{email}</em>"
|
|
270
|
+
next: Criar Conta
|
|
271
|
+
step_2:
|
|
272
|
+
title: "Passo 2/2 — Criar primeiro site"
|
|
273
|
+
explanations: "Este é o último passo da instalação. Você pode enviar um tema como um arquivo zip. Nós temos alguns temas de graça para download <a href=\"http://www.locomotivecms.com/support/themes\">aqui</a>."
|
|
274
|
+
next: Criar Site
|