From 318d417a41ab971e7bbe1ae4ffbab9eff8c1ad57 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 09:53:08 +0200 Subject: [PATCH 01/26] Fix: modal.scss dark-mode compatibilitiy --- cms/static/cms/sass/components/_modal.scss | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/cms/static/cms/sass/components/_modal.scss b/cms/static/cms/sass/components/_modal.scss index e8297a29384..b710881cefe 100644 --- a/cms/static/cms/sass/components/_modal.scss +++ b/cms/static/cms/sass/components/_modal.scss @@ -1,6 +1,8 @@ //############################################################################## // MODAL +@use "sass:math"; + // Editing plugins in frontend .cms-modal { display: none; @@ -151,7 +153,7 @@ display: block; position: absolute; top: 50%; - margin-top: -$modal-header-button-area-size / 2; + margin-top: math.div(-$modal-header-button-area-size, 2); right: $padding-normal; color: $gray-light; text-align: center; @@ -160,7 +162,7 @@ cursor: pointer; &:before { position: relative; - top: ($modal-header-button-area-size - $icon-size) / 2; + top: math.div($modal-header-button-area-size - $icon-size, 2); } &:hover { color: $color-primary; @@ -223,7 +225,7 @@ a { color: $color-primary; &:hover { - color: darken($color-primary, 20%); + color: darken($color-primary-fallback, 20%); } &:after { content: "/"; @@ -250,7 +252,7 @@ padding: 0 $modal-resize-size 0 $padding-normal; } .cms-modal-item-buttons { - $margin: ($toolbar-height - $toolbar-button-height) / 2; + $margin: math.div($toolbar-height - $toolbar-button-height, 2); @extend .cms-toolbar-item-buttons; float: right; margin-left: $margin; @@ -266,10 +268,10 @@ // alter footer when html markup is loaded .cms-modal-markup { .cms-modal-foot { - height: $modal-footer-height / 2; + height: math.div($modal-footer-height, 2); } .cms-modal-body { - bottom: $modal-footer-height / 2; + bottom: math.div($modal-footer-height, 2); } } From 52322201a4eed5241979acde559da5c263b5ef69 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 09:56:18 +0200 Subject: [PATCH 02/26] Add: Build all assets as part of the frontend test --- .github/workflows/frontend.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index b3128905aee..a2f0b04550a 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -24,3 +24,5 @@ jobs: - run: | gulp unitTest gulp lint + gulp icons + gulp sass From 94cc9b0f5338daeaed062b87c182ed15ce29716c Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 09:58:40 +0200 Subject: [PATCH 03/26] fix: Better action feedback --- .github/workflows/frontend.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index a2f0b04550a..1277040bf11 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -24,5 +24,5 @@ jobs: - run: | gulp unitTest gulp lint - gulp icons - gulp sass + - run: gulp icons + - run: gulp sass From 4ab1f58cd939d0344a7ef750ce7a976b9718c8c9 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 10:08:26 +0200 Subject: [PATCH 04/26] fix: Update _modal.scss --- cms/static/cms/sass/components/_modal.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/static/cms/sass/components/_modal.scss b/cms/static/cms/sass/components/_modal.scss index b710881cefe..e2adf1e24cc 100644 --- a/cms/static/cms/sass/components/_modal.scss +++ b/cms/static/cms/sass/components/_modal.scss @@ -225,7 +225,7 @@ a { color: $color-primary; &:hover { - color: darken($color-primary-fallback, 20%); + filter: brightness(0.8); } &:after { content: "/"; From fcc2f7ad54c8abae72a838c3684dd2b69913b696 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 21:39:20 +0200 Subject: [PATCH 05/26] fix: Remove publish/draft reference from grouper admin message --- cms/templates/admin/cms/grouper/change_form.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/templates/admin/cms/grouper/change_form.html b/cms/templates/admin/cms/grouper/change_form.html index bf7ba03add8..7851573e7c7 100644 --- a/cms/templates/admin/cms/grouper/change_form.html +++ b/cms/templates/admin/cms/grouper/change_form.html @@ -14,7 +14,7 @@ {% endblock %} {% if content_instance.versions and content_instance.versions.first.state != "draft" %}
-

{% trans "Some fields cannot be changed since they are not draft content." %}

+

{% trans "Some fields cannot be changed since they are read-only content." %}

{% endif %} {{ block.super }} From 33fbdb18e5d43c162d6c628c2dc6ddba9c85e39f Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 21:46:36 +0200 Subject: [PATCH 06/26] fix ruff --- cms/utils/check.py | 2 +- cms/utils/encoder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/utils/check.py b/cms/utils/check.py index 793d267cae3..2aa913bdee1 100644 --- a/cms/utils/check.py +++ b/cms/utils/check.py @@ -208,7 +208,7 @@ def check_i18n(output): "'en_US'): '%s' provided" % lang[0]) if settings.SITE_ID == hash(settings.SITE_ID): for site, items in get_cms_setting('LANGUAGES').items(): - if type(site) == int: + if isinstance(site, int): for lang in items: if lang['code'].find('_') > -1: section.warn("CMS_LANGUAGES entries must contain valid language codes, not locales (e.g.: " diff --git a/cms/utils/encoder.py b/cms/utils/encoder.py index e1861f3041a..4f97eb651bb 100644 --- a/cms/utils/encoder.py +++ b/cms/utils/encoder.py @@ -10,7 +10,7 @@ def _recursive_escape(self, o, esc=conditional_escape): return type(o)((esc(k), self._recursive_escape(v)) for (k, v) in dict.items(o)) if isinstance(o, (list, tuple)): return type(o)(self._recursive_escape(v) for v in o) - if type(o) is bool: + if isinstance(o, bool): return o try: return type(o)(esc(o)) From d79eddc40f1ad95fd5d8af4adeda8d55055abca0 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 8 Aug 2023 22:03:45 +0200 Subject: [PATCH 07/26] Add Django 4.2 support to release notes --- docs/upgrade/4.1.0.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/upgrade/4.1.0.rst b/docs/upgrade/4.1.0.rst index 0d7b58cd48e..29ba59305d0 100644 --- a/docs/upgrade/4.1.0.rst +++ b/docs/upgrade/4.1.0.rst @@ -4,7 +4,7 @@ 4.1 release notes ***************** -*December 20, 2022* +*August 8, 2023* Welcome to django CMS 4.1! @@ -17,7 +17,7 @@ please urgently read the release notes of django CMS 4.0. Django and Python compatibility =============================== -django CMS supports **Django 3.2, 4.0, and 4.1**. We highly recommend and only +django CMS supports **Django 3.2, 4.0, 4.1, and 4.2**. We highly recommend and only support the latest release of each series. It supports **Python 3.8, 3.9, 3.10, and 3.11**. As for Django we highly recommend and only From 369f77689346b9689a4c9fba14a96d9bd85ac1f2 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Wed, 9 Aug 2023 10:08:12 +0200 Subject: [PATCH 08/26] Fix transifex-pull-strings --- scripts/transifex-pull-strings | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/transifex-pull-strings b/scripts/transifex-pull-strings index 96810c71c5f..e4a2ff73519 100755 --- a/scripts/transifex-pull-strings +++ b/scripts/transifex-pull-strings @@ -5,9 +5,10 @@ set -e SCRIPTS=$(dirname "$(realpath "$0")") ROOT=$(git rev-parse --show-toplevel) -cd "${ROOT}/cms" - +cd "${ROOT}" "${SCRIPTS}/tx" --token "$TX_TOKEN" pull --force + +cd "${ROOT}/cms" django-admin compilemessages "${SCRIPTS}/filter-locale-changes" From 06ecf3a8e8dee50afe4babdda78d1ae642e2b784 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 22 Aug 2023 22:54:29 +0200 Subject: [PATCH 09/26] fix: Update transifex source file (#7629) * Fix css glitch * Update translations source fill which was missing strings * Add migration for page content verbose name --- cms/locale/en/LC_MESSAGES/django.po | 941 ++++-------------- cms/migrations/0035_auto_20230822_2208.py | 17 + cms/models/contentmodels.py | 2 + cms/static/cms/sass/components/_dialog.scss | 2 +- .../cms/sass/components/_pluginpicker.scss | 11 +- cms/templates/admin/cms/page/tree/base.html | 2 +- 6 files changed, 222 insertions(+), 753 deletions(-) create mode 100644 cms/migrations/0035_auto_20230822_2208.py diff --git a/cms/locale/en/LC_MESSAGES/django.po b/cms/locale/en/LC_MESSAGES/django.po index 0cf35b395af..4c680caa39e 100644 --- a/cms/locale/en/LC_MESSAGES/django.po +++ b/cms/locale/en/LC_MESSAGES/django.po @@ -71,10 +71,8 @@ msgstr "Overwrite URL" msgid "Keep this field empty if standard path should be used." msgstr "Keep this field empty if standard path should be used." -#, fuzzy -#| msgid "softroot" msgid "Soft root" -msgstr "softroot" +msgstr "Soft root" msgid "All ancestors will not be displayed in the navigation" msgstr "All ancestors will not be displayed in the navigation" @@ -94,15 +92,11 @@ msgstr "menu visibility" msgid "limit when this page is visible in the menu" msgstr "limit when this page is visible in the menu" -#, fuzzy -#| msgid "Copy options" msgid "URL options" -msgstr "Copy options" +msgstr "URL options" -#, fuzzy -#| msgid "Copy options" msgid "Menu options" -msgstr "Copy options" +msgstr "Menu options" msgid "Application" msgstr "Application" @@ -116,10 +110,8 @@ msgstr "Application configurations" msgid "A page with this reverse URL id exists already." msgstr "A page with this reverse URL id exists already." -#, fuzzy -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "Application configurations" +msgstr "Invalid application config value" msgid "An application instance using this configuration already exists." msgstr "An application instance using this configuration already exists." @@ -128,13 +120,13 @@ msgid "An application instance with this name already exists." msgstr "An application instance with this name already exists." msgid "You can't move the home page inside another page" -msgstr "" +msgstr "You can't move the home page inside another page" msgid "Yes" -msgstr "" +msgstr "Yes" msgid "No" -msgstr "" +msgstr "No" msgid "user" msgstr "user" @@ -155,35 +147,47 @@ msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." msgstr "" +"Users can't create a page without permissions to change the created page. " +"Edit permissions required." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Users can't delete a page without permissions to change the page. Edit " +"permissions required." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." msgstr "" +"Users can't set page permissions without permissions to change a page. Edit " +"permissions required." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." msgstr "" +"Users can't delete page permissions without permissions to change a page. " +"Edit permissions required." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." msgstr "" +"Users can't create page permissions without permissions to change the " +"created permission. Edit permissions required." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." msgstr "" +"Users can't delete page permissions without permissions to change " +"permissions. Edit permissions required." #, python-format msgid "Invalid plugin type '%s'" -msgstr "" +msgstr "Invalid plugin type '%s'" msgid "Language must be set to a supported language!" msgstr "Language must be set to a supported language!" @@ -191,25 +195,22 @@ msgstr "Language must be set to a supported language!" msgid "Parent plugin language must be same as language!" msgstr "Parent plugin language must be same as language!" -#, fuzzy -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Parent plugin language must be same as language!" +msgstr "Parent plugin placeholder must be same as placeholder!" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "Plugin position must be greater than %(position)d" msgid "Advanced Settings" msgstr "Advanced Settings" msgid "The page is not eligible to be home." -msgstr "" +msgstr "The page is not eligible to be home." -#, fuzzy, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." +#, python-format msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "The %(name)s plugin \"%(obj)s\" was deleted successfully." +msgstr "The %(name)s \"%(obj)s\" was deleted successfully." #, python-format msgid "Cannot delete %(name)s" @@ -227,15 +228,15 @@ msgid "" msgstr "" "Error! You don't have permissions to move this page. Please reload the page" -#, fuzzy -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." -msgstr "You do not have permission to clear this placeholder" +msgstr "Error! You don't have permissions to copy this page." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." msgstr "" +"Error! The page you're pasting is not translated in any of the languages " +"configured by the target site." msgid "You do not have permission to edit this page" msgstr "You do not have permission to edit this page" @@ -261,39 +262,27 @@ msgstr "The template was successfully changed" msgid "You do not have permission to copy these plugins." msgstr "You do not have permission to copy these plugins." -#, fuzzy -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "You do not have permission to delete this plugin" +msgstr "You do not have permission to delete this page" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Title and plugins with language %(language)s was deleted" -#, fuzzy -#| msgid "" -#| "You do not have permission to change this page's in_navigation status" msgid "You do not have permission to change a page's navigation status" -msgstr "You do not have permission to change this page's in_navigation status" +msgstr "You do not have permission to change a page's navigation status" -#, fuzzy -#| msgid "" -#| "You do not have permission to change this page's in_navigation status" msgid "You cannot change this page's navigation status" -msgstr "You do not have permission to change this page's in_navigation status" +msgstr "You cannot change this page's navigation status" -#, fuzzy -#| msgid "no content" msgid "Public content" -msgstr "no content" +msgstr "Public content" msgid "Empty" msgstr "Empty" -#, fuzzy -#| msgid "Content" msgid "Create Content" -msgstr "Content" +msgstr "Create Content" msgid "View restriction" msgstr "View restriction" @@ -311,10 +300,8 @@ msgstr "You do not have permission to edit this item" msgid "You do not have permission to add a plugin" msgstr "You do not have permission to add a plugin" -#, fuzzy -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." -msgstr "You do not have permission to clear this placeholder" +msgstr "You do not have permission to copy this placeholder." msgid "Plugin not found" msgstr "Plugin not found" @@ -322,23 +309,17 @@ msgstr "Plugin not found" msgid "You do not have permission to edit this plugin" msgstr "You do not have permission to edit this plugin" -#, fuzzy -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" -msgstr "You have no permission to move this plugin" +msgstr "You have no permission to paste this plugin" -#, fuzzy -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" -msgstr "You have no permission to move this plugin" +msgstr "You have no permission to paste this placeholder" msgid "You have no permission to move this plugin" msgstr "You have no permission to move this plugin" -#, fuzzy -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" -msgstr "You have no permission to move this plugin" +msgstr "You have no permission to cut this plugin" msgid "You do not have permission to delete this plugin" msgstr "You do not have permission to delete this plugin" @@ -366,60 +347,54 @@ msgstr "User & Group permissions" msgid "Page permissions management" msgstr "Page permissions management" -#, fuzzy -#| msgid "Actions" msgid "Actions" msgstr "Actions" -#, fuzzy -#| msgid "no content" msgid "Empty content" -msgstr "no content" +msgstr "Empty content" #, python-format msgid "%(object_name)s Properties" -msgstr "" +msgstr "%(object_name)s Properties" -#, fuzzy, python-format -#| msgid "Add %(name)s" +#, python-format msgid "Add new %(object_name)s" -msgstr "Add %(name)s" +msgstr "Add new %(object_name)s" -#, fuzzy -#| msgid "no content" msgid "Add content" -msgstr "no content" +msgstr "Add content" msgid "" "Content for the current language has been changed. Click \"Cancel\" to " "return to the form and save changes. Click \"OK\" to discard changes." msgstr "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." -#, fuzzy, python-format -#| msgid "Add %(name)s" +#, python-format msgid "Add %(language)s content" -msgstr "Add %(name)s" +msgstr "Add %(language)s content" msgid "Preview" -msgstr "" +msgstr "Preview" -#, fuzzy -#| msgid "UserSettings" msgid "Settings" -msgstr "UserSettings" +msgstr "Settings" #, python-format msgid "" "Invalid language %(value)s. This form cannot be processed. Try changing " "languages." msgstr "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." msgid "" -msgstr "" +msgstr "" #, python-format msgid "No registered apphook \"%r\" found" -msgstr "" +msgstr "No registered apphook \"%r\" found" msgid "django CMS" msgstr "django CMS" @@ -438,6 +413,8 @@ msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." msgstr "" +"This is an alias reference, you can edit the content only on the %(page_title)s page." msgid "Create" msgstr "Create" @@ -473,7 +450,7 @@ msgid "Disable toolbar" msgstr "Disable toolbar" msgid "Shortcuts..." -msgstr "" +msgstr "Shortcuts..." msgid "Users" msgstr "Users" @@ -488,29 +465,22 @@ msgstr "Logout" msgid "Language" msgstr "Language" -#, fuzzy -#| msgid "Add %(language)s Translation" msgid "Add Translation" -msgstr "Add %(language)s Translation" +msgstr "Add Translation" -#, fuzzy -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" -msgstr "Delete %(language)s Translation" +msgstr "Delete Translation" -#, fuzzy -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" -msgstr "Copy all plugins from %s" +msgstr "Copy all plugins" #, python-format msgid "from %s" -msgstr "" +msgstr "from %s" -#, fuzzy, python-format -#| msgid "Are you sure you want copy all plugins from %s?" +#, python-format msgid "Are you sure you want to copy all plugins from %s?" -msgstr "Are you sure you want copy all plugins from %s?" +msgstr "Are you sure you want to copy all plugins from %s?" msgid "Pages" msgstr "Pages" @@ -518,10 +488,8 @@ msgstr "Pages" msgid "Page" msgstr "Page" -#, fuzzy -#| msgid "Create" msgid "Create Page" -msgstr "Create" +msgstr "Create Page" msgid "New Page" msgstr "New Page" @@ -565,29 +533,17 @@ msgstr "Select a valid site" msgid "Select a valid page" msgstr "Select a valid page" -#, fuzzy, python-format -#| msgid "" -#| "Page %(pages)s has the same url '%(url)s' as current page " -#| "\"%(instance)s\"." -#| msgid_plural "" -#| "Pages %(pages)s have the same url '%(url)s' as current page " -#| "\"%(instance)s\"." +#, python-format msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" -"Page %(pages)s has the same url '%(url)s' as current page \"%(instance)s\"." - -#, fuzzy, python-format -#| msgid "" -#| "Page %(pages)s has the same url '%(url)s' as current page " -#| "\"%(instance)s\"." -#| msgid_plural "" -#| "Pages %(pages)s have the same url '%(url)s' as current page " -#| "\"%(instance)s\"." +"Page %(conflict_page)s has the same url '%(url)s' as current page " +"\"%(instance)s\"." + +#, python-format msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "" -"Page %(pages)s has the same url '%(url)s' as current page \"%(instance)s\"." +msgstr "Page %(conflict_page)s has the same url '%(url)s' as current page." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." @@ -598,12 +554,16 @@ msgid "Provide a title for the new page." msgstr "Provide a title for the new page." msgid "Leave empty for automatic slug, or override as required." -msgstr "" +msgstr "Leave empty for automatic slug, or override as required." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "Cannot automatically create slug. Please provide one manually." + +msgid "Please provide a valid slug." +msgstr "Please provide a valid slug." -#, fuzzy -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." -msgstr "You do not have permission to add a plugin" +msgstr "You don't have the permissions required to add a page." msgid "ID" msgstr "ID" @@ -699,7 +659,7 @@ msgid "page" msgstr "page" msgid "no limit set" -msgstr "" +msgstr "no limit set" msgid "for logged in users only" msgstr "for logged in users only" @@ -740,6 +700,12 @@ msgstr "redirect" msgid "The template used to render the content." msgstr "The template used to render the content." +msgid "page content" +msgstr "page content" + +msgid "page contents" +msgstr "page contents" + msgid "default" msgstr "default" @@ -780,30 +746,36 @@ msgstr "on page level" msgid "frontend view restriction" msgstr "frontend view restriction" -#, fuzzy -#| msgid "Please select user or group first." msgid "Please select user or group." -msgstr "Please select user or group first." +msgstr "Please select user or group." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Users can't publish a page without permissions to change the page. Edit " +"permissions required." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." msgstr "" +"Users can't change page advanced settings without permissions to change the " +"page. Edit permissions required." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." msgstr "" +"Users can't change page permissions without permissions to change the page. " +"Edit permissions required." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Users can't move a page without permissions to change the page. Edit " +"permissions required." msgid "can recover any deleted page" msgstr "can recover any deleted page" @@ -898,92 +870,63 @@ msgstr "Advanced options" msgid "Generic" msgstr "Generic" -#, fuzzy, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." +#, python-format msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "The %(name)s plugin \"%(obj)s\" was deleted successfully." +msgstr "The %(name)s \"%(obj)s\" was changed successfully." msgid "There are no further settings for this plugin. Please press save." msgstr "There are no further settings for this plugin. Please press save." msgid "Moved" -msgstr "" +msgstr "Moved" -#, fuzzy -#| msgid "Change" msgid "Changed" -msgstr "Change" +msgstr "Changed" -#, fuzzy -#| msgid "Delete" msgid "Deleted" -msgstr "Delete" +msgstr "Deleted" -#, fuzzy -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "Add %(language)s Translation" +msgstr "Added Page Translation" -#, fuzzy -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "Delete %(language)s Translation" +msgstr "Changed Page Translation" -#, fuzzy -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "Delete %(language)s Translation" +msgstr "Deleted Page Translation" -#, fuzzy -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "Add plugin" +msgstr "Added Plugin" -#, fuzzy -#| msgid "Change" msgid "Changed Plugin" -msgstr "Change" +msgstr "Changed Plugin" -#, fuzzy -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "Add plugin" +msgstr "Moved Plugin" -#, fuzzy -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "Delete page" +msgstr "Deleted Plugin" -#, fuzzy -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "Add plugin" +msgstr "Cut plugin" -#, fuzzy -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "Add plugin" +msgstr "Paste Plugin" -#, fuzzy -#| msgid "static placeholder" msgid "Paste to Placeholder" -msgstr "static placeholder" +msgstr "Paste to Placeholder" -#, fuzzy -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "Copied plugins to %(placeholder)s" +msgstr "Added plugins to placeholder from clipboard" -#, fuzzy -#| msgid "Placeholder" msgid "Cleared Placeholder" -msgstr "Placeholder" +msgstr "Cleared Placeholder" msgid "Save" msgstr "Save" -msgid "Some fields cannot be changed since they are not draft content." -msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "Some fields cannot be changed since they are read-only content." #, python-format msgid "Log in to administration here." @@ -999,10 +942,8 @@ msgstr "Username:" msgid "Password:" msgstr "Password:" -#, fuzzy -#| msgid "Add Page" msgid "Add a page" -msgstr "Add Page" +msgstr "Add a Page" msgid "Change a page" msgstr "Change a page" @@ -1081,10 +1022,8 @@ msgstr "Cut" msgid "Paste" msgstr "Paste" -#, fuzzy -#| msgid "Save as new" msgid "Set as home" -msgstr "Save as new" +msgstr "Set as home" msgid "is restricted" msgstr "is restricted" @@ -1092,8 +1031,11 @@ msgstr "is restricted" msgid "last change by" msgstr "last change by" +msgid "last change on" +msgstr "last change on" + msgid "meta" -msgstr "" +msgstr "meta" msgid "List of pages" msgstr "List of pages" @@ -1101,13 +1043,11 @@ msgstr "List of pages" msgid "Search" msgstr "Search" -#, fuzzy -#| msgid "Page Title" msgid "Page Tree" -msgstr "Page Title" +msgstr "Page Tree" msgid "Reset filter" -msgstr "" +msgstr "Reset filter" #, python-format msgid "" @@ -1115,16 +1055,15 @@ msgid "" " Restore deleted %(name)s\n" " " msgstr "" +"\n" +" Restore deleted %(name)s\n" +" " -#, fuzzy -#| msgid "in navigation" msgid "Main Navigation" -msgstr "in navigation" +msgstr "Main Navigation" -#, fuzzy -#| msgid "Actions" msgid "Options" -msgstr "Actions" +msgstr "Options" msgid "Successfully moved" msgstr "Successfully moved" @@ -1133,26 +1072,26 @@ msgid "Changes within the tree might require a refresh." msgstr "Changes within the tree might require a refresh." msgid "Error:" -msgstr "" +msgstr "Error:" msgid "" "This page cannot be copied because an application is attached to it. See the " "Page's Advanced settings to manage apphooks." msgstr "" +"This page cannot be copied because an application is attached to it. See the " +"Page's Advanced settings to manage apphooks." msgid "Are you sure you want to § this page?" msgstr "Are you sure you want to § this page?" msgid "Reload" -msgstr "" +msgstr "Reload" -#, fuzzy -#| msgid "New Page" msgid "New node" -msgstr "New Page" +msgstr "New node" msgid "nodes" -msgstr "" +msgstr "nodes" msgid "View" msgstr "View" @@ -1160,13 +1099,7 @@ msgstr "View" msgid "Menu" msgstr "Menu" -#, fuzzy, python-format -#| msgid "" -#| "\n" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " +#, python-format msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1176,10 +1109,11 @@ msgid "" " " msgstr "" "\n" -" JavaScript seems to be disabled so please\n" -" add a page manually.\n" -" " +" There is no %(object)s around yet.\n" +"
\n" +" Add " +"%(object)s now.\n" +" " msgid "Copy options" msgstr "Copy options" @@ -1191,30 +1125,22 @@ msgid "Close" msgstr "Close" msgid "Legend" -msgstr "" +msgstr "Legend" -#, fuzzy -#| msgid "in menu" msgid "In menu" -msgstr "in menu" +msgstr "In menu" -#, fuzzy -#| msgid "not in menu" msgid "Not in menu" -msgstr "not in menu" +msgstr "Not in menu" -#, fuzzy -#| msgid "New page" msgid "View page" -msgstr "New page" +msgstr "View page" -#, fuzzy -#| msgid "softroot" msgid "Softroot" -msgstr "softroot" +msgstr "Softroot" msgid "Apphook" -msgstr "" +msgstr "Apphook" #, python-format msgid "Application: %(apphook)s" @@ -1226,10 +1152,8 @@ msgstr "in menu" msgid "not in menu" msgstr "not in menu" -#, fuzzy -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" -msgstr "Page settings (SHIFT-click for advanced settings)" +msgstr "Page settings (SHIFT click for advanced settings)" msgid "Permissions" msgstr "Permissions" @@ -1239,6 +1163,7 @@ msgstr "This page has no preview!" msgid "Potentially the attached apphook does not provide content for its root." msgstr "" +"Potentially the attached apphook does not provide content for its root." msgid "It is being redirected to:" msgstr "It is being redirected to:" @@ -1286,15 +1211,13 @@ msgid "This plugin cannot have nested plugins." msgstr "This plugin cannot have nested plugins." msgid "Highlight" -msgstr "" +msgstr "Highlight" msgid "Available plugins" msgstr "Available plugins" -#, fuzzy -#| msgid "Structure" msgid "Toggle structure" -msgstr "Structure" +msgstr "Toggle structure" msgid "Login" msgstr "Login" @@ -1305,12 +1228,13 @@ msgstr "Add plugin to" msgid "More" msgstr "More" -#, fuzzy, python-format -#| msgid "Development version using django CMS %(cms_version)s" +#, python-format msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Development version using django CMS %(cms_version)s" +msgstr "" +"Development version using django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Cancel" @@ -1318,10 +1242,8 @@ msgstr "Cancel" msgid "The following error occured:" msgstr "The following error occured:" -#, fuzzy -#| msgid "Action successfull... reloading." msgid "Action successful." -msgstr "Action successfull... reloading." +msgstr "Action successful." msgid "Are you sure you want to delete this plugin?" msgstr "Are you sure you want to delete this plugin?" @@ -1332,84 +1254,69 @@ msgstr "Are you sure you want to publish this page?" msgid "Plugin will be added here" msgstr "Plugin will be added here" -#, fuzzy -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." -msgstr "This page has unpublished changes." +msgstr "You have unsaved changes." -#, fuzzy -#| msgid "Loading..." msgid "Loading" -msgstr "Loading..." +msgstr "Loading" -#, fuzzy -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" -msgstr "Are you sure you want to § this page?" +msgstr "Are you sure you want to abandon these changes?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." msgstr "" +"The form could not be loaded. Please check that the server is running " +"correctly." -#, fuzzy -#| msgid "Notify user" msgid "Most used" -msgstr "Notify user" +msgstr "Most used" msgid "Shortcuts" -msgstr "" +msgstr "Shortcuts" msgid "The page was changed in the meantime, reloading..." -msgstr "" +msgstr "The page was changed in the meantime, reloading..." + +msgid "CMS-wide Shortcuts" +msgstr "CMS-wide Shortcuts" msgid "Bring up this help dialog" -msgstr "" +msgstr "Bring up this help dialog" -#, fuzzy -#| msgid "Cancel" msgid "Close/cancel" -msgstr "Cancel" +msgstr "Close/cancel" msgid "Toggle structure mode" -msgstr "" +msgstr "Toggle structure mode" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "" +msgstr "Toggle structure mode and highlight hovered-over plugin" msgid "Open \"Create\" dialog" -msgstr "" +msgstr "Open \"Create\" dialog" msgid "Focus on Toolbar" -msgstr "" +msgstr "Focus on Toolbar" -#, fuzzy -#| msgid "static placeholders" msgid "Focus on placeholders" -msgstr "static placeholders" +msgstr "Focus on placeholders" msgid "Move to next/previous element" -msgstr "" +msgstr "Move to next/previous element" -#, fuzzy -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" -msgstr "Add plugin to placeholder" +msgstr "Focus on plugins of placeholder" -#, fuzzy -#| msgid "Add plugin" msgid "Edit plugin" -msgstr "Add plugin" +msgstr "Edit plugin" -#, fuzzy -#| msgid "not in menu" msgid "Open actions menu" -msgstr "not in menu" +msgstr "Open actions menu" -#, fuzzy -#| msgid "Expand all" msgid "Expand/collapse" -msgstr "Expand all" +msgstr "Expand/collapse" msgid "" "Login failed. Please check your credentials and try again." @@ -1493,21 +1400,6 @@ msgstr "Support" msgid "Documentation" msgstr "Documentation" -#, fuzzy -#| msgid "" -#| "\n" -#| "

If you don't see the " -#| "django CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to " -#| "your\n" -#| " static files.

\n" -#| "

You're seeing this message " -#| "because you have\n" -#| " DEBUG = True in your django settings " -#| "file and\n" -#| " haven't added any pages yet.\n" -#| "

\n" -#| " " msgid "" "\n" "

If you don't see the django " @@ -1521,29 +1413,8 @@ msgstr "" "CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

\n" -"

You're seeing this message " -"because you have\n" -" DEBUG = True in your django settings file " -"and\n" -" haven't added any pages yet.\n" -"

\n" " " -#, fuzzy -#| msgid "" -#| "\n" -#| "

If you don't see the " -#| "django CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to " -#| "your\n" -#| " static files.

\n" -#| "

You're seeing this message " -#| "because you have\n" -#| " DEBUG = True in your django settings " -#| "file and\n" -#| " haven't added any pages yet.\n" -#| "

\n" -#| " " msgid "" "\n" "

You're seeing this " @@ -1555,17 +1426,13 @@ msgid "" " " msgstr "" "\n" -"

If you don't see the django " -"CMS logo at the top, make sure\n" -" you linked the static/cms folder to your\n" -" static files.

\n" -"

You're seeing this message " -"because you have\n" -" DEBUG = True in your django settings file " -"and\n" -" haven't added any pages yet.\n" -"

\n" -" " +"

You're seeing this " +"message because you have\n" +" DEBUG = True in your django settings " +"file and\n" +" haven't added any pages yet.\n" +"

\n" +" " msgid "Welcome to django CMS" msgstr "Welcome to django CMS" @@ -1583,7 +1450,7 @@ msgid "Next" msgstr "Next" msgid "Unknown" -msgstr "" +msgstr "Unknown" #, python-format msgid "Page not found on %(domain)s" @@ -1668,10 +1535,8 @@ msgstr "Articles" msgid "Sample App" msgstr "Sample App" -#, fuzzy -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" -msgstr "Sample App with excluded permissions" +msgstr "Sample App with config" msgid "Sample App with excluded permissions" msgstr "Sample App with excluded permissions" @@ -1679,8 +1544,6 @@ msgstr "Sample App with excluded permissions" msgid "Sample App 2" msgstr "Sample App 2" -#, fuzzy -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "Sample App 2" @@ -1694,7 +1557,7 @@ msgid "Child app" msgstr "Child app" msgid "Variable urls-menus App" -msgstr "" +msgstr "Variable urls-menus App" msgid "sample root page" msgstr "sample root page" @@ -1717,8 +1580,6 @@ msgstr "Static Menu2" msgid "Static Menu3" msgstr "Static Menu3" -#, fuzzy -#| msgid "Static Menu" msgid "Static Menu4" msgstr "Static Menu" @@ -1746,15 +1607,13 @@ msgstr "Inherit the template of the nearest ancestor" msgid "UserSettings" msgstr "UserSettings" -#, fuzzy, python-format -#| msgid "Add plugin to placeholder" +#, python-format msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "Add plugin to placeholder" +msgstr "Add plugin to placeholder \"%(placeholder_label)s\"" -#, fuzzy, python-format -#| msgid "Add plugin to placeholder" +#, python-format msgid "Add plugin to %(plugin_name)s" -msgstr "Add plugin to placeholder" +msgstr "Add plugin to %(plugin_name)s" msgid "CMS - your user account was created." msgstr "CMS - your user account was created." @@ -1776,13 +1635,15 @@ msgstr "" #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "" +msgstr "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." msgstr "" +"Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " +"module \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1791,423 +1652,3 @@ msgstr "Create a new %s instance." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "A wizard has already been registered for model: %s" - -#, fuzzy -#~| msgid "published" -#~ msgid "Published" -#~ msgstr "published" - -#, fuzzy -#~| msgid "unpublished" -#~ msgid "Unpublished" -#~ msgstr "unpublished" - -#, fuzzy -#~| msgid "no content" -#~ msgid "has contents" -#~ msgstr "no content" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#, fuzzy -#~| msgid "You do not have permission to edit this page" -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#, fuzzy -#~| msgid "You do not have permission to change pages." -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#, fuzzy -#~| msgid "Publish changes" -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#, fuzzy -#~| msgid "Edit this page in %(language)s " -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#, fuzzy -#~| msgid "View published" -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#, fuzzy -#~| msgid "Edit this Page" -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. " -#~ "Requires user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. " -#~ "Requires user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#, fuzzy -#~| msgid "Recover deleted %(verbose_name)s" -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "" -#~ "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#, fuzzy -#~| msgid "sample account page" -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "%(counter)s result" -#~ msgstr[1] "%(counter)s results" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
Add page now." -#~ msgstr "" -#~ "There is no page around yet.
Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/migrations/0035_auto_20230822_2208.py b/cms/migrations/0035_auto_20230822_2208.py new file mode 100644 index 00000000000..5896df4ef5a --- /dev/null +++ b/cms/migrations/0035_auto_20230822_2208.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.28 on 2023-08-22 22:08 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('cms', '0034_remove_pagecontent_placeholders'), + ] + + operations = [ + migrations.AlterModelOptions( + name='pagecontent', + options={'default_permissions': [], 'verbose_name': 'page content', 'verbose_name_plural': 'page contents'}, + ), + ] diff --git a/cms/models/contentmodels.py b/cms/models/contentmodels.py index 1f34961be82..c9163ff0e43 100644 --- a/cms/models/contentmodels.py +++ b/cms/models/contentmodels.py @@ -127,6 +127,8 @@ class PageContent(models.Model): """ class Meta: + verbose_name = _("page content") + verbose_name_plural = _("page contents") default_permissions = [] unique_together = (('language', 'page'),) app_label = 'cms' diff --git a/cms/static/cms/sass/components/_dialog.scss b/cms/static/cms/sass/components/_dialog.scss index 734fee543e1..02a80cc3737 100644 --- a/cms/static/cms/sass/components/_dialog.scss +++ b/cms/static/cms/sass/components/_dialog.scss @@ -23,7 +23,7 @@ padding: 0; } form { - margin: 0 -$padding-large; + margin: 0 (-$padding-large); padding: 0 $padding-large !important; border-top: 1px solid $gray-lighter; label { diff --git a/cms/static/cms/sass/components/_pluginpicker.scss b/cms/static/cms/sass/components/_pluginpicker.scss index 27e71a89aa1..912bfb17571 100644 --- a/cms/static/cms/sass/components/_pluginpicker.scss +++ b/cms/static/cms/sass/components/_pluginpicker.scss @@ -91,5 +91,14 @@ padding-left: 20px; border: 2px solid $color-primary; border-radius: $border-radius-base; - background-color: rgba($color-primary-fallback, 20%); + background-color: $white; + &:after { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right:0 ; + background-color: rgba($color-primary-fallback, 40%); + } } diff --git a/cms/templates/admin/cms/page/tree/base.html b/cms/templates/admin/cms/page/tree/base.html index 35b1ee996f9..b1bd3193d7e 100644 --- a/cms/templates/admin/cms/page/tree/base.html +++ b/cms/templates/admin/cms/page/tree/base.html @@ -295,7 +295,7 @@

{% trans "Main Navigation" %}

}] }' data-settings-url="{% cms_admin_url "cms_usersettings_session_store" %}"> {% url opts|admin_urlname:'add' as add_url %} - {% blocktrans with object='page' %} + {% blocktrans with object=_('page') %} There is no {{ object }} around yet.
Add {{ object }} now. From ac74c212719fb17d7a26cb61feecfb36bba27476 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Wed, 23 Aug 2023 16:12:52 +0200 Subject: [PATCH 10/26] Fix: Open new plugin window in language of toolbar not of page (#7632) --- cms/plugin_rendering.py | 6 +++++- cms/templatetags/cms_tags.py | 5 +++++ cms/tests/test_page_admin.py | 4 +--- cms/tests/test_views.py | 9 +++------ 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/cms/plugin_rendering.py b/cms/plugin_rendering.py index a04fb10c191..e040ff4e38e 100644 --- a/cms/plugin_rendering.py +++ b/cms/plugin_rendering.py @@ -1,3 +1,4 @@ +import contextlib import logging import sys from collections import OrderedDict @@ -9,6 +10,7 @@ from django.utils.functional import cached_property from django.utils.module_loading import import_string from django.utils.safestring import mark_safe +from django.utils.translation import override from cms.cache.placeholder import get_placeholder_cache, set_placeholder_cache from cms.models import PageContent @@ -300,7 +302,9 @@ def render_placeholder(self, placeholder, context, language=None, page=None, self._rendered_placeholders[placeholder.pk] = rendered_placeholder if editable: - data = self.get_editable_placeholder_context(placeholder, page=page) + request = context.get("request", None) + with override(request.toolbar.toolbar_language) if request else contextlib.nullcontext(): + data = self.get_editable_placeholder_context(placeholder, page=page) data['content'] = placeholder_content placeholder_content = self.placeholder_edit_template.format(**data) diff --git a/cms/templatetags/cms_tags.py b/cms/templatetags/cms_tags.py index 087fc4156a2..57b08bea727 100644 --- a/cms/templatetags/cms_tags.py +++ b/cms/templatetags/cms_tags.py @@ -24,6 +24,7 @@ from django.utils.http import urlencode from django.utils.translation import ( get_language, + override, ) from django.utils.translation import ( gettext_lazy as _, @@ -993,6 +994,10 @@ class CMSAdminURL(AsTag): ) def get_value(self, context, viewname, args, kwargs): + request = context.get("request", None) + if request and hasattr(request, "toolbar"): + with override(request.toolbar.request.toolbar.toolbar_language): + return admin_reverse(viewname, args=args, kwargs=kwargs) return admin_reverse(viewname, args=args, kwargs=kwargs) diff --git a/cms/tests/test_page_admin.py b/cms/tests/test_page_admin.py index 46520500492..143efc03075 100644 --- a/cms/tests/test_page_admin.py +++ b/cms/tests/test_page_admin.py @@ -1502,7 +1502,7 @@ def test_page_tree_render_localized_page_ids(self): admin_user = self.get_superuser() root = create_page( - "home", "nav_playground.html", "fr", created_by=admin_user, published=True + "home", "nav_playground.html", "fr", created_by=admin_user, ) with connection.cursor() as c: c.execute('UPDATE SQLITE_SEQUENCE SET seq = 1001 WHERE name="cms_page"') @@ -1513,7 +1513,6 @@ def test_page_tree_render_localized_page_ids(self): "nav_playground.html", "fr", created_by=admin_user, - published=True, parent=root, slug="child-page", ) @@ -1523,7 +1522,6 @@ def test_page_tree_render_localized_page_ids(self): "nav_playground.html", "fr", created_by=admin_user, - published=True, parent=page, slug="grand-child-page", ) diff --git a/cms/tests/test_views.py b/cms/tests/test_views.py index 8ddb2093dc5..626801df0c0 100644 --- a/cms/tests/test_views.py +++ b/cms/tests/test_views.py @@ -138,8 +138,7 @@ def test_redirect_to_self_with_host(self): def test_redirect_not_preserving_query_parameters(self): # test redirect checking that the query parameters aren't preserved redirect = '/en/' - one = create_page("one", "nav_playground.html", "en", published=True, - redirect=redirect) + one = create_page("one", "nav_playground.html", "en", redirect=redirect) url = one.get_absolute_url() params = "?param_name=param_value" request = self.get_request(url + params) @@ -151,8 +150,7 @@ def test_redirect_not_preserving_query_parameters(self): def test_redirect_preserving_query_parameters(self): # test redirect checking that query parameters are preserved redirect = '/en/' - one = create_page("one", "nav_playground.html", "en", published=True, - redirect=redirect) + one = create_page("one", "nav_playground.html", "en", redirect=redirect) url = one.get_absolute_url() params = "?param_name=param_value" request = self.get_request(url + params) @@ -163,8 +161,7 @@ def test_redirect_preserving_query_parameters(self): @override_settings(CMS_REDIRECT_TO_LOWERCASE_SLUG=True) def test_redirecting_to_lowercase_slug(self): redirect = '/en/one/' - one = create_page("one", "nav_playground.html", "en", published=True, - redirect=redirect) + one = create_page("one", "nav_playground.html", "en", redirect=redirect) url = reverse('pages-details-by-slug', kwargs={"slug": "One"}) request = self.get_request(url) response = details(request, one.get_path(language="en")) From 33f93d63f3f35ead956053512b2ddf3211a3bd25 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Thu, 24 Aug 2023 20:23:19 +0200 Subject: [PATCH 11/26] Fix: Broken page actions menu if CMS_PERMISSIONS is set --- .../admin/cms/page/tree/actions_dropdown.html | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/cms/templates/admin/cms/page/tree/actions_dropdown.html b/cms/templates/admin/cms/page/tree/actions_dropdown.html index ffd99148ee0..257496dbebf 100644 --- a/cms/templates/admin/cms/page/tree/actions_dropdown.html +++ b/cms/templates/admin/cms/page/tree/actions_dropdown.html @@ -72,18 +72,6 @@ {% trans "Advanced settings" %} - {% if CMS_PERMISSION %} -
  • - {% if has_change_permissions_permission %} - - {% else %} - - {% endif %} - - {% trans "Permissions" %} - -
  • - {% endif %} {% endblock actions %}
  •  
  • From d871d9f58f265a144cc3dccd5a6d0136e46eee73 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 25 Aug 2023 18:21:10 +0200 Subject: [PATCH 12/26] Build: release 4.1.0rc4 (#7637) * [4.1.0rc4 release process] Building locales * [4.1.0rc4 release process] Bumped version to 4.1.0rc4 * [4.1.0rc4 release process] compilemessages * [4.1.0rc4 release process] compiling new static files * [4.1.0rc4 release process] updating latest docs * Update CHANGELOG.rst * Update 4.1.0.rst --------- Co-authored-by: Github Release Action --- CHANGELOG.rst | 66 +- cms/__init__.py | 2 +- cms/locale/af/LC_MESSAGES/django.mo | Bin 423 -> 373 bytes cms/locale/af/LC_MESSAGES/django.po | 705 ++------- cms/locale/af/LC_MESSAGES/djangojs.mo | Bin 438 -> 428 bytes cms/locale/af/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ar/LC_MESSAGES/django.mo | Bin 38958 -> 38387 bytes cms/locale/ar/LC_MESSAGES/django.po | 835 +++------- cms/locale/ar/LC_MESSAGES/djangojs.mo | Bin 720 -> 722 bytes cms/locale/ar/LC_MESSAGES/djangojs.po | 18 +- cms/locale/ar_SA/LC_MESSAGES/django.mo | Bin 526 -> 476 bytes cms/locale/ar_SA/LC_MESSAGES/django.po | 709 ++------- cms/locale/ar_SA/LC_MESSAGES/djangojs.mo | Bin 541 -> 531 bytes cms/locale/ar_SA/LC_MESSAGES/djangojs.po | 17 +- cms/locale/be/LC_MESSAGES/django.mo | Bin 562 -> 512 bytes cms/locale/be/LC_MESSAGES/django.po | 707 ++------- cms/locale/be/LC_MESSAGES/djangojs.mo | Bin 577 -> 567 bytes cms/locale/be/LC_MESSAGES/djangojs.po | 17 +- cms/locale/bg/LC_MESSAGES/django.mo | Bin 18641 -> 18320 bytes cms/locale/bg/LC_MESSAGES/django.po | 745 ++------- cms/locale/bg/LC_MESSAGES/djangojs.mo | Bin 666 -> 662 bytes cms/locale/bg/LC_MESSAGES/djangojs.po | 17 +- cms/locale/bn/LC_MESSAGES/django.mo | Bin 1941 -> 1944 bytes cms/locale/bn/LC_MESSAGES/django.po | 709 ++------- cms/locale/bn/LC_MESSAGES/djangojs.mo | Bin 723 -> 732 bytes cms/locale/bn/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ca/LC_MESSAGES/django.mo | Bin 28063 -> 27623 bytes cms/locale/ca/LC_MESSAGES/django.po | 813 +++------- cms/locale/ca/LC_MESSAGES/djangojs.mo | Bin 603 -> 606 bytes cms/locale/ca/LC_MESSAGES/djangojs.po | 17 +- cms/locale/cs/LC_MESSAGES/django.mo | Bin 32712 -> 35764 bytes cms/locale/cs/LC_MESSAGES/django.po | 956 ++++------- cms/locale/cs/LC_MESSAGES/djangojs.mo | Bin 661 -> 646 bytes cms/locale/cs/LC_MESSAGES/djangojs.po | 17 +- cms/locale/cs_CZ/LC_MESSAGES/django.mo | Bin 522 -> 610 bytes cms/locale/cs_CZ/LC_MESSAGES/django.po | 711 ++------- cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo | Bin 537 -> 527 bytes cms/locale/cs_CZ/LC_MESSAGES/djangojs.po | 17 +- cms/locale/cy/LC_MESSAGES/django.mo | Bin 464 -> 414 bytes cms/locale/cy/LC_MESSAGES/django.po | 707 ++------- cms/locale/cy/LC_MESSAGES/djangojs.mo | Bin 479 -> 469 bytes cms/locale/cy/LC_MESSAGES/djangojs.po | 17 +- cms/locale/da/LC_MESSAGES/django.mo | Bin 21642 -> 21379 bytes cms/locale/da/LC_MESSAGES/django.po | 781 +++------ cms/locale/da/LC_MESSAGES/djangojs.mo | Bin 591 -> 602 bytes cms/locale/da/LC_MESSAGES/djangojs.po | 17 +- cms/locale/de/LC_MESSAGES/django.mo | Bin 38080 -> 39948 bytes cms/locale/de/LC_MESSAGES/django.po | 1039 +++++------- cms/locale/de/LC_MESSAGES/djangojs.mo | Bin 600 -> 714 bytes cms/locale/de/LC_MESSAGES/djangojs.po | 20 +- cms/locale/el/LC_MESSAGES/django.mo | Bin 19878 -> 19514 bytes cms/locale/el/LC_MESSAGES/django.po | 753 ++------- cms/locale/el/LC_MESSAGES/djangojs.mo | Bin 687 -> 697 bytes cms/locale/el/LC_MESSAGES/djangojs.po | 17 +- cms/locale/en/LC_MESSAGES/django.mo | Bin 23268 -> 37169 bytes cms/locale/en/LC_MESSAGES/django.po | 8 +- cms/locale/en_GB/LC_MESSAGES/django.mo | Bin 564 -> 577 bytes cms/locale/en_GB/LC_MESSAGES/django.po | 708 ++------- cms/locale/en_GB/LC_MESSAGES/djangojs.mo | Bin 459 -> 449 bytes cms/locale/en_GB/LC_MESSAGES/djangojs.po | 17 +- cms/locale/en_HK/LC_MESSAGES/django.mo | Bin 439 -> 389 bytes cms/locale/en_HK/LC_MESSAGES/django.po | 705 ++------- cms/locale/en_HK/LC_MESSAGES/djangojs.mo | Bin 454 -> 444 bytes cms/locale/en_HK/LC_MESSAGES/djangojs.po | 17 +- cms/locale/en_US/LC_MESSAGES/django.mo | Bin 443 -> 393 bytes cms/locale/en_US/LC_MESSAGES/django.po | 705 ++------- cms/locale/en_US/LC_MESSAGES/djangojs.mo | Bin 458 -> 448 bytes cms/locale/en_US/LC_MESSAGES/djangojs.po | 17 +- cms/locale/eo/LC_MESSAGES/django.mo | Bin 6403 -> 6332 bytes cms/locale/eo/LC_MESSAGES/django.po | 713 ++------- cms/locale/eo/LC_MESSAGES/djangojs.mo | Bin 438 -> 428 bytes cms/locale/eo/LC_MESSAGES/djangojs.po | 17 +- cms/locale/es/LC_MESSAGES/django.mo | Bin 36411 -> 36023 bytes cms/locale/es/LC_MESSAGES/django.po | 946 ++++------- cms/locale/es/LC_MESSAGES/djangojs.mo | Bin 608 -> 653 bytes cms/locale/es/LC_MESSAGES/djangojs.po | 21 +- cms/locale/es_AR/LC_MESSAGES/django.mo | Bin 19579 -> 708 bytes cms/locale/es_AR/LC_MESSAGES/django.po | 1244 +++++---------- cms/locale/es_AR/LC_MESSAGES/djangojs.mo | Bin 626 -> 662 bytes cms/locale/es_AR/LC_MESSAGES/djangojs.po | 19 +- cms/locale/es_BO/LC_MESSAGES/django.mo | Bin 10475 -> 426 bytes cms/locale/es_BO/LC_MESSAGES/django.po | 995 ++++-------- cms/locale/es_BO/LC_MESSAGES/djangojs.mo | Bin 624 -> 666 bytes cms/locale/es_BO/LC_MESSAGES/djangojs.po | 19 +- cms/locale/es_DO/LC_MESSAGES/django.mo | Bin 784 -> 437 bytes cms/locale/es_DO/LC_MESSAGES/django.po | 721 ++------- cms/locale/es_DO/LC_MESSAGES/djangojs.mo | Bin 463 -> 492 bytes cms/locale/es_DO/LC_MESSAGES/djangojs.po | 19 +- cms/locale/et/LC_MESSAGES/django.mo | Bin 14772 -> 14493 bytes cms/locale/et/LC_MESSAGES/django.po | 729 ++------- cms/locale/et/LC_MESSAGES/djangojs.mo | Bin 598 -> 596 bytes cms/locale/et/LC_MESSAGES/djangojs.po | 21 +- cms/locale/eu/LC_MESSAGES/django.mo | Bin 15049 -> 14895 bytes cms/locale/eu/LC_MESSAGES/django.po | 739 ++------- cms/locale/eu/LC_MESSAGES/djangojs.mo | Bin 576 -> 585 bytes cms/locale/eu/LC_MESSAGES/djangojs.po | 17 +- cms/locale/fa/LC_MESSAGES/django.mo | Bin 43227 -> 43950 bytes cms/locale/fa/LC_MESSAGES/django.po | 934 ++++------- cms/locale/fa/LC_MESSAGES/djangojs.mo | Bin 689 -> 668 bytes cms/locale/fa/LC_MESSAGES/djangojs.po | 17 +- cms/locale/fa_IR/LC_MESSAGES/django.mo | Bin 1306 -> 1331 bytes cms/locale/fa_IR/LC_MESSAGES/django.po | 710 ++------- cms/locale/fa_IR/LC_MESSAGES/djangojs.mo | Bin 664 -> 681 bytes cms/locale/fa_IR/LC_MESSAGES/djangojs.po | 17 +- cms/locale/fi/LC_MESSAGES/django.mo | Bin 23892 -> 26435 bytes cms/locale/fi/LC_MESSAGES/django.po | 849 +++------- cms/locale/fi/LC_MESSAGES/djangojs.mo | Bin 594 -> 597 bytes cms/locale/fi/LC_MESSAGES/djangojs.po | 17 +- cms/locale/fi_FI/LC_MESSAGES/django.mo | Bin 3665 -> 3606 bytes cms/locale/fi_FI/LC_MESSAGES/django.po | 714 ++------- cms/locale/fi_FI/LC_MESSAGES/djangojs.mo | Bin 452 -> 442 bytes cms/locale/fi_FI/LC_MESSAGES/djangojs.po | 17 +- cms/locale/fr/LC_MESSAGES/django.mo | Bin 36961 -> 39565 bytes cms/locale/fr/LC_MESSAGES/django.po | 1095 +++++-------- cms/locale/fr/LC_MESSAGES/djangojs.mo | Bin 601 -> 759 bytes cms/locale/fr/LC_MESSAGES/djangojs.po | 25 +- cms/locale/fr_CA/LC_MESSAGES/django.mo | Bin 434 -> 436 bytes cms/locale/fr_CA/LC_MESSAGES/django.po | 708 ++------- cms/locale/fr_CA/LC_MESSAGES/djangojs.mo | Bin 449 -> 491 bytes cms/locale/fr_CA/LC_MESSAGES/djangojs.po | 19 +- cms/locale/ga/LC_MESSAGES/django.mo | Bin 457 -> 407 bytes cms/locale/ga/LC_MESSAGES/django.po | 708 ++------- cms/locale/ga/LC_MESSAGES/djangojs.mo | Bin 472 -> 462 bytes cms/locale/ga/LC_MESSAGES/djangojs.po | 17 +- cms/locale/gl/LC_MESSAGES/django.mo | Bin 12381 -> 12133 bytes cms/locale/gl/LC_MESSAGES/django.po | 721 ++------- cms/locale/gl/LC_MESSAGES/djangojs.mo | Bin 604 -> 622 bytes cms/locale/gl/LC_MESSAGES/djangojs.po | 17 +- cms/locale/gu/LC_MESSAGES/django.mo | Bin 636 -> 639 bytes cms/locale/gu/LC_MESSAGES/django.po | 711 ++------- cms/locale/gu/LC_MESSAGES/djangojs.mo | Bin 437 -> 427 bytes cms/locale/gu/LC_MESSAGES/djangojs.po | 17 +- cms/locale/he/LC_MESSAGES/django.mo | Bin 13530 -> 13286 bytes cms/locale/he/LC_MESSAGES/django.po | 757 ++------- cms/locale/he/LC_MESSAGES/djangojs.mo | Bin 724 -> 732 bytes cms/locale/he/LC_MESSAGES/djangojs.po | 17 +- cms/locale/hi/LC_MESSAGES/django.mo | Bin 12285 -> 12063 bytes cms/locale/hi/LC_MESSAGES/django.po | 716 ++------- cms/locale/hi/LC_MESSAGES/djangojs.mo | Bin 745 -> 735 bytes cms/locale/hi/LC_MESSAGES/djangojs.po | 17 +- cms/locale/hr/LC_MESSAGES/django.mo | Bin 35709 -> 35359 bytes cms/locale/hr/LC_MESSAGES/django.po | 893 ++++------- cms/locale/hr/LC_MESSAGES/djangojs.mo | Bin 683 -> 678 bytes cms/locale/hr/LC_MESSAGES/djangojs.po | 17 +- cms/locale/hu/LC_MESSAGES/django.mo | Bin 18260 -> 19898 bytes cms/locale/hu/LC_MESSAGES/django.po | 816 +++------- cms/locale/hu/LC_MESSAGES/djangojs.mo | Bin 613 -> 610 bytes cms/locale/hu/LC_MESSAGES/djangojs.po | 17 +- cms/locale/id/LC_MESSAGES/django.mo | Bin 4441 -> 4356 bytes cms/locale/id/LC_MESSAGES/django.po | 742 ++------- cms/locale/id/LC_MESSAGES/djangojs.mo | Bin 432 -> 422 bytes cms/locale/id/LC_MESSAGES/djangojs.po | 17 +- cms/locale/is/LC_MESSAGES/django.mo | Bin 8565 -> 8568 bytes cms/locale/is/LC_MESSAGES/django.po | 713 ++------- cms/locale/is/LC_MESSAGES/djangojs.mo | Bin 631 -> 634 bytes cms/locale/is/LC_MESSAGES/djangojs.po | 17 +- cms/locale/is_IS/LC_MESSAGES/django.mo | Bin 461 -> 411 bytes cms/locale/is_IS/LC_MESSAGES/django.po | 705 ++------- cms/locale/is_IS/LC_MESSAGES/djangojs.mo | Bin 476 -> 466 bytes cms/locale/is_IS/LC_MESSAGES/djangojs.po | 17 +- cms/locale/it/LC_MESSAGES/django.mo | Bin 35940 -> 36172 bytes cms/locale/it/LC_MESSAGES/django.po | 925 ++++------- cms/locale/it/LC_MESSAGES/djangojs.mo | Bin 588 -> 647 bytes cms/locale/it/LC_MESSAGES/djangojs.po | 20 +- cms/locale/ja/LC_MESSAGES/django.mo | Bin 34946 -> 34629 bytes cms/locale/ja/LC_MESSAGES/django.po | 749 ++------- cms/locale/ja/LC_MESSAGES/djangojs.mo | Bin 613 -> 615 bytes cms/locale/ja/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ka/LC_MESSAGES/django.mo | Bin 3549 -> 3552 bytes cms/locale/ka/LC_MESSAGES/django.po | 708 ++------- cms/locale/ka/LC_MESSAGES/djangojs.mo | Bin 435 -> 433 bytes cms/locale/ka/LC_MESSAGES/djangojs.po | 17 +- cms/locale/kk/LC_MESSAGES/django.mo | Bin 1205 -> 1208 bytes cms/locale/kk/LC_MESSAGES/django.po | 709 ++------- cms/locale/kk/LC_MESSAGES/djangojs.mo | Bin 644 -> 640 bytes cms/locale/kk/LC_MESSAGES/djangojs.po | 17 +- cms/locale/km/LC_MESSAGES/django.mo | Bin 9264 -> 9267 bytes cms/locale/km/LC_MESSAGES/django.po | 715 ++------- cms/locale/km/LC_MESSAGES/djangojs.mo | Bin 727 -> 705 bytes cms/locale/km/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ko/LC_MESSAGES/django.mo | Bin 1912 -> 2275 bytes cms/locale/ko/LC_MESSAGES/django.po | 716 ++------- cms/locale/ko/LC_MESSAGES/djangojs.mo | Bin 428 -> 418 bytes cms/locale/ko/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ko_KR/LC_MESSAGES/django.mo | Bin 20364 -> 20106 bytes cms/locale/ko_KR/LC_MESSAGES/django.po | 727 ++------- cms/locale/ko_KR/LC_MESSAGES/djangojs.mo | Bin 605 -> 598 bytes cms/locale/ko_KR/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ku_IQ/LC_MESSAGES/django.mo | Bin 12964 -> 12766 bytes cms/locale/ku_IQ/LC_MESSAGES/django.po | 725 ++------- cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo | Bin 449 -> 439 bytes cms/locale/ku_IQ/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ky/LC_MESSAGES/django.mo | Bin 3817 -> 3758 bytes cms/locale/ky/LC_MESSAGES/django.po | 712 ++------- cms/locale/ky/LC_MESSAGES/djangojs.mo | Bin 673 -> 679 bytes cms/locale/ky/LC_MESSAGES/djangojs.po | 19 +- cms/locale/lt/LC_MESSAGES/django.mo | Bin 36407 -> 35982 bytes cms/locale/lt/LC_MESSAGES/django.po | 891 ++++------- cms/locale/lt/LC_MESSAGES/djangojs.mo | Bin 725 -> 724 bytes cms/locale/lt/LC_MESSAGES/djangojs.po | 17 +- cms/locale/lt_LT/LC_MESSAGES/django.mo | Bin 573 -> 523 bytes cms/locale/lt_LT/LC_MESSAGES/django.po | 707 ++------- cms/locale/lt_LT/LC_MESSAGES/djangojs.mo | Bin 588 -> 578 bytes cms/locale/lt_LT/LC_MESSAGES/djangojs.po | 17 +- cms/locale/lv/LC_MESSAGES/django.mo | Bin 1801 -> 1804 bytes cms/locale/lv/LC_MESSAGES/django.po | 712 ++------- cms/locale/lv/LC_MESSAGES/djangojs.mo | Bin 645 -> 652 bytes cms/locale/lv/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ml/LC_MESSAGES/django.mo | Bin 423 -> 373 bytes cms/locale/ml/LC_MESSAGES/django.po | 705 ++------- cms/locale/ml/LC_MESSAGES/djangojs.mo | Bin 428 -> 428 bytes cms/locale/ml/LC_MESSAGES/djangojs.po | 13 +- cms/locale/mn/LC_MESSAGES/django.mo | Bin 700 -> 703 bytes cms/locale/mn/LC_MESSAGES/django.po | 709 ++------- cms/locale/mn/LC_MESSAGES/djangojs.mo | Bin 438 -> 428 bytes cms/locale/mn/LC_MESSAGES/djangojs.po | 17 +- cms/locale/mn_MN/LC_MESSAGES/django.mo | Bin 481 -> 484 bytes cms/locale/mn_MN/LC_MESSAGES/django.po | 707 ++------- cms/locale/mn_MN/LC_MESSAGES/djangojs.mo | Bin 455 -> 445 bytes cms/locale/mn_MN/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ms/LC_MESSAGES/django.mo | Bin 412 -> 362 bytes cms/locale/ms/LC_MESSAGES/django.po | 704 ++------- cms/locale/ms/LC_MESSAGES/djangojs.mo | Bin 427 -> 417 bytes cms/locale/ms/LC_MESSAGES/djangojs.po | 17 +- cms/locale/mt/LC_MESSAGES/django.mo | Bin 494 -> 444 bytes cms/locale/mt/LC_MESSAGES/django.po | 707 ++------- cms/locale/mt/LC_MESSAGES/djangojs.mo | Bin 509 -> 499 bytes cms/locale/mt/LC_MESSAGES/djangojs.po | 17 +- cms/locale/nb/LC_MESSAGES/django.mo | Bin 28069 -> 27658 bytes cms/locale/nb/LC_MESSAGES/django.po | 828 +++------- cms/locale/nb/LC_MESSAGES/djangojs.mo | Bin 604 -> 602 bytes cms/locale/nb/LC_MESSAGES/djangojs.po | 17 +- cms/locale/nl/LC_MESSAGES/django.mo | Bin 35832 -> 38911 bytes cms/locale/nl/LC_MESSAGES/django.po | 952 ++++------- cms/locale/nl/LC_MESSAGES/djangojs.mo | Bin 607 -> 614 bytes cms/locale/nl/LC_MESSAGES/djangojs.po | 17 +- cms/locale/no/LC_MESSAGES/django.mo | Bin 15647 -> 15597 bytes cms/locale/no/LC_MESSAGES/django.po | 751 ++------- cms/locale/no/LC_MESSAGES/djangojs.mo | Bin 597 -> 595 bytes cms/locale/no/LC_MESSAGES/djangojs.po | 17 +- cms/locale/pap/LC_MESSAGES/django.mo | Bin 426 -> 376 bytes cms/locale/pap/LC_MESSAGES/django.po | 705 ++------- cms/locale/pap/LC_MESSAGES/djangojs.mo | Bin 441 -> 431 bytes cms/locale/pap/LC_MESSAGES/djangojs.po | 17 +- cms/locale/pl/LC_MESSAGES/django.mo | Bin 36128 -> 35770 bytes cms/locale/pl/LC_MESSAGES/django.po | 918 ++++------- cms/locale/pl/LC_MESSAGES/djangojs.mo | Bin 747 -> 748 bytes cms/locale/pl/LC_MESSAGES/djangojs.po | 19 +- cms/locale/pt/LC_MESSAGES/django.mo | Bin 30142 -> 29837 bytes cms/locale/pt/LC_MESSAGES/django.po | 831 +++------- cms/locale/pt/LC_MESSAGES/djangojs.mo | Bin 604 -> 659 bytes cms/locale/pt/LC_MESSAGES/djangojs.po | 19 +- cms/locale/pt_BR/LC_MESSAGES/django.mo | Bin 34937 -> 35838 bytes cms/locale/pt_BR/LC_MESSAGES/django.po | 913 ++++------- cms/locale/pt_BR/LC_MESSAGES/djangojs.mo | Bin 633 -> 687 bytes cms/locale/pt_BR/LC_MESSAGES/djangojs.po | 19 +- cms/locale/pt_PT/LC_MESSAGES/django.mo | Bin 7640 -> 25682 bytes cms/locale/pt_PT/LC_MESSAGES/django.po | 1392 +++++++---------- cms/locale/pt_PT/LC_MESSAGES/djangojs.mo | Bin 622 -> 671 bytes cms/locale/pt_PT/LC_MESSAGES/djangojs.po | 19 +- cms/locale/ro/LC_MESSAGES/django.mo | Bin 13968 -> 13744 bytes cms/locale/ro/LC_MESSAGES/django.po | 772 +++------ cms/locale/ro/LC_MESSAGES/djangojs.mo | Bin 650 -> 651 bytes cms/locale/ro/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ro_RO/LC_MESSAGES/django.mo | Bin 479 -> 429 bytes cms/locale/ro_RO/LC_MESSAGES/django.po | 706 ++------- cms/locale/ro_RO/LC_MESSAGES/djangojs.mo | Bin 494 -> 484 bytes cms/locale/ro_RO/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ru/LC_MESSAGES/django.mo | Bin 43720 -> 47370 bytes cms/locale/ru/LC_MESSAGES/django.po | 966 ++++-------- cms/locale/ru/LC_MESSAGES/djangojs.mo | Bin 785 -> 779 bytes cms/locale/ru/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ru_RU/LC_MESSAGES/django.mo | Bin 574 -> 524 bytes cms/locale/ru_RU/LC_MESSAGES/django.po | 707 ++------- cms/locale/ru_RU/LC_MESSAGES/djangojs.mo | Bin 589 -> 579 bytes cms/locale/ru_RU/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sk/LC_MESSAGES/django.mo | Bin 24312 -> 24057 bytes cms/locale/sk/LC_MESSAGES/django.po | 797 +++------- cms/locale/sk/LC_MESSAGES/djangojs.mo | Bin 691 -> 681 bytes cms/locale/sk/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sk_SK/LC_MESSAGES/django.mo | Bin 1819 -> 1826 bytes cms/locale/sk_SK/LC_MESSAGES/django.po | 710 ++------- cms/locale/sk_SK/LC_MESSAGES/djangojs.mo | Bin 527 -> 517 bytes cms/locale/sk_SK/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sl/LC_MESSAGES/django.mo | Bin 475 -> 425 bytes cms/locale/sl/LC_MESSAGES/django.po | 707 ++------- cms/locale/sl/LC_MESSAGES/djangojs.mo | Bin 490 -> 480 bytes cms/locale/sl/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sl_SI/LC_MESSAGES/django.mo | Bin 10234 -> 442 bytes cms/locale/sl_SI/LC_MESSAGES/django.po | 996 ++++-------- cms/locale/sl_SI/LC_MESSAGES/djangojs.mo | Bin 673 -> 670 bytes cms/locale/sl_SI/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sq/LC_MESSAGES/django.mo | Bin 37089 -> 38578 bytes cms/locale/sq/LC_MESSAGES/django.po | 905 ++++------- cms/locale/sq/LC_MESSAGES/djangojs.mo | Bin 598 -> 641 bytes cms/locale/sq/LC_MESSAGES/djangojs.po | 18 +- cms/locale/sq_AL/LC_MESSAGES/django.mo | Bin 438 -> 388 bytes cms/locale/sq_AL/LC_MESSAGES/django.po | 705 ++------- cms/locale/sq_AL/LC_MESSAGES/djangojs.mo | Bin 453 -> 443 bytes cms/locale/sq_AL/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sr/LC_MESSAGES/django.mo | Bin 495 -> 445 bytes cms/locale/sr/LC_MESSAGES/django.po | 706 ++------- cms/locale/sr/LC_MESSAGES/djangojs.mo | Bin 510 -> 500 bytes cms/locale/sr/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sr@latin/LC_MESSAGES/django.mo | Bin 10250 -> 465 bytes cms/locale/sr@latin/LC_MESSAGES/django.po | 989 ++++-------- cms/locale/sr@latin/LC_MESSAGES/djangojs.mo | Bin 700 -> 690 bytes cms/locale/sr@latin/LC_MESSAGES/djangojs.po | 17 +- cms/locale/sv/LC_MESSAGES/django.mo | Bin 29268 -> 28855 bytes cms/locale/sv/LC_MESSAGES/django.po | 844 +++------- cms/locale/sv/LC_MESSAGES/djangojs.mo | Bin 603 -> 590 bytes cms/locale/sv/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ta/LC_MESSAGES/django.mo | Bin 2641 -> 2644 bytes cms/locale/ta/LC_MESSAGES/django.po | 711 ++------- cms/locale/ta/LC_MESSAGES/djangojs.mo | Bin 682 -> 687 bytes cms/locale/ta/LC_MESSAGES/djangojs.po | 17 +- cms/locale/th/LC_MESSAGES/django.mo | Bin 411 -> 361 bytes cms/locale/th/LC_MESSAGES/django.po | 704 ++------- cms/locale/th/LC_MESSAGES/djangojs.mo | Bin 426 -> 416 bytes cms/locale/th/LC_MESSAGES/djangojs.po | 17 +- cms/locale/th_TH/LC_MESSAGES/django.mo | Bin 765 -> 378 bytes cms/locale/th_TH/LC_MESSAGES/django.po | 717 ++------- cms/locale/th_TH/LC_MESSAGES/djangojs.mo | Bin 443 -> 433 bytes cms/locale/th_TH/LC_MESSAGES/djangojs.po | 17 +- cms/locale/tlh/LC_MESSAGES/django.mo | Bin 422 -> 372 bytes cms/locale/tlh/LC_MESSAGES/django.po | 705 ++------- cms/locale/tlh/LC_MESSAGES/djangojs.mo | Bin 437 -> 427 bytes cms/locale/tlh/LC_MESSAGES/djangojs.po | 17 +- cms/locale/tr/LC_MESSAGES/django.mo | Bin 27460 -> 26868 bytes cms/locale/tr/LC_MESSAGES/django.po | 810 +++------- cms/locale/tr/LC_MESSAGES/djangojs.mo | Bin 606 -> 610 bytes cms/locale/tr/LC_MESSAGES/djangojs.po | 17 +- cms/locale/tr_TR/LC_MESSAGES/django.mo | Bin 1602 -> 1524 bytes cms/locale/tr_TR/LC_MESSAGES/django.po | 714 ++------- cms/locale/tr_TR/LC_MESSAGES/djangojs.mo | Bin 450 -> 440 bytes cms/locale/tr_TR/LC_MESSAGES/djangojs.po | 17 +- cms/locale/ug/LC_MESSAGES/django.mo | Bin 420 -> 370 bytes cms/locale/ug/LC_MESSAGES/django.po | 705 ++------- cms/locale/ug/LC_MESSAGES/djangojs.mo | Bin 435 -> 425 bytes cms/locale/ug/LC_MESSAGES/djangojs.po | 17 +- cms/locale/uk/LC_MESSAGES/django.mo | Bin 46457 -> 46022 bytes cms/locale/uk/LC_MESSAGES/django.po | 912 ++++------- cms/locale/uk/LC_MESSAGES/djangojs.mo | Bin 894 -> 900 bytes cms/locale/uk/LC_MESSAGES/djangojs.po | 19 +- cms/locale/ur/LC_MESSAGES/django.mo | Bin 418 -> 368 bytes cms/locale/ur/LC_MESSAGES/django.po | 705 ++------- cms/locale/ur/LC_MESSAGES/djangojs.mo | Bin 433 -> 423 bytes cms/locale/ur/LC_MESSAGES/djangojs.po | 17 +- cms/locale/vi/LC_MESSAGES/django.mo | Bin 417 -> 367 bytes cms/locale/vi/LC_MESSAGES/django.po | 704 ++------- cms/locale/vi/LC_MESSAGES/djangojs.mo | Bin 432 -> 422 bytes cms/locale/vi/LC_MESSAGES/djangojs.po | 17 +- cms/locale/vi_VN/LC_MESSAGES/django.mo | Bin 434 -> 384 bytes cms/locale/vi_VN/LC_MESSAGES/django.po | 704 ++------- cms/locale/vi_VN/LC_MESSAGES/djangojs.mo | Bin 449 -> 439 bytes cms/locale/vi_VN/LC_MESSAGES/djangojs.po | 17 +- cms/locale/zh_CN/LC_MESSAGES/django.mo | Bin 24539 -> 24676 bytes cms/locale/zh_CN/LC_MESSAGES/django.po | 773 ++------- cms/locale/zh_CN/LC_MESSAGES/djangojs.mo | Bin 605 -> 603 bytes cms/locale/zh_CN/LC_MESSAGES/djangojs.po | 17 +- cms/locale/zh_TW/LC_MESSAGES/django.mo | Bin 12457 -> 12499 bytes cms/locale/zh_TW/LC_MESSAGES/django.po | 725 ++------- cms/locale/zh_TW/LC_MESSAGES/djangojs.mo | Bin 597 -> 591 bytes cms/locale/zh_TW/LC_MESSAGES/djangojs.po | 17 +- cms/static/cms/css/4.1.0rc3/cms.admin.css | 3 - cms/static/cms/css/4.1.0rc3/cms.base.css | 3 - cms/static/cms/css/4.1.0rc3/cms.pagetree.css | 3 - cms/static/cms/css/4.1.0rc3/cms.welcome.css | 3 - cms/static/cms/css/4.1.0rc3/cms.wizard.css | 3 - cms/static/cms/css/4.1.0rc4/cms.admin.css | 3 + cms/static/cms/css/4.1.0rc4/cms.base.css | 3 + cms/static/cms/css/4.1.0rc4/cms.pagetree.css | 3 + cms/static/cms/css/4.1.0rc4/cms.welcome.css | 3 + cms/static/cms/css/4.1.0rc4/cms.wizard.css | 3 + .../fonts/4.1.0rc3/django-cms-iconfont.woff | Bin 8172 -> 0 bytes .../fonts/4.1.0rc3/django-cms-iconfont.woff2 | Bin 6788 -> 0 bytes .../django-cms-iconfont.eot | Bin 15080 -> 15200 bytes .../django-cms-iconfont.svg | 53 +- .../django-cms-iconfont.ttf | Bin 14868 -> 14988 bytes .../fonts/4.1.0rc4/django-cms-iconfont.woff | Bin 0 -> 8228 bytes .../fonts/4.1.0rc4/django-cms-iconfont.woff2 | Bin 0 -> 6828 bytes .../js/dist/4.1.0rc3/bundle.admin.base.min.js | 1 - .../4.1.0rc3/bundle.admin.changeform.min.js | 1 - .../bundle.forms.apphookselect.min.js | 1 - .../bundle.forms.pageselectwidget.min.js | 1 - .../bundle.forms.pagesmartlinkwidget.min.js | 1 - .../4.1.0rc3/bundle.forms.slugwidget.min.js | 1 - .../js/dist/4.1.0rc3/bundle.toolbar.min.js | 1 - .../js/dist/4.1.0rc4/bundle.admin.base.min.js | 1 + .../4.1.0rc4/bundle.admin.changeform.min.js | 1 + .../bundle.admin.pagetree.min.js | 2 +- .../bundle.admin.widget.min.js | 2 +- .../bundle.forms.apphookselect.min.js | 1 + .../bundle.forms.pageselectwidget.min.js | 1 + .../bundle.forms.pagesmartlinkwidget.min.js | 1 + .../4.1.0rc4/bundle.forms.slugwidget.min.js | 1 + .../js/dist/4.1.0rc4/bundle.toolbar.min.js | 1 + .../cms/sass/components/_iconography.scss | 74 +- docs/upgrade/4.1.0.rst | 18 +- 399 files changed, 18153 insertions(+), 54470 deletions(-) delete mode 100644 cms/static/cms/css/4.1.0rc3/cms.admin.css delete mode 100644 cms/static/cms/css/4.1.0rc3/cms.base.css delete mode 100644 cms/static/cms/css/4.1.0rc3/cms.pagetree.css delete mode 100644 cms/static/cms/css/4.1.0rc3/cms.welcome.css delete mode 100644 cms/static/cms/css/4.1.0rc3/cms.wizard.css create mode 100644 cms/static/cms/css/4.1.0rc4/cms.admin.css create mode 100644 cms/static/cms/css/4.1.0rc4/cms.base.css create mode 100644 cms/static/cms/css/4.1.0rc4/cms.pagetree.css create mode 100644 cms/static/cms/css/4.1.0rc4/cms.welcome.css create mode 100644 cms/static/cms/css/4.1.0rc4/cms.wizard.css delete mode 100644 cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff delete mode 100644 cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff2 rename cms/static/cms/fonts/{4.1.0rc3 => 4.1.0rc4}/django-cms-iconfont.eot (85%) rename cms/static/cms/fonts/{4.1.0rc3 => 4.1.0rc4}/django-cms-iconfont.svg (99%) rename cms/static/cms/fonts/{4.1.0rc3 => 4.1.0rc4}/django-cms-iconfont.ttf (85%) create mode 100644 cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff create mode 100644 cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff2 delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.admin.base.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.admin.changeform.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.forms.apphookselect.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.forms.pageselectwidget.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.forms.pagesmartlinkwidget.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.forms.slugwidget.min.js delete mode 100644 cms/static/cms/js/dist/4.1.0rc3/bundle.toolbar.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.admin.base.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.admin.changeform.min.js rename cms/static/cms/js/dist/{4.1.0rc3 => 4.1.0rc4}/bundle.admin.pagetree.min.js (88%) rename cms/static/cms/js/dist/{4.1.0rc3 => 4.1.0rc4}/bundle.admin.widget.min.js (60%) create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.forms.apphookselect.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.forms.pageselectwidget.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.forms.pagesmartlinkwidget.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.forms.slugwidget.min.js create mode 100644 cms/static/cms/js/dist/4.1.0rc4/bundle.toolbar.min.js diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e869e7a1d3c..9d3b0ff2c5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,9 @@ -4.1.0rc3 (unpublished) +4.1.0rc4 (unpublished) ====================== Features: --------- - +* Dark mode for v4 branch (#7597) (e0c923836) -- Fabian Braun * Graceful plugin exceptions (#7423) * Reintroduce indicator menus (#7426) * Add release scripts for develop-4 branch (#7466) @@ -20,6 +20,23 @@ Features: Bug Fixes: ---------- +* Open new plugin window in language of toolbar not of page (#7632) (ac74c2127) -- Fabian Braun +* Update transifex source file (#7629) (06ecf3a8e) -- Fabian Braun +* Remove publish/draft reference from grouper admin message (fcc2f7ad5) -- Fabian Braun +* Update _modal.scss (4ab1f58cd) -- Fabian Braun +* Better action feedback (94cc9b0f5) -- Fabian Braun +* modal.scss dark-mode compatibilitiy (318d417a4) -- Fabian Braun +* remove `copy_to_public` from page and page content extensions (#7604) (81ad858e9) -- Fabian Braun +* Cross-talk between grouper admins due to common list initialization (#7613) (1f932b097) -- Fabian Braun +* Remove admin view provided cancel button from modals (since it has its own cancel button) (#7603) (5caf8d5c2) -- Fabian Braun +* Upgrade js build system to node.js 18 (#7601) (a0977a7f9) -- Vinit Kumar +* update diff-dom and karma, run frontend tests on Chrome Headless (#7599) (69a6cef63) -- Fabian Braun +* Sitemaps in v4 relied on availability of `PageUrl` instead of `PageContent` (#7596) (1c208a8cb) -- Fabian Braun +* page settings does not correctly focus (#7576) (e100087c3) -- Fabian Braun +* Add (back) navigation extenders to advanced settings (#7578) (3e3a86b4f) -- Fabian Braun +* Unlocalize ids to avoid js errors for ids greater than 999 (#7577) (52e6f8751) -- Fabian Braun +* create page wizard fails with Asian page titles/unicode slugs (#7572) (79a063f21) -- Fabian Braun +* take csrf token from admin form or cms toolbar instead of cookie (6a6ebecff) -- Fabian Braun * Menu link is outdated when page moved (#7558) * Preview button lead to the wrong language (#7558) * empty actions shown without unwanted spaces (#7545) (#7552) (aee76b492) -- Fabian Braun @@ -36,13 +53,50 @@ Bug Fixes: Statistics: ----------- -This release includes 3 pull requests, and was created with the help of the following contributors (in alphabetical order): - -* Fabian Braun (1 pull request) -* Github Release Action (2 pull requests) +This release includes 191 pull requests, and was created with the help of the following contributors (in alphabetical order): + +* Adam Murray (2 pull requests) +* Aiky30 (35 pull requests) +* Andrew Aikman (1 pull request) +* Chematronix (1 pull request) +* Fabian Braun (73 pull requests) +* Github Release Action (4 pull requests) +* Jacob Rief (2 pull requests) +* Jonathan Sundqvist (7 pull requests) +* Krzysztof Socha (17 pull requests) +* Malinda Perera (3 pull requests) +* Mark Walker (8 pull requests) +* Mateusz Kamycki (1 pull request) +* Nebojsa Knezevic (1 pull request) +* Paulo (18 pull requests) +* Paulo Alvarado (12 pull requests) +* Simon (1 pull request) +* Vadim Sikora (11 pull requests) +* Vinit Kumar (2 pull requests) +* anirbanlahiri-fidelity (1 pull request) +* monikasulik (3 pull requests) With the review help of the following contributors: +* Adam Murray +* Aiky30 +* Andrew Aikman +* Angelo Dini +* Bartosz Płóciennik +* Fabian Braun +* Florian Delizy +* Github Release Action +* Iacopo Spalletti +* Krzysztof Socha +* Marco Bonetti +* Mark Walker +* Radek Stępień +* Radosław Stępień +* Raffaele Salmaso +* Stuart Axon +* Vinit Kumar +* pajowu +* Éric Araujo Thanks to all contributors for their efforts! diff --git a/cms/__init__.py b/cms/__init__.py index e50e4b4573f..c5160cda7c2 100644 --- a/cms/__init__.py +++ b/cms/__init__.py @@ -1,3 +1,3 @@ -__version__ = '4.1.0rc3' +__version__ = '4.1.0rc4' default_app_config = 'cms.apps.CMSConfig' diff --git a/cms/locale/af/LC_MESSAGES/django.mo b/cms/locale/af/LC_MESSAGES/django.mo index e2b287fec86508a0aa418d24d1f1e84efd523c50..8bbe7bc24d1e41651f2182197cdacf34feca7534 100644 GIT binary patch delta 85 zcmZ3^{FP~f3ZwNzRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*;p2>>TT8Os0w delta 134 zcmey$w48Z@3S;g>RXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6YtCf0JdQ))c^nh diff --git a/cms/locale/af/LC_MESSAGES/django.po b/cms/locale/af/LC_MESSAGES/django.po index a82f74c2cb2..998ffcd6174 100644 --- a/cms/locale/af/LC_MESSAGES/django.po +++ b/cms/locale/af/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Afrikaans (http://www.transifex.com/divio/django-cms/language/af/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Afrikaans (https://app.transifex.com/divio/teams/58664/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/af/LC_MESSAGES/djangojs.mo b/cms/locale/af/LC_MESSAGES/djangojs.mo index 758a9c4935c5ef7b747a8e4c8a3f1118c76cbc1c..6d1f07d51d950547e976e91edf18c43c11b095b1 100644 GIT binary patch delta 68 zcmdnSyoPy#3S-ek)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!$Ph^78VDuMYwMx_TQ= diff --git a/cms/locale/af/LC_MESSAGES/djangojs.po b/cms/locale/af/LC_MESSAGES/djangojs.po index 5e486653553..aba59a8b278 100644 --- a/cms/locale/af/LC_MESSAGES/djangojs.po +++ b/cms/locale/af/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Afrikaans (http://www.transifex.com/divio/django-cms/language/af/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Afrikaans (http://app.transifex.com/divio/django-cms/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ar/LC_MESSAGES/django.mo b/cms/locale/ar/LC_MESSAGES/django.mo index 51f07a75518e4cc6d1ef5dacd12d01e22e10d026..ce9e92698e766db28ab7b3f7f2900246644e6d33 100644 GIT binary patch delta 9265 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 LkMf&qdQ|!^)2360 delta 9675 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, 2013 -# Ali Khalel , 2019 -# Bashar Al-Abdulhadi, 2013-2015,2017,2019-2020 -# Bashar Al-Abdulhadi, 2013-2014 -# Bashar Ghadanfar <10.tens@gmail.com>, 2017 -# Jonas Obrist , 2011 -# SHENKAR , 2014 -# SHENKAR , 2014 -# Waleed Eliass , 2014 -# Yousef Alsalem , 2013 +# Fabian Braun , 2023 +# Bashar Ghadanfar <10.tens@gmail.com>, 2023 +# Bashar Al-Abdulhadi, 2023 +# Ali Khalel , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Bashar Al-Abdulhadi\n" -"Language-Team: Arabic (http://www.transifex.com/divio/django-cms/language/ar/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Ali Khalel , 2023\n" +"Language-Team: Arabic (https://app.transifex.com/divio/teams/58664/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,7 +51,9 @@ msgstr "عنوان الصفحة" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "سيتم الكتابة على ما يتم عرضه في أعلى المتصفح الخاص بك أو في العلامات المرجعية" +msgstr "" +"سيتم الكتابة على ما يتم عرضه في أعلى المتصفح الخاص بك أو في العلامات " +"المرجعية" msgid "Description meta tag" msgstr "علامة الوصف التعريفية" @@ -65,9 +61,6 @@ msgstr "علامة الوصف التعريفية" msgid "A description of the page used by search engines." msgstr "شرح عن الصفحة تستخدمه محركات البحث." -msgid "Slug must not be empty." -msgstr "حقل الـ Slug يجب ان لا يكون فارغا" - msgid "Page type" msgstr "نوع الصفحة" @@ -80,7 +73,6 @@ msgstr "الكتابة على عنوان الـ URL" msgid "Keep this field empty if standard path should be used." msgstr "اترك هذا الحقل فارغ اذا أردت استخدام العنوان الإفتراضي" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -102,11 +94,9 @@ msgstr "عرض القائمة" msgid "limit when this page is visible in the menu" msgstr "الحدود عندما تكون هذه الصفحة مرئية فى القائمة" -#| msgid "Copy options" msgid "URL options" msgstr "خيارات الرابط" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -122,7 +112,6 @@ msgstr "إعدادات التطبيق" msgid "A page with this reverse URL id exists already." msgstr "توجد صفحة سابقة بنفس عنوان المعرّف العكسي لـ هذا URL" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "قيمة إعدادات التطبيق غير صحيحة" @@ -159,32 +148,44 @@ msgstr "حذف" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "لا يستطيع المستخدمون إنشاء صفحة بدون صلاحيات تسمح بتعديل الصفحة المنشأة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون إنشاء صفحة بدون صلاحيات تسمح بتعديل الصفحة المنشأة. " +"المطلوب تعديل الصلاحيات." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "لا يستطيع المستخدمون حذف صفحة بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون حذف صفحة بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل" +" الصلاحيات." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "لا يستطيع المستخدمون تعيين صلاحيات للصفحة بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون تعيين صلاحيات للصفحة بدون صلاحيات تسمح بتعديل الصفحة. " +"المطلوب تعديل الصلاحيات." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "لا يستطيع المستخدمون حذف صلاحيات الصفحة بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون حذف صلاحيات الصفحة بدون صلاحيات تسمح بتعديل الصفحة. " +"المطلوب تعديل الصلاحيات." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "لا يستطيع المستخدمون إنشاء صلاحيات للصفحة بدون صلاحيات تسمح بتعديل الصلاحيات. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون إنشاء صلاحيات للصفحة بدون صلاحيات تسمح بتعديل " +"الصلاحيات. المطلوب تعديل الصلاحيات." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "لا يستطيع المستخدمون حذف صلاحيات الصفحة بدون صلاحيات تسمح بتعديل الصلاحيات. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون حذف صلاحيات الصفحة بدون صلاحيات تسمح بتعديل الصلاحيات. " +"المطلوب تعديل الصلاحيات." #, python-format msgid "Invalid plugin type '%s'" @@ -196,7 +197,6 @@ msgstr "يجب تحديد لغة مدعومة!" msgid "Parent plugin language must be same as language!" msgstr "يجب أن تكون اللغة الرئيسية للملحق نفس اللغة!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "موضع الملحق الأصل يجب أن يكون نفس الموضع!" @@ -211,7 +211,6 @@ msgid "The page is not eligible to be home." msgstr "هذه الصفحة غير مؤهله لتكون صفحة رئيسية." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -230,14 +229,15 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "خطأ! ليس لديك الصلاحية لنقل هذه الصفحة. من فضلك أعد تحميل الصفحة" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "ليس لديك صلاحية لنسخ هذه الصفحة." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "خطأ! الصفحة التي تحاول لصقها غير مترجمة لأي من اللغات المعرّفة الأخرى بموقع الوجهة." +msgstr "" +"خطأ! الصفحة التي تحاول لصقها غير مترجمة لأي من اللغات المعرّفة الأخرى بموقع " +"الوجهة." msgid "You do not have permission to edit this page" msgstr "ليس لديك الصلاحية لتعديل هذه الصفحة" @@ -263,16 +263,27 @@ msgstr "تم تغيير القالب بنجاح" msgid "You do not have permission to copy these plugins." msgstr "ليس لديك الصلاحية لنسخ هذه الملحقات." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "ليس لديك الصلاحية لحذف هذه الصفحة" +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "تم حذف العنوان وملحقات اللغة %(language)s." -msgid "You do not have permission to change this page's in_navigation status" -msgstr "لا تملك الحقوق لتغيير حالة تصفح هذه الصفحة" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "فارغ" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "قيد المشاهدة" @@ -290,7 +301,6 @@ msgstr "لا يتوفر لديك تصريح لتعديل هذا العنصر" msgid "You do not have permission to add a plugin" msgstr "ليس لديك الصلاحية لإضافة ملحق" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "ليس لديك صلاحية لنسخ هذا الموضع." @@ -300,18 +310,15 @@ msgstr "الملحق غير موجود" msgid "You do not have permission to edit this plugin" msgstr "ليس لديك الصلاحية لتعديل هذا الملحق" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "ليس لديك الصلاحية للصق هذا الملحق" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "ليس لديك الصلاحية للصق هذا الموضع" msgid "You have no permission to move this plugin" msgstr "ليس لديك الصلاحية لنقل هذا الملحق" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "ليس لديك الصلاحية لقص هذا الملحق" @@ -341,6 +348,47 @@ msgstr "حقوق المستخدمين والمجموعات" msgid "Page permissions management" msgstr "إدارة حقوق الصفحة" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "عرض" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "لم يعثر على معلّق تطبيق باسم \"%r\"" @@ -361,7 +409,9 @@ msgstr "أنشاء الاسم المستعار" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "هذا مرجع مستعار ، بإمكانك تحرير المحتوى فقط على صفحة %(page_title)s" +msgstr "" +"هذا مرجع مستعار ، بإمكانك تحرير المحتوى فقط على صفحة %(page_title)s" msgid "Create" msgstr "إنشاء" @@ -369,9 +419,6 @@ msgstr "إنشاء" msgid "Edit" msgstr "تعديل" -msgid "Preview" -msgstr "عرض" - msgid "Structure" msgstr "الهيكل" @@ -415,15 +462,12 @@ msgstr "تسجيل خروج" msgid "Language" msgstr "اللغة" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "إضافة ترجمة" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "حذف ترجمة" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "نسخ جميع الملحقات" @@ -432,7 +476,6 @@ msgid "from %s" msgstr "من %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "هل أنت متأكد أنك تريد نسخ جميع الملحقات من %s؟" @@ -442,7 +485,6 @@ msgstr "الصفحات" msgid "Page" msgstr "الصفحة" -#| msgid "Create" msgid "Create Page" msgstr "إنشاء صفحة" @@ -489,20 +531,12 @@ msgid "Select a valid page" msgstr "حدد صفحة صحيحة" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -516,7 +550,12 @@ msgstr "زوّد الصفحة الجديدة بعنوان." msgid "Leave empty for automatic slug, or override as required." msgstr "لعنوان تفرع تلقائي يُترك فارغاً ، أو تعاد صياغته حسب الطلب." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "ليس لديك الصلاحية لإضافة صفحة." @@ -613,6 +652,57 @@ msgstr "السماح عند" msgid "page" msgstr "صفحة" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "للمستخدمين المسجلين فقط" + +msgid "for anonymous users only" +msgstr "للمستخدمين الغير مسجلين فقط" + +msgid "Inherit from parent page" +msgstr "قم بالوراثة من الصفحة الأب" + +msgid "Deny" +msgstr "رفض" + +msgid "Only this website" +msgstr "هذا الموقع فقط" + +msgid "Allow" +msgstr "سماح" + +msgid "title" +msgstr "العنوان" + +msgid "overwrite the title (html title tag)" +msgstr "تحرير العنوان في الـ HTML" + +msgid "overwrite the title in the menu" +msgstr "تحرير العنوان في القائمة" + +msgid "description" +msgstr "الشرح" + +msgid "The text displayed in search engines." +msgstr "النص المعروض في محركات البحث" + +msgid "redirect" +msgstr "إعادة توجيه" + +msgid "The template used to render the content." +msgstr "القالب المستعمل لعرض المحتوى." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "الإفتراضي" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -621,9 +711,6 @@ msgstr "معرف فريد الذي تم استخدامه مع templatetag page_u msgid "pages" msgstr "الصفحات" -msgid "default" -msgstr "الإفتراضي" - msgid "slug" msgstr "slug" @@ -651,29 +738,36 @@ msgstr "على مستوى الصفحة" msgid "frontend view restriction" msgstr "قيود مشاهدة الواجهة" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "يرجى اختيار مستخدم أو مجموعة." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "لا يستطيع المستخدمون نشر صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون نشر صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب " +"تعديل الصلاحيات." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "لا يستطيع المستخدمون تغيير الإعدادات المتقدمة لصفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون تغيير الإعدادات المتقدمة لصفحةٍ بدون صلاحيات تسمح " +"بتعديل الصفحة. المطلوب تعديل الصلاحيات." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "لا يستطيع المستخدمون تغيير صلاحيات صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون تغيير صلاحيات صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. " +"المطلوب تعديل الصلاحيات." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "لا يستطيع المستخدمون نقل صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب تعديل الصلاحيات." +msgstr "" +"لا يستطيع المستخدمون نقل صفحةٍ بدون صلاحيات تسمح بتعديل الصفحة. المطلوب " +"تعديل الصلاحيات." msgid "can recover any deleted page" msgstr "يستطيع إسترجاع أي صفحة محذوفة" @@ -693,7 +787,9 @@ msgstr "صلاحيات الصفحة" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "تصريح إضافة الصفحة مطلوب أيضا للولوج للصفحات الفرعية، و إلا لا يمكن تعديل الصفحة من قبل المنشئ" +msgstr "" +"تصريح إضافة الصفحة مطلوب أيضا للولوج للصفحات الفرعية، و إلا لا يمكن تعديل " +"الصفحة من قبل المنشئ" msgid "User (page)" msgstr "المستخدم (الصفحة)" @@ -760,45 +856,6 @@ msgstr "مواضع ثابتة" msgid "A static placeholder with the same site and code already exists" msgstr "إن موضعاً ثابتاً بنفس الموقع والرمز موجود سلفاً" -msgid "for logged in users only" -msgstr "للمستخدمين المسجلين فقط" - -msgid "for anonymous users only" -msgstr "للمستخدمين الغير مسجلين فقط" - -msgid "Inherit from parent page" -msgstr "قم بالوراثة من الصفحة الأب" - -msgid "Deny" -msgstr "رفض" - -msgid "Only this website" -msgstr "هذا الموقع فقط" - -msgid "Allow" -msgstr "سماح" - -msgid "title" -msgstr "العنوان" - -msgid "overwrite the title (html title tag)" -msgstr "تحرير العنوان في الـ HTML" - -msgid "overwrite the title in the menu" -msgstr "تحرير العنوان في القائمة" - -msgid "description" -msgstr "الشرح" - -msgid "The text displayed in search engines." -msgstr "النص المعروض في محركات البحث" - -msgid "redirect" -msgstr "إعادة توجيه" - -msgid "The template used to render the content." -msgstr "القالب المستعمل لعرض المحتوى." - msgid "Advanced options" msgstr "خيارات متقدمة" @@ -806,7 +863,6 @@ msgid "Generic" msgstr "عام" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "تم تعديل %(name)s المدعو \"%(obj)s\" بنجاح." @@ -816,65 +872,54 @@ msgstr "لا يوجد إعدادات اخرى لهذا الملحق. الرجا msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "معدل" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "حفظ" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "سجل الدخول للإدارة من هنا here." @@ -889,9 +934,8 @@ msgstr "اسم المستخدم:" msgid "Password:" msgstr "كلمة المرور:" -#| msgid "Add Page" msgid "Add a page" -msgstr "إضافة صفحة" +msgstr "" msgid "Change a page" msgstr "غير صفحة" @@ -974,16 +1018,21 @@ msgstr "قص" msgid "Paste" msgstr "لصق" -#| msgid "Save as new" msgid "Set as home" msgstr "ضبط كصفحة رئيسية" +msgid "Permissions" +msgstr "الصلاحيات" + msgid "is restricted" msgstr "مقيّدة" msgid "last change by" msgstr "آخر تعديل من قبل" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "تعريفية" @@ -993,7 +1042,6 @@ msgstr "قائمة بالصفحات" msgid "Search" msgstr "بحث" -#| msgid "Page Title" msgid "Page Tree" msgstr "شجرة الصفحات" @@ -1005,19 +1053,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nاستعادة ما حذف من %(name)s" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"استعادة ما حذف من %(name)s" -#| msgid "in navigation" msgid "Main Navigation" msgstr "القائمة الرئيسية" -#| msgid "Actions" msgid "Options" msgstr "خيارات" @@ -1033,7 +1075,9 @@ msgstr "خطأ:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "لا يمكن نسخ هذه الصفحة لأن تطبيقاً قد ألحق بها. انظر إعدادات الصفحة المتقدمة من أجل إدارة معلّقات التطبيق." +msgstr "" +"لا يمكن نسخ هذه الصفحة لأن تطبيقاً قد ألحق بها. انظر إعدادات الصفحة المتقدمة" +" من أجل إدارة معلّقات التطبيق." msgid "Are you sure you want to § this page?" msgstr "هل أنت متأكد أنك تريد § هذه الصفحة؟" @@ -1041,7 +1085,6 @@ msgstr "هل أنت متأكد أنك تريد § هذه الصفحة؟" msgid "Reload" msgstr "إعادة تحميل" -#| msgid "New Page" msgid "New node" msgstr "عقدة جديدة" @@ -1055,10 +1098,6 @@ msgid "Menu" msgstr "القائمة" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1079,30 +1118,15 @@ msgstr "إغلاق" msgid "Legend" msgstr "تفسير" -#| msgid "published" -msgid "Published" -msgstr "منشور" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "غير منشور" - -msgid "Empty" -msgstr "فارغ" - -#| msgid "in menu" msgid "In menu" msgstr "في القائمة" -#| msgid "not in menu" msgid "Not in menu" msgstr "ليس في القائمة" -#| msgid "New page" msgid "View page" msgstr "عرض الصفحة" -#| msgid "softroot" msgid "Softroot" msgstr "سوفتـروت" @@ -1119,12 +1143,18 @@ msgstr "بالقائمة" msgid "not in menu" msgstr "ليست بالقائمة" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "إعدادات الصفحة (اضغط زر الزيح لإعدادات متقدمة)" -msgid "Permissions" -msgstr "الصلاحيات" +msgid "This page has no preview!" +msgstr "لا يوجد معاينة لهذه الصفحة!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "جاري إعادة توجيهها إلى:" msgid "Clipboard" msgstr "الحافظة" @@ -1174,7 +1204,6 @@ msgstr "تحديد" msgid "Available plugins" msgstr "الملحقات المتوفرة" -#| msgid "Structure" msgid "Toggle structure" msgstr "تبديل البُنية" @@ -1188,11 +1217,12 @@ msgid "More" msgstr "المزيد" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "نسخة تطوير باستخدام ن.إ.م. جانقو %(cms_version)s ، جانقو %(django_version)s ، بايثون %(python_version)s" +msgstr "" +"نسخة تطوير باستخدام ن.إ.م. جانقو %(cms_version)s ، جانقو %(django_version)s " +"، بايثون %(python_version)s" msgid "Cancel" msgstr "إلغاء" @@ -1200,7 +1230,6 @@ msgstr "إلغاء" msgid "The following error occured:" msgstr "حدث الخطأ التالي:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "إجراء ناجح" @@ -1213,15 +1242,12 @@ msgstr "هل انت متأكد إنك ترغب في نشر الصفحة؟" msgid "Plugin will be added here" msgstr "سوف يضاف الملحق هنا" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "لديك بعض التغييرات غير المحفوظة." -#| msgid "Loading..." msgid "Loading" msgstr "جارِ التحميل..." -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "أأنت متأكد من رغبتك بالتخلي عن هذه التغييرات؟" @@ -1230,7 +1256,6 @@ msgid "" "correctly." msgstr "لم يُتمكن من تحميل النموذج. يرجى التأكد من أن المخدم يعمل بشكل صحيح." -#| msgid "Notify user" msgid "Most used" msgstr "الأكثر استخداما" @@ -1240,10 +1265,12 @@ msgstr "اختصارات" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "أحضر مربع حوار المساعدة هذا إلى الأعلى" -#| msgid "Cancel" msgid "Close/cancel" msgstr "إغلاق/إلغاء" @@ -1259,32 +1286,29 @@ msgstr "فتح صندوق \"الإنشاء\"" msgid "Focus on Toolbar" msgstr "تركيز على شريط الأدوات" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "تركيز على المواضع" msgid "Move to next/previous element" msgstr "انتقال إلى العنصر التالي/السابق" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "تركيز على ملحقات الموضع" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "تحرير الملحق" -#| msgid "not in menu" msgid "Open actions menu" msgstr "فتح قائمة الإجراءات" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "فرد/طي" msgid "" "Login failed. Please check your credentials and try again." -msgstr "فشل الدخول. يرجى التحقق من معلومات الدخول و معاودة المحاولة مرة اخرى" +msgstr "" +"فشل الدخول. يرجى التحقق من معلومات الدخول و معاودة المحاولة" +" مرة اخرى" msgid "Double-click to edit" msgstr "أضغط مرتين للتعطيل" @@ -1307,12 +1331,6 @@ msgstr "تكبير" msgid "Drop a plugin here" msgstr "أنزل ملحقاً هنا" -msgid "This page has no preview!" -msgstr "لا يوجد معاينة لهذه الصفحة!" - -msgid "It is being redirected to:" -msgstr "جاري إعادة توجيهها إلى:" - msgid "Installation successful!" msgstr "تم التنصيب بنجاح!" @@ -1327,14 +1345,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nأهلاً بكل في نظام إدارة محتوى جانقو الإصدار %(cms_version)s." +msgstr "" +"\n" +"أهلاً بكل في نظام إدارة محتوى جانقو الإصدار %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nأضف الصفحة الأولى إلى النظام للمتابعة." +msgstr "" +"\n" +"أضف الصفحة الأولى إلى النظام للمتابعة." #, python-format msgid "" @@ -1342,7 +1364,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nيبدو أن جافاسكريبت غير مفعلة لذا يرجى\nإضافة صفحة يدوياً." +msgstr "" +"\n" +"يبدو أن جافاسكريبت غير مفعلة لذا يرجى\n" +"إضافة صفحة يدوياً." msgid "Installation Notes" msgstr "ملاحظات التنصيب" @@ -1353,15 +1378,6 @@ msgstr "دعم" msgid "Documentation" msgstr "توثيقات" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1370,15 +1386,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1403,11 +1410,7 @@ msgstr "لطفاً اختر خياراً أدناه من أجل المتابعة msgid "Next" msgstr "التالي" -msgid "no content" -msgstr "لا محتوى" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1418,7 +1421,9 @@ msgstr "هذه الصفحة غير موجودة على الموقع %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "لم يتم العثور على صفحات مطابقة لمعطيات البحث `%(page_lookup)s⏎ `باستخدام بطاقات القوالب. رابط هذا الطلب هو: http://%(host)s%(path)s" +msgstr "" +"لم يتم العثور على صفحات مطابقة لمعطيات البحث `%(page_lookup)s⏎ `باستخدام " +"بطاقات القوالب. رابط هذا الطلب هو: http://%(host)s%(path)s" msgid "Two columns" msgstr "عمودان" @@ -1451,7 +1456,9 @@ msgstr "فعال" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "يحدد ما إذا كان المستخدم سيعامل على أنه نشط. يمكن إلغاء هذا الخيار بدلا من حذف الحسابات." +msgstr "" +"يحدد ما إذا كان المستخدم سيعامل على أنه نشط. يمكن إلغاء هذا الخيار بدلا من " +"حذف الحسابات." msgid "users" msgstr "المستخدمين" @@ -1486,7 +1493,6 @@ msgstr "مقالات" msgid "Sample App" msgstr "عينة تطبيق" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1496,9 +1502,8 @@ msgstr "عينة تطبيق بصلاحيات محجوبة" msgid "Sample App 2" msgstr "عينة تطبيق 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "عينة تطبيق 3" +msgstr "عينة تطبيق 2" msgid "Namespaced App" msgstr "تطبيق ذو نطاق محدد" @@ -1533,9 +1538,8 @@ msgstr "قائمة ثابتة ٢" msgid "Static Menu3" msgstr "قائمة ثابتة 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "قائمة ثابتة 4" +msgstr "قائمة ثابتة" msgid "Category" msgstr "تصنيف" @@ -1562,12 +1566,10 @@ msgid "UserSettings" msgstr "إعدادات المستخدم" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "إضافة ملحق إلى الموضع \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "إضافة ملحق إلى %(plugin_name)s" @@ -1585,7 +1587,9 @@ msgstr "لدى هذا الموضع مسبقاً العدد الأقصى من ا msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "لدى هذا الموضع مسبقاً العدد الأقصى (%(limit)s) المسموح به للملحقات %(plugin_name)s." +msgstr "" +"لدى هذا الموضع مسبقاً العدد الأقصى (%(limit)s) المسموح به للملحقات " +"%(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1595,7 +1599,9 @@ msgstr "تعذر العثور على تركيبة CMS_REQUEST_IP_RESOLVER الم msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "تعذر العثور على الدالة CMS_REQUEST_IP_RESOLVER المحددة: \"{0}\" في التابع \"{1}\".." +msgstr "" +"تعذر العثور على الدالة CMS_REQUEST_IP_RESOLVER المحددة: \"{0}\" في التابع " +"\"{1}\".." #, python-format msgid "Create a new %s instance." @@ -1604,398 +1610,3 @@ msgstr "إنشاء مثيل %s جديد." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "عُثر على برنامج وِزارد مسجل سلفاً للنموذج: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" -#~ msgstr[4] "a848884d0af974a125106fa2043a5716_pl_4" -#~ msgstr[5] "a848884d0af974a125106fa2043a5716_pl_5" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ar/LC_MESSAGES/djangojs.mo b/cms/locale/ar/LC_MESSAGES/djangojs.mo index 75e190d0f2b95a6dc994a6ac232b5d50d4a46409..9ca9c5f122e1c2a4c1e7e65d16df563a8a148820 100644 GIT binary patch delta 96 zcmcb>dWm&{4(~Ze28O8&3=FwIoHEgJIj@1Pp`os^fr5dVm5JrVx8hn(iNzU-MGEd2 xi7APBX+V~Zp@CjWYF@EJdTwH7j$U$puAPp8k%6K4WF1C%=EQ=6&3=qci~t%L8>s*Q delta 94 zcmcb_dVzI<4(}O828O8&3=FwIoHWsLIj@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fYS&vbkxxBo5a{yx#BLEMQ9R&aY diff --git a/cms/locale/ar/LC_MESSAGES/djangojs.po b/cms/locale/ar/LC_MESSAGES/djangojs.po index 74254ae4fcf..15a27be0726 100644 --- a/cms/locale/ar/LC_MESSAGES/djangojs.po +++ b/cms/locale/ar/LC_MESSAGES/djangojs.po @@ -7,20 +7,30 @@ # Abdelkader Maarouf , 2015 # Ahmed H , 2013 # Bashar Al-Abdulhadi, 2017 +# Bashar Al-Abdulhadi, 2017 # Bashar Ghadanfar <10.tens@gmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Arabic (http://www.transifex.com/divio/django-cms/language/ar/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Bashar Ghadanfar <10.tens@gmail.com>, 2017\n" +"Language-Team: Arabic (http://app.transifex.com/divio/django-cms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "هل أنت متأكد من الإنتقال الى تبويب أخر دون حفظ الصفحة أولاً؟" diff --git a/cms/locale/ar_SA/LC_MESSAGES/django.mo b/cms/locale/ar_SA/LC_MESSAGES/django.mo index 925265d47ecae933bd83489df3b0d107a52aaab8..7715cc1f98951657a7d44225992eaf5f87c93c2b 100644 GIT binary patch delta 85 zcmeBUxx+j`g>lhDRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOqOE&0suLE8g&2w delta 134 zcmcb^+{ZFOh4IQnRXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6JLA*0MlPBe*gdg diff --git a/cms/locale/ar_SA/LC_MESSAGES/django.po b/cms/locale/ar_SA/LC_MESSAGES/django.po index 06b2ff13663..ad9aa92d5cb 100644 --- a/cms/locale/ar_SA/LC_MESSAGES/django.po +++ b/cms/locale/ar_SA/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/divio/django-cms/language/ar_SA/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Arabic (Saudi Arabia) (https://app.transifex.com/divio/teams/58664/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +985,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -983,7 +1009,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -997,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1031,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1164,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1190,7 +1191,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1297,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1343,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1476,7 +1441,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1523,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1552,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,398 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" -#~ msgstr[4] "a848884d0af974a125106fa2043a5716_pl_4" -#~ msgstr[5] "a848884d0af974a125106fa2043a5716_pl_5" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ar_SA/LC_MESSAGES/djangojs.mo b/cms/locale/ar_SA/LC_MESSAGES/djangojs.mo index 3736f52e0b38ebbcf945d29d093c19a1adb9eb60..0eb02fcb2b75d4a08e51cc72f31508c5fe78c596 100644 GIT binary patch delta 70 zcmbQsGMQz93ggX*s`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O ar50pl<|OK6mP|aa&zx9Lu$hrjh7kY)Ar^W7 delta 79 zcmbQtGM8n73ghF6s`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loYzsoQJ0ORHx8UO$Q diff --git a/cms/locale/ar_SA/LC_MESSAGES/djangojs.po b/cms/locale/ar_SA/LC_MESSAGES/djangojs.po index 45efa10dcd3..523934958a6 100644 --- a/cms/locale/ar_SA/LC_MESSAGES/djangojs.po +++ b/cms/locale/ar_SA/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/divio/django-cms/language/ar_SA/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Arabic (Saudi Arabia) (http://app.transifex.com/divio/django-cms/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/be/LC_MESSAGES/django.mo b/cms/locale/be/LC_MESSAGES/django.mo index b9ef9bf57ae90ac12e496b4fdd04a780fbb783a3..d5642c7254452e17b6c8a43e4f63c20d975833cc 100644 GIT binary patch delta 86 zcmdnQ(!er7h4I)#RXrBnn9cz=#>;D m<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cZ02WFW&{9AA{m?j delta 135 zcmZo**~BtIh4IHkRXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO8}BMJ0s!(BET#Ye diff --git a/cms/locale/be/LC_MESSAGES/django.po b/cms/locale/be/LC_MESSAGES/django.po index 68e953495cd..5628b3bbc20 100644 --- a/cms/locale/be/LC_MESSAGES/django.po +++ b/cms/locale/be/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Belarusian (http://www.transifex.com/divio/django-cms/language/be/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Belarusian (https://app.transifex.com/divio/teams/58664/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/be/LC_MESSAGES/djangojs.mo b/cms/locale/be/LC_MESSAGES/djangojs.mo index 516dca04ea7699d943de96e70076e6dcdae886f7..27823088581f32a74b7c33aaa1671416609a1fe1 100644 GIT binary patch delta 70 zcmX@evYlmu3e#W4iE44Y2D*lZy2b_y24+?!mJ=t6%T^|4XICoNWaxUOYzjbp cy+kPAAtkdcGhZ(`W8zU2=JN9Ljc>de0lw%Oq5uE@ diff --git a/cms/locale/be/LC_MESSAGES/djangojs.po b/cms/locale/be/LC_MESSAGES/djangojs.po index db9e2644257..11a6a0c7c6f 100644 --- a/cms/locale/be/LC_MESSAGES/djangojs.po +++ b/cms/locale/be/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Belarusian (http://www.transifex.com/divio/django-cms/language/be/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Belarusian (http://app.transifex.com/divio/django-cms/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/bg/LC_MESSAGES/django.mo b/cms/locale/bg/LC_MESSAGES/django.mo index a5e98af915a69271301580b931c1c60612f7d0c7..15b860c7330d1ab40b5726a9ecf603fcd1026d9c 100644 GIT binary patch delta 4668 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 LJNur?85i_F%9ZP- delta 4857 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 Dk{mvL diff --git a/cms/locale/bg/LC_MESSAGES/django.po b/cms/locale/bg/LC_MESSAGES/django.po index 81ea46cef9e..53b0d9443f1 100644 --- a/cms/locale/bg/LC_MESSAGES/django.po +++ b/cms/locale/bg/LC_MESSAGES/django.po @@ -3,20 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Boris Chervenkov , 2012 -# Boyko Amarov , 2013 -# masarliev , 2011 -# Miroslav Slavkov , 2013 -# Venelin Stoykov , 2015 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Bulgarian (http://www.transifex.com/divio/django-cms/language/bg/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/divio/teams/58664/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -58,10 +54,8 @@ msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Списък с думи, разделени със запетая, който понякога използват търсачките." - -msgid "Slug must not be empty." -msgstr "Слъгът не трябва да бъде празен." +msgstr "" +"Списък с думи, разделени със запетая, който понякога използват търсачките." msgid "Page type" msgstr "Тип страница" @@ -73,9 +67,9 @@ msgid "Overwrite URL" msgstr "Напиши URL адрес" msgid "Keep this field empty if standard path should be used." -msgstr "Оставете това поле празно, ако трябва да бъде използван стандартен път." +msgstr "" +"Оставете това поле празно, ако трябва да бъде използван стандартен път." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -97,11 +91,9 @@ msgstr "видимост на менюто" msgid "limit when this page is visible in the menu" msgstr "ограничи, когато тази страница е видима в менюто" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -117,12 +109,12 @@ msgstr "Конфигурации на приложението" msgid "A page with this reverse URL id exists already." msgstr "Страница с този обратен URL адрес вече съществува." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" msgid "An application instance using this configuration already exists." -msgstr "Инстанция на приложението използваща тази конфигурация вече съществува" +msgstr "" +"Инстанция на приложението използваща тази конфигурация вече съществува" msgid "An application instance with this name already exists." msgstr "Друга инстанция на това приложение с това има вече съществува." @@ -191,7 +183,6 @@ msgstr "Избрания език трябва да бъде един от по msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -206,7 +197,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -223,9 +213,10 @@ msgstr "%(name)s обект с основен ключ %(key)r не същест msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Грешка! Нямате права за да преместите тази страница. Моля презаредете страницата." +msgstr "" +"Грешка! Нямате права за да преместите тази страница. Моля презаредете " +"страницата." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -258,7 +249,6 @@ msgstr "Шаблонът е променен успешно" msgid "You do not have permission to copy these plugins." msgstr "Нямате право да копирате тези плъгини." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -266,8 +256,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Заглавието и добавките на %(language)s език бяха изтрити" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Нямате право да променяте статуса на навигацията на тази страница." +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Празно" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Вижте забраната" @@ -285,7 +287,6 @@ msgstr "Нямате право да редактирате този елеме msgid "You do not have permission to add a plugin" msgstr "Нямате право да слагате добавки." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -295,18 +296,15 @@ msgstr "Плъгинът не е намерен" msgid "You do not have permission to edit this plugin" msgstr "Нямате право да редактирате този плъгин" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Нямате право да местите тази добавка." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -336,6 +334,47 @@ msgstr "Права на потребители и групи" msgid "Page permissions management" msgstr "Управление на правата за страницата" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Преглед" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -364,9 +403,6 @@ msgstr "" msgid "Edit" msgstr "редактирай" -msgid "Preview" -msgstr "Преглед" - msgid "Structure" msgstr "Структура" @@ -410,15 +446,12 @@ msgstr "Изход" msgid "Language" msgstr "Език" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -427,7 +460,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -437,7 +469,6 @@ msgstr "страници" msgid "Page" msgstr "Страница" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -484,20 +515,12 @@ msgid "Select a valid page" msgstr "Изберете валидна страница" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -511,7 +534,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -608,17 +636,67 @@ msgstr "Дай права" msgid "page" msgstr "страница" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "достъп само за вписани потребители" + +msgid "for anonymous users only" +msgstr "само за нерегистрирани потребители" + +msgid "Inherit from parent page" +msgstr "Наследи от родителската страница" + +msgid "Deny" +msgstr "Забрани" + +msgid "Only this website" +msgstr "Само този сайт" + +msgid "Allow" +msgstr "Разреши" + +msgid "title" +msgstr "заглавие" + +msgid "overwrite the title (html title tag)" +msgstr "презаписвай заглавието (HTML Title)" + +msgid "overwrite the title in the menu" +msgstr "презаписвай заглавието в менюто" + +msgid "description" +msgstr "описание" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "пренасочване" + +msgid "The template used to render the content." +msgstr "Шаблон използван за показването на съдържанието." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "по подразбиране" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Уникален идентификатор, използван с page_url етикета на темплейта за създаване на връзка до тази страница." +msgstr "" +"Уникален идентификатор, използван с page_url етикета на темплейта за " +"създаване на връзка до тази страница." msgid "pages" msgstr "страници" -msgid "default" -msgstr "по подразбиране" - msgid "slug" msgstr "слъг" @@ -646,7 +724,6 @@ msgstr "на ниво на страницата" msgid "frontend view restriction" msgstr "ограничение при разглеждане през публичния интерфейс" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -688,7 +765,9 @@ msgstr "Права на страницата" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Правата за създаване на страница изискват достъп и до подстраниците. В противен случай добавената страница не може да бъде променяна от своя автор." +msgstr "" +"Правата за създаване на страница изискват достъп и до подстраниците. В " +"противен случай добавената страница не може да бъде променяна от своя автор." msgid "User (page)" msgstr "Потребител (страница)" @@ -755,45 +834,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "достъп само за вписани потребители" - -msgid "for anonymous users only" -msgstr "само за нерегистрирани потребители" - -msgid "Inherit from parent page" -msgstr "Наследи от родителската страница" - -msgid "Deny" -msgstr "Забрани" - -msgid "Only this website" -msgstr "Само този сайт" - -msgid "Allow" -msgstr "Разреши" - -msgid "title" -msgstr "заглавие" - -msgid "overwrite the title (html title tag)" -msgstr "презаписвай заглавието (HTML Title)" - -msgid "overwrite the title in the menu" -msgstr "презаписвай заглавието в менюто" - -msgid "description" -msgstr "описание" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "пренасочване" - -msgid "The template used to render the content." -msgstr "Шаблон използван за показването на съдържанието." - msgid "Advanced options" msgstr "Разширени опции" @@ -801,7 +841,6 @@ msgid "Generic" msgstr "Общ" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -811,65 +850,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Запази" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Влезте в администрацията тук." @@ -884,7 +912,6 @@ msgstr "Потребител:" msgid "Password:" msgstr "Парола:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -965,16 +992,21 @@ msgstr "Отрежи" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Права" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -984,7 +1016,6 @@ msgstr "Списък със страниците" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -998,17 +1029,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1032,7 +1055,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1046,10 +1068,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1070,30 +1088,15 @@ msgstr "Затвори" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Празно" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1110,12 +1113,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Права" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1165,7 +1174,6 @@ msgstr "" msgid "Available plugins" msgstr "Достъпни добавки" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1179,7 +1187,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1191,7 +1198,6 @@ msgstr "Отказ" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1204,15 +1210,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1221,7 +1224,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1231,10 +1233,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1250,26 +1254,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1298,12 +1297,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1344,15 +1337,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1361,15 +1345,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1394,11 +1369,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1409,7 +1380,9 @@ msgstr "Страницата не е открита на %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Не може да бъде намерена страница при търсене с `%(page_lookup)s` . URL адресът на заявката е бил: http://%(host)s%(path)s" +msgstr "" +"Не може да бъде намерена страница при търсене с `%(page_lookup)s` . URL " +"адресът на заявката е бил: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1477,7 +1450,6 @@ msgstr "статии" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1487,7 +1459,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1524,7 +1495,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1553,12 +1523,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1576,7 +1544,9 @@ msgstr "Това място вече съдържа максималния бр msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Това място вече съдържа максималния брой (%(limit)s) разрешени добавки %(plugin_name)s." +msgstr "" +"Това място вече съдържа максималния брой (%(limit)s) разрешени добавки " +"%(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1595,394 +1565,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/bg/LC_MESSAGES/djangojs.mo b/cms/locale/bg/LC_MESSAGES/djangojs.mo index f8bc74abee75d47ce81dedfa80a20712bba7d4f8..6527a1023c01d908cb5ec1cb5b545e86e5b26a89 100644 GIT binary patch delta 90 zcmbQmI*oOL4sQh`1H)7X28MPZ=9_4_oYz3t&`{UdK*7Mw%EWTwTXB`*(wx-F+{8Qu mn}Yn}l0*j>zgRChKi5u2!N|bSaIy}g5_4if!RA0lPeuSqSs9!F delta 94 zcmbQnI*WCJ4sQ)31H)7X28MPZ7Mf_eoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Bulgarian (http://www.transifex.com/divio/django-cms/language/bg/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: suleyman , 2011\n" +"Language-Team: Bulgarian (http://app.transifex.com/divio/django-cms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Наистина ли искате да промените раздели без първо да запазите страницата?" diff --git a/cms/locale/bn/LC_MESSAGES/django.mo b/cms/locale/bn/LC_MESSAGES/django.mo index c95a9ca6326fb68f6696a97099eab5f31234edd1..29fdb9aa3000c00c7c35e984ba65ec1b95f307ba 100644 GIT binary patch delta 316 zcmXZUJxjzu5C-5`_B=s^fFOz}u7{v_CYy_TXb=$#MbOUDW-lKSFxilea#mIr7NT$n zHa6B)US(;2r9Z~fchP0wnPK*wXXnLv8r>F*h;gEMA}Sk1%kTke_yN~oYm8_Xp2Ag_ zLi_&_PQrIM1wUaMj^GmffyZ#JN#wv7+I$To_}V0orqQtRzrYM^VcvoE;5oE={XgFg zZ`d1axKVBfi`+d5+>R~L@xzUv?c+_HC{w# z(ap)B;O;26`w&y)3N-G2>x29aSBEfG;#AzFpEP{KF325S>Ui|`QE zVF3019h`x$a2CG92KA7r6{JT?% zu9S8l(`~F~(Upio-VR0Tv%N5jL=v-lSE&o%af+g_l`e|U!fTyyI`JTuPUjps$%8bX Na*}by=-d1-{{V+DMO6R* diff --git a/cms/locale/bn/LC_MESSAGES/django.po b/cms/locale/bn/LC_MESSAGES/django.po index a3830470d07..553e24670e1 100644 --- a/cms/locale/bn/LC_MESSAGES/django.po +++ b/cms/locale/bn/LC_MESSAGES/django.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Aniruddha Adhikary , 2013 +# Nazir Ahmed Sabbir , 2022 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Bengali (http://www.transifex.com/divio/django-cms/language/bn/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Bengali (https://app.transifex.com/divio/teams/58664/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +57,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +69,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +181,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +245,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +252,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +283,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +292,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +330,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +442,12 @@ msgstr "" msgid "Language" msgstr "ভাষা" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +465,6 @@ msgstr "" msgid "Page" msgstr "পৃষ্ঠা" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +511,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +632,57 @@ msgstr "" msgid "page" msgstr "পৃষ্ঠা" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "শিরোনাম" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +691,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +718,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +826,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "শিরোনাম" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +833,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +842,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +904,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +984,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1008,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1021,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1060,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1080,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1105,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1166,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1179,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1190,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1202,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1246,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1289,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1361,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1440,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1449,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1485,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,394 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/bn/LC_MESSAGES/djangojs.mo b/cms/locale/bn/LC_MESSAGES/djangojs.mo index b85cc771b516c91e9f69cf10d2a27ba82581c120..5a9d9f98bedb9734866e79b48f3e10b32b702e43 100644 GIT binary patch delta 103 zcmcc2dWUs_4sSCf1H)7X28KgGEIH9~Ij@1Pp`os^fr5dVm5JrVx8jD5d6`9}DJdC= u3XUlmnc0a&l?pbAFfoTjsF+?}YKfhWf{}rt@njuF1?I$pg3bPnEsOvXEFT^K delta 94 zcmcb^dYN^C4sR7B1H)7X28KgGEHKe>Ij@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fY*_2U%xxBo5a|B}xBLMpx9Mu2- diff --git a/cms/locale/bn/LC_MESSAGES/djangojs.po b/cms/locale/bn/LC_MESSAGES/djangojs.po index 28cf6370506..f77354a6ece 100644 --- a/cms/locale/bn/LC_MESSAGES/djangojs.po +++ b/cms/locale/bn/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Bengali (http://www.transifex.com/divio/django-cms/language/bn/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Aniruddha Adhikary , 2013\n" +"Language-Team: Bengali (http://app.transifex.com/divio/django-cms/language/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "আপনি কি নিশ্চিত যে, আপনি পৃষ্ঠাটি সংরক্ষণ না করেই ট্যাব পরিবর্তন করতে চান?" diff --git a/cms/locale/ca/LC_MESSAGES/django.mo b/cms/locale/ca/LC_MESSAGES/django.mo index ccb4920f59a48ff4ea211a5312125cb524c9ec67..ae413cdffd0ebfae1655d11c8ad93299a9b2166f 100644 GIT binary patch delta 8285 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 aI+vQ)i?eG+7JJtZoAQ8L{TI{Tbp0=6xuTZ< delta 8634 zcmZA630zfm-pBES3%i1fEGlwESzOpr6hT1TmBbxayuuYO!Ub8}s=1|=rPHHDSyMTh zrDpYHhMA99X^S&jqt&CCO{vY3Io4E9>NHJg&gaYd`+7NZUaueT|Nnpf=f9r=*2U94 zTmJ0hJ=?XzqZZdHAIs{6e+#m#>!c4xsMNAvjxPY35zfU z=i=?S1OxG+xqlhEk+1^6C)hI@fLgkts1X)m2b_jX#ws!1 ziGJj_VK_dIn)zYW^B)*bp;qp!$$x{s>p_V!a{cr-N z;#AaLuR$&GgQ)sXV<_%1Y=Rj3&+$0%HbTI$WnE?GxW&;Nkh;%og`e;o>IfZb3Cb|o8*YN$VI zK!Y(1v#|&#<1pNeEF_402)PNFE zOO%BHn2UNN$KpgRMa}#L)JnaA!T7q#{}I*RN2mdOj_UXu)Y-a@+EQ;wlHEWAszV2= zVmxZ*!>~7wz;-wvN8mzK16xq1d?(VTbqMwRcc$D*w(m!w-imb8TT_G#+-u!Kg1Xj& zs1M2OsF_{GPS}c?NdWIqHin@FIvLgR3{-s&YNeVm1ih%0*?^kJoPsF_VN`I#6^-ibO?UesxS1Viy9jKjB3@A(DPr~Mj+U{tzY zuRnTwQjkqTBbtfSvC2^$ZbB{fR@4gZKn>_EWUSUP)Lyot>ZfPe^>a`Y8HrknvBqhb zN4^yEaZ3jKua3`Cppk!%n#m2+QblF*4ZuFA4hm6wT7;U}Ow``jpq981wPlA<13hl? zXRsgnuTcXF;=3M(p@Ug}br?s1Mw*9ea3XfYsm8^ql~{#p;4akbcrR)|n^8-<1J%wx z)Ii=go-lrnn#d*WidVcOG*e&JQ4e-T-ROa;n1p)WvQSID46|@2cENL~z5Nl3u`@SS zuN0GTBeIy*o0y1~QD>tkubT80kSHKgfofk!%@c<6TR!qPw-pP?z zirUI;sFivdwIchFrmQ2#n{3@cO*ENCX3)QtO`?#3ji?(ZQA>OtBk_VM{}nakz#Myp zdZ9W@K`nJIYQ-j?1~A=}&%p@t6{vQ-ru-fZpnvNj5;}ZOqB?jHyW^XvUlJ!V9zVqa zcmqe{fL#74!8+7ivmG_V)2J=*W#0y2ma!al{~=U6hcJr%t#3)_w06w14__#1B_c2i z`=Vx=i#jV4&HZU6Uy8jbufTA;2i4w_sKdF#xEs~(epLN;(W@DMX)0VnJ$TLNmv496 z6}6WR)BsXZ4Gl%rAB7s=WYm_;H!eff-+-FPW2mj!gYEFOeAZtT4p5*5-Zp-S8u?k& zC;1`{#Ggz)mJ_Q1rJ?q;05y;?s1Bx}1~?0KCdyFl*I+-q9b<57f!A)}5CwYhJ=BBm zqt3)>)OX;oru-UeVE!C=-S2|>ki??OvrzT(QCl$`Rc{HZ-W{j`KZNRUlh+hHWqcYn z;vJ|{{W9u%@CND>e~4`ZLUniz)lf%XAvGL?dM*?-<7ia9fv9?!sFlk$dG7=gOMLiv z;7V>B9A#P6IApYCt;1)KKCI+196(%(YH+u4KWYmP<9s}db1-47{k>R?6Ue`V+pzOE z%UXzQHNX5F(C-5oM%(7@z^+%)jat5ki6Y9*YMXlH- z)C#_2@`urv{2A<^_y0TzUTNzBs)5*v_6##oGtWi7n$}&YneN9xJcK>*eN;ymF%55E z0;Wyk??;@CeQ^y2<4)8H?!|8OZ@oc6Bl-vj;-|(AMRrH2sKYZHgR$6@&&L4rm8QJj zX~`2(l{K8hOf9&`U7Y9dF_tHX4hg#3%C@Dt{fw{Ekyq5yl4or#vc8QJ^J^K~>B`ZN+E|!C9!&TY*}E8dSYi z7>)O1I_^L%{Tb8%e2VP>grYt`5vZk4Lro;RnDq}OaT^6%l2X)6E6|Cnkz-+fg;kg` z#s1gu6R4SXnQ9Mw0BS%ZQ5_Ydmc9yA?>^Mbx1c7l3-x{2=Ov-{_D`sl_!#@(7dReo zpq6m_G<)R5s0L=6{9==@Ma}pQ)Bx6FSKN-8@qW~qIE-!mp$6dnn1q)05+>pg*bXD7 z+yBz(iE6-&+M;?)!F8yWI)HI_3bhrjsNbGZGweUtQ&1DA!X#XZ`M3pX*K3_8p^;uf zE#WoPhbC~Qz4zlVmV61Sq1#RQY78U)Flyy?q9*bRhT?wIjE|ybd@wTl<5bjHnSiQSjWKvXYDJ&JZumN?-U(E_ zAF%*C&0+BBXfg@Sd?D%&12<~q_hBAx!eRIcYGp#_+V!JROCFC}fkCK=6kO5A{aEu@e?1sI&;C?qq6V@6^}1AGPh5)H;|Ebo{5WdhmrxD=f;#NTLw((3uFzn1I)3VPr!)QsLmHE;~0@dRoB-=PNlGpeDG1@=IC zqYiHhYCyTD`V&xFFay=08}(crYNfnh5}N5FI2M18{qbwmYZh8+?|nXM4`(8MTPrXJ zKf%G+ZK3_g<#@~>zXAu~i>T*L<8b^Z4#dGuev_itNkSd|iisCT z5qn@?EW|>rz)XArwG!u1OBh&T*B^ojVIJFpTPj~UzzgnQ3Gj3tz4YjzMq3?cMN(1 zNK7Z8rCNa6%UblqHK@H>j~c*Z=!@G>uhTA!!S_%zx`1i;Eq1`@D*KBWi~i)}Q2ivM zwk)rT^;d&a%#9LM18&p|pG57|UQ~m}P#>lfs1DDW`~}oX{2jH&?UvYE6M+u$`KSpw zQ3G+K>eVk{{da2@G`2S;A;EOMxj<96Sc(CO@0Y#!0S;1 z-Duoo%AdkO%AfX<&;VXUoq?m+4=`JSP2GWJ!+<2)Do{n z4d8d^gF48%W|0X%@5B7?*B!2COfl(|Mz`@f?yJFr1Z`QRL?7-wgSTD-D4RnxQg|ov zE^!+%gLsh8wZ}#)?QMHS^d)LXY%@2+Be$eA16_K*18Dr!wj3)*x*u`QLX+Q3el}4|Y$o(;RhPExNumSwdaHm--;8(K zQue3$ZzlaT&ZAy2@s%k%jC+Y#`fvMAmvB?pBAd3?ME7)vVu%NbOzPUY8IL^;u) z(67s-#D8Al=9ziim_uA4I#M=?SV;N>;?^sS@?7(b-X!~CjVmeC$L8jhVG??ulZY>g zQtBk)Sgga-gsxYJkwgXMO*n*joES&G4A&Fa2wgKMyY*@yb5whLfVe@tOz5MqkvKz4 zC3H3N;4r+0m`S`uR1wb-{fM>1GU6lR*2{x9!Z5`xnSKa;OBQl;(x3G^oayfR!zh+m08rcP%ZPku0=tEVY% zCEeeL`Nx`qQxyCcQEu`PMnB4QC6hmCC)<90%g^7K{M)$Qq{Vb1lKS7FTLrgVLruG1 zQ#MrV-<1LBPr`u94K;X(z1$)6o4UKN0^)_!EC877!zd$wWT! z6Y&;N#B(mxrT(p}`oT4r8&$*-(!uz@I1OLK@wgmy71&tml!X%Y#AB4{za!nemYH-i z1s93G5|@Z6lrJ{-s?~p!$pqm{B85ud6S_v3dr_pPlJ17{iMxnGb1$CsV&dktgG8FS zx7rkbj`|Gr=cbSfMk>EAZlGG}A+*txGZ z2hH0XJt?6<)AiIk>X@vH;nq7`9>*dcD@$&EbKaETY0SV~<|uM`nlf9W=dbY%8s%ze zTLs!_*;2O6C#}rsS?1=!>I5~==qOKcE^SiMQTNW)3b)7Ua5}1;4wl7L;Vg5%)6$&m tstR#8)Us$U`fFHJTVLP&vn#G;t7~ohkOr5h!PT}%ZpPl&67N3T?q5%v@3sH{ diff --git a/cms/locale/ca/LC_MESSAGES/django.po b/cms/locale/ca/LC_MESSAGES/django.po index 741365e31be..cc0f94d5a6c 100644 --- a/cms/locale/ca/LC_MESSAGES/django.po +++ b/cms/locale/ca/LC_MESSAGES/django.po @@ -3,19 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Daniel Bassa Perez , 2013 -# Roger Pons , 2012-2016 -# whoami , 2013 -# whoami , 2013 +# Roger Pons , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Catalan (http://www.transifex.com/divio/django-cms/language/ca/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Catalan (https://app.transifex.com/divio/teams/58664/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -51,16 +49,17 @@ msgstr "Títol de la pàgina" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobreescriviu el que es mostra a la part superior del navegador o en els seus favorits" +msgstr "" +"Sobreescriviu el que es mostra a la part superior del navegador o en els " +"seus favorits" msgid "Description meta tag" msgstr "Meta tag de la descripció" msgid "A description of the page used by search engines." -msgstr "Una llista de paraules clau separades per comes a vegades utilitzada pels motors de cerca." - -msgid "Slug must not be empty." -msgstr "L'slug no pot estar en blanc." +msgstr "" +"Una llista de paraules clau separades per comes a vegades utilitzada pels " +"motors de cerca." msgid "Page type" msgstr "Tipus de Pàgina" @@ -74,7 +73,6 @@ msgstr "Sobreescriu URL" msgid "Keep this field empty if standard path should be used." msgstr "Manté aquest camp buit si s'ha d'usar la ruta per defecte" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +94,9 @@ msgstr "visibilitat del menú" msgid "limit when this page is visible in the menu" msgstr "limitar quan aquesta pàgina és visible al menú" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +112,6 @@ msgstr "Configuracions d'aplicació" msgid "A page with this reverse URL id exists already." msgstr "Una pàgina amb una URL que correspon amb aquest id ja existeix." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -190,7 +185,6 @@ msgstr "L'idioma ha de ser un dels idiomes suportats!" msgid "Parent plugin language must be same as language!" msgstr "L'idioma del plugin ha de ser el mateix que el del plugin pare!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "El marcador del plugin pare ha de ser el mateix marcador!" @@ -205,7 +199,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,9 +215,9 @@ msgstr "L'objecte %(name)s amb la clau primària %(key)r no existeix." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Error! Sense permís per moure aquesta pàgina. Cal recarregar la pàgina" +msgstr "" +"Error! Sense permís per moure aquesta pàgina. Cal recarregar la pàgina" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,16 +250,27 @@ msgstr "La plantilla ha estat modificada amb èxit" msgid "You do not have permission to copy these plugins." msgstr "Sense premís per copiar aquests plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Sense permisos per esborrar aquesta pàgina" +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "S'han eliminat el títol i els connectors en idioma %(language)s" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Sense permís per canviar l'estat d'aquesta pàgina a la navegació" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Buit" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Restricció de vista" @@ -284,7 +288,6 @@ msgstr "Sense permís per editar aquest element" msgid "You do not have permission to add a plugin" msgstr "Sense permís per afegir un plugin." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +297,15 @@ msgstr "No s'ha trobat el plugin" msgid "You do not have permission to edit this plugin" msgstr "Sense permís per modificar aquest plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Sense permís per moure aquest plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +335,47 @@ msgstr "Permisos d'Usuaris i Grups" msgid "Page permissions management" msgstr "Gestió de permisos de la Pàgina" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Visualització prèvia" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "No s'ha trobat l'apphook \"%r\" registrat" @@ -363,9 +404,6 @@ msgstr "Crear" msgid "Edit" msgstr "Modificar" -msgid "Preview" -msgstr "Visualització prèvia" - msgid "Structure" msgstr "Estructura" @@ -409,15 +447,12 @@ msgstr "Sortir" msgid "Language" msgstr "Idioma" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Afegir Traducció" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Esborrar Traducció" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Copiar tots els plugins" @@ -426,7 +461,6 @@ msgid "from %s" msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +470,6 @@ msgstr "Pàgines" msgid "Page" msgstr "Pàgina" -#| msgid "Create" msgid "Create Page" msgstr "Crear Pàgina" @@ -483,26 +516,20 @@ msgid "Select a valid page" msgstr "Seleccionar una pàgina vàlida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Opcional. Si s'informa, s'afegirà automàticament dins d'un nou plugin de text." +msgstr "" +"Opcional. Si s'informa, s'afegirà automàticament dins d'un nou plugin de " +"text." msgid "Provide a title for the new page." msgstr "Introdueix un títol per la nova pàgina." @@ -510,7 +537,12 @@ msgstr "Introdueix un títol per la nova pàgina." msgid "Leave empty for automatic slug, or override as required." msgstr "Deixar en blanc per slug automàtic, o sobreescriure si s'escau." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,17 +639,67 @@ msgstr "Autoritza a" msgid "page" msgstr "pàgina" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "momés per usuaris identificats" + +msgid "for anonymous users only" +msgstr "només per usuaris anònims" + +msgid "Inherit from parent page" +msgstr "Heretar de pàgina pare" + +msgid "Deny" +msgstr "Denegar" + +msgid "Only this website" +msgstr "Només aquest lloc web" + +msgid "Allow" +msgstr "Permetre" + +msgid "title" +msgstr "títol" + +msgid "overwrite the title (html title tag)" +msgstr "sobreescriure el títol (title tag html)" + +msgid "overwrite the title in the menu" +msgstr "sobreescriure el títol al menú" + +msgid "description" +msgstr "descripció" + +msgid "The text displayed in search engines." +msgstr "Text mostrat als motors de cerca." + +msgid "redirect" +msgstr "redirecciona" + +msgid "The template used to render the content." +msgstr "La plantilla utilitza per representar el contingut." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "defecte" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Un identificador únic que és utilitzat amb el templatetag page_url per enllaçar amb aquesta pàgina" +msgstr "" +"Un identificador únic que és utilitzat amb el templatetag page_url per " +"enllaçar amb aquesta pàgina" msgid "pages" msgstr "pàgines" -msgid "default" -msgstr "defecte" - msgid "slug" msgstr "slug" @@ -645,7 +727,6 @@ msgstr "al nivell de pàgina" msgid "frontend view restriction" msgstr "restricció a visualitzar la interfície d'usuari" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -673,7 +754,8 @@ msgid "can recover any deleted page" msgstr "pot recuperar qualsevol pàgina eliminada" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Si no hi ha res seleccionat, l'usuari tindrà permisos concedits a tot arreu." +msgstr "" +"Si no hi ha res seleccionat, l'usuari tindrà permisos concedits a tot arreu." msgid "Page global permission" msgstr "Permisos globals de pàgina" @@ -687,7 +769,9 @@ msgstr "Permís de pàgina" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "El permís Afegir pàgina requereix també l'accés als fills o descendents. En cas contrari, la pàgina afegida no podrà ser modificada pel seu creador." +msgstr "" +"El permís Afegir pàgina requereix també l'accés als fills o descendents. En " +"cas contrari, la pàgina afegida no podrà ser modificada pel seu creador." msgid "User (page)" msgstr "Usuari (pàgina)" @@ -731,7 +815,9 @@ msgstr "nom de marcador de posició estàtic" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nom descriptiu per identificar aquest marcador de posició estàtic. No es mostrarà als usuaris." +msgstr "" +"Nom descriptiu per identificar aquest marcador de posició estàtic. No es " +"mostrarà als usuaris." msgid "placeholder code" msgstr "codi de marcador de posició" @@ -752,46 +838,8 @@ msgid "static placeholders" msgstr "marcadors de posició estàtics" msgid "A static placeholder with the same site and code already exists" -msgstr "Ja existeix un marcador de posició estàtic amb el mateix lloc web i codi" - -msgid "for logged in users only" -msgstr "momés per usuaris identificats" - -msgid "for anonymous users only" -msgstr "només per usuaris anònims" - -msgid "Inherit from parent page" -msgstr "Heretar de pàgina pare" - -msgid "Deny" -msgstr "Denegar" - -msgid "Only this website" -msgstr "Només aquest lloc web" - -msgid "Allow" -msgstr "Permetre" - -msgid "title" -msgstr "títol" - -msgid "overwrite the title (html title tag)" -msgstr "sobreescriure el títol (title tag html)" - -msgid "overwrite the title in the menu" -msgstr "sobreescriure el títol al menú" - -msgid "description" -msgstr "descripció" - -msgid "The text displayed in search engines." -msgstr "Text mostrat als motors de cerca." - -msgid "redirect" -msgstr "redirecciona" - -msgid "The template used to render the content." -msgstr "La plantilla utilitza per representar el contingut." +msgstr "" +"Ja existeix un marcador de posició estàtic amb el mateix lloc web i codi" msgid "Advanced options" msgstr "Opcions avançades" @@ -800,7 +848,6 @@ msgid "Generic" msgstr "Genèric" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "El %(name)s \"%(obj)s\" ha estat modificat." @@ -810,65 +857,54 @@ msgstr "No hi ha més ajustos per aquest plugin. Ja el podeu desar." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Modificat" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Desa" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Entra en l'administració aquí ." @@ -883,7 +919,6 @@ msgstr "Nom d'usuari:" msgid "Password:" msgstr "Contrasenya:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +999,21 @@ msgstr "Tallar" msgid "Paste" msgstr "Enganxar" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Permisos de la pàgina" + msgid "is restricted" msgstr "està restringida" msgid "last change by" msgstr "últim canvi per" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -983,7 +1023,6 @@ msgstr "Llista de pàgines" msgid "Search" msgstr "Cercar" -#| msgid "Page Title" msgid "Page Tree" msgstr "Arbre de Pàgines" @@ -995,19 +1034,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Restaurar %(name)s esborrat\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Restaurar %(name)s esborrat\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navegació Principal" -#| msgid "Actions" msgid "Options" msgstr "Opcions" @@ -1023,7 +1057,9 @@ msgstr "Error:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Aquesta pàgina no pot ser copiada perquè té una aplicació lligada a ella. Consulteu la Configuració Avançada de la pàgina per gestionar els apphooks." +msgstr "" +"Aquesta pàgina no pot ser copiada perquè té una aplicació lligada a ella. " +"Consulteu la Configuració Avançada de la pàgina per gestionar els apphooks." msgid "Are you sure you want to § this page?" msgstr "Segur que voleu § aquesta pàgina?" @@ -1031,7 +1067,6 @@ msgstr "Segur que voleu § aquesta pàgina?" msgid "Reload" msgstr "Recarregar" -#| msgid "New Page" msgid "New node" msgstr "Nou node" @@ -1045,10 +1080,6 @@ msgid "Menu" msgstr "Menú" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1100,15 @@ msgstr "Tancar" msgid "Legend" msgstr "Llegenda" -#| msgid "published" -msgid "Published" -msgstr "Publicat" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Despublicat" - -msgid "Empty" -msgstr "Buit" - -#| msgid "in menu" msgid "In menu" msgstr "Al menú" -#| msgid "not in menu" msgid "Not in menu" msgstr "No al menú" -#| msgid "New page" msgid "View page" msgstr "Veure pàgina" -#| msgid "softroot" msgid "Softroot" msgstr "Arrel tova" @@ -1109,12 +1125,18 @@ msgstr "en menú" msgid "not in menu" msgstr "no és al menú" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Configuració de pàgina (clic SHIFT per configuració avançada)" -msgid "Permissions" -msgstr "Permisos de la pàgina" +msgid "This page has no preview!" +msgstr "Aquesta pàgina no té previsualització!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "S'està redirigint a:" msgid "Clipboard" msgstr "Porta-retalls" @@ -1164,7 +1186,6 @@ msgstr "" msgid "Available plugins" msgstr "Plugins disponibles" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,11 +1199,12 @@ msgid "More" msgstr "Més" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Versió de desenvolupament utilitzant django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Versió de desenvolupament utilitzant django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Cancel·lar" @@ -1190,7 +1212,6 @@ msgstr "Cancel·lar" msgid "The following error occured:" msgstr "S´ha produït el següent error:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,24 +1224,22 @@ msgstr "Segur que voleu publicar aquesta pàgina?" msgid "Plugin will be added here" msgstr "El plugin serà afegit aquí" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Teniu modificacions sense desar." -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Segur que voleu descartar aquestes modificacions?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "No s'ha pogut carregar el formulari. Comproveu que el servidor està funcionant correctament." +msgstr "" +"No s'ha pogut carregar el formulari. Comproveu que el servidor està " +"funcionant correctament." -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1249,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,32 +1270,29 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "La identificació ha fallat. Comproveu les credencials i torneu-ho a provar." +msgstr "" +"La identificació ha fallat. Comproveu les credencials i " +"torneu-ho a provar." msgid "Double-click to edit" msgstr "Fer doble clic per editar" @@ -1297,12 +1315,6 @@ msgstr "Maximitzar" msgid "Drop a plugin here" msgstr "Deixar anar un plugin aquí" -msgid "This page has no preview!" -msgstr "Aquesta pàgina no té previsualització!" - -msgid "It is being redirected to:" -msgstr "S'està redirigint a:" - msgid "Installation successful!" msgstr "Instal·lació finalitzada amb èxit!" @@ -1317,14 +1329,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nBenvinguts a django CMS versió %(cms_version)s." +msgstr "" +"\n" +"Benvinguts a django CMS versió %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nAfegiu la primera pàgina al sistema per continuar." +msgstr "" +"\n" +"Afegiu la primera pàgina al sistema per continuar." #, python-format msgid "" @@ -1332,7 +1348,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nSembla que JavaScript està desactivat, així que\nafegeix una pàgina manualment." +msgstr "" +"\n" +"Sembla que JavaScript està desactivat, així que\n" +"afegeix una pàgina manualment." msgid "Installation Notes" msgstr "Notes de la instal·lació" @@ -1343,15 +1362,6 @@ msgstr "Suport" msgid "Documentation" msgstr "Documentació" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1370,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1394,7 @@ msgstr "Trieu una opció de sota per anar al següent pas." msgid "Next" msgstr "Següent" -msgid "no content" -msgstr "sense contingut" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1408,7 +1405,9 @@ msgstr "Pàgina no trobada a %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Una etiqueta de la plantilla no ha pogut trobat la pàgina amb els arguments de lookup `%(page_lookup)s\n`. La URL de la petició ha estat: http://%(host)s%(path)s" +msgstr "" +"Una etiqueta de la plantilla no ha pogut trobat la pàgina amb els arguments de lookup `%(page_lookup)s\n" +"`. La URL de la petició ha estat: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dues columnes" @@ -1421,7 +1420,9 @@ msgstr "nom d'usuari" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Obligatori. 300 caràcters o menys. Lletres, números i els caràcters @/./+/-/_" +msgstr "" +"Obligatori. 300 caràcters o menys. Lletres, números i els caràcters " +"@/./+/-/_" msgid "Enter a valid username." msgstr "Introduiu un nom d'usuari vàlid." @@ -1433,7 +1434,8 @@ msgid "staff status" msgstr "estat de membre del personal" msgid "Designates whether the user can log into this admin site." -msgstr "Estableix si un usuari pot identificar-se en aquest lloc d'administració." +msgstr "" +"Estableix si un usuari pot identificar-se en aquest lloc d'administració." msgid "active" msgstr "actiu" @@ -1441,7 +1443,9 @@ msgstr "actiu" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Estableix si un usuari ha de ser tractat com a actiu. Desmarcar-lo en comptes d'esborrar comptes d'usuari." +msgstr "" +"Estableix si un usuari ha de ser tractat com a actiu. Desmarcar-lo en " +"comptes d'esborrar comptes d'usuari." msgid "users" msgstr "usuaris" @@ -1476,7 +1480,6 @@ msgstr "Articles" msgid "Sample App" msgstr "App de prova" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,9 +1489,8 @@ msgstr "App d'exemple amb permisos exclosos" msgid "Sample App 2" msgstr "App de prova 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "App de prova 2" msgid "Namespaced App" msgstr "App amb espai de noms" @@ -1523,9 +1525,8 @@ msgstr "Menú estàtic 2" msgid "Static Menu3" msgstr "Menú Static3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Static Menu4" +msgstr "Menú estàtic" msgid "Category" msgstr "Categoria" @@ -1543,7 +1544,8 @@ msgid "Change Category" msgstr "Modificar categoria" msgid "Thanks for spending some quality time with the Web site today." -msgstr "Gràcies per gastar una mica de temps de qualitat amb el lloc web avui." +msgstr "" +"Gràcies per gastar una mica de temps de qualitat amb el lloc web avui." msgid "Inherit the template of the nearest ancestor" msgstr "Hereta la plantilla del l'ancestre més pròxim" @@ -1552,12 +1554,10 @@ msgid "UserSettings" msgstr "Configuració d'usuari" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1575,7 +1575,9 @@ msgstr "Aquest marcador de posició ja té el nombre màxim de plugins (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Aquest marcador de posició ja té el nombre màxim permès (%(limit)s) de plugins de %(plugin_name)s." +msgstr "" +"Aquest marcador de posició ja té el nombre màxim permès (%(limit)s) de " +"plugins de %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1585,7 +1587,9 @@ msgstr "No s'ha trobat el mòdul CMS_REQUEST_IP_RESOLVER especificat: \"{0}\"." msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "No s'ha trobat la funció CMS_REQUEST_IP_RESOLVER especificada: \"{0}\" al mòdul \"{1}\"." +msgstr "" +"No s'ha trobat la funció CMS_REQUEST_IP_RESOLVER especificada: \"{0}\" al " +"mòdul \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1594,394 +1598,3 @@ msgstr "Crear una nova %s instància." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Ja hi ha un assistent registrat per al model: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ca/LC_MESSAGES/djangojs.mo b/cms/locale/ca/LC_MESSAGES/djangojs.mo index 1d752dbd133a6f872f520bf258ff86bdea282769..2f85ee9347c54fbd5353ac2832d4d5105871efaf 100644 GIT binary patch delta 97 zcmcc3a*t(#4sR_Z1H)7X1_m!67M^IioYz3t&`{UdK*7Mw%EWTwTXF56{Pff!g@F9L vVg;Kb5W4`#bV$!l%*@eC&d;^eQ7|$vG|~YQrjvCT6_^tX3O4&Q@-PAb4GJ3F delta 94 zcmcb|a+_s>4sR7B1H)7X1_m!67MN(coYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Catalan (http://www.transifex.com/divio/django-cms/language/ca/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Roger Pons , 2012,2015\n" +"Language-Team: Catalan (http://app.transifex.com/divio/django-cms/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Esteu segur que voleu canviar de secció sense guardar la primera pàgina?" diff --git a/cms/locale/cs/LC_MESSAGES/django.mo b/cms/locale/cs/LC_MESSAGES/django.mo index c2308b21fe42f712835f22c2453f28e02af5ea74..88058d20b1d2cddbe1308b7c0bf52c9279c992a8 100644 GIT binary patch delta 12776 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 delta 10115 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, 2012-2013 -# Martin S. , 2018 -# koren , 2015 -# Jakub Dorňák , 2020 -# Jakub Dorňák , 2013 -# Jiří Vírava , 2014-2015 -# Joe Darkless , 2015 -# koren , 2015 -# Martin Koistinen , 2015 -# Martin Quarda , 2014 -# Thomas Thomas , 2016 -# xlu , 2013 -# xlu , 2013 -# yedpodtrzitko , 2017 +# Martin S. , 2023 +# yedpodtrzitko , 2023 +# Fabian Braun , 2023 +# Jakub Dorňák , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Czech (http://www.transifex.com/divio/django-cms/language/cs/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Jakub Dorňák , 2023\n" +"Language-Team: Czech (https://app.transifex.com/divio/teams/58664/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,16 +51,15 @@ msgstr "Název stránky" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Přepsat to, co se zobrazuje v horní části vašeho prohlížeče nebo v záložkách" +msgstr "" +"Přepsat to, co se zobrazuje v horní části vašeho prohlížeče nebo v záložkách" msgid "Description meta tag" msgstr "Meta tag Description (Popis)" msgid "A description of the page used by search engines." -msgstr "Seznam klíčových slov oddělených čárkou, které mohou indexovat vyhledávače." - -msgid "Slug must not be empty." -msgstr "Identifikátor nesmí být prázdný" +msgstr "" +"Seznam klíčových slov oddělených čárkou, které mohou indexovat vyhledávače." msgid "Page type" msgstr "Typ stránky" @@ -84,7 +73,6 @@ msgstr "Přepsat URL" msgid "Keep this field empty if standard path should be used." msgstr "Ponechejte toto políčko prázdné, pokud se má použít standardní cesta." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -106,11 +94,9 @@ msgstr "viditelnost nabídky" msgid "limit when this page is visible in the menu" msgstr "omezuje zobrazení této stránky v menu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -126,9 +112,8 @@ msgstr "Konfigurace aplikace" msgid "A page with this reverse URL id exists already." msgstr "Stránka s takovu hodnotou reverse URL id již existuje." -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "" +msgstr "Neplatná hodnota konfigurace aplikace" msgid "An application instance using this configuration already exists." msgstr "Instance aplikace používající tuto konfiguraci již existuje." @@ -137,7 +122,7 @@ msgid "An application instance with this name already exists." msgstr "Instance aplikace s tímto jménem již existuje." msgid "You can't move the home page inside another page" -msgstr "" +msgstr "Domovskou stránku nemůžete přesunout pod jinou stránku" msgid "Yes" msgstr "Ano" @@ -163,46 +148,57 @@ msgstr "Odstranit" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Uživatelé nemohou vytvořit stránku bez oprávnění k editaci stránek. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou vytvořit stránku bez oprávnění k editaci stránek. Nutno " +"provést změnu oprávnění uživatele." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Uživatelé nemohou odstranit stránku bez oprávnění k editaci stránek. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou odstranit stránku bez oprávnění k editaci stránek. Nutno " +"provést změnu oprávnění uživatele." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Uživatelé nemohou měnit vlastnosti stránky bez oprávnění k editaci stránek. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou měnit vlastnosti stránky bez oprávnění k editaci stránek. " +"Nutno provést změnu oprávnění uživatele." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Uživatelé nemohou odstranit vlastnosti stránky bez oprávnění k editaci stránek. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou odstranit vlastnosti stránky bez oprávnění k editaci " +"stránek. Nutno provést změnu oprávnění uživatele." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Uživatelé nemohou vytvářet vlastnosti stránky bez oprávnění ke změně těchto vlastností. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou vytvářet vlastnosti stránky bez oprávnění ke změně těchto " +"vlastností. Nutno provést změnu oprávnění uživatele." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Uživatelé nemohou odstranit vlastnosti stránky bez oprávnění k úpravě stránek. Nutno provést změnu oprávnění uživatele." +msgstr "" +"Uživatelé nemohou odstranit vlastnosti stránky bez oprávnění k úpravě " +"stránek. Nutno provést změnu oprávnění uživatele." #, python-format msgid "Invalid plugin type '%s'" msgstr "Neplatný typ pluginu: \"%s\"" msgid "Language must be set to a supported language!" -msgstr "Zadaný jazyk není podporovaný, zvolte jiný." +msgstr "Zadaný jazyk není podporovaný, zvolte jiný!" msgid "Parent plugin language must be same as language!" msgstr "Jazyk rodičovského pluginu musí být stejný jako jazyk!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Placeholder v nadřazeném pluginu musí odpovídat tomuto placeholderu. " +msgstr "Placeholder v nadřazeném pluginu musí odpovídat tomuto placeholderu!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -212,10 +208,9 @@ msgid "Advanced Settings" msgstr "Rozšířené možnosti" msgid "The page is not eligible to be home." -msgstr "" +msgstr "Stránka nemůže být domovská." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -232,16 +227,19 @@ msgstr "Objekt %(name)s s primárním klíčem %(key)r neexistuje." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Chyba! Nemáte oprávnění k přesunu na tuto stránku. Načtěte si prosím stránku znovu." +msgstr "" +"Chyba! Nemáte oprávnění k přesunu této stránky. Načtěte si prosím stránku " +"znovu" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Chyba! Nemáte oprávnění ke kopírování této stránky." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Chyba! Stránka, kterou kopírujete, není přeložena v žádném z jazyků nakonfigurovaných cílovou stránkou." +msgstr "" +"Chyba! Stránka, kterou kopírujete, není přeložena v žádném z jazyků " +"nakonfigurovaných cílovou stránkou." msgid "You do not have permission to edit this page" msgstr "Nemáte oprávnění tuto stránku upravovat" @@ -262,21 +260,32 @@ msgid "Template not valid" msgstr "Šablona není platná" msgid "The template was successfully changed" -msgstr "Stránka byla úspěšně schválena." +msgstr "Šablona byla úspěšně změněna" msgid "You do not have permission to copy these plugins." msgstr "Nemáte oprávnění kopírovat tyto položky obsahu." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Nemáte oprávnění k odstranění této stránky." +msgstr "Nemáte oprávnění k odstranění této stránky" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Název a položky obsahu pro jazyk %(language)s byli odstraněny." +msgstr "Texty a položky obsahu pro jazyk %(language)s byli odstraněny" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nemáte oprávnění měnit zobrazení této stránky v navigaci." +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Prázdné" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Zobrazit omezení" @@ -294,7 +303,6 @@ msgstr "Nemáte oprávnění k editování této položky" msgid "You do not have permission to add a plugin" msgstr "Nemáte oprávnění přidávat položky obsahu" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Nemáte oprávnění ke kopírování tohoto placeholderu." @@ -304,18 +312,15 @@ msgstr "Plugin nebyl nalezen" msgid "You do not have permission to edit this plugin" msgstr "Nemáte oprávnění editovat tuto položku obsahu" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Nemáte oprávnění ke vložení tohoto pluginu" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Nemáte oprávnění ke vložení tohoto placeholderu" msgid "You have no permission to move this plugin" msgstr "Nemáte oprávnění přesouvat tuto položku obsahu" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Nemáte oprávnění k vyjmutí tohoto pluginu" @@ -345,6 +350,47 @@ msgstr "Práva uživatele/skupiny" msgid "Page permissions management" msgstr "Správa práv stránky" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Náhled" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Přípojka aplikace \"%r\" nenalezena" @@ -365,7 +411,9 @@ msgstr "Vytvořit Alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Toto je pouze reference odjinud, obsah lze upravovat pouze na stránce %(page_title)s" +msgstr "" +"Toto je pouze reference odjinud, obsah lze upravovat pouze na stránce %(page_title)s." msgid "Create" msgstr "Vytvořit" @@ -373,9 +421,6 @@ msgstr "Vytvořit" msgid "Edit" msgstr "Upravit" -msgid "Preview" -msgstr "Náhled" - msgid "Structure" msgstr "Struktura" @@ -419,15 +464,12 @@ msgstr "Odhlásit" msgid "Language" msgstr "Jazyk" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Přidat překlad" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Odstranit překlad" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Zkopírovat všechny pluginy" @@ -436,7 +478,6 @@ msgid "from %s" msgstr "z %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Opravdu chcete zkopírovat všechny pluginy z %s?" @@ -446,7 +487,6 @@ msgstr "Stránky" msgid "Page" msgstr "Stránka" -#| msgid "Create" msgid "Create Page" msgstr "Vytvořit stránku" @@ -493,36 +533,39 @@ msgid "Select a valid page" msgstr "Vybrat platnou stránku" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Stránka \"%(conflict_page)s\" má stejnou url \"%(url)s\" jako současná stránka \"%(instance)s\"." +msgstr "" +"Stránka %(conflict_page)s más stejnou url '%(url)s' jako aktuální stránka " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Stránka \"%(conflict_page)s\" má stejnou url \"%(url)s\" jako současná stránka." +msgstr "" +"Stránka %(conflict_page)s má stejnou url '%(url)s' jako aktuální stránka." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Volitelné. Pokud uvedete, text bude automaticky přidán do nového textového modulu." +msgstr "" +"Volitelné. Pokud uvedete, text bude automaticky přidán do nové textové " +"položky obsahu." msgid "Provide a title for the new page." msgstr "Uveďte nadpis pro novou stránku." msgid "Leave empty for automatic slug, or override as required." -msgstr "Ponechte prázdné pro automatické vyplnění slugu, nebo vyplňte dle potřeby." +msgstr "" +"Ponechte prázdné pro automatické vyplnění slugu, nebo vyplňte dle potřeby." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." -msgstr "Nemáte oprávnění přidat stránku." +msgstr "Nemáte oprávnění vytvářet stránky." msgid "ID" msgstr "ID" @@ -617,19 +660,69 @@ msgstr "Platné pro" msgid "page" msgstr "stránka" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "pro přihlášené uživatele" + +msgid "for anonymous users only" +msgstr "pro anonymní uživatele" + +msgid "Inherit from parent page" +msgstr "Převzít od nadřazené stránky" + +msgid "Deny" +msgstr "Odmítnout" + +msgid "Only this website" +msgstr "Jen tento web" + +msgid "Allow" +msgstr "Povolit" + +msgid "title" +msgstr "popisek" + +msgid "overwrite the title (html title tag)" +msgstr "přepsat titulek (html tag title)" + +msgid "overwrite the title in the menu" +msgstr "vlastní popisek v menu" + +msgid "description" +msgstr "popis (description)" + +msgid "The text displayed in search engines." +msgstr "Text zobrazovaný ve vyhledávačích." + +msgid "redirect" +msgstr "přesměrování" + +msgid "The template used to render the content." +msgstr "Šablona pro vykreslení obsahu." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "výchozí" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Unikátní identifikátor, který je použit s page_url templatetag pro odkazování do této stránky" +msgstr "" +"Unikátní identifikátor, který je použit s page_url templatetag pro " +"odkazování do této stránky" msgid "pages" msgstr "stránky" -msgid "default" -msgstr "výchozí" - msgid "slug" -msgstr "URL identifikátor" +msgstr "identifikátor" msgid "Path" msgstr "Cesta" @@ -655,29 +748,36 @@ msgstr "na úrovni stránky" msgid "frontend view restriction" msgstr "omezení frontend view" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Prosím zvolte uživatele či skupinu." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Uživatelé nemohou publikovat stránku bez oprávnění k její editaci. Nutno provést změnu oprávnění." +msgstr "" +"Uživatelé nemohou publikovat stránku bez oprávnění k její editaci. Oprávnění" +" k editaci je vyžadováno." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Uživatel nemůže změnit pokročilé vlastnosti stránky bez oprávnění k její změně. Nuto změnit oprávnění uživatele." +msgstr "" +"Uživatel nemůže změnit pokročilé vlastnosti stránky bez oprávnění k její " +"změně. Nuto změnit oprávnění uživatele." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Uživatel nemůže změnit vlastnosti stránky bez oprávnění k její změně. Nuto změnit oprávnění uživatele." +msgstr "" +"Uživatel nemůže změnit vlastnosti stránky bez oprávnění k její změně. Nuto " +"změnit oprávnění uživatele." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Uživatel nemůže přesunout stránku bez oprávnění k její změně. Nuto změnit oprávnění uživatele." +msgstr "" +"Uživatel nemůže přesunout stránku bez oprávnění k její změně. Nuto změnit " +"oprávnění uživatele." msgid "can recover any deleted page" msgstr "může obnovit jakoukoliv odstraněnou stránku" @@ -697,7 +797,9 @@ msgstr "Práva stránky" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Právo na přidání stránky vyžaduje také přístup k \"vnořeným\" stránkám, jinak tyto stránky nebude moci editovat jejich autor." +msgstr "" +"Právo na přidání stránky vyžaduje také přístup k \"vnořeným\" stránkám, " +"jinak tyto stránky nebude moci editovat jejich autor." msgid "User (page)" msgstr "Uživatel (stránka)" @@ -741,7 +843,8 @@ msgstr "statické jméno umístěnky" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Popisné jméno identifikující tuto umístěnku. Není zobrazováno uživatelům." +msgstr "" +"Popisné jméno identifikující tuto umístěnku. Není zobrazováno uživatelům." msgid "placeholder code" msgstr "kód umístěnky" @@ -762,46 +865,7 @@ msgid "static placeholders" msgstr "statické umístěnky" msgid "A static placeholder with the same site and code already exists" -msgstr "Statická umístěnka se stejným kódem pro tento web již existuje." - -msgid "for logged in users only" -msgstr "pro přihlášené uživatele" - -msgid "for anonymous users only" -msgstr "pro anonymní uživatele" - -msgid "Inherit from parent page" -msgstr "Převzít od nadřazené stránky" - -msgid "Deny" -msgstr "Odmítnout" - -msgid "Only this website" -msgstr "Jen tento web" - -msgid "Allow" -msgstr "Povolit" - -msgid "title" -msgstr "popisek" - -msgid "overwrite the title (html title tag)" -msgstr "přepsat titulek (html tag title)" - -msgid "overwrite the title in the menu" -msgstr "vlastní popisek v menu" - -msgid "description" -msgstr "popis (description)" - -msgid "The text displayed in search engines." -msgstr "Text zobrazovaný ve vyhledávačích." - -msgid "redirect" -msgstr "přesměrování" - -msgid "The template used to render the content." -msgstr "Šablona pro vykreslení obsahu" +msgstr "Statická umístěnka se stejným kódem pro tento web již existuje" msgid "Advanced options" msgstr "Pokročilá nastavení" @@ -810,78 +874,68 @@ msgid "Generic" msgstr "Generic" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Změna úspěšná: %(name)s \" %(obj)s\"" +msgstr "Změna úspěšná: %(name)s \"%(obj)s\"." msgid "There are no further settings for this plugin. Please press save." -msgstr "Nejsou k dispozici žádné další nastavení tohoto pluginu. Prosím, stiskněte tlačítko Uložit." +msgstr "" +"Nejsou k dispozici žádné další nastavení tohoto pluginu. Prosím, stiskněte " +"tlačítko Uložit." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Zmeněno" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Uložit" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "Přihlášení do administrace" +msgstr "Přihlášení do administrace." #, python-format msgid "Login url: %(login_url)s" @@ -893,12 +947,11 @@ msgstr "Uživatelské jméno:" msgid "Password:" msgstr "Heslo:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Přidat stránku" +msgstr "" msgid "Change a page" -msgstr "Změnit" +msgstr "Upravit stránku" msgid "Home" msgstr "Domů" @@ -956,7 +1009,7 @@ msgid "(current)" msgstr "(aktuální)" msgid "Page doesn't inherit any permissions." -msgstr "Stránka nemá žádná další kritéria" +msgstr "Stránka nedědí žádná oprávnění." msgid "Edit model" msgstr "Upravit model" @@ -976,9 +1029,11 @@ msgstr "Vyjmout" msgid "Paste" msgstr "Vložit" -#| msgid "Save as new" msgid "Set as home" -msgstr "Nastavit jako homepage" +msgstr "Nastavit jako domovskou stránku" + +msgid "Permissions" +msgstr "Oprávnění" msgid "is restricted" msgstr "je omezeno" @@ -986,6 +1041,9 @@ msgstr "je omezeno" msgid "last change by" msgstr "poslední změna od" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -995,7 +1053,6 @@ msgstr "Seznam stránek" msgid "Search" msgstr "Vyhledat" -#| msgid "Page Title" msgid "Page Tree" msgstr "Strom stránek" @@ -1007,19 +1064,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nObnovit odstraněnou %(name)s" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Obnovit odstraněnou položku %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Hlavní navigace" -#| msgid "Actions" msgid "Options" msgstr "Možnosti" @@ -1035,7 +1087,9 @@ msgstr "Chyba:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Tato stránka nemůže být zkopírována protože je k ní připojena aplikace. Tyto přípojky lze spravovat v Pokročilých nastaveních. " +msgstr "" +"Tuto stránku nelze zkopírovat, protože je k ní připojena aplikace. Podívejte" +" se na pokročilá nastavení stránky pro správu aplikací." msgid "Are you sure you want to § this page?" msgstr "Opravdu chcete § tuto stránku?" @@ -1043,7 +1097,6 @@ msgstr "Opravdu chcete § tuto stránku?" msgid "Reload" msgstr "Obnovit" -#| msgid "New Page" msgid "New node" msgstr "Nový uzel" @@ -1057,10 +1110,6 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,6 +1117,11 @@ msgid "" " Add %(object)s now.\n" " " msgstr "" +"\n" +" Zatím tu žádná položka typu %(object)s není.\n" +"
    \n" +" Přidat položku typu %(object)s nyní.\n" +" " msgid "Copy options" msgstr "Kopírovat volby" @@ -1081,32 +1135,17 @@ msgstr "Zavřít" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Publikováno" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Nepublikováno" - -msgid "Empty" -msgstr "Prázdné" - -#| msgid "in menu" msgid "In menu" msgstr "V menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Není v menu" -#| msgid "New page" msgid "View page" msgstr "Zobrazit stránku" -#| msgid "softroot" msgid "Softroot" -msgstr "" +msgstr "Softroot" msgid "Apphook" msgstr "Přípojka aplikace" @@ -1121,12 +1160,18 @@ msgstr "v menu" msgid "not in menu" msgstr "není v menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Nastavení stránky (SHIFT + kliknutí pro Pokročilé nastavení)" -msgid "Permissions" -msgstr "Oprávnění" +msgid "This page has no preview!" +msgstr "Tato stránka nemá náhled!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Přesměrovává na:" msgid "Clipboard" msgstr "Schránka" @@ -1159,7 +1204,7 @@ msgid "You cannot add plugins to this plugin." msgstr "Není možné přidat pluginy do tohoto pluginu." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Tenhle plugin není možné přesunout nebo upravovat mimo jeho rodiče." +msgstr "Tento plugin nelze přesunout ani upravit mimo nadřazený modul" msgid "Clipboard is empty." msgstr "Schránka je prázdná." @@ -1171,14 +1216,13 @@ msgid "This plugin cannot have nested plugins." msgstr "Tento plugin nemůže mít zanořené pluginy." msgid "Highlight" -msgstr "" +msgstr "Zvýraznění" msgid "Available plugins" msgstr "Dostupné typy obsahu" -#| msgid "Structure" msgid "Toggle structure" -msgstr "Přepnout zobrazení struktury" +msgstr "Přepnout strukturu" msgid "Login" msgstr "Přihlášení" @@ -1190,21 +1234,21 @@ msgid "More" msgstr "Více" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" +"Vývojová verze používající django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Storno" msgid "The following error occured:" -msgstr "Došlo k následující chybě:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." -msgstr "" +msgstr "Akce úspěšná." msgid "Are you sure you want to delete this plugin?" msgstr "Určitě chcete odstranit tento plugin?" @@ -1215,15 +1259,12 @@ msgstr "Jste si jisti, že chcete publikovat tuto stránku?" msgid "Plugin will be added here" msgstr "Zde bude přidán plugin" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Existují neuložené změny." -#| msgid "Loading..." msgid "Loading" -msgstr "" +msgstr "Načítám" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Chcete zahodit tyto změny?" @@ -1232,20 +1273,21 @@ msgid "" "correctly." msgstr "Formulář nelze nahrát. Prosím zkontrolujte že aplikace beží korektně." -#| msgid "Notify user" msgid "Most used" -msgstr "" +msgstr "Nejvíc používané" msgid "Shortcuts" msgstr "Zkratky" msgid "The page was changed in the meantime, reloading..." +msgstr "Stránka byla mezitím změněna, znovu se načítá ..." + +msgid "CMS-wide Shortcuts" msgstr "" msgid "Bring up this help dialog" msgstr "Zobrazit dialog nápovědy" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Zavřít/zrušit" @@ -1253,40 +1295,37 @@ msgid "Toggle structure mode" msgstr "Přepnout režim struktury" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "" +msgstr "Přepnout režim struktury a zvýraznit ukazatel myši nad pluginem" msgid "Open \"Create\" dialog" msgstr "Otevřít dialog pro Vytvoření" msgid "Focus on Toolbar" -msgstr "" +msgstr "Zaměřte se na panel nástrojů" -#| msgid "static placeholders" msgid "Focus on placeholders" -msgstr "" +msgstr "Zaměřte se na placeholdery" msgid "Move to next/previous element" msgstr "Přesun na následující/předcházející prvek" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" -msgstr "" +msgstr "Zaměřte se na pluginy placeholderů" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Upravit plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Otevřít menu akcí" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Rozvinout/sbalit" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Přihlášení se nezdařilo. Zkontrolujte prosím jméno a heslo a zkuste to znovu." +msgstr "" +"Přihlášení se nezdařilo. Zkontrolujte prosím jméno a heslo " +"a zkuste to znovu." msgid "Double-click to edit" msgstr "Poklepáním myši editujte" @@ -1309,14 +1348,8 @@ msgstr "Maximalizovat" msgid "Drop a plugin here" msgstr "Přesuňte pložku obsahu sem" -msgid "This page has no preview!" -msgstr "Tato stránka nemá náhled!" - -msgid "It is being redirected to:" -msgstr "Přesměrovává na:" - msgid "Installation successful!" -msgstr "Instalace proběhla úspěšně." +msgstr "Instalace proběhla úspěšně!" msgid "Add your first page" msgstr "Přidejte svou první stránku" @@ -1329,14 +1362,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Vítejte v django CMS verze %(cms_version)s.\n " +msgstr "" +"\n" +" Vítejte v django CMS verze %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Přidejte první stránku aby jste pokračovali dále.\n " +msgstr "" +"\n" +" Přidejte první stránku aby jste pokračovali dále.\n" +" " #, python-format msgid "" @@ -1344,7 +1383,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n Zdá se, že máte zakázaný JavaScript. Prosím\n přidejte stránku ručně.\n " +msgstr "" +"\n" +" Zdá se, že máte zakázaný JavaScript. Prosím\n" +" přidejte stránku ručně.\n" +" " msgid "Installation Notes" msgstr "Poznámky instalace" @@ -1355,15 +1398,6 @@ msgstr "Podpora" msgid "Documentation" msgstr "Dokumentace" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1371,16 +1405,12 @@ msgid "" " static files.

    \n" " " msgstr "" +"\n" +"

    Pokud nevidíte logo CMS django nahoře, ujistěte se\n" +" propojili jste složku static / cms s vaší\n" +" statické soubory.

    \n" +" " -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,6 +1419,11 @@ msgid "" "

    \n" " " msgstr "" +"\n" +"

    Tuto zprávu vidíte, protože máte nastaveno\n" +" DEBUG = True v nastavení projektu a ještě není vytvořena žádná stránka.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Vítejte v django CMS" @@ -1400,27 +1435,27 @@ msgid "Back" msgstr "Zpět" msgid "Please choose an option from below to proceed to the next step." -msgstr "Prosím zvolte jednu z možností uvedených níže, pro pokračování k dalšímu kroku." +msgstr "" +"Prosím zvolte jednu z možností uvedených níže, pro pokračování k dalšímu " +"kroku." msgid "Next" msgstr "Další" -msgid "no content" -msgstr "žádný obsah" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "Nedostupná stránka na %(domain)s " +msgstr "Stránka nenalezena na webu %(domain)s" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Template tag nemůže najít stránku s argumenty vyhledávání `%(page_lookup)s`. URL požadavku bylo: http://%(host)s%(path)s" +msgstr "" +"Template tag nemůže najít stránku s argumenty vyhledávání `%(page_lookup)s`." +" URL požadavku bylo: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dva sloupce" @@ -1453,7 +1488,9 @@ msgstr "aktivní" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Určuje, zda má být uživatel brán jako aktivní. Zrušte toto nastavení namísto mazání účtu." +msgstr "" +"Určuje, zda má být uživatel brán jako aktivní. Zrušte toto nastavení namísto" +" mazání účtu." msgid "users" msgstr "uživatelé" @@ -1488,9 +1525,8 @@ msgstr "Články" msgid "Sample App" msgstr "Ukázková aplikace" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" -msgstr "" +msgstr "Vzorová aplikace s konfigurací" msgid "Sample App with excluded permissions" msgstr "Vzorová aplikace s vyňatými právy" @@ -1498,9 +1534,8 @@ msgstr "Vzorová aplikace s vyňatými právy" msgid "Sample App 2" msgstr "Ukázková aplikace 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Ukázková aplikace 2" msgid "Namespaced App" msgstr "Namespaced App" @@ -1512,10 +1547,10 @@ msgid "Child app" msgstr "Aplikace potomka" msgid "Variable urls-menus App" -msgstr "" +msgstr "Variabilní adresy URL - menu aplikací" msgid "sample root page" -msgstr "Ukázková výchozí stránka" +msgstr "ukázková výchozí stránka" msgid "sample settings page" msgstr "ukázková stránka s nastavením" @@ -1535,9 +1570,8 @@ msgstr "Statické Menu2" msgid "Static Menu3" msgstr "Statické Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statické menu4" +msgstr "Statické Menu" msgid "Category" msgstr "Kategorie" @@ -1564,12 +1598,10 @@ msgid "UserSettings" msgstr "Uživatelské nastavení" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "" +msgstr "Přidat plugin do placeholderu „%(placeholder_label)s“" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Přidat plugin k %(plugin_name)s" @@ -1587,17 +1619,20 @@ msgstr "Tento blok už obsahuje maximální povolený počet položek obsahu (%s msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Tento blok už obsahuje maximální povolený počet (%(limit)s) položek typu %(plugin_name)s." +msgstr "" +"Tento blok už obsahuje maximální povolený počet (%(limit)s) položek typu " +"%(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "" +msgstr "Nelze najít zadaný modul CMS_REQUEST_IP_RESOLVER: „{0}“." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." msgstr "" +"Nelze najít zadanou funkci CMS_REQUEST_IP_RESOLVER: „{0}“ v modulu „{1}“." #, python-format msgid "Create a new %s instance." @@ -1605,397 +1640,4 @@ msgstr "Vytvořit novou instanci %s." #, python-format msgid "A wizard has already been registered for model: %s" -msgstr "Průvodce již byl přiřazen modelu: %s " - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" +msgstr "Průvodce již byl přiřazen modelu: %s" diff --git a/cms/locale/cs/LC_MESSAGES/djangojs.mo b/cms/locale/cs/LC_MESSAGES/djangojs.mo index 19ea2b36a7e543640ec1cf0ac35615c82d251dda..4f66768b1f1f611341be33778a041ca80ea445ac 100644 GIT binary patch delta 79 zcmbQr+QvFThj%9<1H)7X1_m=A_Md3EoYz3t&`{UdK*7Mw%EWTwTXD&XoKgiFAmLD) gT9ucWtCw75r=wtGU}!v9hf$6>v7lhHFQW$|03V1I4gdfE delta 94 zcmZo;oys~vhxY^{1H)7X1_m=Aj+\n" -"Language-Team: Czech (http://www.transifex.com/divio/django-cms/language/cs/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: xlu , 2013\n" +"Language-Team: Czech (http://app.transifex.com/divio/django-cms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Určitě chcete změnit záložku bez uložení změn?" diff --git a/cms/locale/cs_CZ/LC_MESSAGES/django.mo b/cms/locale/cs_CZ/LC_MESSAGES/django.mo index 222eedefe302211af1eb961a04f9038db02231e2..9105f5d42a9fac718b2c24ef0c17714e9045ef12 100644 GIT binary patch delta 282 zcmeBTdBjqGPl#nI0}wC)u?!IF05K~N+W;{L1OPEeJP?R4Gcqvb0cm+4b^>Yua!~-t z42F=5RE4zsoSgjf%)E4k)S{yNB8B|qi{tbSOD<_prj>`2C0F8iMi4&3eLX46MJ-R z4Rj3+bd4+(3{9Kur93t diff --git a/cms/locale/cs_CZ/LC_MESSAGES/django.po b/cms/locale/cs_CZ/LC_MESSAGES/django.po index cc0f6703b90..35e099c947b 100644 --- a/cms/locale/cs_CZ/LC_MESSAGES/django.po +++ b/cms/locale/cs_CZ/LC_MESSAGES/django.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/divio/django-cms/language/cs_CZ/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Czech (Czech Republic) (https://app.transifex.com/divio/teams/58664/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +441,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +985,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1009,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,9 +1189,8 @@ msgid "Cancel" msgstr "" msgid "The following error occured:" -msgstr "" +msgstr "Došlo k následující chybě:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1441,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo b/cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo index 2cfbb4760e325dc60d57d903f2f3dfd3197c00aa..b76d2320d8405ffbd85c0ffdf688ccc6e0f0d95e 100644 GIT binary patch delta 70 zcmbQq($6wMh4Jb{)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!y+U^78VHKg1aU;8+_A diff --git a/cms/locale/cs_CZ/LC_MESSAGES/djangojs.po b/cms/locale/cs_CZ/LC_MESSAGES/djangojs.po index 6ce8c9a88ad..78ce42f06ab 100644 --- a/cms/locale/cs_CZ/LC_MESSAGES/djangojs.po +++ b/cms/locale/cs_CZ/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/divio/django-cms/language/cs_CZ/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Czech (Czech Republic) (http://app.transifex.com/divio/django-cms/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/cy/LC_MESSAGES/django.mo b/cms/locale/cy/LC_MESSAGES/django.mo index dfbe2795a72a4dfe6d5c8f35443ffdeab7e54b09..10d4b17da353614bf250aa17fd6e3563d3726504 100644 GIT binary patch delta 85 zcmcb>Jdb&T3S-JdRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*)d1^^`I8SDT6 delta 158 zcmbQoe1Um_3gfhis(LI6&c4AD!*%NobPWx3jVu)mO|6WLwGDuP%O|n8L^q@;F|Rl$ zu_V99O2IKRyVBS|!6p$*J5(lS u6jP#xVdY?==, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Welsh (http://www.transifex.com/divio/django-cms/language/cy/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Welsh (https://app.transifex.com/divio/teams/58664/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/cy/LC_MESSAGES/djangojs.mo b/cms/locale/cy/LC_MESSAGES/djangojs.mo index 326345f845457a65ea8f5628d23cf02db0e960d7..0c7c6d69fa8d8a694f132a1a1df72b307f6a3397 100644 GIT binary patch delta 68 zcmcc5e3f~E3ghgFs`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Yr50pl<|OK6mP|Y^&zx9LF!AF%0P08>OaK4? delta 78 zcmcc0e4lxO3ggm=s`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQpT7eD-iRCT diff --git a/cms/locale/cy/LC_MESSAGES/djangojs.po b/cms/locale/cy/LC_MESSAGES/djangojs.po index f246ccf246b..98e99b17558 100644 --- a/cms/locale/cy/LC_MESSAGES/djangojs.po +++ b/cms/locale/cy/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Welsh (http://www.transifex.com/divio/django-cms/language/cy/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Welsh (http://app.transifex.com/divio/django-cms/language/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/da/LC_MESSAGES/django.mo b/cms/locale/da/LC_MESSAGES/django.mo index a520546c51dc3cf42f9c2a01711f7e26204e2222..4c998d51262d55c2b34efab5b9b145d034d0191b 100644 GIT binary patch delta 6886 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 TdC+-(?~ozg1HDZng8csvgQVzu delta 7106 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 T*2Tl>6_-_&7uP*p5FYqHA>}nz diff --git a/cms/locale/da/LC_MESSAGES/django.po b/cms/locale/da/LC_MESSAGES/django.po index 58334b44415..1ba70475fe5 100644 --- a/cms/locale/da/LC_MESSAGES/django.po +++ b/cms/locale/da/LC_MESSAGES/django.po @@ -3,24 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Jonas Hyatt , 2018 -# Kristian Øllegaard , 2011 -# Kristian Øllegaard , 2011 -# Kristian Øllegaard , 2011 -# valberg , 2014 -# valberg , 2011,2013-2014 -# valberg , 2011 -# valberg , 2013 -# valberg , 2011 +# Fabian Braun , 2023 +# Jonas Hyatt , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Danish (http://www.transifex.com/divio/django-cms/language/da/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Jonas Hyatt , 2023\n" +"Language-Team: Danish (https://app.transifex.com/divio/teams/58664/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -64,9 +57,6 @@ msgstr "Beskrivelse meta tag" msgid "A description of the page used by search engines." msgstr "En beskrivelse af siden til brug for søgemaskiner" -msgid "Slug must not be empty." -msgstr "Slug kan ikke være tom" - msgid "Page type" msgstr "Sidetype" @@ -79,12 +69,13 @@ msgstr "Overskriv adresse" msgid "Keep this field empty if standard path should be used." msgstr "Lad feltet stå tomt, hvis standardstien skal bruges" -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Alle sider placeret over denne i navigationen bliver ikke vist i navigationen." +msgstr "" +"Alle sider placeret over denne i navigationen bliver ikke vist i " +"navigationen." msgid "Redirect" msgstr "Videresend" @@ -101,11 +92,9 @@ msgstr "menu synlighed" msgid "limit when this page is visible in the menu" msgstr "begræns hvornår denne side er synlig i menuen" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -121,7 +110,6 @@ msgstr "Applikations konfigurationer" msgid "A page with this reverse URL id exists already." msgstr "En side med denne reverse adresse id eksisterer allerede" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -158,22 +146,30 @@ msgstr "Slet" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Brugere kan ikke oprette en side uden rettigheder til at ændre den oprettede side. Ret de relevante brugerrettigheder." +msgstr "" +"Brugere kan ikke oprette en side uden rettigheder til at ændre den oprettede" +" side. Ret de relevante brugerrettigheder." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Brugere kan ikke slette en side uden rettigheder til at ændre siden. Ret de relevante brugerrettigheder." +msgstr "" +"Brugere kan ikke slette en side uden rettigheder til at ændre siden. Ret de " +"relevante brugerrettigheder." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Brugere kan ikke sætte side tilladelser uden rettigheder til at ændre den siden. Ret de relevante brugerrettigheder." +msgstr "" +"Brugere kan ikke sætte side tilladelser uden rettigheder til at ændre den " +"siden. Ret de relevante brugerrettigheder." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Brugere kan ikke slette siden uden rettigheder til at ændre siden. Ret de relevante brugerrettigheder." +msgstr "" +"Brugere kan ikke slette siden uden rettigheder til at ændre siden. Ret de " +"relevante brugerrettigheder." msgid "" "Users can't create page permissions without permissions to change the " @@ -195,7 +191,6 @@ msgstr "Sprog skal sættes til et understøttet sprog!" msgid "Parent plugin language must be same as language!" msgstr "Forældreplugin sprog skal være det samme som indstillet sprog!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -210,7 +205,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -227,16 +221,19 @@ msgstr "%(name)s objekt med primære nøgle %(key)r findes ikke." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Fejl! Du har ikke rettigheder til at flytte denne side. Genindlæs venligst siden" +msgstr "" +"Fejl! Du har ikke rettigheder til at flytte denne side. Genindlæs venligst " +"siden" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Fejl! Du har ikke rettigheder til at kopiere denne side." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Fejl! Den side du indsætter er ikke oversat til nogen af de sprog der er konfigureret af siden." +msgstr "" +"Fejl! Den side du indsætter er ikke oversat til nogen af de sprog der er " +"konfigureret af siden." msgid "You do not have permission to edit this page" msgstr "Du har ikke rettigheder til at redigere denne side" @@ -262,7 +259,6 @@ msgstr "Skabelonen er blevet ændret" msgid "You do not have permission to copy these plugins." msgstr "Du har ikke rettigheder til at kopiere disse plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Du har ikke rettigheder til at slette denne side" @@ -270,8 +266,20 @@ msgstr "Du har ikke rettigheder til at slette denne side" msgid "Title and plugins with language %(language)s was deleted" msgstr "Titel og plugins med sproget %(language)s blev slettet" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Du har ikke rettigheder til at ændre i denne sides i_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Tom" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Se begrænsning" @@ -289,7 +297,6 @@ msgstr "Du har ikke rettigheder til at redigere dette element" msgid "You do not have permission to add a plugin" msgstr "Du har ikke rettigheder til at tilføje et plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -299,18 +306,15 @@ msgstr "Plugin blev ikke fundet" msgid "You do not have permission to edit this plugin" msgstr "Du har ikke rettigheder til at redigere dette plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Du har ikke rettigheder til at indsætte dette plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Du har ikke rettigheder til at flytte dette plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -340,6 +344,47 @@ msgstr "Bruger- og grupperettigheder" msgid "Page permissions management" msgstr "Siderettighedeshåndtering" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Preview" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -368,9 +413,6 @@ msgstr "Opret" msgid "Edit" msgstr "Redigér" -msgid "Preview" -msgstr "Preview" - msgid "Structure" msgstr "Struktur" @@ -414,15 +456,12 @@ msgstr "Log ud" msgid "Language" msgstr "Sprog" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Tilføj oversættelse" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Slet oversættelse" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopiér alle plugins" @@ -431,7 +470,6 @@ msgid "from %s" msgstr "fra %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Er du sikker på at du vil kopiere alle plugins fra %s?" @@ -441,7 +479,6 @@ msgstr "Sider" msgid "Page" msgstr "Side" -#| msgid "Create" msgid "Create Page" msgstr "Opret side" @@ -488,20 +525,12 @@ msgid "Select a valid page" msgstr "Vælg en gyldig side" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -515,7 +544,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -612,17 +646,67 @@ msgstr "Tildel til" msgid "page" msgstr "side" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "kun for brugere der er logget ind" + +msgid "for anonymous users only" +msgstr "kun for anonyme brugere" + +msgid "Inherit from parent page" +msgstr "Nedarv fra forældreside" + +msgid "Deny" +msgstr "Afvis" + +msgid "Only this website" +msgstr "Kun dette website" + +msgid "Allow" +msgstr "Tillad" + +msgid "title" +msgstr "titel" + +msgid "overwrite the title (html title tag)" +msgstr "overskriv titlen (html titel tag)" + +msgid "overwrite the title in the menu" +msgstr "overskriv titlen i menuen" + +msgid "description" +msgstr "beskrivelse" + +msgid "The text displayed in search engines." +msgstr "Tekst der vises i søgemaskiner." + +msgid "redirect" +msgstr "omdirigér" + +msgid "The template used to render the content." +msgstr "Skabelonen der bliver brugt til at rendere indholdet." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "standard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Et unikt navn der bliver brugt med page_url skabelon tagget for at linke til denne side" +msgstr "" +"Et unikt navn der bliver brugt med page_url skabelon tagget for at linke til" +" denne side" msgid "pages" msgstr "sider" -msgid "default" -msgstr "standard" - msgid "slug" msgstr "slug" @@ -650,7 +734,6 @@ msgstr "på side niveau" msgid "frontend view restriction" msgstr "frontend adgangsbegrænsning" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -692,7 +775,9 @@ msgstr "Siderettigheder" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Rettighed til at tilføje sider kræver at der også er adgang til undersider, ellers kan siden ikke blive ændret af brugeren der har oprettet den." +msgstr "" +"Rettighed til at tilføje sider kræver at der også er adgang til undersider," +" ellers kan siden ikke blive ændret af brugeren der har oprettet den." msgid "User (page)" msgstr "Bruger (side)" @@ -736,7 +821,9 @@ msgstr "statisk pladsholder navn" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beskrivende navn til at identificere denne statiske pladsholder. Bliver ikke vist til brugere." +msgstr "" +"Beskrivende navn til at identificere denne statiske pladsholder. Bliver ikke" +" vist til brugere." msgid "placeholder code" msgstr "pladsholder kode" @@ -759,45 +846,6 @@ msgstr "statiske pladsholdere" msgid "A static placeholder with the same site and code already exists" msgstr "En statisk pladsholder med samme side og kode findes i forvejen." -msgid "for logged in users only" -msgstr "kun for brugere der er logget ind" - -msgid "for anonymous users only" -msgstr "kun for anonyme brugere" - -msgid "Inherit from parent page" -msgstr "Nedarv fra forældreside" - -msgid "Deny" -msgstr "Afvis" - -msgid "Only this website" -msgstr "Kun dette website" - -msgid "Allow" -msgstr "Tillad" - -msgid "title" -msgstr "titel" - -msgid "overwrite the title (html title tag)" -msgstr "overskriv titlen (html titel tag)" - -msgid "overwrite the title in the menu" -msgstr "overskriv titlen i menuen" - -msgid "description" -msgstr "beskrivelse" - -msgid "The text displayed in search engines." -msgstr "Tekst der vises i søgemaskiner." - -msgid "redirect" -msgstr "omdirigér" - -msgid "The template used to render the content." -msgstr "Skabelonen der bliver brugt til at rendere indholdet." - msgid "Advanced options" msgstr "Avancerede indstillinger" @@ -805,7 +853,6 @@ msgid "Generic" msgstr "Generisk" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -815,65 +862,54 @@ msgstr "Der er ikke flere indstillinger for dette plugin. Tryk venligst gem." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Ændret" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Gem" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Login i administrationen her." @@ -888,9 +924,8 @@ msgstr "Brugernavn:" msgid "Password:" msgstr "Kodeord:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Tilføj en side" +msgstr "" msgid "Change a page" msgstr "Ret en side" @@ -969,16 +1004,21 @@ msgstr "Klip" msgid "Paste" msgstr "Indsæt" -#| msgid "Save as new" msgid "Set as home" msgstr "Markér som hjem" +msgid "Permissions" +msgstr "Rettigheder" + msgid "is restricted" msgstr "er begrænset" msgid "last change by" msgstr "sidst ændring af" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -988,7 +1028,6 @@ msgstr "Sideliste" msgid "Search" msgstr "Søg" -#| msgid "Page Title" msgid "Page Tree" msgstr "Sidetræ" @@ -1002,17 +1041,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1023,7 +1054,7 @@ msgid "Changes within the tree might require a refresh." msgstr "Ændringer i træet kan kræve en genindlæsning." msgid "Error:" -msgstr "" +msgstr "Fejl:" msgid "" "This page cannot be copied because an application is attached to it. See the" @@ -1036,7 +1067,6 @@ msgstr "" msgid "Reload" msgstr "Genindlæs" -#| msgid "New Page" msgid "New node" msgstr "Ny node" @@ -1050,10 +1080,6 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1074,30 +1100,15 @@ msgstr "Luk" msgid "Legend" msgstr "Legende" -#| msgid "published" -msgid "Published" -msgstr "Publiceret" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Upubliceret" - -msgid "Empty" -msgstr "Tom" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "Vis side" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1114,12 +1125,18 @@ msgstr "i menu" msgid "not in menu" msgstr "ikke i menuen" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Rettigheder" +msgid "This page has no preview!" +msgstr "Denne side har ingen forhåndsvisning!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Den bliver omdirigeret til:" msgid "Clipboard" msgstr "Udklipsholder" @@ -1169,7 +1186,6 @@ msgstr "" msgid "Available plugins" msgstr "Tilgængelige plugins" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1183,7 +1199,6 @@ msgid "More" msgstr "Mere" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1195,7 +1210,6 @@ msgstr "Annullér" msgid "The following error occured:" msgstr "Den følgende fejl opstod:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1208,15 +1222,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1225,7 +1236,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1235,10 +1245,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1254,32 +1266,29 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Login fejlede. Venligst tjek dine identifikationsoplysninger og prøv igen." +msgstr "" +"Login fejlede. Venligst tjek dine " +"identifikationsoplysninger og prøv igen." msgid "Double-click to edit" msgstr "Dobbelklik for at redigere" @@ -1302,12 +1311,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "Drop et plugin her" -msgid "This page has no preview!" -msgstr "Denne side har ingen forhåndsvisning!" - -msgid "It is being redirected to:" -msgstr "Den bliver omdirigeret til:" - msgid "Installation successful!" msgstr "" @@ -1348,15 +1351,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1365,15 +1359,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1398,11 +1383,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "intet indhold" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1413,7 +1394,9 @@ msgstr "Siden blev ikke fundet på %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Et templatetag kunne ikke finde sidee med parametrene `%(page_lookup)s`. Adressen for forespørgelsen var: http://%(host)s%(path)s" +msgstr "" +"Et templatetag kunne ikke finde sidee med parametrene `%(page_lookup)s`. " +"Adressen for forespørgelsen var: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1481,7 +1464,6 @@ msgstr "Artikler" msgid "Sample App" msgstr "Eksempel app" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1491,9 +1473,8 @@ msgstr "" msgid "Sample App 2" msgstr "Eksempel App 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Eksempel App 2" msgid "Namespaced App" msgstr "Namepaced App" @@ -1528,9 +1509,8 @@ msgstr "Statisk Menu2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Statisk Menu" msgid "Category" msgstr "Kategori" @@ -1557,12 +1537,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1580,7 +1558,9 @@ msgstr "Denne placeholder har allerede det maskimale antal plugins (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Denne placeholder har allerede det maksimale antal (%(limit)s) tilladte %(plugin_name)s plugins." +msgstr "" +"Denne placeholder har allerede det maksimale antal (%(limit)s) tilladte " +"%(plugin_name)s plugins." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1599,394 +1579,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/da/LC_MESSAGES/djangojs.mo b/cms/locale/da/LC_MESSAGES/djangojs.mo index 82afac5f3c4bdd33dd309fa0180f1f3475ff85e6..6cc7e693fe48bca3df5a55dbbcc2cabc82224eb6 100644 GIT binary patch delta 105 zcmX@la*Jhx4sQ!11H)7X1_pZ|mYQg}oYz3t&`{UdK*7Mw%EWTwTXAFWqRirw%)~r} w!!vSnQqvO?i&7M9vY~\n" -"Language-Team: Danish (http://www.transifex.com/divio/django-cms/language/da/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Kristian Øllegaard , 2011\n" +"Language-Team: Danish (http://app.transifex.com/divio/django-cms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Er du sikker på du vil ændre tabs uden at gemme siden først?" diff --git a/cms/locale/de/LC_MESSAGES/django.mo b/cms/locale/de/LC_MESSAGES/django.mo index bc634e007461dcbfbb9af376ccfd5512551019db..764e983a5d7fb46053c04df6f2bfbbe58e2c53c5 100644 GIT binary patch delta 13351 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 delta 11541 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 diff --git a/cms/locale/de/LC_MESSAGES/django.po b/cms/locale/de/LC_MESSAGES/django.po index c371449d1da..e7bf98111c4 100644 --- a/cms/locale/de/LC_MESSAGES/django.po +++ b/cms/locale/de/LC_MESSAGES/django.po @@ -3,42 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# death_ashaman , 2014 -# Alexander Elvers , 2017 -# Angelo Dini , 2015-2017 -# Arne Schauf , 2014 -# Michael P. Jung , 2013 -# Kim Thoenen , 2015 -# death_ashaman , 2014 -# Diana Dünki , 2015 -# giammi , 2017 -# Hendrik Richter , 2014 -# Jannik Vieten , 2016 -# Jonas Obrist , 2011 -# Kim Thoenen , 2015 -# Martin Koistinen , 2015 -# Michael P. Jung , 2013 -# o.zander , 2014 -# o.zander , 2014 -# Patrick Lauber , 2012-2015 -# Peter Bittner , 2015 -# Peter Wischer , 2017-2020 -# Roland , 2013 -# Roland , 2013 -# SachaMPS , 2015 -# Sebastian Braun , 2014-2015 -# Stefan Foulis , 2013 -# Stefan T. Oertel , 2014-2015 -# djangoger , 2016 +# djangoger , 2023 +# Alexander Elvers , 2023 +# Angelo Dini , 2023 +# Jannik Vieten , 2023 +# Peter Wischer , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-30 08:30+0000\n" -"Last-Translator: Peter Wischer \n" -"Language-Team: German (http://www.transifex.com/divio/django-cms/language/de/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: German (https://app.transifex.com/divio/teams/58664/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -74,16 +53,15 @@ msgstr "Seitentitel" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Überschreiben, was im Titel des Browsers oder in den Lesezeichen erscheint" +msgstr "" +"Überschreiben, was im Titel des Browsers oder in den Lesezeichen erscheint" msgid "Description meta tag" msgstr "\"Description\" Meta-Tag" msgid "A description of the page used by search engines." -msgstr "Eine Beschreibung der Seite. Wird teilweise von Suchmaschinen genutzt." - -msgid "Slug must not be empty." -msgstr "Slug darf nicht leer sein." +msgstr "" +"Eine Beschreibung der Seite. Wird teilweise von Suchmaschinen genutzt." msgid "Page type" msgstr "Seitentyp" @@ -95,9 +73,10 @@ msgid "Overwrite URL" msgstr "Manuelle URL" msgid "Keep this field empty if standard path should be used." -msgstr "Lassen Sie dieses Feld leer, wenn die automatisch generierte URL verwendet werden soll." +msgstr "" +"Lassen Sie dieses Feld leer, wenn die automatisch generierte URL verwendet " +"werden soll." -#| msgid "softroot" msgid "Soft root" msgstr "Softroot" @@ -119,11 +98,9 @@ msgstr "Menü-Sichtbarkeit" msgid "limit when this page is visible in the menu" msgstr "Limitiert, wer diese Seite im Menu sehen kann." -#| msgid "Copy options" msgid "URL options" msgstr "URL Optionen" -#| msgid "Copy options" msgid "Menu options" msgstr "Menu Optionen" @@ -139,7 +116,6 @@ msgstr "Applikations Konfiguration" msgid "A page with this reverse URL id exists already." msgstr "Eine andere Seite mit dieser Reverse-URL-ID ist bereits vorhanden." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Ungültiger Anwendungskonfigurationswert" @@ -176,50 +152,63 @@ msgstr "Löschen" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Benutzer können keine Seite erstellen, ohne die Berechtigung zu haben, die erstellte Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seite erstellen, ohne die Berechtigung zu haben, die " +"erstellte Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Benutzer können keine Seite löschen, ohne die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seite löschen, ohne die Berechtigung zu haben, die " +"Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Benutzer können keine Seitenberechtigungen setzen, ohne die Berechtigung zu haben, Seiten zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seitenberechtigungen setzen, ohne die Berechtigung zu " +"haben, Seiten zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Benutzer können keine Seitenberechtigungen löschen, ohne die Berechtigung zu haben, Seiten zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seitenberechtigungen löschen, ohne die Berechtigung zu" +" haben, Seiten zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Benutzer können keine Seitenberechtigungen erstellen, ohne die Berechtigung zu haben, die erstellte Berechtigung zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seitenberechtigungen erstellen, ohne die Berechtigung " +"zu haben, die erstellte Berechtigung zu editieren. Eine Anpassung der " +"Berechtigungen ist nötig." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Benutzer können keine Seitenberechtigungen löschen, ohne die Berechtigung zu haben, Berechtigungen zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seitenberechtigungen löschen, ohne die Berechtigung zu" +" haben, Berechtigungen zu editieren. Eine Anpassung der Berechtigungen ist " +"nötig." #, python-format msgid "Invalid plugin type '%s'" -msgstr "Invalider plugin typ '%s'" +msgstr "Invalider Baustein-Typ '%s'" msgid "Language must be set to a supported language!" msgstr "Sprache muss auf eine unterstützte Sprache gesetzt werden!" msgid "Parent plugin language must be same as language!" -msgstr "Übergerordnetes Plugin muss die gleiche Sprache sein!" +msgstr "Übergeordneter Baustein muss die gleiche Sprache haben!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Übergerordnetes Plugin muss im selben Platzhalter sein!" +msgstr "Übergeordneter Baustein muss im selben Platzhalter sein!" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "Plugin Position muss größer sein als %(position)d" +msgstr "Baustein-Position muss größer sein als %(position)d." msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" @@ -228,7 +217,6 @@ msgid "The page is not eligible to be home." msgstr "Die Seite ist nicht berechtigt die Startseite zu sein." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "%(name)s \"%(obj)s\" wurde erfolgreich gelöscht." @@ -245,16 +233,20 @@ msgstr "%(name)s Objekt mit Primärschlüssel %(key)r existiert nicht." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Error! Sie haben keine Berechtigung, um diese Seite zu verschieben. Bitte laden Sie die Seite neu." +msgstr "" +"Error! Sie haben keine Berechtigung, um diese Seite zu verschieben. Bitte " +"laden Sie die Seite neu." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." -msgstr "Fehler! Sie haben nicht die Berechtigungen um diese Seite zu kopieren." +msgstr "" +"Fehler! Sie haben nicht die Berechtigungen um diese Seite zu kopieren." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Fehler! Die Seite, welche Sie versuchen einzufügen ist in keine der Sprachen übersetzt, die in der Zielseite konfiguriert sind." +msgstr "" +"Fehler! Die Seite, welche Sie versuchen einzufügen ist in keine der Sprachen" +" übersetzt, die in der Zielseite konfiguriert sind." msgid "You do not have permission to edit this page" msgstr "Sie haben nicht die Berechtigung, diese Seite zu bearbeiten." @@ -278,18 +270,29 @@ msgid "The template was successfully changed" msgstr "Das Template wurde erfolgreich geändert" msgid "You do not have permission to copy these plugins." -msgstr "Sie haben keine Berechtigung, dieses Plugin zu kopieren." +msgstr "Sie haben keine Berechtigung, diesen Baustein zu kopieren." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Sie sind nicht berechtigt diese Seite zu löschen" +msgstr "Keine Berechtigung, diese Seite zu löschen" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Titel und Plugins mit der Sprache %(language)s wurden gelöscht" +msgstr "Titel und Bausteine in der Sprache %(language)s wurden gelöscht." + +msgid "You do not have permission to change a page's navigation status" +msgstr "Keine Berechtigung, den Navigations-Status dieser Seite zu ändern" + +msgid "You cannot change this page's navigation status" +msgstr "Keine Berechtigung, den Navigations-Status dieser Seite zu ändern" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Sie haben keine Berechtigung, um den \"im Menü\"-Status dieser Seite zu ändern" +msgid "Public content" +msgstr "Öffentlicher Inhalt" + +msgid "Empty" +msgstr "Leer" + +msgid "Create Content" +msgstr "Inhalt erstellen" msgid "View restriction" msgstr "Ansichts-Beschränkung" @@ -305,39 +308,36 @@ msgid "You do not have permission to edit this item" msgstr "Sie haben keine Berechtigung dieses Objekt zu editieren." msgid "You do not have permission to add a plugin" -msgstr "Sie haben nicht die notwendigen Rechte, um das Plugin hinzuzufügen." +msgstr "" +"Sie haben nicht die notwendigen Rechte, um einen Baustein hinzuzufügen." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Sie haben nicht die Berechtigung, um diesen Platzhalter zu kopieren." msgid "Plugin not found" -msgstr "Plugin nicht gefunden" +msgstr "Baustein nicht gefunden" msgid "You do not have permission to edit this plugin" -msgstr "Sie haben nicht die Berechtigung, dieses Plugin zu bearbeiten." +msgstr "Sie haben nicht die Berechtigung, diesen Baustein zu bearbeiten." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" -msgstr "Keine Berechtigung dieses Plugin einzufügen" +msgstr "Sie haben nicht die Berechtigung, diesen Baustein einzufügen." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Sie haben keine Berechtigung diesen Platzhalter einzufügen" msgid "You have no permission to move this plugin" -msgstr "Sie haben nicht die Berechtigung dieses Plugin zu verschieben." +msgstr "Sie haben nicht die Berechtigung, diesen Baustein zu verschieben." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" -msgstr "Sie haben keine Berechtigung dieses Plugin auszuschneiden" +msgstr "Sie haben keine Berechtigung, diesen Baustein auszuschneiden." msgid "You do not have permission to delete this plugin" -msgstr "Sie haben nicht die Berechtigung, dieses Plugin zu löschen." +msgstr "Sie haben nicht die Berechtigung, diesen Baustein zu löschen." #, python-format msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." -msgstr "Das %(name)s Plugin \"%(obj)s\" wurde erfolgreich gelöscht." +msgstr "Der %(name)s-Baustein \"%(obj)s\" wurde erfolgreich gelöscht." msgid "You do not have permission to clear this placeholder" msgstr "Sie haben nicht die Berechtigung, um diesen Platzhalter zu leeren" @@ -358,6 +358,51 @@ msgstr "Benutzer- und Gruppen-Berechtigungen" msgid "Page permissions management" msgstr "Verwaltung der Benutzer-Berechtigungen" +msgid "Actions" +msgstr "Aktionen" + +msgid "Empty content" +msgstr "Leerer Inhalt" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "Eigenschaften (%(object_name)s)" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "Neue %(object_name)s hinzufügen" + +msgid "Add content" +msgstr "Inhalt hinzufügen" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" +"Der Inhalt der aktuell ausgewählten Sprache wurde bearbeitet. \"OK\" " +"verwirft die Änderungen. \"Abbrechen\" geht zum Formular zurück." + +#, python-format +msgid "Add %(language)s content" +msgstr "Inhalt auf %(language)s hinzufügen" + +msgid "Preview" +msgstr "Vorschau" + +msgid "Settings" +msgstr "Einstellungen" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" +"Ungültige Sprache: %(value)s. Dieses Formular kann nicht bearbeitet werden. " +"Bitte die Sprache wechseln." + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Kein registrierter apphook \"%r\" gefunden" @@ -369,25 +414,25 @@ msgid "Placeholder" msgstr "Platzhalter" msgid "Alias" -msgstr "Verlinkung" +msgstr "Alias" msgid "Create Alias" -msgstr "Verlinkung erstellen" +msgstr "Alias erstellen" #, python-format msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Dies ist eine Alias-Referenz. Der Inhalt kann nur auf der Seite %(page_title)s bearbeitet werden." +msgstr "" +"Dies ist eine Alias-Referenz. Der Inhalt kann nur auf der Seite %(page_title)s bearbeitet " +"werden." msgid "Create" msgstr "Erstellen" msgid "Edit" -msgstr "Editieren" - -msgid "Preview" -msgstr "Vorschau" +msgstr "Bearbeiten" msgid "Structure" msgstr "Struktur" @@ -432,26 +477,22 @@ msgstr "Abmelden" msgid "Language" msgstr "Sprache" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Übersetzung hinzufügen" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Übersetzung löschen" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" -msgstr "Alle Plugins kopieren" +msgstr "Alle Bausteine kopieren" #, python-format msgid "from %s" msgstr "von %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" -msgstr "Sind Sie sicher, dass Sie alle Plugins von %s kopieren wollen?" +msgstr "Sind Sie sicher, dass Sie alle Bausteine von %s kopieren wollen?" msgid "Pages" msgstr "Seiten" @@ -459,7 +500,6 @@ msgstr "Seiten" msgid "Page" msgstr "Seite" -#| msgid "Create" msgid "Create Page" msgstr "Seite erstellen" @@ -473,7 +513,7 @@ msgid "Duplicate this Page" msgstr "Diese Seite duplizieren" msgid "Edit this Page" -msgstr "Diese Seite editieren" +msgstr "Diese Seite berabeiten" msgid "Page settings" msgstr "Seiten-Einstellungen" @@ -506,26 +546,23 @@ msgid "Select a valid page" msgstr "Wählen Sie eine gültige Seite" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Die Seite %(conflict_page)s hat die selbe URL '%(url)s' wie die aktuelle Seite \"%(instance)s\"." +msgstr "" +"Die Seite %(conflict_page)s hat die selbe URL '%(url)s' wie die aktuelle " +"Seite \"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Die Seite %(conflict_page)s hat die selbe URL '%(url)s' wie die aktuelle Seite." +msgstr "" +"Die Seite %(conflict_page)s hat die selbe URL '%(url)s' wie die aktuelle " +"Seite." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Optional. Falls ausgefüllt, fügt automatisch ein neues Text Plugin ein." +msgstr "" +"Optional. Falls ausgefüllt, wird automatisch ein neuer Text eingefügt." msgid "Provide a title for the new page." msgstr "Füge einen Titel für die neue Seite ein." @@ -533,7 +570,12 @@ msgstr "Füge einen Titel für die neue Seite ein." msgid "Leave empty for automatic slug, or override as required." msgstr "Leer lassen um automatisch zu generieren, oder manuell überschreiben." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "Kann Slug nicht automatisch generieren. Bitte manuell eingeben." + +msgid "Please provide a valid slug." +msgstr "Bitte geben Sie eine gültige Slug an." + msgid "You don't have the permissions required to add a page." msgstr "Sie haben nicht die notwendigen Rechte um eine Seite hinzuzufügen." @@ -630,17 +672,67 @@ msgstr "Gewähren" msgid "page" msgstr "Seite" +msgid "no limit set" +msgstr "keine Einschränkung" + +msgid "for logged in users only" +msgstr "Nur für angemeldete Benutzer" + +msgid "for anonymous users only" +msgstr "Nur für nicht angemeldete Benutzer" + +msgid "Inherit from parent page" +msgstr "Von übergeordneter Seite erben" + +msgid "Deny" +msgstr "Verbieten" + +msgid "Only this website" +msgstr "Nur diese Webseite" + +msgid "Allow" +msgstr "Erlauben" + +msgid "title" +msgstr "Titel" + +msgid "overwrite the title (html title tag)" +msgstr "Titel überschreiben (HTML Title-Tag)" + +msgid "overwrite the title in the menu" +msgstr "Titel im Menü überschreiben" + +msgid "description" +msgstr "Beschreibung" + +msgid "The text displayed in search engines." +msgstr "Text, der bei Suchmaschinen dargestellt wird." + +msgid "redirect" +msgstr "umleiten" + +msgid "The template used to render the content." +msgstr "Die benutzte Vorlage, um die Seite darzustellen." + +msgid "page content" +msgstr "Seiten-Inhalt" + +msgid "page contents" +msgstr "Seite-Inhalte" + +msgid "default" +msgstr "Standard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Ein einzigartiger Identifikator, der benutzt wird, um mit dem page_url templatetag auf diese Seite zu verlinken" +msgstr "" +"Ein einzigartiger Identifikator, der benutzt wird, um mit dem page_url " +"templatetag auf diese Seite zu verlinken" msgid "pages" msgstr "Seiten" -msgid "default" -msgstr "Standard" - msgid "slug" msgstr "Slug" @@ -668,35 +760,45 @@ msgstr "Auf Seitenebene" msgid "frontend view restriction" msgstr "Frontendansicht eingeschränkt" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Bitte Benutzer oder Gruppe auswählen." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Benutzer können keine Seite veröffentlichen, ohne die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seite veröffentlichen, ohne die Berechtigung zu haben," +" die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Benutzer können nicht die erweiterten Einstellungen einer Seite ändern, ohne die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können nicht die erweiterten Einstellungen einer Seite ändern, ohne" +" die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der " +"Berechtigungen ist nötig." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Benutzer können keine Seitenberechtigungen ändern, ohne die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können keine Seitenberechtigungen ändern, ohne die Berechtigung zu " +"haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Benutzer können eine Seite nicht verschieben, ohne die Berechtigung zu haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." +msgstr "" +"Benutzer können eine Seite nicht verschieben, ohne die Berechtigung zu " +"haben, die Seite zu editieren. Eine Anpassung der Berechtigungen ist nötig." msgid "can recover any deleted page" msgstr "Kann alle gelöschten Seiten wiederherstellen" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Falls keine Auswahl erfolgt, hat der Benutzer Berechtigungen auf alle Seiten." +msgstr "" +"Falls keine Auswahl erfolgt, hat der Benutzer Berechtigungen auf alle " +"Seiten." msgid "Page global permission" msgstr "Globale Seitenberechtigung" @@ -710,7 +812,10 @@ msgstr "Seitenberechtigung" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Zum Hinzufügen von Seiten muss der Zugriff auf Unterseiten ebenfalls ermöglicht werden, sonst können neu erstellte Seiten nach dem ersten Speichervorgang nicht mehr bearbeitet werden." +msgstr "" +"Zum Hinzufügen von Seiten muss der Zugriff auf Unterseiten ebenfalls " +"ermöglicht werden, sonst können neu erstellte Seiten nach dem ersten " +"Speichervorgang nicht mehr bearbeitet werden." msgid "User (page)" msgstr "Benutzer (Seite)" @@ -754,10 +859,12 @@ msgstr "Name des statischen Platzhalters" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beschreibender Name, um den statischen Platzhalter zu identifizieren. Wird nicht dem Benutzer gezeigt." +msgstr "" +"Beschreibender Name, um den statischen Platzhalter zu identifizieren. Wird " +"nicht dem Benutzer gezeigt." msgid "placeholder code" -msgstr "Platzhalter-Code" +msgstr "Platzhalter-Kennung" msgid "To render the static placeholder in templates." msgstr "Um den statischen Platzhalter im Template zu rendern." @@ -775,46 +882,9 @@ msgid "static placeholders" msgstr "Statische Platzhalter" msgid "A static placeholder with the same site and code already exists" -msgstr "Ein statischer Platzhalter mit der gleichen Website und Code existiert bereits." - -msgid "for logged in users only" -msgstr "Nur für angemeldete Benutzer" - -msgid "for anonymous users only" -msgstr "Nur für nicht angemeldete Benutzer" - -msgid "Inherit from parent page" -msgstr "Von übergeordneter Seite erben" - -msgid "Deny" -msgstr "Verbieten" - -msgid "Only this website" -msgstr "Nur diese Webseite" - -msgid "Allow" -msgstr "Erlauben" - -msgid "title" -msgstr "Titel" - -msgid "overwrite the title (html title tag)" -msgstr "Titel überschreiben (HTML Title-Tag)" - -msgid "overwrite the title in the menu" -msgstr "Titel im Menü überschreiben" - -msgid "description" -msgstr "Beschreibung" - -msgid "The text displayed in search engines." -msgstr "Text, der bei Suchmaschinen dargestellt wird." - -msgid "redirect" -msgstr "umleiten" - -msgid "The template used to render the content." -msgstr "Die benutzte Vorlage, um die Seite darzustellen." +msgstr "" +"Ein statischer Platzhalter mit der gleichen Website und Kennung existiert " +"bereits." msgid "Advanced options" msgstr "Erweiterte Einstellungen" @@ -823,78 +893,72 @@ msgid "Generic" msgstr "Generisch" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" wurde erfolgreich geändert." msgid "There are no further settings for this plugin. Please press save." -msgstr "Es gibt keine weiteren Einstellungen für dieses Plugin. Bitte klicken Sie auf speichern." +msgstr "" +"Es gibt keine weiteren Einstellungen für diesen Baustein. Bitte klicken Sie " +"auf speichern." msgid "Moved" msgstr "Verschoben" -#| msgid "Change" msgid "Changed" msgstr "Geändert" -#| msgid "Delete" msgid "Deleted" msgstr "Gelöscht" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "Seiten Übersetzung hinzugefügt" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "Seiten Übersetzung bearbeitet" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "Seiten Übersetzung gelöscht" -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "Plugin hinzugefügt" +msgstr "Baustein hinzugefügt" -#| msgid "Change" msgid "Changed Plugin" -msgstr "Plugin bearbeitet" +msgstr "Baustein bearbeitet" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "Plugin verschoben" +msgstr "Baustein verschoben" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "Plugin gelöscht" +msgstr "Baustein gelöscht" -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "Plugin ausschneiden" +msgstr "Baustein ausschneiden" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "Plugin einfügen" +msgstr "Baustein einfügen" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "In Platzhalter einfügen" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "Plugins aus der Zwischenablage wurden dem Platzhalter hinzugefügt" +msgstr "Bausteine aus der Zwischenablage wurden zum Platzhalter hinzugefügt" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "Platzhalter geleert" msgid "Save" msgstr "Speichern" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" +"Einige Felder können wegen fehlender Schreibberechtigung nicht verändert " +"werden." + #, python-format msgid "Log in to administration here." -msgstr "Sie können sich hier in die Administration einloggen." +msgstr "" +"Sie können sich hier in die Administration " +"einloggen." #, python-format msgid "Login url: %(login_url)s" @@ -906,7 +970,6 @@ msgstr "Benutzername:" msgid "Password:" msgstr "Passwort:" -#| msgid "Add Page" msgid "Add a page" msgstr "Seite hinzufügen" @@ -987,16 +1050,21 @@ msgstr "Ausschneiden" msgid "Paste" msgstr "Einfügen" -#| msgid "Save as new" msgid "Set as home" msgstr "Als Startseite setzen" +msgid "Permissions" +msgstr "Seiten-Berechtigungen" + msgid "is restricted" msgstr "Ist eingeschränkt" msgid "last change by" msgstr "Letzte Änderungen von" +msgid "last change on" +msgstr "Letzte Änderung" + msgid "meta" msgstr "Meta" @@ -1006,7 +1074,6 @@ msgstr "Liste der Seiten" msgid "Search" msgstr "Suche" -#| msgid "Page Title" msgid "Page Tree" msgstr "Seitenbaum" @@ -1018,19 +1085,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nGelöschte %(name)s wiederherstellen" - -msgid "" +msgstr "" "\n" -" New Page\n" -" " -msgstr "\nNeue Seite" +"Gelöschte %(name)s wiederherstellen" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Hauptnavigation" -#| msgid "Actions" msgid "Options" msgstr "Optionen" @@ -1046,7 +1107,9 @@ msgstr "Fehler:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Diese Seite kann nicht kopiert werden da eine Applikation daran gebunden ist. Sie können \"apphooks\" in den erweiterten Einstellungen verwalten." +msgstr "" +"Diese Seite kann nicht kopiert werden da eine Applikation daran gebunden " +"ist. Sie können \"apphooks\" in den erweiterten Einstellungen verwalten." msgid "Are you sure you want to § this page?" msgstr "Sind Sie sicher dass diese Seite § wollen?" @@ -1054,7 +1117,6 @@ msgstr "Sind Sie sicher dass diese Seite § wollen?" msgid "Reload" msgstr "Neu laden" -#| msgid "New Page" msgid "New node" msgstr "Neue Seite" @@ -1068,17 +1130,17 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nEs gibt derzeit kein %(object)s.\n
    \n%(object)s jetzt hinzufügen." +msgstr "" +"\n" +"Es gibt derzeit keine %(object)s.\n" +"
    \n" +"%(object)s jetzt hinzufügen." msgid "Copy options" msgstr "Kopier-Optionen" @@ -1092,30 +1154,15 @@ msgstr "Schließen" msgid "Legend" msgstr "Legende" -#| msgid "published" -msgid "Published" -msgstr "Veröffentlicht" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Nicht publiziert" - -msgid "Empty" -msgstr "Leer" - -#| msgid "in menu" msgid "In menu" msgstr "Im Menü" -#| msgid "not in menu" msgid "Not in menu" msgstr "Nicht im Menü" -#| msgid "New page" msgid "View page" msgstr "Im Web anzeigen" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1132,18 +1179,26 @@ msgstr "Im Menu" msgid "not in menu" msgstr "Nicht im Menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Seiten-Einstellungen (Shift-Klick für erweiterte Einstellungen)" -msgid "Permissions" -msgstr "Seiten-Berechtigungen" +msgid "This page has no preview!" +msgstr "Diese Seite hat keine Vorschau!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" +"Möglicherweise stellt der Apphook keinen Inhalt für seine Wurzel-URL zur " +"Verfügung." + +msgid "It is being redirected to:" +msgstr "Wird weitergeleitet nach:" msgid "Clipboard" msgstr "Zwischenablage" msgid "Add plugin" -msgstr "Plugin hinzufügen" +msgstr "Baustein hinzufügen" msgid "Copy all" msgstr "Alle kopieren" @@ -1155,7 +1210,7 @@ msgid "Empty all" msgstr "Alle entfernen" msgid "Filter plugins..." -msgstr "Plugins filtern..." +msgstr "Bausteine filtern..." msgid "This is a static placeholder" msgstr "Dies ist ein statischer Platzhalter" @@ -1167,27 +1222,31 @@ msgid "Collapse all" msgstr "Alle einklappen" msgid "You cannot add plugins to this plugin." -msgstr "Zu diesem Plugin können keine Plugins hinzugefügt werden" +msgstr "Zu diesem Baustein können keine weiteren Bausteine hinzugefügt werden" msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Dieses Plugin kann nicht ausserhalb des Parents-Plugins verschoben oder editiert werden" +msgstr "" +"Dieser Baustein kann nicht außerhalb des übergeordneten Bausteins verschoben" +" oder bearbeitet werden." msgid "Clipboard is empty." msgstr "Zwischenablage ist leer." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "Dieses Plugin erlaubt keine weiteren Plugins dieses Typ's innerhalb sich selbst." +msgstr "" +"Dieser Baustein erlaubt keine weiteren Bausteine dieses Typs innerhalb sich " +"selbst." msgid "This plugin cannot have nested plugins." -msgstr "Dieses Plugin erlaubt keine weiteren Plugins innerhalb sich selbst." +msgstr "" +"Dieser Baustein erlaubt keine weiteren Bausteine innerhalb sich selbst." msgid "Highlight" msgstr "Highlight" msgid "Available plugins" -msgstr "Verfügbare Plugins" +msgstr "Verfügbare Baustein-Typen" -#| msgid "Structure" msgid "Toggle structure" msgstr "Struktur umschalten" @@ -1195,17 +1254,18 @@ msgid "Login" msgstr "Anmelden" msgid "Add plugin to" -msgstr "Plugin hinzufügen zu" +msgstr "Baustein hinzufügen zu" msgid "More" msgstr "Mehr" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Development version nutzt django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Development version nutzt django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Abbrechen" @@ -1213,37 +1273,34 @@ msgstr "Abbrechen" msgid "The following error occured:" msgstr "Der folgende Fehler ist aufgetreten:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Aktion erfolgreich." msgid "Are you sure you want to delete this plugin?" -msgstr "Sind Sie sicher, dass Sie dieses Plugin löschen wollen?" +msgstr "Sind Sie sicher, dass Sie diesen Baustein löschen wollen?" msgid "Are you sure you want to publish this page?" msgstr "Sind Sie sicher, dass Sie diese Seite veröffentlichen wollen?" msgid "Plugin will be added here" -msgstr "Das Plugin wird hier hinzugefügt" +msgstr "Der Baustein wird hier hinzugefügt" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Es gibt ungespeicherte Änderungen." -#| msgid "Loading..." msgid "Loading" msgstr "Lädt" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Sicher, dass die Änderungen verworfen werden sollen?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Das Formular konnte nicht geladen werden. Bitte überprüfen, dass der Server korrekt läuft." +msgstr "" +"Das Formular konnte nicht geladen werden. Bitte überprüfen, dass der Server " +"korrekt läuft." -#| msgid "Notify user" msgid "Most used" msgstr "Meist genutzt" @@ -1253,10 +1310,12 @@ msgstr "Tastenkombinationen" msgid "The page was changed in the meantime, reloading..." msgstr "Die Seite wurde in der Zwischenzeit verändert, lade neu..." +msgid "CMS-wide Shortcuts" +msgstr "CMS-weite Tastenkürzel" + msgid "Bring up this help dialog" msgstr "Diesen Hilfedialog anzeigen" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Schließen/Abbrechen" @@ -1264,7 +1323,7 @@ msgid "Toggle structure mode" msgstr "Strukturmodus umschalten" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "Strukturmodus umschalten und angewähltes Plugin hervorheben." +msgstr "Strukturmodus umschalten und angewählten Baustein hervorheben." msgid "Open \"Create\" dialog" msgstr "Öffne \"Erstellen\" Dialog" @@ -1272,32 +1331,29 @@ msgstr "Öffne \"Erstellen\" Dialog" msgid "Focus on Toolbar" msgstr "Toolbar fokussieren" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Platzhalter fokussieren" msgid "Move to next/previous element" msgstr "Zu nächstem/vorherigem Element navigieren" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" -msgstr "Plugins eines Platzhalters fokussieren" +msgstr "Bausteine eines Platzhalters fokussieren" -#| msgid "Add plugin" msgid "Edit plugin" -msgstr "Plugin editieren" +msgstr "Baustein bearbeiten" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Aktionsmenü öffnen" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Ausklappen/Einklappen" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Login fehlgeschlagen. Bitte überprüfen Sie Ihre Zugangsdaten und versuchen Sie es erneut." +msgstr "" +"Login fehlgeschlagen. Bitte überprüfen Sie Ihre " +"Zugangsdaten und versuchen Sie es erneut." msgid "Double-click to edit" msgstr "Doppelklicken zum Editieren" @@ -1318,13 +1374,7 @@ msgid "Maximize" msgstr "Maximieren" msgid "Drop a plugin here" -msgstr "Plugin hier fallen lassen" - -msgid "This page has no preview!" -msgstr "Diese Seite hat keine Vorschau!" - -msgid "It is being redirected to:" -msgstr "Wird weitergeleitet nach:" +msgstr "Baustein hier fallen lassen" msgid "Installation successful!" msgstr "Installation erfolgreich!" @@ -1340,14 +1390,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nWillkommen zu django CMS Version %(cms_version)s." +msgstr "" +"\n" +"Willkommen zu django CMS Version %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nErste Seite zum System hinzufügen um fortzufahren." +msgstr "" +"\n" +"Erste Seite zum System hinzufügen um fortzufahren.\n" +" " #, python-format msgid "" @@ -1355,7 +1411,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavascript scheint deaktiviert zu sein. Sie können hier eine\n Seite manuell hinzufügen." +msgstr "" +"\n" +"Javascript scheint deaktiviert zu sein. Sie können hier eine Seite manuell hinzufügen.\n" +" " msgid "Installation Notes" msgstr "Hinweise zur Installation" @@ -1366,32 +1425,16 @@ msgstr "Support" msgid "Documentation" msgstr "Dokumentation" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Wenn Sie das django CMS Logo oben nicht sehen, stellen Sie sicher das der Ordner static/cms in Ihre statischen Dateien verlinkt ist.

    " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Wenn Sie das django CMS Logo oben nicht sehen, stellen Sie sicher das der Ordner static/cms in Ihre statischen Dateien verlinkt ist.

    " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1399,7 +1442,9 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Sie sehen diese Meldung weil Sie DEBUG = True in Ihrer django Einstellungsdatei eingetragen haben und noch keine Seite existiert.

    " +msgstr "" +"\n" +"

    Sie sehen diese Meldung weil Sie DEBUG = True in Ihrer django Einstellungsdatei eingetragen haben und noch keine Seite existiert.

    " msgid "Welcome to django CMS" msgstr "Willkommen im django CMS" @@ -1411,17 +1456,14 @@ msgid "Back" msgstr "Zurück" msgid "Please choose an option from below to proceed to the next step." -msgstr "Bitte eine der Optionen unten wählen, um zum nächsten Schritt zu gelangen." +msgstr "" +"Bitte eine der Optionen unten wählen, um zum nächsten Schritt zu gelangen." msgid "Next" msgstr "Weiter" -msgid "no content" -msgstr "Kein Inhalt" - -#| msgid "no content" -msgid "has contents" -msgstr "hat Inhalt" +msgid "Unknown" +msgstr "Unbekannt" #, python-format msgid "Page not found on %(domain)s" @@ -1431,7 +1473,9 @@ msgstr "Seite nicht gefunden auf %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Ein Templatetag konnte die Seite `%(page_lookup)s\n` nicht finden. Die Addresse war: http://%(host)s%(path)s" +msgstr "" +"Ein Templatetag konnte die Seite `%(page_lookup)s\n" +"` nicht finden. Die Addresse war: http://%(host)s%(path)s" msgid "Two columns" msgstr "Zwei Spalten" @@ -1444,7 +1488,9 @@ msgstr "Benutzername" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Erforderlich. 300 Zeichen oder weniger. Buchstaben, Zahlen und @/./.+/-/_ Zeichen" +msgstr "" +"Erforderlich. 300 Zeichen oder weniger. Buchstaben, Zahlen und @/./.+/-/_ " +"Zeichen" msgid "Enter a valid username." msgstr "Gib einen gültigen Benutzernamen ein" @@ -1464,7 +1510,9 @@ msgstr "aktiv" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Bestimmt, ob der Benutzer als \"aktiv\" behandelt werden soll. Entfernen Sie diese Option, anstatt das Benutzerkonto zu löschen." +msgstr "" +"Bestimmt, ob der Benutzer als \"aktiv\" behandelt werden soll. Entfernen Sie" +" diese Option, anstatt das Benutzerkonto zu löschen." msgid "users" msgstr "Benutzer" @@ -1499,7 +1547,6 @@ msgstr "Artikel" msgid "Sample App" msgstr "Beispiel-App" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Beispiel Anwendung mit Konfiguration" @@ -1509,9 +1556,8 @@ msgstr "Beispiel-App mit \"excluded permissions\"" msgid "Sample App 2" msgstr "Beispiel-App 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Muster App 3" +msgstr "Beispiel-App 2" msgid "Namespaced App" msgstr "App mit Namensraum" @@ -1546,9 +1592,8 @@ msgstr "Statisches Menü 2" msgid "Static Menu3" msgstr "Statisches Menü 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statisches Menü 4" +msgstr "Statisches Menü" msgid "Category" msgstr "Kategorie" @@ -1566,7 +1611,8 @@ msgid "Change Category" msgstr "Kategorie bearbeiten" msgid "Thanks for spending some quality time with the Web site today." -msgstr "Danke, dass sie heute ein schöne Zeit mit ihrer Webseite verbracht haben." +msgstr "" +"Danke, dass sie heute ein schöne Zeit mit ihrer Webseite verbracht haben." msgid "Inherit the template of the nearest ancestor" msgstr "Die Vorlage der nächsten übergeordneten Seite verwenden" @@ -1575,14 +1621,12 @@ msgid "UserSettings" msgstr "Benutzer-Einstellungen" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "Plugin zu Platzhalter \"%(placeholder_label)s\" hinzufügen" +msgstr "Baustein zu Platzhalter \"%(placeholder_label)s\" hinzufügen" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" -msgstr "Plugin zu %(plugin_name)s hinzufügen" +msgstr "Baustein zu %(plugin_name)s hinzufügen" msgid "CMS - your user account was created." msgstr "CMS - Ihr Benutzerkonto wurde erstellt." @@ -1592,13 +1636,15 @@ msgstr "CMS - Ihr Benutzerkonto wurde verändert." #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "Dieser Placeholder hat bereits die maximale Anzahl von %s Plugins." +msgstr "Dieser Platzhalter hat bereits die maximale Anzahl von %s Bausteinen." #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Dieser Placeholder hat bereits die maximale Anzahl (%(limit)s) von erlaubten %(plugin_name)s Plugins." +msgstr "" +"Dieser Platzhalter hat bereits die maximale Anzahl (%(limit)s) von erlaubten" +" %(plugin_name)s-Bausteinen." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1608,7 +1654,9 @@ msgstr "Konnte das Modul CMS_REQUEST_IP_RESOLVER nicht finden: \"{0}\"." msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Konnte die Funktion CMS_REQUEST_IP_RESOLVER nicht finden: \"{0}\" in module \"{1}\"." +msgstr "" +"Konnte die Funktion CMS_REQUEST_IP_RESOLVER nicht finden: \"{0}\" in module " +"\"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1617,394 +1665,3 @@ msgstr "Neue %s Instanz erstellen." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Ein \"Wizard\" wurde bereits für dieses Modal registriert: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/de/LC_MESSAGES/djangojs.mo b/cms/locale/de/LC_MESSAGES/djangojs.mo index 270e44e1044d53b57cd9ce9ab3b78821a870dca2..abc2edf8a5733b5d1165606e6ce01cf6ce02036c 100644 GIT binary patch delta 291 zcmcb?a*DP7o)F7a1|VPsVi_QI0b+I_&H-W&=m278AnpWW4j?`YrLO^Lkh=RoT*Jt~ z@Ek~c0C5TvMBQ2-%?0FdgYpjoX`nJNU;&cMKn%2#iGgXNr;lVoVo63`Vs0u!QEG8& zQCVsVLupYSNO0m5A6^4pLqlC-0|f&!D-+9!ZzZ%+OHzvz!ZVALGk~;B0f?(t4&gfF zl;`N>7p2?jC>R+S8BNw4q5 z6a&M=MxTk#y?HHk4GeV+4HXQ{tc)!t+cQe2Czj^qD>&wqB^D*7, 2011 # Michael P. Jung , 2013 +# Peter Wischer , 2022 # Stefan T. Oertel , 2015 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: German (http://www.transifex.com/divio/django-cms/language/de/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Peter Wischer , 2022\n" +"Language-Team: German (http://app.transifex.com/divio/django-cms/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "Pfadname" + +msgid "urnpath" +msgstr "URN-Pfad" + +msgid "reserved" +msgstr "reserviert" + msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "Sind Sie sicher Sie wollen die Sprache ändern ohne vorher zu speichern?" +msgstr "Sind Sie sicher Sie wollen den Reiter wechseln ohne vorher zu speichern?" diff --git a/cms/locale/el/LC_MESSAGES/django.mo b/cms/locale/el/LC_MESSAGES/django.mo index 55a87304de41214d7bd7140b5459bdfd1673695a..95f651a71a74583c23a65353da2efcaf0abffe0a 100644 GIT binary patch delta 5218 zcmZA43v`b60mt!w2qHod;+Djl5F!zY+z`Yi>V9ioIu(~U@g_nNSuU8;cQv%y%>o~T<3)mKK*z>PY6+XdW{0^I8U`MBcw%C>PFzky1 zFb)@>8r+2H@NQK7`>-dTYH+YI_b6y2O+$_0&$Qwt5Tj5x##_@+BN~Ryae}X%Ux-(w zT&}2Vg{UT1VIsbcOoKUt>hd*IOSjM;@1a_FfSTKHQFHYKH3dyOIp-ZvQxJ)os%TWZ zDV>-sh5}Ka3r6ZTT~QS#qo#Zas={&D8=uE9 z=tbTCF=~dcpz676^**E!&V@&)sSoaE3~ig9s5Q*MXqd1Xm zg^y7kY|`DSI0!X>_SWvGrR#Tt;WBPGE0ChtyYDzbw zI=UUzf%i~LcN}&7v^~Fs%(}UXTFSqpma<8tv&5|L~Nchn7WsGg2R-SC3d zgKDrC)!<90`_|d(TTnChmh}{Bs;{FS&pW95?xN~>5b1RakGPT^r&`zuj<;bl}uH=sUOiTa$k$`%e{fuAwe=;4is zXlLYWP@Bz%T8h26AFDANXZLbObPgGdsYTv0|HLHh+?)HTcLHiJ&5Usdwie^`{O_R9 zhc_-c7fd}i=RAyyF6@C?f>Efcn}(^l0P}GNE84#j2hPRCE6 zmi7|r{yOYN`=*|Pz952_A7;t)LI!0fBi|inIkv$!FafJjGw~^Evpqz0tT}J;Eo-`A zCJsP7-Y=pH4`U==MRlYey=t&UqO)cR7{K`qREOrGzL=KdL99moEYG1<%}gokajQht zbHZM)!ywL^vjOz^5Y!Cz!SR@adf%JG{A*1rxS%z!#cI5T{2rNClZ{!6@1kz#lfv%< zrlC6M!*+NWXX1J6fT3&<{qD!18qT!mlW_#+xv1ZS_fwgFjpPg$*!bpa9E~m0j5&%^ zQ4MP+X{uYJrZ^tefpIt%b8rkELe=va^)z&5`qbcHWR=V+R6U1KpS$9vkWQfl;yDOz$B3$n3)|cpKG$NA^63M?ib37wUT<0bMu) znE|g^NuRRKt;6D-=3&VIS(o4^cPNB41+WAE=&p7~zev}n2fDJ8bFmz= z@G~sHL76;BxEHmTnvHTg+8)Q!zUe`sBNm`G<7(`Q2T{BF8Zrpe`x)nY9%=*?sLy|3 z{Q~E4-jW^617q?r5_eh8qh|CzYVBLIW4)TvC<!k-(VB`7wU0) zf?DeUw!U_86l!Fnu@_Fm3An<(e+f0Cf5V9wFwWVOGsZFhQCukJf=0La2C7a73_}Rpq46tVd(t`RE6>AhnzRhhzyw#K@6Be;y)!nG$_v8dQrW1SYv%2sK`7N12enmXwmqhb=kNlW4 z9`h(flgmW&%yjD!)epS4;XhgzInnVZxj?ii{Ct{~WEE*Vwo%wcQtgEle1ohZRirJ^ zG2Owujrv7+NG6eCgl{nOKFKAA)s6Qk)R1#T-+3#@yF@!^E75U_^e5VeI%bleHI(?d zvIbiF;+MAE$XZ({X}o~RCNVBfH6P zGMgME&yyzPC!__5As>?hGJ^Ee`Y)x>nlv8I*uszSEb%A$mWU;1$Vl=MsUS}uqwGl^ ze3^ujE@V7uJlavXLG-2I9GZWQGV(R4Ba6vuvX^8K9b3o)@;X^hu9DZtb3{jTQrS@A zUyc}Q%i-3A7)O3e=96EL(7a@b1W zyztmScUgXpYm%p^JjJ&z{Mnkv;q`tsv98Naj`zs(^N-IdEcGq!8ShPs@2@{s|HSm< zq_{+mz=`hCviRvG?xNBHciEDXbk}HicD}pFHL}EAUgR2*TbixH@Vvt1{T6sK`nr-5 zlajfqD6ia|=ZT;0aTlh$#*}zGi(N4b%gTyN(-RWh#l`)~RAYXwXL-MzC4~tK@|Wf> zNhk~C)1?Wi1Jlw{Y9gYKgw`AwT<+(~8tU;?4DIT>Fm!j#mJEM?-}j?B)x>7Tw5TZ? HpVah!{1iE} delta 5506 zcmY+{34Bz=0mtzPqzU&G3gyzS#(!fcY~lT4XZKQsiOHdRyOxU8px4K9n12y2qsDXxTeGTf#H=sIt1hrS5vEM(BYWLOdCKS8i7$-D<6WAL+!xk8Su`y#Y z5gnX}Bd{FR@q?I!yHFjzi+X@ln2%qhW@Zo@L^GO$>L(v{T|p1#pT0~9C)8jm>Pae5 z4c1{AuEJv6hic$FYKDG9HPp7JYci%#?~9uH0%Qzk25JfYH~>S)HZVI>&}M0}7aT?Y znUDC;0RD>_c_QzormQn+z}+zRL>PM_)Y=zdAx=h3`5M%N-HYmQ3u?goF}7sQ6x6^` z)QI0gjrcUGK|PM9upMfzBw5o?0~&?8zX-KACZZnb2Gsq2R7ba<2D}QjC)T@$%y#?5 z0o42XBGR{c8@0CIU^@0@V`%D%Q3I?(&Cn{;KsKN{-i#x04{89Pq6YX4YUa+_^BwxA zKi0no1&t^Z)nEZ?q*GB1&q6)H9P514TGpZld>3Zm{Wt-SU@o?G-1mMAW>WWCH{%fM zuVF@r!g&gs;?%zGhzFqtG90yrM)?KI>coKDe6KcR8 zpsxQCLn?enK^?}Wx*c{z-PjFvz8`Apa;+t(nJL8<=tB*(5_Nshx(qd-b*Q&x6As2l zZT+28=3i@eiW3^hx2TT)hgyO*{oDq-Vt?wX$n2V8)S8x~22zRYs2a62OHiA6jXl2& zwRv}=X6$+U{k#2`e>LS!p~yRv`D9yKyKsU>h3#6t$_& zrn^txdyqTTdB{IA*VgMXf%?hK}dlD&r78(*UabRI|2zv)aXd$0uc zcltZj6t!c4_1X61!>EowwDmJsMEz$>!lDuGfM+5vkhu*f z;={NPzZk*%tK&`VBu({B)D*vh8o)`Mgg;_2PT+@K4Xs7J4GpLc-$9nsBwy;bGXZs- z7xS?mwKRwEVmyr<(Bw1!+-o{=l^UFcop1r_Nta?huE!qObCl}{WK8Bt)WGXe9Xy7* z?+s)U%n6)>$)nvp62valH(&-n8lu2*nYZm132fK7xYOmAeLnd?y_zZ*4>9jMLp z0%~);jt-thJ$WbIN$v7ssP=Eb8Mq#A#nY&_DpXeBj&L1nWM89}B(BhHumfI4JsUMM zt5H+888rjDF$GUzI%+-iWP?yMGXuM05Ov>L)b$S_zilCNkb<7z6Kf*BBG*&T!lhV` zb1-3?JCHJ*N4*(mg~ zzxkemUZbIxyMIo{pkBK|)S6#~{jd`CWb1GsZo$cT*nZ!s#GTq8eWN7qkFIwZo|R28+m2Tan$B(Ppf+JbmUDkvvCM+L_O&d>-*S_ z`j;4w-(ze12{ki`Q|yOQ1z?oA8h$1)IR!U{^wGRCkIIbd5o+i8Dumx)CNs%2QbfXJAo-Y7kR8NB#*u4Dki1WH=v8_x zR^tEfFq8085PP-s%Xr~)eBG8I6#Io5X-_P&Iv63hlZVKALlRWs7)(AOBgiSe6Fn(xB|h>NnL{od$0?MNH!qyP)8q;A zsy(+Ib8Yz~_Oj(vTunZ)bw7@_WsyjJuZsiZPoxd`oIFo9le-!xBwgD&yr)-Pa^<3O zr)p76(D4U?&W&EjTeUD)Hzb^zk{P}}Wm@-nfy&B2t`ntQplFe@&$)7^u#7 zihK*|@^YNfo|uJoo{B(VNNJ#IESLJr7twjv46mmu-zl#4dKWn96~W-b{Os)7+S(yO zHRGG-y;;|1m-!a^0@-Erxhs%WT2+%>nP?kmT-pDLw@03i?2qh= zG>3mk>ybodU*x$+L*!W}a*)b%(KX?nqszl-V;;8xt?jYx#eZfw{&2 diff --git a/cms/locale/el/LC_MESSAGES/django.po b/cms/locale/el/LC_MESSAGES/django.po index c383a8c61b8..d83294c2a04 100644 --- a/cms/locale/el/LC_MESSAGES/django.po +++ b/cms/locale/el/LC_MESSAGES/django.po @@ -3,24 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Anastasiadis Stavros , 2014 -# Dimitrios Manolopoulos , 2020 -# George Giannoulopoulos , 2014 -# George Petsagourakis , 2013 -# Kostas Papadimitriou , 2011 -# Nikolas Demiridis , 2014 -# George Giannoulopoulos , 2014 -# xouskarle , 2013 -# xouskarle , 2013 +# Dimitrios Manolopoulos , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Greek (http://www.transifex.com/divio/django-cms/language/el/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Greek (https://app.transifex.com/divio/teams/58664/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,16 +49,17 @@ msgstr "Τίτλος Σελίδας" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Αντικαθιστά αυτό που εμφανίζεται στο επάνω μέρος του περιηγητή ιστού σας ή στους σελιδοδείκτες" +msgstr "" +"Αντικαθιστά αυτό που εμφανίζεται στο επάνω μέρος του περιηγητή ιστού σας ή " +"στους σελιδοδείκτες" msgid "Description meta tag" msgstr "Περιγραφή meta tag" msgid "A description of the page used by search engines." -msgstr "Μια λίστα με \"λέξεις κλειδιά\" που χρησιμοποιούνται μερικές φορές από τις μηχανές αναζήτησης." - -msgid "Slug must not be empty." -msgstr "Το πεδίο δεν μπορεί να είναι κενό" +msgstr "" +"Μια λίστα με \"λέξεις κλειδιά\" που χρησιμοποιούνται μερικές φορές από τις " +"μηχανές αναζήτησης." msgid "Page type" msgstr "Τύπος σελίδας" @@ -77,9 +71,9 @@ msgid "Overwrite URL" msgstr "Αντικατάστησε το URL" msgid "Keep this field empty if standard path should be used." -msgstr "Αφήστε αυτό το πεδίο κενό, για να χρησιμοποιηθεί το πρότυπο μονοπάτι (path)." +msgstr "" +"Αφήστε αυτό το πεδίο κενό, για να χρησιμοποιηθεί το πρότυπο μονοπάτι (path)." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -101,11 +95,9 @@ msgstr "ορατότητα μενού" msgid "limit when this page is visible in the menu" msgstr "όριο σελίδας όταν είναι οραό από το μενού" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -121,7 +113,6 @@ msgstr "Παραμετροποιήσεις Εφαρμογής" msgid "A page with this reverse URL id exists already." msgstr "Υπάρχει ήδη σελίδα με το συγκεκριμένο αντίστροφο URL id." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Μη έγκυρη τιμή" @@ -195,7 +186,6 @@ msgstr "Η γλώσσα πρέπει τεθεί σε κάποια που υπο msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -210,7 +200,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -227,9 +216,10 @@ msgstr "%(name)s αντικείμενο με πρωτεύων κλειδί %(key msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Σφάλμα! Δεν έχεις δικαίωμα μετακίνησης αυτής της Σελίδας. Παρακαλώ ανανέωσε την παρών Σελίδα." +msgstr "" +"Σφάλμα! Δεν έχεις δικαίωμα μετακίνησης αυτής της Σελίδας. Παρακαλώ ανανέωσε " +"την παρών Σελίδα." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -262,7 +252,6 @@ msgstr "Επιτυχής αλλαγής Καμβά." msgid "You do not have permission to copy these plugins." msgstr "Δεν έχεις δικαίωμα αντιγραφής αυτών των Πρόσθετων." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -270,8 +259,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Τίτλοι και πρόσθετα με γλώσσα %(language)s διαγράφηκαν" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Δεν έχετε δικαίωμα αλλαγής της κατάστασης in_navigation αυτής της σελίδας" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Κενό" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Προβολή περιορισμού" @@ -289,7 +290,6 @@ msgstr "Δεν έχετε δικαίωμα επεξεργασίας αυτού msgid "You do not have permission to add a plugin" msgstr "Δεν έχεις άδεια πρόσβασης για Προσθήκη Πρόσθετου." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -299,18 +299,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "Δεν έχεις δικαίωμα να επεξεργαστεί το επιλεγμένο Πρόσθετο." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Δεν έχεις δικαίωμα μετακίνησης αύτου του Πρόσθετου" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -340,6 +337,47 @@ msgstr "Δικαιώματα Χρηστών και Ομάδων" msgid "Page permissions management" msgstr "Διαχείριση δικαιωμάτων σελίδας" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Προεπισκόπιση" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -368,9 +406,6 @@ msgstr "" msgid "Edit" msgstr "Επεξεργασία" -msgid "Preview" -msgstr "Προεπισκόπιση" - msgid "Structure" msgstr "Δομή" @@ -414,15 +449,12 @@ msgstr "Αποσύνδεση" msgid "Language" msgstr "Γλώσσα" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -431,7 +463,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -441,7 +472,6 @@ msgstr "Σελίδες" msgid "Page" msgstr "Σελίδα" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -488,20 +518,12 @@ msgid "Select a valid page" msgstr "Επιλέξτε έγκυρη σελίδα" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -515,7 +537,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -612,6 +639,57 @@ msgstr "Χορήγηση σε" msgid "page" msgstr "σελίδα" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "μόνο για συνδεδεμένους χρήστες" + +msgid "for anonymous users only" +msgstr "μόνο για ανώνυμους χρήστες" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "Απαγόρευση" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "Αποδοχή" + +msgid "title" +msgstr "τίτλος" + +msgid "overwrite the title (html title tag)" +msgstr "αντικατάσταση του τίτλου (html title tag)" + +msgid "overwrite the title in the menu" +msgstr "αντικατάσταση του τίτλου στο μενού" + +msgid "description" +msgstr "περιγραφή" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "ανακατεύθυνση" + +msgid "The template used to render the content." +msgstr "Το περίγραμμα που χρησιμοποιήθηκε για να προσφερθεί το περιεχόμενο." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "εξ' ορισμού" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -620,9 +698,6 @@ msgstr "" msgid "pages" msgstr "σελίδες" -msgid "default" -msgstr "εξ' ορισμού" - msgid "slug" msgstr "slug" @@ -650,7 +725,6 @@ msgstr "σε επίπεδο σελίδας" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -678,7 +752,9 @@ msgid "can recover any deleted page" msgstr "μπορεί να ανακτήσει οποιαδήποτε διαγραμμένη σελίδα" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Αν κανένα δεν είναι επιλεγμένο, ο χρήστης έχει παραχωρημένα δικαιώματα σε όλους τους ιστότοπους." +msgstr "" +"Αν κανένα δεν είναι επιλεγμένο, ο χρήστης έχει παραχωρημένα δικαιώματα σε " +"όλους τους ιστότοπους." msgid "Page global permission" msgstr "Δικαίωμα σε όλη τη σελίδα" @@ -692,7 +768,9 @@ msgstr "Δικαίωμα σελίδας" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Το δικαίωμα προσθήκης σελίδας απαιτεί πρόσβαση στις υποσελίδες, αλλιώς η σελίδα που προστέθηκε δεν μπορεί να τροποποιηθεί από τον δημιουργό της." +msgstr "" +"Το δικαίωμα προσθήκης σελίδας απαιτεί πρόσβαση στις υποσελίδες, αλλιώς η " +"σελίδα που προστέθηκε δεν μπορεί να τροποποιηθεί από τον δημιουργό της." msgid "User (page)" msgstr "Χρήστης (σελίδα)" @@ -759,45 +837,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "μόνο για συνδεδεμένους χρήστες" - -msgid "for anonymous users only" -msgstr "μόνο για ανώνυμους χρήστες" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "Απαγόρευση" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "Αποδοχή" - -msgid "title" -msgstr "τίτλος" - -msgid "overwrite the title (html title tag)" -msgstr "αντικατάσταση του τίτλου (html title tag)" - -msgid "overwrite the title in the menu" -msgstr "αντικατάσταση του τίτλου στο μενού" - -msgid "description" -msgstr "περιγραφή" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "ανακατεύθυνση" - -msgid "The template used to render the content." -msgstr "Το περίγραμμα που χρησιμοποιήθηκε για να προσφερθεί το περιεχόμενο." - msgid "Advanced options" msgstr "Προχωρημένες επιλογές" @@ -805,7 +844,6 @@ msgid "Generic" msgstr "Γενικό" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -815,65 +853,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Αποθήκευση" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Συνδεθείτε ως διαχειριστής εδώ." @@ -888,7 +915,6 @@ msgstr "Όνομα χρήστη:" msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -969,16 +995,21 @@ msgstr "Αποκοπή" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Δικαιώματα" + msgid "is restricted" msgstr "είναι περιορισμένο" msgid "last change by" msgstr "τελευταία αλλαγή από" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -988,7 +1019,6 @@ msgstr "Λίστα σελίδων" msgid "Search" msgstr "Αναζήτηση" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1002,17 +1032,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1020,7 +1042,8 @@ msgid "Successfully moved" msgstr "Επιτυχής μετακίνηση" msgid "Changes within the tree might require a refresh." -msgstr "Αλλαγές εντός του χάρτη ιστοτόπου πιθανόν να απαιτεί ανανέωση ιστοσελίδας." +msgstr "" +"Αλλαγές εντός του χάρτη ιστοτόπου πιθανόν να απαιτεί ανανέωση ιστοσελίδας." msgid "Error:" msgstr "" @@ -1036,7 +1059,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1050,10 +1072,6 @@ msgid "Menu" msgstr "Μενού" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1074,30 +1092,15 @@ msgstr "Κλείσιμο" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Κενό" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1114,12 +1117,18 @@ msgstr "στο μενού" msgid "not in menu" msgstr "δεν βρίσκεται στα Περιεχόμενα Περιήγησης" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Δικαιώματα" +msgid "This page has no preview!" +msgstr "Αυτή η Σελίδας δεν διαθέτει Προεπισκόπηση Σελίδας!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1169,7 +1178,6 @@ msgstr "" msgid "Available plugins" msgstr "Διαθέσιμα προς χρήση Πρόσθετα" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1183,7 +1191,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1193,9 +1200,8 @@ msgid "Cancel" msgstr "Άκυρο" msgid "The following error occured:" -msgstr "Συνέβει το παρακάτω σφάλμα:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1208,15 +1214,12 @@ msgstr "Είσαι σίγουρος ότι θέλεις να δημοσιεύε msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1225,7 +1228,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1235,10 +1237,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1254,26 +1258,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1302,12 +1301,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "Σύρε Πρόσθετο εδώ" -msgid "This page has no preview!" -msgstr "Αυτή η Σελίδας δεν διαθέτει Προεπισκόπηση Σελίδας!" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1348,15 +1341,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1365,15 +1349,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1398,11 +1373,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "χωρίς περιεχόμενο" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1481,7 +1452,6 @@ msgstr "Άρθρα" msgid "Sample App" msgstr "Δείγμα Εφαρμογής" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1491,9 +1461,8 @@ msgstr "" msgid "Sample App 2" msgstr "Δείγμα Εφαρμογής 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Δείγμα Εφαρμογής 2" msgid "Namespaced App" msgstr "" @@ -1528,9 +1497,8 @@ msgstr "Στατικό Μενού2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Στατικό Μενού" msgid "Category" msgstr "Κατηγορία" @@ -1557,12 +1525,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1599,394 +1565,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/el/LC_MESSAGES/djangojs.mo b/cms/locale/el/LC_MESSAGES/djangojs.mo index 565e540689e30e4b5d050a4ea842254e757e1322..8379e30473c1be31ed6965108b51a6d787cb5bfe 100644 GIT binary patch delta 104 zcmZ3_x|4N+4sR191H)7X28IPdEHTk?Ij@1Pp`os^fr5dVm5JrVx8g?bsrg0esR{w9 zCB=#9`K3jP*_p)(HU%(lX0bzhZenJRUUGh}osNQ$fuZqa9Y#6k#Dap&zKltX02>V- AM*si- delta 94 zcmdnVx}J4{4sQh`1H)7X28IPd%s0_;Ij@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fY*^E(+xxBo5b2wuXBLLMv97F&B diff --git a/cms/locale/el/LC_MESSAGES/djangojs.po b/cms/locale/el/LC_MESSAGES/djangojs.po index e3a2b23bc69..fd6ed0e1b64 100644 --- a/cms/locale/el/LC_MESSAGES/djangojs.po +++ b/cms/locale/el/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Greek (http://www.transifex.com/divio/django-cms/language/el/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: George Petsagourakis , 2013\n" +"Language-Team: Greek (http://app.transifex.com/divio/django-cms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Είσαι σίγουρος πως θες να αλλάξεις καρτέλες χωρίς να έχεις αποθηκεύσει πρώτα τη σελίδα?" diff --git a/cms/locale/en/LC_MESSAGES/django.mo b/cms/locale/en/LC_MESSAGES/django.mo index 60ac39c42d733fb8bfff9fd53b0ea6d88f0356a7..2871a6fa6300079902e3b7068920f98696df3cc4 100644 GIT binary patch literal 37169 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 literal 23268 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\n" "Language-Team: English (http://www.transifex.com/divio/django-cms/language/" @@ -56,9 +56,6 @@ msgstr "Description meta tag" msgid "A description of the page used by search engines." msgstr "A description of the page used by search engines." -msgid "Slug must not be empty." -msgstr "Slug must not be empty." - msgid "Page type" msgstr "Page type" @@ -1652,3 +1649,6 @@ msgstr "Create a new %s instance." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "A wizard has already been registered for model: %s" + +#~ msgid "Slug must not be empty." +#~ msgstr "Slug must not be empty." diff --git a/cms/locale/en_GB/LC_MESSAGES/django.mo b/cms/locale/en_GB/LC_MESSAGES/django.mo index 6c497d9f8723ed37801fafdd5dac5b1d10d5858d..b09e3c7f0a9f6d54af3359cecf13ef0981c21013 100644 GIT binary patch delta 161 zcmdnOa*$<$4sSmr14APN1A{&g3r@65V$n^`EuJ`EH_%Ae5QG#A4Xlifv<-lO%O|n8 zL^q@;F|Rl$u_V99O2Id=s3bE_!8<>*7)Yn)DcIy@!`Ke#xrv!Mddc~@b~*}121Z7c wIT`iTi>>ta6AKFTN, 2016 +# Martin Koistinen , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/divio/django-cms/language/en_GB/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Martin Koistinen , 2022\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/divio/teams/58664/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "A page with this reverse URL Id exists already." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +441,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/en_GB/LC_MESSAGES/djangojs.mo b/cms/locale/en_GB/LC_MESSAGES/djangojs.mo index 3294b4fd3232ff4241eba8ebd59be91f31c1a1d1..8021054863019d8db0be6236be47bffc534e3434 100644 GIT binary patch delta 69 zcmX@je2{s93S;|3)p%Y5T|+}%V*>>PGb902e27ZLyf delta 78 zcmX@ee42TJ3gg6ys`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQe;o$^&5Ikd diff --git a/cms/locale/en_GB/LC_MESSAGES/djangojs.po b/cms/locale/en_GB/LC_MESSAGES/djangojs.po index 97971170be0..c1d801ebd37 100644 --- a/cms/locale/en_GB/LC_MESSAGES/djangojs.po +++ b/cms/locale/en_GB/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/divio/django-cms/language/en_GB/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: English (United Kingdom) (http://app.transifex.com/divio/django-cms/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/en_HK/LC_MESSAGES/django.mo b/cms/locale/en_HK/LC_MESSAGES/django.mo index 79d5fe9f6082de5ef89af1dbffebd31db2421262..643ab1ef9567ad9ddd9c93f195c21212ab5ca7c0 100644 GIT binary patch delta 68 zcmdna+{!#bh0%MWsve7Oa&Ga&a9trIT|*F3Ff_0-Hqtf#f{6z;*^908^%DyUCVmj* UE=f(yE!H=+Ff%imEWtP*0DTe@F8}}l delta 134 zcmZo=-p)Khg|T*`sve7ivv2Uka9vviT|)z1BTEHCQ!8U*Z37_S@<}W%(G4j|%qz}G zEXgmjQgF=7t~54Kut@~d4wZ=+`T2Uu`MGuzr)lb0>Fbx5m+O^))MuupR)8e*Q!>jk c^Yv4*67$mYb(3?8^>cu%(!})CiO=Q(0FI6 diff --git a/cms/locale/en_HK/LC_MESSAGES/django.po b/cms/locale/en_HK/LC_MESSAGES/django.po index 19d8df86903..aaf468df571 100644 --- a/cms/locale/en_HK/LC_MESSAGES/django.po +++ b/cms/locale/en_HK/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: English (Hong Kong) (http://www.transifex.com/divio/django-cms/language/en_HK/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: English (Hong Kong) (https://app.transifex.com/divio/teams/58664/en_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/en_HK/LC_MESSAGES/djangojs.mo b/cms/locale/en_HK/LC_MESSAGES/djangojs.mo index ab9999f96df77d062bb114fe3fc775b1609b25d3..33d3fce9658c415e1d7aeb4f071257877fea4f95 100644 GIT binary patch delta 68 zcmX@cyoY&$3S-km)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!$1Z^78VDUylO-$n+bT diff --git a/cms/locale/en_HK/LC_MESSAGES/djangojs.po b/cms/locale/en_HK/LC_MESSAGES/djangojs.po index 2fb21bd7b98..c68f333260e 100644 --- a/cms/locale/en_HK/LC_MESSAGES/djangojs.po +++ b/cms/locale/en_HK/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: English (Hong Kong) (http://www.transifex.com/divio/django-cms/language/en_HK/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: English (Hong Kong) (http://app.transifex.com/divio/django-cms/language/en_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_HK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/en_US/LC_MESSAGES/django.mo b/cms/locale/en_US/LC_MESSAGES/django.mo index 0d26f3ca3f3525fdc63c96c74eab91ce4b114490..4ecb8125678612403446f1539c3ee31d998e1156 100644 GIT binary patch delta 85 zcmdnZ+{rvah0%Yasve7Oa&Ga&a9trIT|*F3Ff_0-Hqtf#f{6!p)r+n4^%DyU^h$~n l^NKUmQY-Y5^Ksve7ivv2Uka9vviT|)z1BTEHCQ!8U*Z37_S@<}W%(G4j|%qz}G zEXgmjQgF=7t~54Kut@~d4wZ=+`T2Uu`MGuzr|Ifh>Fbx5m+O^))MuupR)8e*Q!>jk c^Yv4*67$mYb(3?8^>cu%(!})CiLd4Z0F{O;v;Y7A diff --git a/cms/locale/en_US/LC_MESSAGES/django.po b/cms/locale/en_US/LC_MESSAGES/django.po index 2dcec3397a2..9c7f376e458 100644 --- a/cms/locale/en_US/LC_MESSAGES/django.po +++ b/cms/locale/en_US/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: English (United States) (http://www.transifex.com/divio/django-cms/language/en_US/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: English (United States) (https://app.transifex.com/divio/teams/58664/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/en_US/LC_MESSAGES/djangojs.mo b/cms/locale/en_US/LC_MESSAGES/djangojs.mo index e7db5dfb5a61019f2cbc0fe90b690f4e3fe69555..721e1e9850c3e96d9b8b0048aea6def8544a9d11 100644 GIT binary patch delta 69 zcmX@be1Lg^3S-+u)p%Y5T|+}%V*>>PGb&@)6DNwR2PBr}loQe;x+_%%B^s diff --git a/cms/locale/en_US/LC_MESSAGES/djangojs.po b/cms/locale/en_US/LC_MESSAGES/djangojs.po index e2d6594ac0f..32674b516cf 100644 --- a/cms/locale/en_US/LC_MESSAGES/djangojs.po +++ b/cms/locale/en_US/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: English (United States) (http://www.transifex.com/divio/django-cms/language/en_US/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: English (United States) (http://app.transifex.com/divio/django-cms/language/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/eo/LC_MESSAGES/django.mo b/cms/locale/eo/LC_MESSAGES/django.mo index 54e4007deea31fd8ce967f20131a99bf3e438bc7..1660dcf55747f90135e21d4d5101978435536d42 100644 GIT binary patch delta 2399 zcmYk+Z%oxy9LMn!UI8(b3#E8Xy#4`#xZFSBm9CHi1)4xnk|vm4E?`%@K-{a-h5a6+ zwwkTlh5l@<^`Nn}Wwqf0=FA6W%m+2J%?I|NY3bT>>z}h_wdno9L+fzA_jS(ip5Hm= z_dVyw3!&3N=i7YOn4$C&_YkRh#^}PAnS4>a3yjIaRT#uFq>Jgqg}57YvEQ~2;Ud~c z(T$_lahy+k(s~BD-!W&Yc=+KwYM|?=xo@E+HaW)RK{nor%d91+iKLR4JmO0Yaz+)SyyUhnk=jm6`3fy%+T)DfHnnEXI?l zalXMqyo`LzEqgtS{nCPRQTG=q|K(HyTnJ((R^ThvQ>Z8T0d*E`pbqI@s3$38mCBSK z^@I^?BkH~u`}+=S47H#E)OaI{$-f3T!Ue7TRn%UO*^Y0a1|COc=3`X9lc)(!+25y7 zPd1G@beB>6Z=(ADY1`^V)y&7CJ2;RI6)oTx`A{ZaM;)fq$TpeJQ3Ia0?Q7QGkdK+M zy4fGyw+8iO<*2O-q59P#Ni%Ks_g$#|PA?U$Xdi0A5!8ZSve!pZ8F=5ePuSl-MeXr9 z)ET;hn&>9-F*-FQBQBled;Z__$t?V3@;52H0-%%-_K`nG4 zY0*LpQG2=uwSb_t5reclP;b|ZsI8br-G6ab_WwI7%D~U4e?&8=RC)Msp$W=R3#vv9 zxB<1G1hN)$0F~;OaVd@>AM+t!I;5YWw&W73-xX8_uB)y0|8FW9D3jjm;6XjfS}eve zda(<&ki)3|14mE`e-AamC#VcfqB3$8b^q5`fq$SfTFff%#TIll;eIMgiG!=~IPx(c z@uf^mp$5E&>i0cr;$Kkr>mX=hIjGFIQ48{*GPoL*dLL@5tL*h~A^Wcz>urb4sCFA_ z!Vc6xF;qtSaTy*)^?TF){;qA0qZWJudArOuB2K8RC6t|AL^;t&xRu8k6&<_|Lho#d zs3RUrugF@uVhgqZ7bR}4G^E?J3Y=Ek+%tFC+Kpt~M2M$|)r5++`f*|%!BLwnoB7s* zsXTZav)(GIiQNPz<-hVIwH>@z{M|ke?1pI}cz9DoJW7-jj}R(8qA%^vE@<6Et&Gs- ztR%EKDt_W&LYv!0sCbEXRVaH2?Td>3534k#pUqzGJV8xoEK2kfD%v@f5@I{?G|@|_ zG!tD!Ezv{hh0x2@Nz9drtpx!mnm-}mm%NI)|)17&~ z=8!L_k2e^IRE6#fP;y$L$&_!~aC9KKFPa)0j(D4*-SOyvw_!NCf52PYm+V$$)1Jh^ z%AVc_D!idUs4D$M-pbNs#P5#|4OOOeZ@jPfU}bDD;qQqbh!6Txz0pL{zpf@6uAazu M|KpknExC~KFY`Ls{Qv*} delta 2451 zcmYk+e@sv>?_zw#I)PlDG(XTOY^T=ZZNeb|Od;1wiya|XG@ z457|@7nS%&sEUlC9`p)sWPNYhZk`J zPNL>ZV}0_`gX}WJsQrFaVpXcYCTM2I7Hr1=p2kxA+&YDNq7`JLm$3--vfhh&q6SpO z4xpa&u(cO;UBVuJ(Rv1z&|530zb3q34~(EP`~tP+U)mGDLQOn@s?blU^CnR@n6k(J zL_OIp)XV2#p!3(F&R=iGn~+nCFG(l5$e23R6MRBBREaUvOLZMtHuD>5!kc!yly%Vl zJY<(Cu~wt5Ye7BO9@Nquu*Y4bm?mzICts$c3tmTM^d@TJ^QeR_+Wq6G3VdV7SMBjB z)EZBt-lYsSN~jRoWlB-|>)Gh~eRg~hdFG_)r=zue303lUa3`KeB{q%s;S6emBFdnW zm!J|YM4`pQO7OEH7X^!?wS>rgI!9aMo;s2`*fRH^DwH`t9z zr~@_OAyh)=klf7Ms8WB5`g+EZfAbw1y`(o#OEQZ(FN2-M`u@FiD21s&9cV&L7_?&- z^+dh60Z*ZW@1YX9jQU;p7WDu(P&c}Ts?@)z%4Ct1t}nn+tjDBE8=X+kp-THT z7UTEGzq!dq70G77HQ^f6d0S97-io?@2P(0>s0y{C5^_Y7H zwI`gl;~~@yhfx!KjH<|ISb&#N*Il#6f3@RjRKhdJM`rdDJwyXhLS&iyjd_O77UE$- zlXeojh&DpsZUs?C>`P^5=B<5<-knW#TWC$G#>|}LZaeH=*lj(6tc2M{JWH%6)U?!3 z5LE=P;#_-_tsYG6k$KEkt9XDoMDQy8-=3t`!H+qA^Y4R}EJ*P1=0RdFv5|P3Q1cO8 zsYRZgU?aWFgcfHVp~X@26Z#glxO)gShiFxY)=Owz)btIj?MS(vqT~U3ddChE5kgHX zr>0k~op6bxgjx&nG*L^02z?I$;vlimo}yDjgzb*vg#*}pN55V_B-=;-@ieCAMh3c^ z=s-N-^u-d+;gA!G_9sr1jn-!Wm6q-_1^1;Yy}s;nU!dGqQR4)vwpCW9qTalM#&GY6 z%5taHowMPD+Z~IQ9f?IBN`2^ESGLXX9~>MkOB{3i;^CvA=XAv189pA4`8#{uzOI<> zNHp$`&>L{OLZj2(+4SQ5t-D;3h{l}0kkc7D?#7)^JP~%HZlpgF>T}CR|5$xB?LT7C B>u3M~ diff --git a/cms/locale/eo/LC_MESSAGES/django.po b/cms/locale/eo/LC_MESSAGES/django.po index ce54fc5fea4..e6bcc7db838 100644 --- a/cms/locale/eo/LC_MESSAGES/django.po +++ b/cms/locale/eo/LC_MESSAGES/django.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Baptiste Darthenay , 2015 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Esperanto (http://www.transifex.com/divio/django-cms/language/eo/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Esperanto (https://app.transifex.com/divio/teams/58664/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +56,6 @@ msgstr "Metaetikedo de priskribo" msgid "A description of the page used by search engines." msgstr "Priskribo de la paĝo uzita de serĉiloj. " -msgid "Slug must not be empty." -msgstr "URLa nomo ne devas esti malplena." - msgid "Page type" msgstr "Paĝa tipo" @@ -69,9 +66,9 @@ msgid "Overwrite URL" msgstr "Anstataŭigu URLn" msgid "Keep this field empty if standard path should be used." -msgstr "Konservu tiun kampon malplenan se la apriora dosierindiko devus esti uzata." +msgstr "" +"Konservu tiun kampon malplenan se la apriora dosierindiko devus esti uzata." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +108,6 @@ msgstr "Aplikaĵa agordoj" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +181,6 @@ msgstr "La lingvo devas esti subtenata lingvo!" msgid "Parent plugin language must be same as language!" msgstr "Supera kromaĵa lingvo devas esti sama al lingvo!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +245,6 @@ msgstr "Vi sukcese ŝanĝis la ŝablonon" msgid "You do not have permission to copy these plugins." msgstr "Vi ne havas permeson kopii tiujn kromaĵojn." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +252,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Malplena" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +283,6 @@ msgstr "Vi ne havas permeson redakti tiun eron" msgid "You do not have permission to add a plugin" msgstr "Vi ne havas permeson aldoni kromaĵon" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +292,15 @@ msgstr "Kromaĵo ne trovita" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +330,47 @@ msgstr "Uzantaj kaj grupaj permesoj" msgid "Page permissions management" msgstr "Paĝa permesa administrado" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "Strukturo" @@ -406,15 +442,12 @@ msgstr "Elsaluti" msgid "Language" msgstr "Lingvo" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +465,6 @@ msgstr "Paĝoj" msgid "Page" msgstr "Paĝo" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +511,12 @@ msgid "Select a valid page" msgstr "Elektu validan paĝon" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +632,57 @@ msgstr "" msgid "page" msgstr "paĝo" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "Malpermesi" + +msgid "Only this website" +msgstr "Nur en tiu retejo" + +msgid "Allow" +msgstr "Permesi" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "aprioro" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +691,6 @@ msgstr "" msgid "pages" msgstr "paĝoj" -msgid "default" -msgstr "aprioro" - msgid "slug" msgstr "" @@ -642,7 +718,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +826,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "Malpermesi" - -msgid "Only this website" -msgstr "Nur en tiu retejo" - -msgid "Allow" -msgstr "Permesi" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +833,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +842,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +904,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +984,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Permesoj" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1008,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1021,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1060,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1080,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Malplena" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,12 +1105,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Permesoj" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1161,7 +1166,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1179,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1190,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1202,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1246,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1289,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1361,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1440,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1449,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1485,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,394 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/eo/LC_MESSAGES/djangojs.mo b/cms/locale/eo/LC_MESSAGES/djangojs.mo index 50ffd1e1a6143e5125dd5554fa9f49bb89b82bcb..ef2e3eb6d19ec077b25f4c0b2574629a5560380c 100644 GIT binary patch delta 68 zcmdnSyoPy#3S-ek)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!$Ph^78VDuMYwMx_TQ= diff --git a/cms/locale/eo/LC_MESSAGES/djangojs.po b/cms/locale/eo/LC_MESSAGES/djangojs.po index bf89de9a9cb..163c8907dc3 100644 --- a/cms/locale/eo/LC_MESSAGES/djangojs.po +++ b/cms/locale/eo/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Esperanto (http://www.transifex.com/divio/django-cms/language/eo/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Esperanto (http://app.transifex.com/divio/django-cms/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/es/LC_MESSAGES/django.mo b/cms/locale/es/LC_MESSAGES/django.mo index 89d97e35052a94c069989e7479b48043853b0b04..1cb606333f482a93e5c8897f45c0b815e9eba844 100644 GIT binary patch delta 9566 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 K_td3Fz5X95HJ#c3 delta 9783 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, 2013 -# Adolfo Gómez , 2014 -# Alexandre Filgueira , 2016 -# Cynthia, 2015 -# cyncyncyn, 2015 -# danirus , 2011 -# danirus , 2011 -# Diego Romero Pozo , 2015 -# Adolfo Gómez , 2014 -# Eduardo Ludi , 2013 -# Erick Del Castillo Deza , 2018 -# Ernesto Avilés, 2015 -# jorlugaqui , 2017 -# Luis Montiel , 2016 -# Luis Zárate , 2019 -# mariocesar , 2011 -# mariocesar , 2011 -# Óscar M. Lage , 2013 -# Pablo, 2015 -# Pablo, 2015 -# Pavel Nunez , 2013 -# Pedro Gracia , 2011 -# Pier Jose Gotta Perez , 2020 -# rafadev , 2011 -# rafadev , 2011 -# 2lopez , 2013 -# xyos , 2011 -# Williams Mendez , 2012 -# Williams Mendez , 2012 -# xyos , 2011 +# Erick Del Castillo Deza , 2023 +# Luis Montiel , 2023 +# Pier Jose Gotta Perez , 2023 +# Alexandre Filgueira , 2023 +# jorlugaqui , 2023 +# Fabian Braun , 2023 +# Luis Zárate , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Spanish (http://www.transifex.com/divio/django-cms/language/es/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Luis Zárate , 2023\n" +"Language-Team: Spanish (https://app.transifex.com/divio/teams/58664/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Todo" @@ -77,16 +54,16 @@ msgstr "Título de la Página" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobreescribe lo que se muestra en la parte superior de su navegador o en los marcadores" +msgstr "" +"Sobreescribe lo que se muestra en la parte superior de su navegador o en los" +" marcadores" msgid "Description meta tag" msgstr "Meta tag de descripción (Description)" msgid "A description of the page used by search engines." -msgstr "Lista de palabras clave que a veces será usada por los motores de búsqueda." - -msgid "Slug must not be empty." -msgstr "El slug no puede estar vacio" +msgstr "" +"Lista de palabras clave que a veces será usada por los motores de búsqueda." msgid "Page type" msgstr "Tipo de página" @@ -100,7 +77,6 @@ msgstr "Sobreescribir la URL" msgid "Keep this field empty if standard path should be used." msgstr "Mantenga este campo vacío si se va a utilizar la ruta estándar." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -122,11 +98,9 @@ msgstr "visibilidad del menú" msgid "limit when this page is visible in the menu" msgstr "límite cuando la página es visible en el menú" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -142,7 +116,6 @@ msgstr "Configuraciones de aplicación" msgid "A page with this reverse URL id exists already." msgstr "Ya existe una página con este id de URL inversa." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Configuración de aplicación inválida" @@ -179,32 +152,44 @@ msgstr "Eliminar" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Usuarios no pueden crear una página sin tener permisos para cambiar la página creada. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden crear una página sin tener permisos para cambiar la " +"página creada. Permisos de edición son requeridos." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Usuarios no pueden eliminar una página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden eliminar una página sin tener permisos de cambio de " +"página. Permisos de edición son requeridos." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Usuarios no pueden configurar permisos de página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden configurar permisos de página sin tener permisos de " +"cambio de página. Permisos de edición son requeridos." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Usuarios no pueden eliminar permisos de página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden eliminar permisos de página sin tener permisos de cambio " +"de página. Permisos de edición son requeridos." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Usuarios no pueden crear permisos de página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden crear permisos de página sin tener permisos de cambio de " +"página. Permisos de edición son requeridos." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Usuarios no pueden eliminar permisos de página sin tener permisos de cambio de permisos. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden eliminar permisos de página sin tener permisos de cambio " +"de permisos. Permisos de edición son requeridos." #, python-format msgid "Invalid plugin type '%s'" @@ -216,9 +201,9 @@ msgstr "¡El idioma debe ser fijado a un idioma soportado!" msgid "Parent plugin language must be same as language!" msgstr "El lenguaje debe ser el mismo que el del plugin padre" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "¡El marcador de posición debe ser igual al marcador de posición padre!" +msgstr "" +"¡El marcador de posición debe ser igual al marcador de posición padre!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -231,7 +216,6 @@ msgid "The page is not eligible to be home." msgstr "Ésta página no es elegible para ser Inicio" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -248,16 +232,19 @@ msgstr "El objeto %(name)s con la clave primaria %(key)r no existe." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Error! Usted no tiene permisos para cambiar esta página. Por favor, refrescar la página." +msgstr "" +"Error! Usted no tiene permisos para cambiar esta página. Por favor, " +"refrescar la página." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "¡Error! Usted no tiene permisos para copiar esta página" msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "¡Error! La página que está pegando no está traducida a ninguno de los idiomas configurados por el sitio de destino." +msgstr "" +"¡Error! La página que está pegando no está traducida a ninguno de los " +"idiomas configurados por el sitio de destino." msgid "You do not have permission to edit this page" msgstr "No tiene permisos para editar esta página" @@ -283,16 +270,28 @@ msgstr "La plantilla fue cambiada exitosamente" msgid "You do not have permission to copy these plugins." msgstr "No tiene permisos para copiar estas extensiones" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "No tiene permisos para eliminar esta página" +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "El título y los plugins con el lenguaje %(language)s fueron eliminados." +msgstr "" +"El título y los plugins con el lenguaje %(language)s fueron eliminados." -msgid "You do not have permission to change this page's in_navigation status" -msgstr "No tiene permisos para cambiar esta página en el estado 'in_navigation'" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Vacio" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Mostrar restricción" @@ -310,7 +309,6 @@ msgstr "No tiene permisos para editar este item" msgid "You do not have permission to add a plugin" msgstr "No tiene permisos para agregar conectores o plugins" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "No tienes permisos para copiar este marcador de posición." @@ -320,18 +318,15 @@ msgstr "Complemento no encontrado" msgid "You do not have permission to edit this plugin" msgstr "No tiene permisos para editar esta extensin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "No tienes permiso para copiar esta extensión" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "No tienes permiso para copiar este marcador de posición" msgid "You have no permission to move this plugin" msgstr "No tienes permiso para mover esta extensión" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "No tienes permiso para cortar esta extensión" @@ -361,6 +356,47 @@ msgstr "Permisos de usuario y grupo" msgid "Page permissions management" msgstr "Administración de permisos de la página" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Previo" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Sin apphook \"%r\" encontrada" @@ -381,7 +417,9 @@ msgstr "Crear Alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Esta es una referencia de alias, puede editar el contenido solo en %(page_title)s página." +msgstr "" +"Esta es una referencia de alias, puede editar el contenido solo en %(page_title)s página." msgid "Create" msgstr "Crear" @@ -389,9 +427,6 @@ msgstr "Crear" msgid "Edit" msgstr "Editar" -msgid "Preview" -msgstr "Previo" - msgid "Structure" msgstr "Estructura" @@ -435,15 +470,12 @@ msgstr "Salir" msgid "Language" msgstr "Idioma" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Agregar Traducción" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Eliminar Traducción" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Copiar todas las extensiones" @@ -452,7 +484,6 @@ msgid "from %s" msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "¿Está seguro de querer copiar todas las extensiones desde %s?" @@ -462,7 +493,6 @@ msgstr "Páginas" msgid "Page" msgstr "Página" -#| msgid "Create" msgid "Create Page" msgstr "Crear Página" @@ -509,34 +539,38 @@ msgid "Select a valid page" msgstr "Elija una página válida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "La página %(conflict_page)s tiene la misma url '%(url)s' que la página actual \"%(instance)s\"." +msgstr "" +"La página %(conflict_page)s tiene la misma url '%(url)s' que la página " +"actual \"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "La página %(conflict_page)s tiene la misma url '%(url)s' que la página actual." +msgstr "" +"La página %(conflict_page)s tiene la misma url '%(url)s' que la página " +"actual." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Opcional. Si se suministra, se añadirá automáticamente dentro de un nuevo plugin de texto ." +msgstr "" +"Opcional. Si se suministra, se añadirá automáticamente dentro de un nuevo " +"plugin de texto ." msgid "Provide a title for the new page." msgstr "Introduzca un titulo para la página nueva." msgid "Leave empty for automatic slug, or override as required." -msgstr "Dejar en blanco para un slug automático, o configurar como sea necesario." +msgstr "" +"Dejar en blanco para un slug automático, o configurar como sea necesario." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." msgstr "No tiene los permisos necesarios para agregar una página." @@ -633,17 +667,67 @@ msgstr "Autorizado" msgid "page" msgstr "página" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "solo para usuarios identificados" + +msgid "for anonymous users only" +msgstr "solo para usuarios anónimos" + +msgid "Inherit from parent page" +msgstr "Heredar de la página padre" + +msgid "Deny" +msgstr "Denegar" + +msgid "Only this website" +msgstr "Solo este sitio web" + +msgid "Allow" +msgstr "Permitir" + +msgid "title" +msgstr "título" + +msgid "overwrite the title (html title tag)" +msgstr "sobreescribir el título (etiqueta HTML 'title')" + +msgid "overwrite the title in the menu" +msgstr "sobreescribir el título en el menú" + +msgid "description" +msgstr "descripción" + +msgid "The text displayed in search engines." +msgstr "El texto mostrado en motores de buqueda" + +msgid "redirect" +msgstr "redirige" + +msgid "The template used to render the content." +msgstr "La plantilla usada para mostrar el contenido." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "por defecto" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Un identificador único que se usa conjuntamente con el templatetag \"page_url\" para enlazar a esta página" +msgstr "" +"Un identificador único que se usa conjuntamente con el templatetag " +"\"page_url\" para enlazar a esta página" msgid "pages" msgstr "páginas" -msgid "default" -msgstr "por defecto" - msgid "slug" msgstr "slug" @@ -671,35 +755,44 @@ msgstr "en el nivel de la página" msgid "frontend view restriction" msgstr "restricción para el usuario final" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Por favor seleccione usuario o grupo." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Usuarios no pueden publicar una página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden publicar una página sin tener permisos de cambio de " +"página. Permisos de edición son requeridos." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Usuarios no pueden cambiar la configuración avanzada de una página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden cambiar la configuración avanzada de una página sin tener" +" permisos de cambio de página. Permisos de edición son requeridos." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Usuarios no pueden cambiar permisos de página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden cambiar permisos de página sin tener permisos de cambio " +"de página. Permisos de edición son requeridos." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Usuarios no pueden mover una página sin tener permisos de cambio de página. Permisos de edición son requeridos." +msgstr "" +"Usuarios no pueden mover una página sin tener permisos de cambio de página. " +"Permisos de edición son requeridos." msgid "can recover any deleted page" msgstr "puede recuperar cualquier página eliminada" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Si no selecciona nada, el usuario tiene garantizado el permiso a todos los sitios." +msgstr "" +"Si no selecciona nada, el usuario tiene garantizado el permiso a todos los " +"sitios." msgid "Page global permission" msgstr "Permiso global de la página" @@ -713,7 +806,10 @@ msgstr "Permiso de la página" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Añadir permisos a la página requiere también acceso a sus hijos o descendientes, de otra forma la página añadida no puede ser modificada por su autor." +msgstr "" +"Añadir permisos a la página requiere también acceso a sus hijos o " +"descendientes, de otra forma la página añadida no puede ser modificada por " +"su autor." msgid "User (page)" msgstr "Usuario (página) " @@ -757,7 +853,9 @@ msgstr "nombre del placeholder estático" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nombre descriptivo para identificar este placeholder estático. No se mostrará a los usuarios." +msgstr "" +"Nombre descriptivo para identificar este placeholder estático. No se " +"mostrará a los usuarios." msgid "placeholder code" msgstr "código de placeholder" @@ -780,45 +878,6 @@ msgstr "placeholder estáticos" msgid "A static placeholder with the same site and code already exists" msgstr "Un placeholder estático ya existe con el mismo codigo y site" -msgid "for logged in users only" -msgstr "solo para usuarios identificados" - -msgid "for anonymous users only" -msgstr "solo para usuarios anónimos" - -msgid "Inherit from parent page" -msgstr "Heredar de la página padre" - -msgid "Deny" -msgstr "Denegar" - -msgid "Only this website" -msgstr "Solo este sitio web" - -msgid "Allow" -msgstr "Permitir" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "sobreescribir el título (etiqueta HTML 'title')" - -msgid "overwrite the title in the menu" -msgstr "sobreescribir el título en el menú" - -msgid "description" -msgstr "descripción" - -msgid "The text displayed in search engines." -msgstr "El texto mostrado en motores de buqueda" - -msgid "redirect" -msgstr "redirige" - -msgid "The template used to render the content." -msgstr "La plantilla usada para mostrar el contenido." - msgid "Advanced options" msgstr "Opciones avanzadas" @@ -826,7 +885,6 @@ msgid "Generic" msgstr "Genérico" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "La %(name)s \"%(obj)s\" fue modificada exitosamente." @@ -836,68 +894,58 @@ msgstr "No hay mas ajustes para este plugin. Por favor, pulse sobre \"Guardar\"" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Cambiado" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Guardar" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "Entrar por aquía la parte de administración." +msgstr "" +"Entrar por aquía la parte de administración." #, python-format msgid "Login url: %(login_url)s" @@ -909,9 +957,8 @@ msgstr "Nombre de usuario:" msgid "Password:" msgstr "Contraseña:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Agregar página" +msgstr "" msgid "Change a page" msgstr "Cambiar la página" @@ -926,6 +973,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "Por favor, corrija el error de abajo." msgstr[1] "Por favor, corrija los errores de abajo." +msgstr[2] "Por favor, corrija los errores de abajo." msgid "All permissions" msgstr "Todos los permisos" @@ -990,16 +1038,21 @@ msgstr "Cortar" msgid "Paste" msgstr "Pegar" -#| msgid "Save as new" msgid "Set as home" msgstr "Hacerla como Inicio" +msgid "Permissions" +msgstr "Permisos" + msgid "is restricted" msgstr "está restringido/a" msgid "last change by" msgstr "ultimo cambio por" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -1009,7 +1062,6 @@ msgstr "Listado de páginas" msgid "Search" msgstr "Búsqueda" -#| msgid "Page Title" msgid "Page Tree" msgstr "Jerarquía de la página " @@ -1021,19 +1073,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nRestablecer %(name)s eliminado" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Restablecer %(name)s eliminado" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navegación principal" -#| msgid "Actions" msgid "Options" msgstr "Opciones" @@ -1049,7 +1095,9 @@ msgstr "Error:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Esta página no puede ser copiada porque una aplicación está enlazada a ella. Vea las configuraciones avanzadas para administrar los apphooks." +msgstr "" +"Esta página no puede ser copiada porque una aplicación está enlazada a ella." +" Vea las configuraciones avanzadas para administrar los apphooks." msgid "Are you sure you want to § this page?" msgstr "¿Está seguro de que desea %%s esta página?" @@ -1057,7 +1105,6 @@ msgstr "¿Está seguro de que desea %%s esta página?" msgid "Reload" msgstr "Recargar" -#| msgid "New Page" msgid "New node" msgstr "Nuevo nodo" @@ -1071,17 +1118,18 @@ msgid "Menu" msgstr "Menú" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Todavía no hay %(object)s alrededor.\n
    \n Agregar %(object)s ahora.\n " +msgstr "" +"\n" +" Todavía no hay %(object)s alrededor.\n" +"
    \n" +" Agregar %(object)s ahora.\n" +" " msgid "Copy options" msgstr "Opciones de copia" @@ -1095,30 +1143,15 @@ msgstr "Cerrar" msgid "Legend" msgstr "Leyenda" -#| msgid "published" -msgid "Published" -msgstr "Publicado" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Sin publicar" - -msgid "Empty" -msgstr "Vacio" - -#| msgid "in menu" msgid "In menu" msgstr "En el menú" -#| msgid "not in menu" msgid "Not in menu" msgstr "No est´en el menú" -#| msgid "New page" msgid "View page" msgstr "Ver página" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1135,12 +1168,18 @@ msgstr "en el menú" msgid "not in menu" msgstr "no está en el menú" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Ajustes de página (Mayús-clic para ajustes avanzados)" -msgid "Permissions" -msgstr "Permisos" +msgid "This page has no preview!" +msgstr "¡Esta página no tiene vista previa!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Está siendo redirigido a:" msgid "Clipboard" msgstr "Portapapeles" @@ -1179,7 +1218,8 @@ msgid "Clipboard is empty." msgstr "El portapapeles está vacío." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "Este complemento no acepta este tipo de complemento de manera anidada." +msgstr "" +"Este complemento no acepta este tipo de complemento de manera anidada." msgid "This plugin cannot have nested plugins." msgstr "Este complemento no puede tener complementos anidados." @@ -1190,7 +1230,6 @@ msgstr "Destacar" msgid "Available plugins" msgstr "Plugins disponibles" -#| msgid "Structure" msgid "Toggle structure" msgstr "Cambiar estructura" @@ -1204,11 +1243,12 @@ msgid "More" msgstr "Más" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Versión de desarrollo usando django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Versión de desarrollo usando django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Cancelar" @@ -1216,7 +1256,6 @@ msgstr "Cancelar" msgid "The following error occured:" msgstr "Ha ocurrido el siguiente error:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Acción exitosa." @@ -1229,24 +1268,22 @@ msgstr "¿Está seguro de que desea publicar esta página?" msgid "Plugin will be added here" msgstr "El complemento se añadirá aquí" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Tienes cambios sin guardar." -#| msgid "Loading..." msgid "Loading" msgstr "Cargando" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "¿Está seguro de querer abandonar estos cambios?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "El formulario no pudo ser cargado. Por favor revisa que el servidor esté corriendo correctamente." +msgstr "" +"El formulario no pudo ser cargado. Por favor revisa que el servidor esté " +"corriendo correctamente." -#| msgid "Notify user" msgid "Most used" msgstr "Más utilizado" @@ -1256,10 +1293,12 @@ msgstr "Atajos" msgid "The page was changed in the meantime, reloading..." msgstr "La página fue cambiada mientras tanto, volviendo a cargar..." +msgid "CMS-wide Shortcuts" +msgstr "Atajos de CMS-wide" + msgid "Bring up this help dialog" msgstr "Abrir este diálogo de ayuda" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Cerrar/cancelar" @@ -1275,32 +1314,29 @@ msgstr "Abrir \"Crear\" diálogo." msgid "Focus on Toolbar" msgstr "Foco en la barra de herramientas" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Foco sobre los marcadores de posición" msgid "Move to next/previous element" msgstr "Mover al siguiente/anterior elemento" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Foco sobre las extensiones de marcador de posición" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Editar extensión" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Abrir menú de acciones" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Expander/contraer" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Fallo al iniciar sesión. Por favor, compruebe sus datos e intente otra vez." +msgstr "" +"Fallo al iniciar sesión. Por favor, compruebe sus datos e " +"intente otra vez." msgid "Double-click to edit" msgstr "Doble click para editar" @@ -1323,12 +1359,6 @@ msgstr "Maximizar" msgid "Drop a plugin here" msgstr "Soltar una extensión aquí" -msgid "This page has no preview!" -msgstr "¡Esta página no tiene vista previa!" - -msgid "It is being redirected to:" -msgstr "Está siendo redirigido a:" - msgid "Installation successful!" msgstr "¡Instalación exitosa!" @@ -1343,14 +1373,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nBienvenido a django CMS versión %(cms_version)s." +msgstr "" +"\n" +"Bienvenido a django CMS versión %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nAgrega la primera página to the system to continue." +msgstr "" +"\n" +"Agrega la primera página to the system to continue." #, python-format msgid "" @@ -1358,7 +1392,9 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavaScript parece estar deshabilitado, por favor Agrega una página manualmente." +msgstr "" +"\n" +"JavaScript parece estar deshabilitado, por favor Agrega una página manualmente." msgid "Installation Notes" msgstr "Notas de instalación" @@ -1369,32 +1405,19 @@ msgstr "Soporte" msgid "Documentation" msgstr "Documentación" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Si no puedes ver el logo de django CMS en la parte superior, revisa que\n hayas asociado la carpeta static/cms a tus\n archivos estáticos.

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Si no puedes ver el logo de django CMS en la parte superior, revisa que\n" +" hayas asociado la carpeta static/cms a tus\n" +" archivos estáticos.

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1402,7 +1425,13 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Estás viendo este mensaje porque tienes\n DEBUG = True en su archivo de configuración de django y\n no he agregado ninguna página todavía.\n

    \n " +msgstr "" +"\n" +"

    Estás viendo este mensaje porque tienes\n" +" DEBUG = True en su archivo de configuración de django y\n" +" no he agregado ninguna página todavía.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Bienvenido a django CMS" @@ -1414,16 +1443,14 @@ msgid "Back" msgstr "Regresar" msgid "Please choose an option from below to proceed to the next step." -msgstr "Por favor escoja una opción a continuación para proceder con el siguiente paso." +msgstr "" +"Por favor escoja una opción a continuación para proceder con el siguiente " +"paso." msgid "Next" msgstr "Siguiente" -msgid "no content" -msgstr "sin contenido" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1434,7 +1461,9 @@ msgstr "Página no encontrada en %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n`. La URL de la petición era: http://%(host)s%(path)s" +msgstr "" +"Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n" +"`. La URL de la petición era: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dos columnas" @@ -1447,7 +1476,9 @@ msgstr "nombre de usuario" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Obligatorio. 300 caracteres o menos. Letras, números y los caracteres @/./+/-/_" +msgstr "" +"Obligatorio. 300 caracteres o menos. Letras, números y los caracteres " +"@/./+/-/_" msgid "Enter a valid username." msgstr "Introduzca un nombre de usuario válido." @@ -1459,7 +1490,8 @@ msgid "staff status" msgstr "estado del personal" msgid "Designates whether the user can log into this admin site." -msgstr "Designa si el usuario puede autenticarse en este sitio de administración." +msgstr "" +"Designa si el usuario puede autenticarse en este sitio de administración." msgid "active" msgstr "activo" @@ -1467,7 +1499,9 @@ msgstr "activo" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Establece si este usuario es tratado como activo. Desmarcar esto en vez de borrar las cuentas." +msgstr "" +"Establece si este usuario es tratado como activo. Desmarcar esto en vez de " +"borrar las cuentas." msgid "users" msgstr "usuarios" @@ -1502,7 +1536,6 @@ msgstr "Artículos" msgid "Sample App" msgstr "Aplicación de Ejemplo" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Aplicación de Ejemplo con config" @@ -1512,9 +1545,8 @@ msgstr "Aplicación de muestra con permisos excluidos" msgid "Sample App 2" msgstr "Aplicación de Ejemplo 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Aplicación de Ejemplo 3" +msgstr "Aplicación de Ejemplo 2" msgid "Namespaced App" msgstr "Applicación de Espacio de Nombre" @@ -1549,9 +1581,8 @@ msgstr "Menú Estático 2" msgid "Static Menu3" msgstr "Menú Estático 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Menú Estático 4" +msgstr "Menú Estático" msgid "Category" msgstr "Categoría" @@ -1578,12 +1609,10 @@ msgid "UserSettings" msgstr "Configuración de Usuarios" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Agregar extensión al marcador de posición \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Agregar extensión a %(plugin_name)s" @@ -1601,17 +1630,23 @@ msgstr "Este placeholder tiene ya el máximo número de plugins (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Este placeholder tiene ya el máximo número (%(limit)s) de plugins %(plugin_name)s permitido." +msgstr "" +"Este placeholder tiene ya el máximo número (%(limit)s) de plugins " +"%(plugin_name)s permitido." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "Incapaz de encontrar el modulo especificado CMS_REQUEST_IP_RESOLVER: \"{0}\" . " +msgstr "" +"Incapaz de encontrar el modulo especificado CMS_REQUEST_IP_RESOLVER: \"{0}\"" +" . " #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Incapaz de encontrar la función especificada CMS_REQUEST_IP_RESOLVER : \"{0}\" en el modulo \"{1}\"." +msgstr "" +"Incapaz de encontrar la función especificada CMS_REQUEST_IP_RESOLVER : " +"\"{0}\" en el modulo \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1620,394 +1655,3 @@ msgstr "Crear nueva instancia de %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Ya se ha asignado un wizard para el modelo: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/es/LC_MESSAGES/djangojs.mo b/cms/locale/es/LC_MESSAGES/djangojs.mo index 3b464bc2238d2f8ad6fd44c0151a5103725f494a..8c577f95bcbbe53c6057ddef3519a270bd4ac018 100644 GIT binary patch delta 161 zcmaFB(#twQhj%$61H)7X1_pm1ww-9XoYz3t&`{UdK*7Mw%EWTwTXDTqlawSQb0b5O zH1kw*QxlUkBLgF&WHS@V delta 143 zcmeBWeZVq7hqsE6fnh2G1A{*h3rw_J&TFA-V5nV~8y=2|HP7bNCo7H24EWR#Q? mSn2DRmzPftWn3d, 2011 -# Ernesto Avilés, 2015 +# e4db27214f7e7544f2022c647b585925_bb0e321, 2015 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Spanish (http://www.transifex.com/divio/django-cms/language/es/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: e4db27214f7e7544f2022c647b585925_bb0e321, 2015\n" +"Language-Team: Spanish (http://app.transifex.com/divio/django-cms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "¿Estás seguro de que desea cambiar de pestañas sin guardar antes la página?" diff --git a/cms/locale/es_AR/LC_MESSAGES/django.mo b/cms/locale/es_AR/LC_MESSAGES/django.mo index 4d2c5aca2654d27ac4b71af1f71413f371fb9e15..1f3ad74ffe0c6508e30ec929ac6910797e107889 100644 GIT binary patch delta 368 zcmXw!%}T>S6osd16%;pu6h!e>Xi+e~t)(PJ1wj!M#DyC-9VW4)B$JS-ui(P%Ac#9% zxezzLfY3gN&*0vTCjk%haqbLf?#%sts!i*I@0Gbn2F-$X&;@mH4oVGx12|X%8obvS z`+%Q-n;FKM@K-pF8LU#-uatgkbo+Up#Db6GOp?gtZ9Kdys-0q&MK+4W*f!?sj zcodGf9A<_{mA*HPW!G@ZMUL%tT>WJ>wl8p*E4s=Q8t$jq6=iueOnID`B1;c;$+cZq z|Cl=q%Cjt<=X%pxT^dI`Rn}g=*X!z2>%s5%lqdL05=aUHa_Eq3@<>uMK+$faYT?~V sWxz(jLBRDF^|QS(ucBh|BK6d6Z5{v5B``yzD2yoK#H+zYJo%LD55v1&5dZ)H literal 19579 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 diff --git a/cms/locale/es_AR/LC_MESSAGES/django.po b/cms/locale/es_AR/LC_MESSAGES/django.po index b72763e2d47..aac3d291fe5 100644 --- a/cms/locale/es_AR/LC_MESSAGES/django.po +++ b/cms/locale/es_AR/LC_MESSAGES/django.po @@ -3,132 +3,110 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# 2lopez , 2013 -# paulo alvarado , 2012 -# paulo alvarado , 2012 -# danirus , 2011 -# Pavel Nunez , 2013 -# Eduardo Ludi , 2013-2014 -# Eduardo Ludi , 2013 -# Joaquín T , 2014 -# Juan Carizza , 2011 -# mariocesar , 2011 -# Pavel Nunez , 2013 -# Pedro Gracia , 2011 -# rafadev , 2011 -# Williams Mendez , 2012 -# Williams Mendez , 2012 -# xyos , 2011 +# Matias Roson , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/divio/django-cms/language/es_AR/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Matias Roson , 2022\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/divio/teams/58664/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" -msgstr "Todo" +msgstr "" msgid "Copy permissions" -msgstr "Permisos de copia" +msgstr "" msgid "Title" -msgstr "Título" +msgstr "" msgid "The default title" -msgstr "Título por defecto" +msgstr "" msgid "Slug" -msgstr "Nombre único (slug)" +msgstr "" msgid "The part of the title that is used in the URL" -msgstr "Parte del título que es usado en la URL" +msgstr "" msgid "Menu Title" -msgstr "Título del Menú" +msgstr "" msgid "Overwrite what is displayed in the menu" -msgstr "Sobreescribir lo que es mostrado en el menú" +msgstr "" msgid "Page Title" -msgstr "Título de la Página" +msgstr "" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobreescribe lo que es mostrado en lo alto de su navegador o en sus marcadores" +msgstr "" msgid "Description meta tag" -msgstr "Descripción del meta tag" +msgstr "" msgid "A description of the page used by search engines." -msgstr "Lista de palabras clave que a veces será usada por los motores de búsqueda." - -msgid "Slug must not be empty." -msgstr "El slug no puede estar vacío" +msgstr "Lista de palabras clave que serán usada por los motores de búsqueda." msgid "Page type" -msgstr "Tipo de Página" +msgstr "" msgid "Page Types" -msgstr "Tipos de Páginas" +msgstr "" msgid "Overwrite URL" -msgstr "Sobreescribir la URL" +msgstr "" msgid "Keep this field empty if standard path should be used." -msgstr "Guardar el campo vacío si es usado el 'path' estándar." +msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Todos los ancestros no serán mostrados en la navegación" +msgstr "" msgid "Redirect" -msgstr "Redirigir" +msgstr "" msgid "Redirects to this URL." -msgstr "Redirige a esta URL." +msgstr "" msgid "Start typing..." -msgstr "Comenzar a tipear..." +msgstr "" msgid "menu visibility" -msgstr "visibilidad del menú" +msgstr "" msgid "limit when this page is visible in the menu" -msgstr "límite cuando la página es visible en el menú" +msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" msgid "Application" -msgstr "Aplicación" +msgstr "" msgid "Hook application to this page." -msgstr "Integrar la aplicación a esta página." +msgstr "" msgid "Application configurations" -msgstr "" +msgstr "Configuraciones de la aplicación" msgid "A page with this reverse URL id exists already." -msgstr "Página con este id de URL inversa si ya existe." +msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -148,19 +126,19 @@ msgid "No" msgstr "" msgid "user" -msgstr "usuario" +msgstr "" msgid "can_view" -msgstr "puede ver" +msgstr "" msgid "Add" -msgstr "Añadir" +msgstr "" msgid "Change" -msgstr "Cambiar" +msgstr "" msgid "Delete" -msgstr "Eliminar" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " @@ -197,12 +175,11 @@ msgid "Invalid plugin type '%s'" msgstr "" msgid "Language must be set to a supported language!" -msgstr "¡El idioma debe estar soportado para ser configurado!" +msgstr "" msgid "Parent plugin language must be same as language!" -msgstr "El idioma del plugin padre debe ser el mismo que lenguaje." +msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -211,32 +188,30 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "Configuración avanzada" +msgstr "" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" #, python-format msgid "Cannot delete %(name)s" -msgstr "No puede borrar %(name)s" +msgstr "" msgid "Are you sure?" -msgstr "¿Está seguro?" +msgstr "" #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "El objeto %(name)s con la clave primaria %(key)r no existe." +msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Error! Usted no tiene permisos para cambiar esta página. Por favor, refrescar la página." +msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -246,10 +221,10 @@ msgid "" msgstr "" msgid "You do not have permission to edit this page" -msgstr "No tiene permisos para editar esta página" +msgstr "" msgid "Add Page Copy" -msgstr "Agregar Copia de Página" +msgstr "" msgid "New sub page" msgstr "" @@ -258,45 +233,55 @@ msgid "New page" msgstr "" msgid "Database error" -msgstr "Error de Base de Datos" +msgstr "" msgid "Template not valid" -msgstr "Plantilla inválida" +msgstr "" msgid "The template was successfully changed" -msgstr "La plantilla fue cambiada exitosamente" +msgstr "" msgid "You do not have permission to copy these plugins." -msgstr "No tiene permisos para copiar estas extensiones" +msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "El título y los plugins con el lenguaje %(language)s fueron eliminados." +msgstr "" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "No tiene permisos para cambiar esta página en el estado 'in_navigation'" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" -msgstr "Mostrar restricción" +msgstr "" msgid "View restrictions" -msgstr "Mostrar restricciones" +msgstr "" #, python-format msgid "Field %s not found" -msgstr "Campo %s no encontrado" +msgstr "" msgid "You do not have permission to edit this item" -msgstr "No tienes permiso para editar este item" +msgstr "" msgid "You do not have permission to add a plugin" -msgstr "No tiene permisos para agregar conectores o plugins" +msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -304,64 +289,102 @@ msgid "Plugin not found" msgstr "" msgid "You do not have permission to edit this plugin" -msgstr "No tiene permisos para editar esta extensin" +msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" -msgstr "No tienes permiso para mover esta extensión" +msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" msgid "You do not have permission to delete this plugin" -msgstr "No tiene permisos para eliminar esta extensión" +msgstr "" #, python-format msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." -msgstr "La extesión \"%(name)s\" %(obj)s\" fue eliminada exitosamente." +msgstr "" msgid "You do not have permission to clear this placeholder" -msgstr "No tiene permisos para quitar este marcador de posición" +msgstr "" #, python-format msgid "The placeholder \"%(obj)s\" was cleared successfully." -msgstr "El marcador de posición \"%(obj)s\" fue quitado exitosamente." +msgstr "" msgid "placeholder" -msgstr "marcador de posición" +msgstr "" msgid "Page permissions" -msgstr "Permisos de página" +msgstr "" msgid "User & Group permissions" -msgstr "Permisos de usuario y grupo" +msgstr "" msgid "Page permissions management" -msgstr "Administración de permisos de la página" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" #, python-format msgid "No registered apphook \"%r\" found" msgstr "" msgid "django CMS" -msgstr "django CMS" +msgstr "" msgid "Placeholder" -msgstr "marcador de posición" +msgstr "" msgid "Alias" -msgstr "Alias" +msgstr "" msgid "Create Alias" -msgstr "Crear Alias" +msgstr "" #, python-format msgid "" @@ -373,28 +396,25 @@ msgid "Create" msgstr "" msgid "Edit" -msgstr "Editar" - -msgid "Preview" msgstr "" msgid "Structure" -msgstr "Estructura" +msgstr "" msgid "Content" -msgstr "Contenido" +msgstr "" msgid "Sites" -msgstr "Sitios" +msgstr "" msgid "Admin Sites" -msgstr "Administrar Sitios" +msgstr "" msgid "Administration" -msgstr "Administración" +msgstr "" msgid "User settings" -msgstr "Configuración de usuario" +msgstr "" msgid "Clipboard..." msgstr "" @@ -409,27 +429,24 @@ msgid "Shortcuts..." msgstr "" msgid "Users" -msgstr "Usuarios" +msgstr "" #, python-format msgid "Logout %s" -msgstr "Cerrar sesión %s" +msgstr "" msgid "Logout" -msgstr "Salir" +msgstr "" msgid "Language" -msgstr "Idioma" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -438,49 +455,47 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" msgid "Pages" -msgstr "Páginas" +msgstr "" msgid "Page" -msgstr "Página" +msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" msgid "New Page" -msgstr "Nueva Página" +msgstr "" msgid "New Sub Page" -msgstr "Nueva Subpágina" +msgstr "" msgid "Duplicate this Page" -msgstr "Duplicar esta Página" +msgstr "" msgid "Edit this Page" -msgstr "Editar esta página" +msgstr "" msgid "Page settings" -msgstr "Configuración de la página" +msgstr "" msgid "Advanced settings" -msgstr "Configuración avanzada" +msgstr "" msgid "Templates" -msgstr "Plantillas" +msgstr "" msgid "Hide in navigation" -msgstr "Oculto en navegación" +msgstr "" msgid "Display in navigation" -msgstr "Mostrar en navegación" +msgstr "" msgid "Delete page" -msgstr "Eliminar página" +msgstr "" msgid "Create a new page next to the current page." msgstr "" @@ -489,26 +504,18 @@ msgid "Create a page below the current page." msgstr "" msgid "Select a valid site" -msgstr "Elija un sitio válido" +msgstr "" msgid "Select a valid page" -msgstr "Elija una página válida" +msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -522,142 +529,194 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" msgid "ID" -msgstr "ID" +msgstr "" msgid "position" -msgstr "posición" +msgstr "" msgid "language" -msgstr "idioma" +msgstr "" msgid "plugin_name" -msgstr "plugin_nombre" +msgstr "" msgid "creation date" -msgstr "fecha de creación" +msgstr "" msgid "can edit" -msgstr "puede editar" +msgstr "" msgid "can add" -msgstr "puede añadir" +msgstr "" msgid "can delete" -msgstr "puede eliminar" +msgstr "" msgid "can change advanced settings" -msgstr "puede cambiar la configuración avanzada" +msgstr "" msgid "can publish" -msgstr "puede publicar" +msgstr "" msgid "can change permissions" -msgstr "puede cambiar permisos" +msgstr "" msgid "can move" -msgstr "puede mover" +msgstr "" msgid "view restricted" -msgstr "vista restringida" +msgstr "" msgid "can recover pages" -msgstr "puede recuperar páginas" +msgstr "" msgid "group" -msgstr "grupo" +msgstr "" msgid "sites" -msgstr "sitios" +msgstr "" msgid "created by" -msgstr "creado por" +msgstr "" msgid "changed by" -msgstr "cambiado por" +msgstr "" msgid "publication date" -msgstr "fecha de publicación" +msgstr "" msgid "publication end date" -msgstr "fecha final de la publicación" +msgstr "" msgid "in navigation" -msgstr "en navegación" +msgstr "" msgid "soft root" -msgstr "soft root" +msgstr "" msgid "id" -msgstr "id" +msgstr "" msgid "attached menu" -msgstr "menú anclado" +msgstr "" msgid "template" -msgstr "plantilla" +msgstr "" msgid "login required" -msgstr "se necesita autentificar" +msgstr "" msgid "application" -msgstr "aplicación" +msgstr "" msgid "application instance name" -msgstr "nombre de instancia de aplicación" +msgstr "" msgid "site" -msgstr "sitio" +msgstr "" msgid "Grant on" -msgstr "Autorizado" +msgstr "" msgid "page" -msgstr "página" +msgstr "" + +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Un identificador único que es usado con el 'templatetag' 'page_url' para enlazar a esta página" +msgstr "" msgid "pages" -msgstr "páginas" - -msgid "default" -msgstr "por defecto" +msgstr "" msgid "slug" -msgstr "slug" +msgstr "" msgid "Path" -msgstr "Path" +msgstr "" msgid "Current page" -msgstr "Página actual" +msgstr "" msgid "Page children (immediate)" -msgstr "Página hija (inmediata)" +msgstr "" msgid "Page and children (immediate)" -msgstr "Página y página hija (inmediata)" +msgstr "" msgid "Page descendants" -msgstr "Descendientes de la página" +msgstr "" msgid "Page and descendants" -msgstr "Página y descendientes" +msgstr "" msgid "on page level" -msgstr "en el nivel de la página" +msgstr "" msgid "frontend view restriction" -msgstr "restricción para el usuario final" +msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -682,320 +741,273 @@ msgid "" msgstr "" msgid "can recover any deleted page" -msgstr "puede recuperar cualquier página eliminada" +msgstr "" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Si no selecciona nada, el usuario tiene garantizado el permiso a todos los sitios." +msgstr "" msgid "Page global permission" -msgstr "Permiso global de la página" +msgstr "" msgid "Pages global permissions" -msgstr "Permisos globales de las páginas" +msgstr "" msgid "Page permission" -msgstr "Permiso de la página" +msgstr "" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Añadir permisos a la página requiere también acceder a sus hijos o descendientes, de otra forma la página añadida no puede ser modificada por su creador." +msgstr "" msgid "User (page)" -msgstr "Usuario (página) " +msgstr "" msgid "Users (page)" -msgstr "Usuarios (página)" +msgstr "" msgid "User group (page)" -msgstr "Grupo del usuario (página)" +msgstr "" msgid "User groups (page)" -msgstr "Grupos de usuarios (página)" +msgstr "" msgid "slot" -msgstr "slot" +msgstr "" msgid "width" -msgstr "ancho" +msgstr "" msgid "" -msgstr "" +msgstr "" msgid "The language for the admin interface and toolbar" -msgstr "El idioma para la interfaz de administración y barra de herramientas" +msgstr "" msgid "user setting" -msgstr "configuración de usuario" +msgstr "" msgid "user settings" -msgstr "Configuraciones de usuario" +msgstr "" msgid "by template" -msgstr "por plantilla" +msgstr "" msgid "by code" -msgstr "por cdigo" +msgstr "" msgid "static placeholder name" -msgstr "nombre del marcador de posición estático" +msgstr "" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nombre descriptivo para identificar este marcador de posición estático. No se muestra a los usuarios." +msgstr "" msgid "placeholder code" -msgstr "código del marcador de posición" +msgstr "" msgid "To render the static placeholder in templates." -msgstr "Para mostrar el marcador de posición estático en plantillas" +msgstr "" msgid "placeholder content" -msgstr "contenido del marcador de posición" +msgstr "" msgid "creation_method" -msgstr "creation_method" - -msgid "static placeholder" -msgstr "marcador de posición estático" - -msgid "static placeholders" -msgstr "marcadores de posición estáticos" - -msgid "A static placeholder with the same site and code already exists" -msgstr "Ya existe un marcador de posición con el mismo sitio y código " - -msgid "for logged in users only" -msgstr "solo para usuarios identificados" - -msgid "for anonymous users only" -msgstr "solo para usuarios anónimos" - -msgid "Inherit from parent page" -msgstr "Hereda de la página madre" - -msgid "Deny" -msgstr "Denegar" - -msgid "Only this website" -msgstr "Solo este sitio web" - -msgid "Allow" -msgstr "Permitir" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "sobreescribir el título (etiqueta HTML 'title')" - -msgid "overwrite the title in the menu" -msgstr "Sobreescribir el título en el menú" - -msgid "description" -msgstr "descripción" +msgstr "" -msgid "The text displayed in search engines." -msgstr "El texto mostrado en motores de buqueda" +msgid "static placeholder" +msgstr "" -msgid "redirect" -msgstr "redirige" +msgid "static placeholders" +msgstr "" -msgid "The template used to render the content." -msgstr "La plantilla usada para mostrar el contenido." +msgid "A static placeholder with the same site and code already exists" +msgstr "" msgid "Advanced options" -msgstr "Opciones avanzadas" +msgstr "" msgid "Generic" -msgstr "Generico" +msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" msgid "There are no further settings for this plugin. Please press save." -msgstr "No hay mas configuraciones para este plugin. Por favor, presiona guardar." +msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" -msgstr "Guardar" +msgstr "" + +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" #, python-format msgid "Log in to administration here." -msgstr "Entrar por aquía la parte de administración." +msgstr "" #, python-format msgid "Login url: %(login_url)s" -msgstr "Url de inicio de sesión: %(login_url)s" +msgstr "" msgid "Username:" -msgstr "Nombre de usuario:" +msgstr "" msgid "Password:" -msgstr "Contraseña:" +msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" msgid "Change a page" -msgstr "Cambiar la página" +msgstr "" msgid "Home" -msgstr "Inicio" +msgstr "" msgid "View on site" msgstr "" msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija el error de abajo." -msgstr[1] "Por favor, corrija los errores de abajo." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" msgid "All permissions" -msgstr "Todos los permisos" +msgstr "" msgid "Loading..." -msgstr "Cargando..." +msgstr "" msgid "Save and continue editing" -msgstr "Guardar y continuar editando" +msgstr "" msgid "User" -msgstr "Usuario" +msgstr "" msgid "Group" -msgstr "Grupo" +msgstr "" msgid "Can edit" -msgstr "Puede editar" +msgstr "" msgid "Can add" -msgstr "Puede añadir" +msgstr "" msgid "Can delete" -msgstr "Puede borrar" +msgstr "" msgid "Can publish" -msgstr "Puede publicar" +msgstr "" msgid "Can change permissions" -msgstr "Puede cambiar los permisos" +msgstr "" msgid "Can move" -msgstr "Puede mover" +msgstr "" msgid "Can view" -msgstr "Puede ver" +msgstr "" msgid "(global)" -msgstr "(global)" +msgstr "" msgid "(current)" -msgstr "(actual)" +msgstr "" msgid "Page doesn't inherit any permissions." -msgstr "La página no hereda ningún permiso." +msgstr "" msgid "Edit model" -msgstr "Editar modelo" +msgstr "" msgid "Save as new" -msgstr "Guardar como nuevo" +msgstr "" msgid "Save and add another" -msgstr "Guardar y añadir otro" +msgstr "" msgid "Copy" -msgstr "Copiar" +msgstr "" msgid "Cut" -msgstr "Cortar" +msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" -msgstr "restringido" +msgstr "" msgid "last change by" -msgstr "último cambio por" +msgstr "" + +msgid "last change on" +msgstr "" msgid "meta" msgstr "" msgid "List of pages" -msgstr "Listado de páginas" +msgstr "" msgid "Search" -msgstr "Buscar" +msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1009,25 +1021,17 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" msgid "Successfully moved" -msgstr "Se ha movido con éxito" +msgstr "" msgid "Changes within the tree might require a refresh." -msgstr "Cambios en el árbol pueden requerir una recarga." +msgstr "" msgid "Error:" msgstr "" @@ -1043,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1054,13 +1057,9 @@ msgid "View" msgstr "" msgid "Menu" -msgstr "Menu" +msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1070,41 +1069,26 @@ msgid "" msgstr "" msgid "Copy options" -msgstr "Opciones de copia" +msgstr "" msgid "Choose copy options" -msgstr "Elija las opciones de copia" - -msgid "Close" -msgstr "Cerrar" - -msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" +msgid "Close" msgstr "" -#| msgid "unpublished" -msgid "Unpublished" +msgid "Legend" msgstr "" -msgid "Empty" -msgstr "Vacío" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1113,20 +1097,26 @@ msgstr "" #, python-format msgid "Application: %(apphook)s" -msgstr "Aplicación: %(apphook)s" +msgstr "" msgid "in menu" -msgstr "en menú" +msgstr "" msgid "not in menu" -msgstr "no en el menú" +msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Permisos" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1135,13 +1125,13 @@ msgid "Add plugin" msgstr "" msgid "Copy all" -msgstr "Copiar todo" +msgstr "" msgid "Copy from" -msgstr "Copiar de" +msgstr "" msgid "Empty all" -msgstr "Vaciar todo" +msgstr "" msgid "Filter plugins..." msgstr "" @@ -1174,9 +1164,8 @@ msgid "Highlight" msgstr "" msgid "Available plugins" -msgstr "Plugins disponibles" +msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1190,40 +1179,35 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" msgid "Cancel" -msgstr "Cancelar" +msgstr "" msgid "The following error occured:" -msgstr "Ha ocurrido del siguiente error:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" msgid "Are you sure you want to delete this plugin?" -msgstr "¿Seguro que desea eliminar este plugin?" +msgstr "" msgid "Are you sure you want to publish this page?" -msgstr "¿Seguro que deseas publicar esta página?" +msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1232,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1242,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1261,35 +1246,30 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Fallo al iniciar sesión. Por favor, compruebe sus datos e intente otra vez." +msgstr "" msgid "Double-click to edit" -msgstr "Doble click para editar" +msgstr "" msgid "Tap to edit" msgstr "" @@ -1307,13 +1287,7 @@ msgid "Maximize" msgstr "" msgid "Drop a plugin here" -msgstr "Soltar una extención aqu" - -msgid "This page has no preview!" -msgstr "Esta página no tiene vista previa!" - -msgid "It is being redirected to:" -msgstr "Está siendo redirecionado a:" +msgstr "" msgid "Installation successful!" msgstr "" @@ -1355,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1372,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1394,7 +1350,7 @@ msgid "Welcome to django CMS" msgstr "" msgid "Add Another" -msgstr "Añadir otro" +msgstr "" msgid "Back" msgstr "" @@ -1405,105 +1361,99 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "sin contenido" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "Página no encontrada en %(domain)s" +msgstr "" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n`. La URL de la petición era: http://%(host)s%(path)s" +msgstr "" msgid "Two columns" -msgstr "Dos columnas" +msgstr "" msgid "Three columns" -msgstr "Tres columnas" +msgstr "" msgid "username" -msgstr "nombre de usuario" +msgstr "" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" msgstr "" msgid "Enter a valid username." -msgstr "Ingrese un nombre de usuario válido." +msgstr "" msgid "email address" -msgstr "enviar a" +msgstr "" msgid "staff status" -msgstr "Estado de staff" +msgstr "" msgid "Designates whether the user can log into this admin site." -msgstr "Determina si el usuario puede loguearse en el admin del sitio." +msgstr "" msgid "active" -msgstr "activo" +msgstr "" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Determina si el usuario debe ser considerado como activo. Deseleccione esta opción en lugar de eliminar cuentas. " +msgstr "" msgid "users" -msgstr "usuarios" +msgstr "" msgid "Title Extension" -msgstr "Extensión de título" +msgstr "" msgid "Page Extension" -msgstr "Extensión de página" +msgstr "" msgid "object ID" -msgstr "ID del objeto" +msgstr "" msgid "Example1 App" -msgstr "Aplicación Ejemplo1" +msgstr "" msgid "MultilingualExample1 App" -msgstr "Aplicación MultilingüeEjemplo1" +msgstr "" msgid "Example1" -msgstr "Ejemplo1" +msgstr "" msgid "Examples" -msgstr "Ejemplos" +msgstr "" msgid "Extra Context" -msgstr "Contenido Extra" +msgstr "" msgid "Articles" -msgstr "Artículos" +msgstr "" msgid "Sample App" -msgstr "Aplicación de Ejemplo" +msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" msgid "Sample App with excluded permissions" -msgstr "Misma aplicación con permisos excluidos" +msgstr "" msgid "Sample App 2" -msgstr "Aplicación de Ejemplo 2" +msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" msgid "Namespaced App" -msgstr "Applicación de Espacio de Nombre" +msgstr "" msgid "Parent app" msgstr "" @@ -1515,44 +1465,43 @@ msgid "Variable urls-menus App" msgstr "" msgid "sample root page" -msgstr "página raiz de ejemplo" +msgstr "" msgid "sample settings page" -msgstr "página de configuraciones de ejemplo" +msgstr "" msgid "sample account page" -msgstr "página de cuenta de ejemplo" +msgstr "" msgid "sample my profile page" -msgstr "página de ejemplo de mi perfil" +msgstr "" msgid "Static Menu" -msgstr "Menú Estático" +msgstr "" msgid "Static Menu2" -msgstr "Menú Estático 2" +msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" msgid "Category" -msgstr "Categoría" +msgstr "" msgid "Categories" -msgstr "Categorias" +msgstr "" msgid "Add Category" -msgstr "Agregar Categoría" +msgstr "" msgid "^account/$" -msgstr "^cuenta/$" +msgstr "" msgid "Change Category" -msgstr "Cambiar Categoría" +msgstr "" msgid "Thanks for spending some quality time with the Web site today." msgstr "" @@ -1564,30 +1513,28 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" msgid "CMS - your user account was created." -msgstr "CMS - su cuenta de usuario ha sido creada." +msgstr "" msgid "CMS - your user account was changed." -msgstr "CMS - su cuenta de usuario ha cambiado." +msgstr "" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "Este placeholder tiene ya el máximo número de plugins (%s)." +msgstr "" #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Este placeholder tiene ya el máximo número (%(limit)s) de plugins %(plugin_name)s permitido." +msgstr "" #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1606,394 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/es_AR/LC_MESSAGES/djangojs.mo b/cms/locale/es_AR/LC_MESSAGES/djangojs.mo index 8b7a7c53f7027051e15e133faa817e0fdac5fba3..bd3b8b78ccb68ba26d73abfa2f75254cfa054e04 100644 GIT binary patch delta 152 zcmeywGL3bD4(|p=28O8&3=IB2>^9MIIj@1Pp`os^fr5dVm5JrVx8kaA8uSIeN+Yxpq1VMh1q4lXVz%m=g;MCPy=FvNX0&03;=KOCszOf delta 116 zcmbQn`iW(N4sQ=51H)7X1_pm1R+?zJoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS z#G=HMd\n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/divio/django-cms/language/es_AR/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Edwin Caldon , 2011\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/divio/django-cms/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "¿Estás seguro de que desea cambiar de pestañas sin guardar antes la página?" diff --git a/cms/locale/es_BO/LC_MESSAGES/django.mo b/cms/locale/es_BO/LC_MESSAGES/django.mo index 23f857aace05bf6fac55291c3e127593c9dd534f..c210ac1315dd37526b9a72baf478fcff7e68934e 100644 GIT binary patch delta 202 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, 2011 -# danirus , 2011 -# mariocesar , 2011 -# mariocesar , 2011 -# Pedro Gracia , 2011 -# rafadev , 2011 -# rafadev , 2011 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Spanish (Bolivia) (http://www.transifex.com/divio/django-cms/language/es_BO/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Spanish (Bolivia) (https://app.transifex.com/divio/teams/58664/es_BO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_BO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" -msgstr "Todo" +msgstr "" msgid "Copy permissions" -msgstr "Permisos de copia" +msgstr "" msgid "Title" -msgstr "Título" +msgstr "" msgid "The default title" -msgstr "Título por defecto" +msgstr "" msgid "Slug" -msgstr "Nombre único (slug)" +msgstr "" msgid "The part of the title that is used in the URL" -msgstr "Parte del título que es usado en la URL" +msgstr "" msgid "Menu Title" -msgstr "Título del Menú" +msgstr "" msgid "Overwrite what is displayed in the menu" -msgstr "Reemplazar lo que es mostrado en el menú" +msgstr "" msgid "Page Title" -msgstr "Título de la Página" +msgstr "" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Reemplaza lo que se muestra en el título de su explorador o en sus marcadores" +msgstr "" msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Lista de palabras clave que a veces será usada por los motores de búsqueda." - -msgid "Slug must not be empty." msgstr "" msgid "Page type" @@ -72,54 +61,50 @@ msgid "Page Types" msgstr "" msgid "Overwrite URL" -msgstr "Reemplazar la URL" +msgstr "" msgid "Keep this field empty if standard path should be used." -msgstr "Guardar el campo vacío si es usado el 'path' estándar." +msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Todos los ancestros no serán mostrados en la navegación" +msgstr "" msgid "Redirect" -msgstr "Redirección" +msgstr "" msgid "Redirects to this URL." -msgstr "Redirección a esta URL." +msgstr "" msgid "Start typing..." msgstr "" msgid "menu visibility" -msgstr "visibilidad del menú" +msgstr "" msgid "limit when this page is visible in the menu" -msgstr "límite cuando la página es visible en el menú" +msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" msgid "Application" -msgstr "Aplicación" +msgstr "" msgid "Hook application to this page." -msgstr "Integrar la aplicación a esta página." +msgstr "" msgid "Application configurations" msgstr "" msgid "A page with this reverse URL id exists already." -msgstr "Página con este 'id' de URL inversa si ya existe." +msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -139,19 +124,19 @@ msgid "No" msgstr "" msgid "user" -msgstr "usuario" +msgstr "" msgid "can_view" -msgstr "puede ver" +msgstr "" msgid "Add" -msgstr "Añadir" +msgstr "" msgid "Change" -msgstr "Cambiar" +msgstr "" msgid "Delete" -msgstr "Eliminar" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " @@ -188,12 +173,11 @@ msgid "Invalid plugin type '%s'" msgstr "" msgid "Language must be set to a supported language!" -msgstr "¡El idioma debe estar soportado para ser configurado!" +msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,13 +186,12 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "Configuración avanzada" +msgstr "" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -217,17 +200,16 @@ msgid "Cannot delete %(name)s" msgstr "" msgid "Are you sure?" -msgstr "¿Está seguro?" +msgstr "" #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "El objeto %(name)s con la clave primaria %(key)r no existe." +msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -249,7 +231,7 @@ msgid "New page" msgstr "" msgid "Database error" -msgstr "Error de Base de Datos" +msgstr "" msgid "Template not valid" msgstr "" @@ -260,22 +242,33 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "El título y los 'plugins' con el lenguaje %(language)s fueron eliminados." +msgstr "" + +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "No tiene permisos para cambiar esta página en el estado 'in_navigation'" +msgid "Create Content" +msgstr "" msgid "View restriction" -msgstr "Mostrar restricción" +msgstr "" msgid "View restrictions" -msgstr "Mostrar restricciones" +msgstr "" #, python-format msgid "Field %s not found" @@ -287,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -297,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -330,20 +319,61 @@ msgid "placeholder" msgstr "" msgid "Page permissions" -msgstr "Permisos de página" +msgstr "" msgid "User & Group permissions" -msgstr "Permisos de usuario y grupo" +msgstr "" msgid "Page permissions management" -msgstr "Administración de permisos de la página" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" #, python-format msgid "No registered apphook \"%r\" found" msgstr "" msgid "django CMS" -msgstr "django CMS" +msgstr "" msgid "Placeholder" msgstr "" @@ -366,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "Previo" - msgid "Structure" msgstr "" @@ -407,20 +434,17 @@ msgid "Logout %s" msgstr "" msgid "Logout" -msgstr "Salir" +msgstr "" msgid "Language" -msgstr "Idioma" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -429,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -437,9 +460,8 @@ msgid "Pages" msgstr "" msgid "Page" -msgstr "Página" +msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -471,7 +493,7 @@ msgid "Display in navigation" msgstr "" msgid "Delete page" -msgstr "solicitud para eliminar" +msgstr "" msgid "Create a new page next to the current page." msgstr "" @@ -480,26 +502,18 @@ msgid "Create a page below the current page." msgstr "" msgid "Select a valid site" -msgstr "Elija un sitio válido" +msgstr "" msgid "Select a valid page" -msgstr "Elija una página válida" +msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -513,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -521,94 +540,145 @@ msgid "ID" msgstr "" msgid "position" -msgstr "posición" +msgstr "" msgid "language" -msgstr "idioma" +msgstr "" msgid "plugin_name" msgstr "" msgid "creation date" -msgstr "fecha de creación" +msgstr "" msgid "can edit" -msgstr "puede editar" +msgstr "" msgid "can add" -msgstr "puede añadir" +msgstr "" msgid "can delete" -msgstr "puede eliminar" +msgstr "" msgid "can change advanced settings" -msgstr "puede cambiar la configuración avanzada" +msgstr "" msgid "can publish" -msgstr "puede publicar" +msgstr "" msgid "can change permissions" -msgstr "puede cambiar permisos" +msgstr "" msgid "can move" -msgstr "puede mover" +msgstr "" msgid "view restricted" -msgstr "vista restringida" +msgstr "" msgid "can recover pages" -msgstr "puede recuperar páginas" +msgstr "" msgid "group" -msgstr "grupo" +msgstr "" msgid "sites" -msgstr "sitios" +msgstr "" msgid "created by" -msgstr "creado por" +msgstr "" msgid "changed by" -msgstr "modificado por" +msgstr "" msgid "publication date" -msgstr "fecha de publicación" +msgstr "" msgid "publication end date" -msgstr "fecha final de la publicación" +msgstr "" msgid "in navigation" -msgstr "en navegación" +msgstr "" msgid "soft root" -msgstr "soft root" +msgstr "" msgid "id" -msgstr "id" +msgstr "" msgid "attached menu" -msgstr "menú anclado" +msgstr "" msgid "template" -msgstr "plantilla" +msgstr "" msgid "login required" -msgstr "se necesita autentificar" +msgstr "" msgid "application" -msgstr "aplicación" +msgstr "" msgid "application instance name" msgstr "" msgid "site" -msgstr "sitio" +msgstr "" msgid "Grant on" -msgstr "Autorizado" +msgstr "" msgid "page" -msgstr "página" +msgstr "" + +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" msgid "" "A unique identifier that is used with the page_url templatetag for linking " @@ -616,39 +686,35 @@ msgid "" msgstr "" msgid "pages" -msgstr "páginas" - -msgid "default" -msgstr "por defecto" +msgstr "" msgid "slug" -msgstr "slug" +msgstr "" msgid "Path" -msgstr "Path" +msgstr "" msgid "Current page" -msgstr "Página actual" +msgstr "" msgid "Page children (immediate)" -msgstr "Página hija (inmediata)" +msgstr "" msgid "Page and children (immediate)" -msgstr "Página y página hija (inmediata)" +msgstr "" msgid "Page descendants" -msgstr "Descendientes de la página" +msgstr "" msgid "Page and descendants" -msgstr "Página y descendientes" +msgstr "" msgid "on page level" -msgstr "en el nivel de la página" +msgstr "" msgid "frontend view restriction" -msgstr "restricción para el usuario final" +msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -673,45 +739,45 @@ msgid "" msgstr "" msgid "can recover any deleted page" -msgstr "puede recuperar cualquier página eliminada" +msgstr "" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Si no selecciona nada, el usuario tiene garantizado el permiso a todos los sitios." +msgstr "" msgid "Page global permission" -msgstr "Permiso global de la página" +msgstr "" msgid "Pages global permissions" -msgstr "Permisos globales de las páginas" +msgstr "" msgid "Page permission" -msgstr "Permiso de la página" +msgstr "" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Añadir permisos a la página requiere también acceder a sus hijos o descendientes, de otra forma la página añadida no puede ser modificada por su creador." +msgstr "" msgid "User (page)" -msgstr "Usuario (página) " +msgstr "" msgid "Users (page)" -msgstr "Usuarios (página)" +msgstr "" msgid "User group (page)" -msgstr "Grupo del usuario (página)" +msgstr "" msgid "User groups (page)" -msgstr "Grupos de usuarios (página)" +msgstr "" msgid "slot" -msgstr "slot" +msgstr "" msgid "width" -msgstr "ancho" +msgstr "" msgid "" -msgstr "" +msgstr "" msgid "The language for the admin interface and toolbar" msgstr "" @@ -757,53 +823,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "solo para usuarios identificados" - -msgid "for anonymous users only" -msgstr "solo para usuarios anónimos" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "sobreescribir el título (etiqueta HTML 'title')" - -msgid "overwrite the title in the menu" -msgstr "Sobreescribir el título en el menú" - -msgid "description" -msgstr "descripción" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "redirección" - -msgid "The template used to render the content." -msgstr "La plantilla usada para mostrar el contenido." - msgid "Advanced options" -msgstr "Opciones avanzadas" +msgstr "" msgid "Generic" -msgstr "Genérico" +msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -813,180 +839,173 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" -msgstr "Guardar" +msgstr "" + +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" #, python-format msgid "Log in to administration here." -msgstr "Entrar por aquía la parte de administración." +msgstr "" #, python-format msgid "Login url: %(login_url)s" msgstr "" msgid "Username:" -msgstr "Nombre de usuario:" +msgstr "" msgid "Password:" -msgstr "Contraseña:" +msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" msgid "Change a page" -msgstr "Cambiar la página" +msgstr "" msgid "Home" -msgstr "Inicio" +msgstr "" msgid "View on site" -msgstr "Ver en el sitio" +msgstr "" msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija el error de abajo." -msgstr[1] "Por favor, corrija los errores de abajo." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" msgid "All permissions" -msgstr "Todos los permisos" +msgstr "" msgid "Loading..." -msgstr "Cargando..." +msgstr "" msgid "Save and continue editing" -msgstr "Guardar y continuar editando" +msgstr "" msgid "User" -msgstr "Usuario" +msgstr "" msgid "Group" -msgstr "Grupo" +msgstr "" msgid "Can edit" -msgstr "Puede editar" +msgstr "" msgid "Can add" -msgstr "Puede añadir" +msgstr "" msgid "Can delete" -msgstr "Puede borrar" +msgstr "" msgid "Can publish" -msgstr "Puede publicar" +msgstr "" msgid "Can change permissions" -msgstr "Puede cambiar los permisos" +msgstr "" msgid "Can move" -msgstr "Puede mover" +msgstr "" msgid "Can view" -msgstr "Puede ver" +msgstr "" msgid "(global)" -msgstr "(global)" +msgstr "" msgid "(current)" -msgstr "(actual)" +msgstr "" msgid "Page doesn't inherit any permissions." -msgstr "La página no hereda ningún permiso." +msgstr "" msgid "Edit model" msgstr "" msgid "Save as new" -msgstr "Guardar como nuevo" +msgstr "" msgid "Save and add another" -msgstr "Guardar y añadir otro" +msgstr "" msgid "Copy" -msgstr "Copiar" +msgstr "" msgid "Cut" -msgstr "Cortar" +msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" msgid "List of pages" -msgstr "Listado de páginas" +msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1000,22 +1019,14 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" msgid "Successfully moved" -msgstr "Se ha movido con éxito" +msgstr "" msgid "Changes within the tree might require a refresh." msgstr "" @@ -1034,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1048,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1061,10 +1067,10 @@ msgid "" msgstr "" msgid "Copy options" -msgstr "Opciones de copia" +msgstr "" msgid "Choose copy options" -msgstr "Elija las opciones de copia" +msgstr "" msgid "Close" msgstr "" @@ -1072,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1112,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1165,14 +1162,13 @@ msgid "Highlight" msgstr "" msgid "Available plugins" -msgstr "'Plugins' disponibles" +msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" msgid "Login" -msgstr "Iniciar Sesión" +msgstr "" msgid "Add plugin to" msgstr "" @@ -1181,24 +1177,22 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" msgid "Cancel" -msgstr "Cancelar" +msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" msgid "Are you sure you want to delete this plugin?" -msgstr "¿Seguro que desea eliminar este 'plugin'?" +msgstr "" msgid "Are you sure you want to publish this page?" msgstr "" @@ -1206,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1223,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1233,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1252,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1300,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1346,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1363,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1385,7 +1348,7 @@ msgid "Welcome to django CMS" msgstr "" msgid "Add Another" -msgstr "Añadir otro" +msgstr "" msgid "Back" msgstr "" @@ -1396,22 +1359,18 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "Página no encontrada en %(domain)s" +msgstr "" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n`. La URL de la petición era: http://%(host)s%(path)s" +msgstr "" msgid "Two columns" msgstr "" @@ -1430,7 +1389,7 @@ msgid "Enter a valid username." msgstr "" msgid "email address" -msgstr "enviar a" +msgstr "" msgid "staff status" msgstr "" @@ -1479,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1489,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1526,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,26 +1505,24 @@ msgid "Thanks for spending some quality time with the Web site today." msgstr "" msgid "Inherit the template of the nearest ancestor" -msgstr "Heredar la plantilla ('template') de su ancestro más cercano" +msgstr "" msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" msgid "CMS - your user account was created." -msgstr "CMS - su cuenta de usuario ha sido creada." +msgstr "" msgid "CMS - your user account was changed." -msgstr "CMS - su cuenta de usuario ha cambiado." +msgstr "" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." @@ -1597,394 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/es_BO/LC_MESSAGES/djangojs.mo b/cms/locale/es_BO/LC_MESSAGES/djangojs.mo index 68598288335c0368b8778cd02cadc6cb64fd2a0b..bd1734d8c18df9c0497896ffd22ab1ea6b4973f2 100644 GIT binary patch delta 158 zcmeysGK+PB4(}F528O8&3=IB2>^0GHIj@1Pp`os^fr5dVm5JrVx8mBliA9=g_YtQ7JT6m5YFH8mhhRl(2z3_uDDfC>zO3XCSpG6e$w#h59# delta 116 zcmbQm`hjJF4sRDD1H)7X1_pm1R+wnHoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS z#G=HMd diff --git a/cms/locale/es_BO/LC_MESSAGES/djangojs.po b/cms/locale/es_BO/LC_MESSAGES/djangojs.po index 2bf215f06de..8a8e4c5f646 100644 --- a/cms/locale/es_BO/LC_MESSAGES/djangojs.po +++ b/cms/locale/es_BO/LC_MESSAGES/djangojs.po @@ -11,15 +11,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Spanish (Bolivia) (http://www.transifex.com/divio/django-cms/language/es_BO/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: mariocesar , 2011\n" +"Language-Team: Spanish (Bolivia) (http://app.transifex.com/divio/django-cms/language/es_BO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_BO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "¿Estás seguro de que desea cambiar de pestañas sin guardar antes la página?" diff --git a/cms/locale/es_DO/LC_MESSAGES/django.mo b/cms/locale/es_DO/LC_MESSAGES/django.mo index 948f48c762b4f255fa7ea2fe82ded012c7b8dedb..9381c4a77d54b12b80627182b4598a4a98fe731f 100644 GIT binary patch delta 202 zcmbQhww2l9o)F7a1|VPrVi_P-0b*t#)&XJ=umIv}prj>`2C0F8$+C>nEV{|L#glCq zb%l&{4M9l3(7?*rNZSAiCNE<&QZKgB*H0`c&?_lQ%qz}JORdmL&d=3P$t=sv*Dpy; z%q`Y8wJ@qvl$c|ir(kQVV5nfPV4z^7kf)$%3uLIN0a>a*^T7b5 PzyPSg5U9Y&nu`Gd#7ZaZ literal 784 zcmYL{J#Q2-5QYr|h!zS+fhZ6fB#JvBXYWHuVUI%`$wi8kQ=();i=18Gox`rZT6-@! zegG9MKY@}y&`_j9bTm{nbo>fl@1fjCk6wR_XFMMNUR(LdU^l@75QAIb1MqeZ?tm{~ z6?_LP;3v2XegO{tg6rV^6~^9!hhPo!Pgfbc0X>J_hJJ(IgZ_X%hW>&2+^g3Z!;#v2 zd`vIR$Mxp@d@LMcY>>``PGm}^aLQ=Qc7>i)Vj|gLR!vwum6Xb{s4_=RxlGn8g(w}F zF*)qks~8DK%2H(!O6hv%=wO${^_l(BoXEuSos_?prA3~I(i0>yv^hEq4rF0U$47Re zQvRx%SRR{*g8e;yAZN!LUwOOZ!(SO~4`lp0$mS6U@P6Yf$SXDVq@W9nQHh2iPx z>ALgL)mWbSFkz}@%7lvoc#_*N`yV!x_RZE_*bGKHqv5jD_IfMWG}=jxd(I0K;^dhN zi%clpqhu;dD_#F6-sT%iKc8_dOFqNv~jH5Wd#w{xq|(yDn-V(O_|$>bWu-j zztf||u;0-1s88)?FJOB`g13~G2I%=akqXOpQe|?%V%*2j#aFz6VZ)5v#b;M#hR_$^ de)P`ZW03E={|`%t%8JyG)RYOT`@J~G{sC, 2013 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/divio/django-cms/language/es_DO/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Spanish (Dominican Republic) (https://app.transifex.com/divio/teams/58664/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_DO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "" @@ -26,16 +24,16 @@ msgid "Copy permissions" msgstr "" msgid "Title" -msgstr "Título" +msgstr "" msgid "The default title" -msgstr "El título por defecto" +msgstr "" msgid "Slug" -msgstr "Texto único" +msgstr "" msgid "The part of the title that is used in the URL" -msgstr "La parte del título usado en la URL" +msgstr "" msgid "Menu Title" msgstr "" @@ -56,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -404,17 +437,14 @@ msgid "Logout" msgstr "" msgid "Language" -msgstr "Idioma" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,53 +823,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" -msgstr "Opciones Avanzadas" +msgstr "" msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -897,6 +917,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "" msgstr[1] "" +msgstr[2] "" msgid "All permissions" msgstr "" @@ -961,16 +982,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1006,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1188,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1511,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,394 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/es_DO/LC_MESSAGES/djangojs.mo b/cms/locale/es_DO/LC_MESSAGES/djangojs.mo index 1e871cf4be5fbca15f65f6ff21f0287972d48035..34cc3866a623b7ef34617d20860d80446413ed8f 100644 GIT binary patch delta 130 zcmX@l{Dygg3gf1Us`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O zr50pl<|OK6mP|Zv#++DCFqwmKlZ~;pLP1VxQDTm5o`S8df}w)Ff`NjSLY{)6Es&w6 Y24tx!7#e^9NPz)Rfgw&@)6DNwR2PBr}loQ|7{XAvQ{X_DJ@FOvDL^^P_$Jr)U@Ve004$cAsPSx diff --git a/cms/locale/es_DO/LC_MESSAGES/djangojs.po b/cms/locale/es_DO/LC_MESSAGES/djangojs.po index bf7a0605f40..ec1aff50ebe 100644 --- a/cms/locale/es_DO/LC_MESSAGES/djangojs.po +++ b/cms/locale/es_DO/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/divio/django-cms/language/es_DO/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Spanish (Dominican Republic) (http://app.transifex.com/divio/django-cms/language/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_DO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/et/LC_MESSAGES/django.mo b/cms/locale/et/LC_MESSAGES/django.mo index ac459f792e89fb867e12601b07b4673da1eb7d49..0086404b40eacf7e771d8c69ecc5f9d28fdac12c 100644 GIT binary patch delta 5902 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 D6;_X@ diff --git a/cms/locale/et/LC_MESSAGES/django.po b/cms/locale/et/LC_MESSAGES/django.po index b88ba02f1b5..d06830888ba 100644 --- a/cms/locale/et/LC_MESSAGES/django.po +++ b/cms/locale/et/LC_MESSAGES/django.po @@ -3,19 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Martin Pajuste , 2012,2015-2016 -# Martin Pajuste , 2012 -# Martin Pajuste , 2016-2017 -# Rivo Zängov , 2018-2020 +# Fabian Braun , 2022 +# Martin , 2023 +# Rivo Zängov , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Estonian (http://www.transifex.com/divio/django-cms/language/et/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Rivo Zängov , 2023\n" +"Language-Team: Estonian (https://app.transifex.com/divio/teams/58664/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,10 +56,9 @@ msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Komade eraldatud nimekiri märksõnadest mida mõnikord kasutavad otsingumootorid." - -msgid "Slug must not be empty." -msgstr "Aadressi komponent ei tohi olla tühi." +msgstr "" +"Komade eraldatud nimekiri märksõnadest mida mõnikord kasutavad " +"otsingumootorid." msgid "Page type" msgstr "Lehekülje tüüp" @@ -74,7 +72,6 @@ msgstr "Kirjuta üle internetiaadress" msgid "Keep this field empty if standard path should be used." msgstr "Hoia see väli tühjana, et kasutada standardset rada." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +93,9 @@ msgstr "menüü nähtavus" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +111,6 @@ msgstr "Rakenduse seaded" msgid "A page with this reverse URL id exists already." msgstr "Sellise pööratud identifikaatoriga lehekülg on juba olemas." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -190,7 +184,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +198,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -224,7 +216,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +248,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,7 +255,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Pealkiri ja pluginad %(language)s keeles kustutatud" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Tühi" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -284,7 +286,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +295,15 @@ msgstr "Pluginat ei leitud" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +333,47 @@ msgstr "" msgid "Page permissions management" msgstr "Lehekülje õiguste haldamine" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Eelvaade" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +402,6 @@ msgstr "Loo" msgid "Edit" msgstr "Muuda" -msgid "Preview" -msgstr "Eelvaade" - msgid "Structure" msgstr "Struktuur" @@ -409,15 +445,12 @@ msgstr "Logi välja" msgid "Language" msgstr "Keel" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Lisa tõlge" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Kustuta tõlge" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopeeri kõik pluginad" @@ -426,7 +459,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +468,6 @@ msgstr "Leheküljed" msgid "Page" msgstr "Lehekülg" -#| msgid "Create" msgid "Create Page" msgstr "Loo leht" @@ -483,20 +514,12 @@ msgid "Select a valid page" msgstr "Vali korrektne lehekülg" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +533,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +635,57 @@ msgstr "" msgid "page" msgstr "lehekülg" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "ainult sisselogitud kasutajatele" + +msgid "for anonymous users only" +msgstr "ainult anonüümsetele kasutajatele" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "Keela" + +msgid "Only this website" +msgstr "Ainult see veebisait" + +msgid "Allow" +msgstr "Luba" + +msgid "title" +msgstr "pealkiri" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "kirjuta pealkiri menüüs üle" + +msgid "description" +msgstr "kirjeldus" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "ümbersuunamine" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "vaikeväärtus" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +694,6 @@ msgstr "" msgid "pages" msgstr "leheküge" -msgid "default" -msgstr "vaikeväärtus" - msgid "slug" msgstr "" @@ -645,7 +721,6 @@ msgstr "lehekülje tasemel" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -687,7 +762,9 @@ msgstr "Lehekülje õigused" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Õigus lehekülge lisada nõuab ka ligipääsu alamlehekülgede, vastasel juhul ei saa lehekülje looja lisatud lehekülge muuta." +msgstr "" +"Õigus lehekülge lisada nõuab ka ligipääsu alamlehekülgede, vastasel juhul ei" +" saa lehekülje looja lisatud lehekülge muuta." msgid "User (page)" msgstr "Kasutaja (lehekülg)" @@ -754,45 +831,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "ainult sisselogitud kasutajatele" - -msgid "for anonymous users only" -msgstr "ainult anonüümsetele kasutajatele" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "Keela" - -msgid "Only this website" -msgstr "Ainult see veebisait" - -msgid "Allow" -msgstr "Luba" - -msgid "title" -msgstr "pealkiri" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "kirjuta pealkiri menüüs üle" - -msgid "description" -msgstr "kirjeldus" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "ümbersuunamine" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "Täpsemad valikud" @@ -800,7 +838,6 @@ msgid "Generic" msgstr "Üldine" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +847,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Muudetud" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Salvesta" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -883,9 +909,8 @@ msgstr "Kasutajanimi:" msgid "Password:" msgstr "Parool:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Lisa leht" +msgstr "" msgid "Change a page" msgstr "Muuda lehte" @@ -964,16 +989,21 @@ msgstr "Lõika" msgid "Paste" msgstr "Aseta" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Õigused" + msgid "is restricted" msgstr "on piiratud" msgid "last change by" msgstr "viimati muutis" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -983,7 +1013,6 @@ msgstr "Lehekülgede loend" msgid "Search" msgstr "Otsi" -#| msgid "Page Title" msgid "Page Tree" msgstr "Lehekülgede puu" @@ -997,17 +1026,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "Peamenüü" -#| msgid "Actions" msgid "Options" msgstr "Valikud" @@ -1031,7 +1052,6 @@ msgstr "Kas oled kindel, et soovid § selle lehekülje?" msgid "Reload" msgstr "Laadi uuesti" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1065,6 @@ msgid "Menu" msgstr "Menüü" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1085,15 @@ msgstr "Sulge" msgid "Legend" msgstr "Legend" -#| msgid "published" -msgid "Published" -msgstr "Avaldatud" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Peidetud" - -msgid "Empty" -msgstr "Tühi" - -#| msgid "in menu" msgid "In menu" msgstr "Menüüs" -#| msgid "not in menu" msgid "Not in menu" msgstr "Pole menüüs" -#| msgid "New page" msgid "View page" msgstr "Vaata lehte" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,12 +1110,18 @@ msgstr "menüüs" msgid "not in menu" msgstr "pole menüüs" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Õigused" +msgid "This page has no preview!" +msgstr "Sellel leheküljel pole eelvaadet!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "Lõikelaud" @@ -1164,7 +1171,6 @@ msgstr "Tõsta esile" msgid "Available plugins" msgstr "aadaolevad pluginad" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1184,6 @@ msgid "More" msgstr "Veel" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1190,7 +1195,6 @@ msgstr "Loobu" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1207,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "Plugin lisatakse siia" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Sul on salvestamata muudatusi." -#| msgid "Loading..." msgid "Loading" msgstr "Laadimine" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1221,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "Enim kasutatud" @@ -1230,10 +1230,12 @@ msgstr "Otseteed" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Sulge/Loobu" @@ -1249,26 +1251,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "Fookus tööriistaribal" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Muuda pluginat" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Ava/Sulge" @@ -1297,12 +1294,6 @@ msgstr "Makimeeri" msgid "Drop a plugin here" msgstr "Lohista plugin siia" -msgid "This page has no preview!" -msgstr "Sellel leheküljel pole eelvaadet!" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "Paigaldatud!" @@ -1343,15 +1334,6 @@ msgstr "Kasutajatugi" msgid "Documentation" msgstr "Dokumentatsioon" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1342,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1366,7 @@ msgstr "" msgid "Next" msgstr "Edasi" -msgid "no content" -msgstr "sisu pole" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1476,7 +1445,6 @@ msgstr "Artiklid" msgid "Sample App" msgstr "Näidis rakendus" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,9 +1454,8 @@ msgstr "" msgid "Sample App 2" msgstr "Näidis rakendus 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Näidis rakendus 3" +msgstr "Näidis rakendus 2" msgid "Namespaced App" msgstr "" @@ -1523,9 +1490,8 @@ msgstr "Staatiline menüü 2" msgid "Static Menu3" msgstr "Staatiline menüü 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Staatiline menüü 4" +msgstr "Staatiline menüü" msgid "Category" msgstr "Kategooria" @@ -1552,12 +1518,10 @@ msgid "UserSettings" msgstr "Kasutaja seaded" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,394 +1558,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/et/LC_MESSAGES/djangojs.mo b/cms/locale/et/LC_MESSAGES/djangojs.mo index 3adbb3377f849321d00396ad74373aa2db0e0a7d..5509a97acf02b7f9f61cb63da8af286335922bd0 100644 GIT binary patch delta 92 zcmcb{a)o7r4sRtR1H)7X1_l=(=AUS}oYz3t&`{UdK*7Mw%EWTwTX8kt#G;bSJO!Iv rFkO(CRa#t<>X4qBn3ZpkQ+VBO4, 2012 -# Martin Pajuste , 2016 +# Martin , 2012 +# Martin , 2016 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Estonian (http://www.transifex.com/divio/django-cms/language/et/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Martin , 2016\n" +"Language-Team: Estonian (http://app.transifex.com/divio/django-cms/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Kas olete kindel, et soovite sakki vahetada ilma lehte salvestamata?" diff --git a/cms/locale/eu/LC_MESSAGES/django.mo b/cms/locale/eu/LC_MESSAGES/django.mo index 802b2a0d9b1756107c4589a7617d3719bafb4c39..e6c9bcec89899797fc06e1cad3503a869e869955 100644 GIT binary patch delta 4710 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, 2012-2014 -# iune , 2013 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Basque (http://www.transifex.com/divio/django-cms/language/eu/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Basque (https://app.transifex.com/divio/teams/58664/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,10 +54,8 @@ msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Bilaketa motoreak batzutan erabiltzen dituzten gako-hitzak, komaz bereiztuta" - -msgid "Slug must not be empty." msgstr "" +"Bilaketa motoreak batzutan erabiltzen dituzten gako-hitzak, komaz bereiztuta" msgid "Page type" msgstr "" @@ -72,7 +69,6 @@ msgstr "URLa gainidatzi" msgid "Keep this field empty if standard path should be used." msgstr "Mantendu eremu hau hutsik bide arruntak erabiltzeko." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +90,9 @@ msgstr "menu ikusgarritasuna" msgid "limit when this page is visible in the menu" msgstr "orri hau menuan noiz ikusi ahalko den mugatzen du" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "ID berdina duen alderantzizko URL bat badago dagoeneko." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +181,6 @@ msgstr "Hizkuntza hori ez dago onartuta!" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,9 +211,9 @@ msgstr "Ez da existitzen %(key)r gakodun %(name)s objecturik." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Errorea! Ez duzu orri hau mugitzeko baimenik. Mesedez birkargatu orria" +msgstr "" +"Errorea! Ez duzu orri hau mugitzeko baimenik. Mesedez birkargatu orria" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +246,6 @@ msgstr "Txantiloia ondo aldatu da" msgid "You do not have permission to copy these plugins." msgstr "Ez duzu plugin hauek kopiatzeko baimenik." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,8 +253,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "%(language)s hizkuntzako izenburu eta pluginak ezabatu dira" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Ez duzu orri honen nabigazio egoera aldatzeko baimenik" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Hutsik" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Murriztapena ikusi" @@ -282,7 +284,6 @@ msgstr "Ez duzu elementu hau editatzeko baimenik" msgid "You do not have permission to add a plugin" msgstr "Ez duzu pluginak gehitzeko baimenik" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +293,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "Ez duzu plugin hau editatzeko baimenik" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Ez duzu plugin hau mugitzeko baimenik" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +331,47 @@ msgstr "Erabiltzaile eta talde baimenak" msgid "Page permissions management" msgstr "Orriaren baimenen kudeaketa" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Aurrebista" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +400,6 @@ msgstr "" msgid "Edit" msgstr "Editatu" -msgid "Preview" -msgstr "Aurrebista" - msgid "Structure" msgstr "Egitura" @@ -407,15 +443,12 @@ msgstr "Irten" msgid "Language" msgstr "Hizkuntza" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +457,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +466,6 @@ msgstr "Orriak" msgid "Page" msgstr "Orria" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +512,12 @@ msgid "Select a valid page" msgstr "Hautatu baliozko orria" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +531,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +633,57 @@ msgstr "Baimendu" msgid "page" msgstr "orria" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "saioa hasi duten erabiltzaileentzat bakarrik" + +msgid "for anonymous users only" +msgstr "erabiltzaile anonimoentzat bakarrik" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "izenburua" + +msgid "overwrite the title (html title tag)" +msgstr "izenburua gainidatzi (html title etiketa)" + +msgid "overwrite the title in the menu" +msgstr "menuan izenburua gainidatzi" + +msgid "description" +msgstr "deskribapena" + +msgid "The text displayed in search engines." +msgstr "Bilaketa motorretan bistaratzen den testua." + +msgid "redirect" +msgstr "berbideratu" + +msgid "The template used to render the content." +msgstr "edukia ikusteko erabiliko den txantiloia" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "lehenetsia" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +692,6 @@ msgstr "" msgid "pages" msgstr "orriak" -msgid "default" -msgstr "lehenetsia" - msgid "slug" msgstr "slug" @@ -643,7 +719,6 @@ msgstr "orri mailan" msgid "frontend view restriction" msgstr "frontend-aren ikuspegiaren murrizketa" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -671,7 +746,9 @@ msgid "can recover any deleted page" msgstr "ezabatutako edozein orri berrezkuratu dezake" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Aukeratzen ez bada, erabiltzaileak baimen guztiak bermatuak izango ditu orri guztietan sartzeko" +msgstr "" +"Aukeratzen ez bada, erabiltzaileak baimen guztiak bermatuak izango ditu orri" +" guztietan sartzeko" msgid "Page global permission" msgstr "Orrien baimen globala" @@ -685,7 +762,9 @@ msgstr "Orri baimena" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Orriaren baimena gehitzeko haurrentzako sarrera gehitzea beharrezkoa da, bestela sortzaileak ezingo du gehitutako orria aldatu." +msgstr "" +"Orriaren baimena gehitzeko haurrentzako sarrera gehitzea beharrezkoa da, " +"bestela sortzaileak ezingo du gehitutako orria aldatu." msgid "User (page)" msgstr "Erabiltzailea (orria)" @@ -752,45 +831,6 @@ msgstr "biltegi estatikoak" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "saioa hasi duten erabiltzaileentzat bakarrik" - -msgid "for anonymous users only" -msgstr "erabiltzaile anonimoentzat bakarrik" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "izenburua" - -msgid "overwrite the title (html title tag)" -msgstr "izenburua gainidatzi (html title etiketa)" - -msgid "overwrite the title in the menu" -msgstr "menuan izenburua gainidatzi" - -msgid "description" -msgstr "deskribapena" - -msgid "The text displayed in search engines." -msgstr "Bilaketa motorretan bistaratzen den testua." - -msgid "redirect" -msgstr "berbideratu" - -msgid "The template used to render the content." -msgstr "edukia ikusteko erabiliko den txantiloia" - msgid "Advanced options" msgstr "Aukera aurreratuak" @@ -798,7 +838,6 @@ msgid "Generic" msgstr "Generikoa" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +847,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Gorde" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Kudeaketa gunean saioa hasi hemen." @@ -881,7 +909,6 @@ msgstr "Erabiltzaile-izena:" msgid "Password:" msgstr "Pasahitza:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +989,21 @@ msgstr "Ebaki" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Baimenak" + msgid "is restricted" msgstr "mugatuta" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1013,6 @@ msgstr "Orri zerrenda" msgid "Search" msgstr "Bilatu" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1026,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1052,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1065,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1085,15 @@ msgstr "Ezabatu" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Hutsik" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,12 +1110,18 @@ msgstr "menuan" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Baimenak" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1162,7 +1171,6 @@ msgstr "" msgid "Available plugins" msgstr "Plugin eskuragarriak" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1184,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,9 +1193,8 @@ msgid "Cancel" msgstr "Utzi" msgid "The following error occured:" -msgstr "Ondoko errorea gertatu da:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1207,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1221,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1230,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1251,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1294,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "Pluginen bat hona jaurti" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1334,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1342,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1366,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "edukirik ez" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1406,7 +1377,9 @@ msgstr "Orria ez da %(domain)s-en topatu" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Template tag batek ezin du `%(page_lookup)s` parametroak dituen orririk aurkitu. \nEskaeraren URLa hau zen: http://%(host)s%(path)s" +msgstr "" +"Template tag batek ezin du `%(page_lookup)s` parametroak dituen orririk aurkitu. \n" +"Eskaeraren URLa hau zen: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1474,7 +1447,6 @@ msgstr "Artikuluak" msgid "Sample App" msgstr "Ereduzko aplikazioa" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,9 +1456,8 @@ msgstr "" msgid "Sample App 2" msgstr "Ereduzko aplikazioa 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Ereduzko aplikazioa 2" msgid "Namespaced App" msgstr "Izen-eremu propioa \"namespace\" duen aplikazioa" @@ -1521,9 +1492,8 @@ msgstr "Menu estatikoa2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Menu estatikoa" msgid "Category" msgstr "Kategoria" @@ -1550,12 +1520,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1573,7 +1541,9 @@ msgstr "Biltegi honek gehienezko plugin kopurua dauka iada (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Biltegi honek iada gehienezko %(plugin_name)s plugin kopurua dauka iada (%(limit)s)." +msgstr "" +"Biltegi honek iada gehienezko %(plugin_name)s plugin kopurua dauka iada " +"(%(limit)s)." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1592,394 +1562,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/eu/LC_MESSAGES/djangojs.mo b/cms/locale/eu/LC_MESSAGES/djangojs.mo index f3c549a63a1fb7fd75a4f966eca8a3346a7e1f12..2801c808de8d8a8aa3be188cf5de9775ee45cb9b 100644 GIT binary patch delta 102 zcmX@Wa*}0&4sR191H)7X1_lElmY8U{oYz3t&`{UdK*7Mw%EWTwTX93joYZ24sKlhi zoJ0l3oW!z31)JiG#Pm#u^vvQ!-PD}y#G;baM7{i?bUPgdBLhRD$vTYk%!vgBll>S! F0RWA+9qs@C delta 93 zcmX@fa)4!m4sRtR1H)7X1_lEl=AUS}oYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS o#G=HMdpF diff --git a/cms/locale/eu/LC_MESSAGES/djangojs.po b/cms/locale/eu/LC_MESSAGES/djangojs.po index 692b352d37b..6ef696e6b2a 100644 --- a/cms/locale/eu/LC_MESSAGES/djangojs.po +++ b/cms/locale/eu/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Basque (http://www.transifex.com/divio/django-cms/language/eu/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Ales Zabala Alava , 2012\n" +"Language-Team: Basque (http://app.transifex.com/divio/django-cms/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Ziur orria gorde gabe fitxaz aldatu nahi duzula?" diff --git a/cms/locale/fa/LC_MESSAGES/django.mo b/cms/locale/fa/LC_MESSAGES/django.mo index cb5e1c8654b6d96360c176ed001a46744708ecd4..4770f0aa41e714f8c4095f3b5b56a8f6d07f76e3 100644 GIT binary patch delta 10790 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 diff --git a/cms/locale/fa/LC_MESSAGES/django.po b/cms/locale/fa/LC_MESSAGES/django.po index 6d804b99fec..9177eb114e4 100644 --- a/cms/locale/fa/LC_MESSAGES/django.po +++ b/cms/locale/fa/LC_MESSAGES/django.po @@ -3,35 +3,25 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Ali Alamshahi , 2015 -# Ali Alamshahi , 2015 -# Alireza Savand , 2012 -# ali sadr , 2017 -# Aryan Baghi , 2014 -# Aryan Baghi , 2014 -# cafe-click , 2013 -# Fariman Ghaedi , 2018 -# farshad , 2014 -# hadiazaddel , 2014 -# hadiazaddel , 2014 -# Majid Vaghari , 2018 -# Matin M. , 2013 -# Mazdak Badakhshan , 2014 -# Meysam K , 2017 -# Mohamad Fazeli , 2015 -# Mohammad Rafiei , 2017 -# omid zarin , 2014 -# Pouya Abbassi, 2016 -# Sina Rezaei , 2019 +# Fabian Braun , 2023 +# Majid Vaghari , 2023 +# AbdolHosein Karimi , 2023 +# Meysam K , 2023 +# Sina Rezaei , 2023 +# Alireza Fathi , 2023 +# Mohammad Rafiei , 2023 +# ali sadr , 2023 +# Pouya Abbassi, 2023 +# Fariman Ghaedi , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Persian (http://www.transifex.com/divio/django-cms/language/fa/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fariman Ghaedi , 2023\n" +"Language-Team: Persian (https://app.transifex.com/divio/teams/58664/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -75,9 +65,6 @@ msgstr "متا تگ توضیحات" msgid "A description of the page used by search engines." msgstr "توضیحاتی در مورد محتوای صفحه که مورد استفاده موتورهای جستجو می باشد." -msgid "Slug must not be empty." -msgstr "نشانک ،آدرس کوتاه صفحه، نباید خالی باشد." - msgid "Page type" msgstr "نوع صفحه" @@ -90,9 +77,8 @@ msgstr "جاینوشت آدرس اینترنتی" msgid "Keep this field empty if standard path should be used." msgstr "اگر از آدرس استاندارد استفاده می-شود، این فیلد خالی گذارده شود." -#| msgid "softroot" msgid "Soft root" -msgstr "" +msgstr "ریشه ی نرم" msgid "All ancestors will not be displayed in the navigation" msgstr "تمامی اجداد در گردش نمایش داده نمی-شوند." @@ -112,13 +98,11 @@ msgstr "روئیت پذیری منو" msgid "limit when this page is visible in the menu" msgstr "محدودیت زمانی که این صفحه در منو ظاهر میشود" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "گزینه‌های نامک" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "گزینه‌های منو" msgid "Application" msgstr "برنامه کاربردی" @@ -132,7 +116,6 @@ msgstr "تنظیمات برنامه" msgid "A page with this reverse URL id exists already." msgstr "صفحه-ای با شناسه-ی این آدرس معکوس وجود دارد." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "مقدار تنظیمات برنامه نامعتبر است." @@ -169,32 +152,44 @@ msgstr "حذف" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "کاربران بدون دسترسی تغییر صفحه ساخته شده نمی‌توانند صفحه جدید ایجاد کنند. دسترسی ویرایش لازم است. " +msgstr "" +"کاربران بدون دسترسی تغییر صفحه ساخته شده نمی‌توانند صفحه جدید ایجاد کنند. " +"دسترسی ویرایش لازم است. " msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "کاربران بدون دسترسی تغییر صفحه نمی‌توانند صفحه‌ای را حذف کنند. دسترسی ویرایش لازم است. " +msgstr "" +"کاربران بدون دسترسی تغییر صفحه نمی‌توانند صفحه‌ای را حذف کنند. دسترسی " +"ویرایش لازم است. " msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "کاربران بدون دسترسی تغییر صفحه نمی‌توانند دسترسی‌های صفحه را تنظیم کنند. دسترسی ویرایش لازم است. " +msgstr "" +"کاربران بدون دسترسی تغییر صفحه نمی‌توانند دسترسی‌های صفحه را تنظیم کنند. " +"دسترسی ویرایش لازم است. " msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "کاربران بدون دسترسی تغییر صفحه نمی‌توانند دسترسی‌های صفحه را حذف کنند. دسترسی ویرایش لازم است. " +msgstr "" +"کاربران بدون دسترسی تغییر صفحه نمی‌توانند دسترسی‌های صفحه را حذف کنند. " +"دسترسی ویرایش لازم است. " msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "کاربران بدون دسترسی تغییر دسترسی ایجاد شده نمی‌توانند دسترسی‌های صفحه ایجاد کنند. دسترسی ویرایش لازم است. " +msgstr "" +"کاربران بدون دسترسی تغییر دسترسی ایجاد شده نمی‌توانند دسترسی‌های صفحه ایجاد" +" کنند. دسترسی ویرایش لازم است. " msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "کاربران بدون دسترسی تغییر دسترسی‌ها نمی توانند دسترسی‌های صفحه را حذف کنند. دسترسی ویرایش لازم است" +msgstr "" +"کاربران بدون دسترسی تغییر دسترسی‌ها نمی توانند دسترسی‌های صفحه را حذف کنند. " +"دسترسی ویرایش لازم است" #, python-format msgid "Invalid plugin type '%s'" @@ -206,13 +201,12 @@ msgstr "یکی از زبانهای پشتیبانی شده را انتخاب ک msgid "Parent plugin language must be same as language!" msgstr "زبان افزونه ی پدر باید یکسان باشد! " -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "جایگاه پلاگین منبع باید مانند جایگاه باشد!" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "موقعیت افزونه باید بزرگ‌تر از %(position)d باشد" msgid "Advanced Settings" msgstr "تنظیمات پیشرفته" @@ -221,9 +215,8 @@ msgid "The page is not eligible to be home." msgstr "این صفحه واجد شرایط برای اینکه صفحه خانه باشد نیست." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "%(name)s افزونه \"%(obj)s\" با موفقيت حذف شد." #, python-format msgid "Cannot delete %(name)s" @@ -240,14 +233,15 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "خطا! شما دسترسى لازم را براى انتقال اين صفحه نداريد." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "خطا! شما اختیارات کپی این صفحه را ندارید." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "خطا! صفحه ای که شما در حال چسباندن آن هستید به هیچ کدام از زبان هایی که سایت هدف پیکربندی کرده ترجمه نشده است." +msgstr "" +"خطا! صفحه ای که شما در حال چسباندن آن هستید به هیچ کدام از زبان هایی که سایت" +" هدف پیکربندی کرده ترجمه نشده است." msgid "You do not have permission to edit this page" msgstr "شما اجازه ویرایش این صفحه را ندارید." @@ -273,16 +267,27 @@ msgstr "قالب با موفقیت تغییر یافت" msgid "You do not have permission to copy these plugins." msgstr "شما دسترسى لازم را براى كپى بردارى اين افزونه ها نداريد." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "شما فاقد مجوز لازم برای حذف این صفحه می باشید." +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "عنوان و افزونه-ها به زبان %(language)s حذف شدند." -msgid "You do not have permission to change this page's in_navigation status" -msgstr "شما اجازه تغییر وضعیت in_navigation این صفحه را ندارید" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "خالی" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "مشاهد محدوديت" @@ -300,7 +305,6 @@ msgstr "شما اجازه ویرایش این صفحه را ندارید." msgid "You do not have permission to add a plugin" msgstr "شما فاقد دسترسى لازم براى اضافه كردن افزونه مى باشيد ." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "شما دسترسی لازم برای کپی کردن این نگهدارنه را ندارید." @@ -310,18 +314,15 @@ msgstr "پلاگین یافت نشد" msgid "You do not have permission to edit this plugin" msgstr "شما فاقد مجوز لازم برای ویرایش پلاگین می باشید" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "شما دسترسی لازم برای جایگذاری این افزونه را ندارید." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "شما دسترسی لازم برای جایگذاری این نگهدارنده را ندارید." msgid "You have no permission to move this plugin" msgstr "شما فاقد دسترسى لازم براى منتقل كردن اين افزونه مى باشيد ." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "شما دسترسی لازم برای برداشت این افزونه را ندارید." @@ -351,6 +352,47 @@ msgstr "اختیارات کاربر و گروه" msgid "Page permissions management" msgstr "مدیریت اختیارات صفحه" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "پیش‌نمایش" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "قلاب نرم افزار (apphook) «%r» ثبت نشده یا پیدا نشد" @@ -371,7 +413,9 @@ msgstr "ایجاد نام مستعار" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "این یک مرجع مستعار است،شما فقط میتوانید محتوا را در صفحه %(page_title)s تغییر دهید." +msgstr "" +"این یک مرجع مستعار است،شما فقط میتوانید محتوا را در صفحه %(page_title)s تغییر دهید." msgid "Create" msgstr "بساز" @@ -379,9 +423,6 @@ msgstr "بساز" msgid "Edit" msgstr "ویرایش" -msgid "Preview" -msgstr "پیش‌نمایش" - msgid "Structure" msgstr "ساختار" @@ -425,15 +466,12 @@ msgstr "خروج" msgid "Language" msgstr "زبان" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "اضافه کردن ترجمه" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "حذف ترجمه" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "همه‌ی پلاگینها را کپی کن" @@ -442,7 +480,6 @@ msgid "from %s" msgstr "از %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "آیا مطمئن هستید که می‌خواهید همه افزونه‌ها را از %s کپی کنید؟" @@ -452,7 +489,6 @@ msgstr "صفحات" msgid "Page" msgstr "صفحه" -#| msgid "Create" msgid "Create Page" msgstr "ساخت صفحه" @@ -499,26 +535,21 @@ msgid "Select a valid page" msgstr "یک صفحه معتبر انتخاب کنید" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "آدرس صفحه %(conflict_page)s با آدرس صفحه فعلی %(url)s یکسان است \"%(instance)s\"." +msgstr "" +"آدرس صفحه %(conflict_page)s با آدرس صفحه فعلی %(url)s یکسان است " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "آدرس صفحه %(conflict_page)s با آدرس صفحه فعلی %(url)s یکسان است." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "غیر ضروری، اگر پر شود، به صورت اتوماتیک در داخل پلاگین جدید اضافه میشود." +msgstr "" +"غیر ضروری، اگر پر شود، به صورت اتوماتیک در داخل پلاگین جدید اضافه میشود." msgid "Provide a title for the new page." msgstr "برای صفحه، یک عنوان ارائه دهید." @@ -526,7 +557,12 @@ msgstr "برای صفحه، یک عنوان ارائه دهید." msgid "Leave empty for automatic slug, or override as required." msgstr "برای تنظیم نشانک به صورت اتوماتیک، خالی بگذارید." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "شما دسترسی لازم برای اضافه کردن صفحه را ندارید." @@ -623,17 +659,67 @@ msgstr "دسترسی به" msgid "page" msgstr "صفحه" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "فقط برای کاریران وارد شده به سیستم" + +msgid "for anonymous users only" +msgstr "فقط برای کاربران ناشناس" + +msgid "Inherit from parent page" +msgstr "از صفحه منبع ارث ببر." + +msgid "Deny" +msgstr "رد کردن" + +msgid "Only this website" +msgstr "فقط این وب سایت" + +msgid "Allow" +msgstr "پذیرفتن" + +msgid "title" +msgstr "عنوان" + +msgid "overwrite the title (html title tag)" +msgstr "عنوان بازنویسی شود (تگ عنوان در html)" + +msgid "overwrite the title in the menu" +msgstr "عنوان در منو بازنویسی شود" + +msgid "description" +msgstr "توصیفات" + +msgid "The text displayed in search engines." +msgstr "متن در موتور هاى جست و جو نمايش داده شده است ." + +msgid "redirect" +msgstr "تغییر مسیر" + +msgid "The template used to render the content." +msgstr "قالبی که برای پویش محتوا استفاده می‌شود" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "پیشفرض" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "یک شناسه ی منحصر به فرد که با تگ قالب page_url استفاده می شود برای لینک دادن به این " +msgstr "" +"یک شناسه ی منحصر به فرد که با تگ قالب page_url استفاده می شود برای لینک " +"دادن به این " msgid "pages" msgstr "صفحات" -msgid "default" -msgstr "پیشفرض" - msgid "slug" msgstr "نشانک ،آدرس کوتاه صفحه، " @@ -661,35 +747,44 @@ msgstr "در سطح صفحه" msgid "frontend view restriction" msgstr "نمايش ابتدايى محدوديت" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "لطفا کاربر یا گروه را انتخاب کنید." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "کاربران نمیتوانند صفحه ای را ، بدون اجازه ی تغییر صفحات ، تغییر دهند.اجازه ی اصلاح ضروری است." +msgstr "" +"کاربران نمیتوانند صفحه ای را ، بدون اجازه ی تغییر صفحات ، تغییر دهند.اجازه ی" +" اصلاح ضروری است." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "کاربران نمیتوانند تنظیمات پیشرفته را بدون اجازه ی تغییر در صفحات تغییر دهند . اجازه ی اصلاح ضروری است." +msgstr "" +"کاربران نمیتوانند تنظیمات پیشرفته را بدون اجازه ی تغییر در صفحات تغییر دهند" +" . اجازه ی اصلاح ضروری است." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "کاربران نمیتوانند اجازه های صفحه را بدون اجازه ی تغییر در صفحات تغییر دهند . اجازه ی اصلاح ضروری است." +msgstr "" +"کاربران نمیتوانند اجازه های صفحه را بدون اجازه ی تغییر در صفحات تغییر دهند ." +" اجازه ی اصلاح ضروری است." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "کاربران نمیتوانند صفحه ای را بدون اجازه ی تغییر در صفحات جا به جا کنند . اجازه ی اصلاح ضروری است." +msgstr "" +"کاربران نمیتوانند صفحه ای را بدون اجازه ی تغییر در صفحات جا به جا کنند . " +"اجازه ی اصلاح ضروری است." msgid "can recover any deleted page" msgstr "می-تواند هر صفحه پاک-شده را بازیابی کند" msgid "If none selected, user haves granted permissions to all sites." -msgstr "اگر انتخابی صورت نگیرد، کاربر در تمام وبگاه-ها، اختیارات داده-شده را خواهد داشت." +msgstr "" +"اگر انتخابی صورت نگیرد، کاربر در تمام وبگاه-ها، اختیارات داده-شده را خواهد " +"داشت." msgid "Page global permission" msgstr "اختیار سراسری صفحه" @@ -703,7 +798,10 @@ msgstr "اختیار صفحه" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr " اجازه دسترسی به اضافه کردن صفحه اجازه دسترسی به صفحات زیرین، و یا صفحات فرزند، را نیز نیاز دارد؛ در غیر اینصورت خود ایجادکننده صفحه قابلیت تغییر آن را نخواهد داشت." +msgstr "" +" اجازه دسترسی به اضافه کردن صفحه اجازه دسترسی به صفحات زیرین، و یا صفحات " +"فرزند، را نیز نیاز دارد؛ در غیر اینصورت خود ایجادکننده صفحه قابلیت تغییر آن " +"را نخواهد داشت." msgid "User (page)" msgstr "کاربر (صفحه)" @@ -747,7 +845,9 @@ msgstr "نام نگهدارنده ی ثابت" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "نامی توصیف کننده برای شناخت این نگهدارنده ی ثابت است و به کاربرها نمایش داده نمی شود." +msgstr "" +"نامی توصیف کننده برای شناخت این نگهدارنده ی ثابت است و به کاربرها نمایش " +"داده نمی شود." msgid "placeholder code" msgstr "کد نگهدارنده " @@ -770,45 +870,6 @@ msgstr "نگهدارنده های ثابت" msgid "A static placeholder with the same site and code already exists" msgstr "یک نگهدارنده ی ثابت با سایت و کد یکسان از قبل موجود است." -msgid "for logged in users only" -msgstr "فقط برای کاریران وارد شده به سیستم" - -msgid "for anonymous users only" -msgstr "فقط برای کاربران ناشناس" - -msgid "Inherit from parent page" -msgstr "از صفحه منبع ارث ببر." - -msgid "Deny" -msgstr "رد کردن" - -msgid "Only this website" -msgstr "فقط این وب سایت" - -msgid "Allow" -msgstr "پذیرفتن" - -msgid "title" -msgstr "عنوان" - -msgid "overwrite the title (html title tag)" -msgstr "عنوان بازنویسی شود (تگ عنوان در html)" - -msgid "overwrite the title in the menu" -msgstr "عنوان در منو بازنویسی شود" - -msgid "description" -msgstr "توصیفات" - -msgid "The text displayed in search engines." -msgstr "متن در موتور هاى جست و جو نمايش داده شده است ." - -msgid "redirect" -msgstr "تغییر مسیر" - -msgid "The template used to render the content." -msgstr "قالبی که برای پویش محتوا استفاده می‌شود" - msgid "Advanced options" msgstr "گزینه های پیشرفته" @@ -816,7 +877,6 @@ msgid "Generic" msgstr "عمومی" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" با موفقیت تغییر کرد." @@ -824,67 +884,56 @@ msgid "There are no further settings for this plugin. Please press save." msgstr "تنظیمات بیشتری برای این پلاگین وجود ندارد . لطفا ذخیره کنید." msgid "Moved" -msgstr "" +msgstr "منتقل شد" -#| msgid "Change" msgid "Changed" msgstr "تغییر کرده" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "حذف شد" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "" +msgstr "ترجمه صفحه افزوده شد" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "" +msgstr "ترجمه صفحه تغییر کرد" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "" +msgstr "ترجمه صفحه پاک شد" -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "" +msgstr "افزونه اضافه گردید" -#| msgid "Change" msgid "Changed Plugin" -msgstr "" +msgstr "افزونه تغییر کرد" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "" +msgstr "افزونه منتقل شد" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "" +msgstr "افزونه حذف شد" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "الصاق افزونه
    " -#| msgid "static placeholder" msgid "Paste to Placeholder" -msgstr "" +msgstr "الصاق به جایگاه" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "" +msgstr "افزونه‌ها از کلیپ‌بورد به جایگاه اضافه شدند." -#| msgid "Placeholder" msgid "Cleared Placeholder" -msgstr "" +msgstr "جایگاه زدوده شد" msgid "Save" msgstr "ذخیره" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "در اینجا به مدیریت وارد شوید." @@ -899,9 +948,8 @@ msgstr "کاربر:" msgid "Password:" msgstr "رمز عبور:" -#| msgid "Add Page" msgid "Add a page" -msgstr "صفحه ای اضافه کن." +msgstr "" msgid "Change a page" msgstr "تغییر یک صفحه" @@ -980,16 +1028,21 @@ msgstr "برداشت" msgid "Paste" msgstr "جایگذاری" -#| msgid "Save as new" msgid "Set as home" msgstr "تنظیم به عنوان خانه" +msgid "Permissions" +msgstr "دسترسى ها" + msgid "is restricted" msgstr "محدود شده" msgid "last change by" msgstr "آخرین تغییر توسط" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "متا" @@ -999,7 +1052,6 @@ msgstr "فهرست صفحات" msgid "Search" msgstr "جستجو" -#| msgid "Page Title" msgid "Page Tree" msgstr "لیست درختی صفحه" @@ -1011,19 +1063,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n %(name)s حذف شده بازیابی شد\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" %(name)s حذف شده بازیابی شد\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "جهت‌یابی اصلی" -#| msgid "Actions" msgid "Options" msgstr "گزینه‌ها" @@ -1039,7 +1086,9 @@ msgstr "خطا:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "نمیتوان این صفحه را کپی کرد چون یک نرم‌افزار به آن پیوست شده است. تنظیمات پیشرفته‌ی صفحه را ببینید تا قلاب‌های نرم‌افزاری (apphook) را مدیریت کنید." +msgstr "" +"نمیتوان این صفحه را کپی کرد چون یک نرم‌افزار به آن پیوست شده است. تنظیمات " +"پیشرفته‌ی صفحه را ببینید تا قلاب‌های نرم‌افزاری (apphook) را مدیریت کنید." msgid "Are you sure you want to § this page?" msgstr "آیا اطمینان دارید که می‌خواهید این صفحه را § کنید؟" @@ -1047,7 +1096,6 @@ msgstr "آیا اطمینان دارید که می‌خواهید این صفح msgid "Reload" msgstr "بارگزاری مجدد" -#| msgid "New Page" msgid "New node" msgstr "گره جدید" @@ -1061,17 +1109,17 @@ msgid "Menu" msgstr "منو" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nهیچ %(object)s یافت نشد\n\nهمین الان %(object)s اضافه کنید." +msgstr "" +"\n" +"هیچ %(object)s یافت نشد\n" +"\n" +"همین الان %(object)s اضافه کنید." msgid "Copy options" msgstr "تنظیمات کپی" @@ -1085,30 +1133,15 @@ msgstr "بستن" msgid "Legend" msgstr "شرح" -#| msgid "published" -msgid "Published" -msgstr "منتشر شده" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "منتشر نشده" - -msgid "Empty" -msgstr "خالی" - -#| msgid "in menu" msgid "In menu" msgstr "داخل منو" -#| msgid "not in menu" msgid "Not in menu" msgstr "در منو نباشد" -#| msgid "New page" msgid "View page" msgstr "نمایش صفحه" -#| msgid "softroot" msgid "Softroot" msgstr "ریشه‌ی نرم" @@ -1125,12 +1158,18 @@ msgstr "داخل منو" msgid "not in menu" msgstr "در منو نباشد" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "تنظیمات صفحه (دکمه‌ی shift را نگه‌دارید برای تنظیمات پیشرفته)" -msgid "Permissions" -msgstr "دسترسى ها" +msgid "This page has no preview!" +msgstr "این صفحه هیچ پیش نمایشی ندارد!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "تغییر مسیر می دهد به :" msgid "Clipboard" msgstr "فضای کپی" @@ -1169,7 +1208,9 @@ msgid "Clipboard is empty." msgstr "فضای کپی خالی است." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "این پلاگین، به پلاگینهایی از این نوع اجازه‌ی قرار گرفتن به صورت تو‌در‌تو نمیدهد." +msgstr "" +"این پلاگین، به پلاگینهایی از این نوع اجازه‌ی قرار گرفتن به صورت تو‌در‌تو " +"نمیدهد." msgid "This plugin cannot have nested plugins." msgstr "این پلاگین نمیتواند پلاگینهای تو‌در‌تو داشته باشد." @@ -1180,7 +1221,6 @@ msgstr "هایلایت" msgid "Available plugins" msgstr "افزونه‌های موجود" -#| msgid "Structure" msgid "Toggle structure" msgstr "تغییر ساختار" @@ -1194,11 +1234,13 @@ msgid "More" msgstr "بیشتر" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "ورژن تحت توسعه، از نسخه‌ی %(cms_version)s «سیستم مدیریت محتوای جنگو» و نسخه‌ی %(django_version)s «جنگو» و نسخه‌ی %(python_version)s «پایتون» استفاده میکند." +msgstr "" +"ورژن تحت توسعه، از نسخه‌ی %(cms_version)s «سیستم مدیریت محتوای جنگو» و " +"نسخه‌ی %(django_version)s «جنگو» و نسخه‌ی %(python_version)s «پایتون» " +"استفاده میکند." msgid "Cancel" msgstr "لغو" @@ -1206,7 +1248,6 @@ msgstr "لغو" msgid "The following error occured:" msgstr "خطای مقابل رخ داده است:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "اقدام موفقیت آمیز." @@ -1219,24 +1260,22 @@ msgstr "آیا مطمئن هستید که می خواهید این صفحه را msgid "Plugin will be added here" msgstr "پلاگین اینجا اضافه میشود" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "شما تغییراتی ذخیره نشده دارید." -#| msgid "Loading..." msgid "Loading" msgstr "در حال بارگذاری" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "آیا اطمینان دارید میخواهید این تغییرات را رها کنید؟" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "فورم نمیتواند بارگزاری شود. لطفا اطمینان حاصل کنید که سرور به خوبی کار میکند." +msgstr "" +"فورم نمیتواند بارگزاری شود. لطفا اطمینان حاصل کنید که سرور به خوبی کار " +"میکند." -#| msgid "Notify user" msgid "Most used" msgstr "بیشترین استفاده شده" @@ -1244,12 +1283,16 @@ msgid "Shortcuts" msgstr "میانبرها" msgid "The page was changed in the meantime, reloading..." -msgstr "صفحه در این اثناء تغییر کرد،\nدر حال بارگذاری مجدد ..." +msgstr "" +"صفحه در این اثناء تغییر کرد،\n" +"در حال بارگذاری مجدد ..." + +msgid "CMS-wide Shortcuts" +msgstr "" msgid "Bring up this help dialog" msgstr "این گفتگو کمک را بیابید" -#| msgid "Cancel" msgid "Close/cancel" msgstr "بستن" @@ -1265,32 +1308,29 @@ msgstr "گفتگوی \"ساختن\" را باز کنید." msgid "Focus on Toolbar" msgstr "زوم بر روی نوار ابزار" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "زوم بر روی نگهدارنده ها" msgid "Move to next/previous element" msgstr "انتقال به المان بعدی/قبلی" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "زوم بر روی پلاگین نگهدارنده ها" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "ویرایش افزونه" -#| msgid "not in menu" msgid "Open actions menu" msgstr "باز کردن منوی عملیات" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "بازکردن/جمع کردن" msgid "" "Login failed. Please check your credentials and try again." -msgstr " لطفاً ورودى هاى خود را دوباره بازبينى كنيد." +msgstr "" +" لطفاً ورودى هاى خود را دوباره بازبينى " +"كنيد." msgid "Double-click to edit" msgstr "برای ویرایش دو بار کلیک کنید" @@ -1313,12 +1353,6 @@ msgstr "بزرگ کردن" msgid "Drop a plugin here" msgstr "افزونه را در اين مكان قرار دهيد" -msgid "This page has no preview!" -msgstr "این صفحه هیچ پیش نمایشی ندارد!" - -msgid "It is being redirected to:" -msgstr "تغییر مسیر می دهد به :" - msgid "Installation successful!" msgstr "نصب موفق بود!" @@ -1333,14 +1367,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n به سیستم مدیریت «محتوای جنگو» نسخه‌ی %(cms_version)s خوش آمدید.\n " +msgstr "" +"\n" +" به سیستم مدیریت «محتوای جنگو» نسخه‌ی %(cms_version)s خوش آمدید.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n برای ادامهصفحه‌ی اول را به سیستم اضافه کنید.\n " +msgstr "" +"\n" +" برای ادامهصفحه‌ی اول را به سیستم اضافه کنید.\n" +" " #, python-format msgid "" @@ -1348,7 +1388,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n به نظر میرسد جاوا اسکریپت غیر فعال است پس لطفا\n به صورت دستی یک صفحه اضافه کنید manually.\n " +msgstr "" +"\n" +" به نظر میرسد جاوا اسکریپت غیر فعال است پس لطفا\n" +" به صورت دستی یک صفحه اضافه کنید manually.\n" +" " msgid "Installation Notes" msgstr "یادداشت های نصب" @@ -1359,32 +1403,18 @@ msgstr "پشتیبانی" msgid "Documentation" msgstr "مستندات" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    اگر شما نماد «سیستم مدیریت محتوای جنگو» را در بالای صفحه نمی‌بینید، مطمئن شوید\nپوشه‌ی static/cms را به فایل‌های ایستای خود\nلینک کرده‌اید.

    " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    اگر شما نماد «سیستم مدیریت محتوای جنگو» را در بالای صفحه نمی‌بینید، مطمئن شوید\n" +"پوشه‌ی static/cms را به فایل‌های ایستای خود\n" +"لینک کرده‌اید.

    " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,7 +1422,9 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    شما این پیغام را می‌بینید چون DEBUG = True را در تنظیمات جنگو فعال کرده‌اید.

    " +msgstr "" +"\n" +"

    شما این پیغام را می‌بینید چون DEBUG = True را در تنظیمات جنگو فعال کرده‌اید.

    " msgid "Welcome to django CMS" msgstr "به سیستم مدیریت محتوای جنگو خوش آمدید" @@ -1409,11 +1441,7 @@ msgstr "برای رفتن به مرحله‌ی بعد، لطفا یکی از گ msgid "Next" msgstr "بعدی" -msgid "no content" -msgstr "بدون محتوا" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1424,7 +1452,9 @@ msgstr "صغحه پیدا نشد روی %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "يك تگ قالب نميتواند صفحه را با استفاده از آرگومان هاى ارجاعى پيدا كند `%(page_lookup)s⏎ `. آدرس درخواست شده: http://%(host)s%(path)s" +msgstr "" +"يك تگ قالب نميتواند صفحه را با استفاده از آرگومان هاى ارجاعى پيدا كند " +"`%(page_lookup)s⏎ `. آدرس درخواست شده: http://%(host)s%(path)s" msgid "Two columns" msgstr "دو ستون" @@ -1457,7 +1487,9 @@ msgstr "فعال" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "مشخص می‌سازد که آیا با این کاربر باید به عنوان فعال رفتار شود. حذف گزینش این آیتم به جای حذف حساب‌ها" +msgstr "" +"مشخص می‌سازد که آیا با این کاربر باید به عنوان فعال رفتار شود. حذف گزینش این" +" آیتم به جای حذف حساب‌ها" msgid "users" msgstr "کاربران" @@ -1492,7 +1524,6 @@ msgstr "مقالات" msgid "Sample App" msgstr "ابزار نمونه" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "اپلیکیشن نمونه همراه با پیکربندی" @@ -1502,9 +1533,8 @@ msgstr "اَپ نمونه با سطح دسترسی‌های محدود" msgid "Sample App 2" msgstr "ابزار نمونه ۲" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "برنامه ی نمونه ی شماره ی 3" +msgstr "ابزار نمونه ۲" msgid "Namespaced App" msgstr "اپلیکیشن دارای فضای نام" @@ -1539,9 +1569,8 @@ msgstr "منوی ایستا ۲" msgid "Static Menu3" msgstr "منوی ایستا ۳" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "منو‌ی ایستا ۴" +msgstr "منوی ایستا" msgid "Category" msgstr "موضوع" @@ -1568,12 +1597,10 @@ msgid "UserSettings" msgstr "تنظیمات کاربر" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "افزودن افزونه به %(placeholder_label)s" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "افزودن افزونه به %(plugin_name)s" @@ -1591,7 +1618,9 @@ msgstr "اين منفذ در حال حاضر داراى حداكثر تعداد msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "اين منفذ در حال حاضر داراى حداكثر تعداد(%(limit)s) پذيرفته شده ى %(plugin_name)s افزونه ها مى باشد." +msgstr "" +"اين منفذ در حال حاضر داراى حداكثر تعداد(%(limit)s) پذيرفته شده ى " +"%(plugin_name)s افزونه ها مى باشد." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1601,7 +1630,9 @@ msgstr "مشکل در یافتن ماژول CMS_REQUEST_IP_RESOLVER تعیین msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "مشکل در یافتن تابع CMS_REQUEST_IP_RESOLVER تعیین شده: \"{0}\" در ماژول \"{1}\"." +msgstr "" +"مشکل در یافتن تابع CMS_REQUEST_IP_RESOLVER تعیین شده: \"{0}\" در ماژول " +"\"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1610,394 +1641,3 @@ msgstr "ساخت یک مثال %s جدید ." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "در حال حاظر یک ویزارد ثبت شده برای : %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fa/LC_MESSAGES/djangojs.mo b/cms/locale/fa/LC_MESSAGES/djangojs.mo index 269a92ea1bcd27e68f78fbf9fd5a737f384959b5..8bd408bc7d58b4cdff9bf34aa9fa944a3cc72fa3 100644 GIT binary patch delta 73 zcmdnUI)`>PGbIjM diff --git a/cms/locale/fa/LC_MESSAGES/djangojs.po b/cms/locale/fa/LC_MESSAGES/djangojs.po index 98086e5edd7..6808767ddb0 100644 --- a/cms/locale/fa/LC_MESSAGES/djangojs.po +++ b/cms/locale/fa/LC_MESSAGES/djangojs.po @@ -10,15 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Persian (http://www.transifex.com/divio/django-cms/language/fa/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Pouya Abbassi, 2016\n" +"Language-Team: Persian (http://app.transifex.com/divio/django-cms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "آیا مطمئن هستید میخواهید تب‌ها را تغییر دهید بدون اینکه صفحه را از قبل ذخیره کرده باشید؟" diff --git a/cms/locale/fa_IR/LC_MESSAGES/django.mo b/cms/locale/fa_IR/LC_MESSAGES/django.mo index f520023f81c39460ebea3ac05de943d121c25f97..d1a3473127131bdeb3e88af1ac884d890d006894 100644 GIT binary patch delta 275 zcmbQmwV7+el==yb3=FnR3=Fai3=HR(85rb%^cx_}0i?NE7#Ku>v+sjwGY>FXyJ6ij~4B+6Zq TnwVRxZ)#y?X0lnFnVAUyTSqm; delta 250 zcmdnYHH&M)l=^Z;1_oOu1_oIM28ON73=DEW`ZAE_0Meg;v?!4N4Wz?>v>*!ugD{ZJ z0Mh(Gx&}x~0qGtf?F^)s18FWG{TfJv^nZiW|Doa>tPBinKyhIp4YZa4XzXTTMi)jF z1!v#j$UzPK)~gbSX`nTQk0lioRe6RUu31=n3-K^Y@lG1 z2&Nq>6EpJj^^)^*?Iu5EQem^w*Do(GpDe&EDx8v)n3tZfo19y$p95r-CZ?xuHehCE F0suEaFd+Z{ diff --git a/cms/locale/fa_IR/LC_MESSAGES/django.po b/cms/locale/fa_IR/LC_MESSAGES/django.po index 0dc9663b612..95d434dd59a 100644 --- a/cms/locale/fa_IR/LC_MESSAGES/django.po +++ b/cms/locale/fa_IR/LC_MESSAGES/django.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Javad Miraftabzadeh , 2016 -# reza reza , 2016 +# reza reza , 2022 +# Javad Miraftabzadeh , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Persian (Iran) (http://www.transifex.com/divio/django-cms/language/fa_IR/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Javad Miraftabzadeh , 2022\n" +"Language-Team: Persian (Iran) (https://app.transifex.com/divio/teams/58664/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,9 +57,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "نوع صفحه" @@ -72,7 +69,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +181,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +245,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +252,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +283,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +292,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +330,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -407,15 +442,12 @@ msgstr "" msgid "Language" msgstr "زبان" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +465,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +511,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +632,57 @@ msgstr "" msgid "page" msgstr "صفحه" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "عنوان" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +691,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -643,7 +718,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +826,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "عنوان" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -798,7 +833,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +842,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -881,7 +904,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +984,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1008,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1021,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1060,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1080,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1105,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1166,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1179,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1190,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1202,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1246,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1289,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1361,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1440,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1449,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1485,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fa_IR/LC_MESSAGES/djangojs.mo b/cms/locale/fa_IR/LC_MESSAGES/djangojs.mo index 18a2ec3a1246a6bcb3b2fb0b000e7c1ca528efd2..ed718f7b13d0db8794dbd1d75208378d95852903 100644 GIT binary patch delta 111 zcmbQix{`H*4)1hE28O8&3=GvktUJ+iIj@1Pp`os^fr5dVm5JrVx8jywiDii?3ci^| ziD@N?NmYp{sTm43Ss+2ZTx3Cq^xVYE9KGcHTss{FBLhRT$vTYc%!vgBo5L8L7y<3Z BAx;1Q delta 94 zcmZ3\n" -"Language-Team: Persian (Iran) (http://www.transifex.com/divio/django-cms/language/fa_IR/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Javad Miraftabzadeh , 2016\n" +"Language-Team: Persian (Iran) (http://app.transifex.com/divio/django-cms/language/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa_IR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "آیا مطمئنید که می‌خواهید زبانه‌ها را پیش از ذخیره صفحه تغییر دهید؟" diff --git a/cms/locale/fi/LC_MESSAGES/django.mo b/cms/locale/fi/LC_MESSAGES/django.mo index f74a0ec7bc13c253ee721ecad9f64c4c2d038b8d..5e7d793bcfb2ee9205c3a6c77675b8b625402a26 100644 GIT binary patch delta 9840 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 delta 7998 zcmZA63s_ZE-pBEM6cG@_J1UCD8(xr`;sx@8;3W~fB1V>W6vQKNP&r^&c_!^b&1CA% z(Q+oOw9J~!j_H_PD6-L}de!kVcCp?ptsJfFrjt4I{hhshAD?$W{rRl5_S$Q${oiYE z@Tu_w*U?v8fm3b5)>$0WU6$1acSTv&LCX2<)oNLbXdH%%F%q|91n$D-_!>^c{g{re zyINK%=He)<#x@wlruYuFz;`j)vI5p|3NbXC##sCwS%c+Du&g^U8da}HO<-eN+>aXQ zB(}sau{HjPtuVZsQ;)-D)cc_pkcxwG5XLgU<)xqwb(oC-9D)s~34X!O*wk%V9WeoQ zheL4ymSGY;f{ECGx}meEO#Osf*i{U}R^2VD7q*uH3Rx7C$~o8p%TRZ`95uiL#_!UsD)id&DXpKH=9NwmV#26jp|s4de$YT-G@9Y zYXvG(51aZr|@SnWzPgN3DD^X5r1)4A-G1+KAz}3$?&~s0HpvUH7i3A4A^sfb}5- zO?(OUj9q=5dP`#*s@;tmC>fjJK-41{jLO((Y>v}W3!a4xX?bxxu0dUY67>jAVU*tg z^AxnwOQ8k^?-yE`6@%IvN!SUqQM>tOB+FJg>a|;geEh6!s7JXU)$bU_;~CU~n)G+( zX@$yIXY8o=-%UZUVW#P@&~)&lR=f;#rvc;daTN9Sn2je;6Ld^+7LtfsKrU+Gg{aK< zkXPTT#Yo(Mfd~puQqY||hkABzVH6%jE#N3B6DLsvUceR@!H!b@cBr=|-k6FypNpDk zGDc%D>dxn*#;q7Y{`J}{ra`HD0CmBms9pXPYUR64{dIHxFb<{tBh<5Ro9x_qZ&W68 zkpHY|ehk7Vkf&=MLp{2y#$GApe>4qwDb4_YK;7Z9I0qXs8+)cYDK0_X!4lMhZ%6%h ztVg<9Z=&w}JL479okp-Ky&W;A^NFa157hTpcRB`Ra3(4PrKpLjFdA#H1XrLR&*Ck3 zOS;p(7roRI23nQ}>roSbgS!4()VNo$6^4@*Eg%p_L7&8a*c3-0V_Uh%r@-b3kBJK$y1IIY+?+Vt@udH%g9XuxFD z1(~SS6oooi)&kUpi;Z`pCcYnIaUE&_TT$cu1=W8qs^8nFXMep?--@E3 z0b)=Wv^Vxdtu!55Viqbh6HL7ZwSaptlp)l>n@|hcihAZdQRD8zUU(3@;ROt6leElq zE^LdsuoG&N^v1S01htSn(>@*BQ7F&KKh%>hn>X?F44y1&qg3ekUuV z6HyDf1(m_lfGI39K8(7fEvVhT9rgO`MBVWzbN&Kyv(}H;8&gL)1J6J$Y&L3w#i;A= zL%ps+?2lg}e+*fHR@qL9GfJgm6 zei)YPOqhbYrl@wfZB{}Q7Qfebq7CSCv=T*{y>RG z_0L32l#lvO6k;6CL+yb(P!q34Wnew_#cdeit7sjjFdHMrIvvYUd%=gg(>l~0tVB&{ zqZabCu>rM!4^jO-M@@JUbpw~p`PgyJ>m7#)w09Xt{);HwK!YY)i(2uYum|qMK6n&+ z;T2>otNVB-V`Zp?RAM;ZkJ>Y

    <#@Q-2Ei>RLNcsXvQaz~%AeU#acL&Qj_Uu{jP# z-N^`3FTlRkXP_3k9JT4{QJGq2+Bci_?HED(9&CaQro9pM@e=Z% z)qR4Ks)eY9RG}6cKrQeg3{8w$_-0h9cc2!wA2rbt)VOD`E5_zIn=~1f>A*}18lVD| z$~#aKuEQwYip}sv)FauAd^@a@7>S)GI;ro8>enA5Fby?MCi0E4Cg4DDF zEXM2o?@K`)#-JuD!f3n=HDD#Sz*_8#D^L^s8TBZ3qh7byQ4<_T_4^35;GZ!Cn@w^a zVFv2@9PF$2e-?#4c#j(Jc^r<%Py@G_?0kCr<4o%LsJCGYy73_T@Ehb3t9Xi&nQf>A z{uOnD4VZ~XkY9jS^i=X6OW{TeF?bW|PUoXizXbKZuSTu-DbyZ$6}5SeV=Fv|%Gedu zri+~B{88E!YpAclId}=n@TTcJMr@c){?#y`&{^pt*oOL_Py_D3(1fVneH``c^k1m= zJz|FQH)AXgqn?c!Scm*tuwFoI*6&amP2*!DD=`_j7mexng7BHglp3mHH)^g!iI0 zdv3Uczgjn;=8EV>ojVjuTXb(!JNN}ov6p%;-owsHDMO&`h3*HrKq>Uj}dzR@1&rC z??p}gVCaNp{SiA;-(-Bnv>!taa0=D`4C)bFG&aB0Sy&g;jSWD(6`80^7N841Bi1m# z^%K#O7OhUl&%_*}idaJYg_y?q5`38WmB^>wi+F*u9@BF~4sn4PNW>9O5U&wB5{Y`^ zKdNx_=Gx1s`K`73!J!?hBbAf?|9F#z_SdynQ-72gW;%X=KN1t@Ko}s*+2;Ki=h@f#SkwtkZ{(|d>fs}Qm5&sUA_(9utQ+^r$LEKC9G<`Qx zt|J~NT9~%cl#dfShC77z(4+tz#+rs}{EsO_nTu6@mgsR^T^nwdPH^ZMCUWjzsK$oI z)$t^8DpYcI_HCxT2ltwC z4A*`^xt#co(5ttTm_mC#wkHk|Hxs>xO+*{5{Zk5W6JHVWL>?FX4Rv%No)4Ayoq%@` z7fpQ({cbnq`|w>;_TxlT7W(|&Ma(BQ5Z51rl)IUxXgE%f(iln}Ri_Z9Mg%rYt@;{T!_BwCng^htRLz&a};<{xNZmI8O|r?Xd2D8kOBd3K30QJ2L1n z$y7eVr-`}5KGP=tPV^_P5DSS%2pz+@_S!L$@*rXb4gIjQIq_ado_{Wli>Zt>Ctk-M z#5<;b1Kvs;BO>XmBZKHh>?hKRjLH3B8=Efd`Jvo{?Nbm zAawkTp9_d0qJTjrgj#ualz&IL%+#Z)zeRaGF@Um;E=1Q*iGK-Uj46-fe3I#tNt>HU zCPvVv`9uHUcnaH@PLqu~ckPHbZMCLhH6{>+rv4yKC%z^ANX#Rea!oifm9h&z!LvjG zVH5pb{9d|B;d>%mL8oSfjzz=`lrxFc;MRl_R!Q3kyC2sR(Puyl$O}lsfRmM)Reg^YpVTjUzOiIx71x) zxyWCaV&|mYW{0KE4hGZrG>P&p`oBy38TG+KgPS!8t{OJgmAJs;D=T&T7kH~fi|$kH z_WI`dJhk33kKbG6b65L4{+jCG8=04z+6^PtM!4ry`TV6me{k~14X!YEZozc>+^FOc zY02qn$pbUp>4UQd4N6Mmh|2d=`;!Zoczo3r9)H!6Eca+{dEKBi_i#_h>^jeas;ZQE zRh1*{#o1j`vQkr*E?t`9*9G4BrMK%$YKgbjTa{X}kVRG{&#SCXt)Nsxa)U2tZ+5xd zc2Um3=zMQ=F=s%d0G7a+SY2R5zpAZ%poQr%Z{ndrp}gyno71F1vo( zRQvmBKii3gqa*WbD#|_HYJW{|eql#f=NZ%TuU+pZcZ)pbRTULpU#Ty}zH7!}dt%X~ z;8#VzHHk5ol~$4%pMA0TP;kqv*e1cHvlqJT7bmt$_WM2VT90>u-{W!n8@E(8Zs9?2 tcRpG}tMxT*DX*)otMhX<_}QFq!t4_z8(Wro=|wIo{EfS5UtD^`^>- diff --git a/cms/locale/fi/LC_MESSAGES/django.po b/cms/locale/fi/LC_MESSAGES/django.po index bd7148a2386..ff244e65e18 100644 --- a/cms/locale/fi/LC_MESSAGES/django.po +++ b/cms/locale/fi/LC_MESSAGES/django.po @@ -3,25 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# paitsi, 2013 -# Juha-Matti Tapio , 2013 -# Klaus Dahlén , 2011 -# Klaus Dahlén , 2011,2013-2014 -# Kusti Hämäläinen , 2020 -# Klaus Dahlén , 2011 -# Niklas Jerva , 2016 -# paitsi, 2013 -# Timo Riski , 2019 -# Ville-Eemeli Käkelä , 2017-2019 +# 6e24184c9f8092a67bcd413cbcf598da_29fd2b5 <08b9fabf956572ae43d0b31e4effa6b5_821440>, 2022 +# Niklas Jerva , 2022 +# Fabian Braun , 2023 +# Ville-Eemeli Käkelä , 2023 +# Kusti Hämäläinen , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Finnish (http://www.transifex.com/divio/django-cms/language/fi/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Kusti Hämäläinen , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/divio/teams/58664/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -65,9 +60,6 @@ msgstr "Kuvauksen meta tag" msgid "A description of the page used by search engines." msgstr "Pilkuin eroteltu lista joita hakukoneet voivat hyödyntää." -msgid "Slug must not be empty." -msgstr "URL-otsikko on pakollinen." - msgid "Page type" msgstr "Sivutyyppi" @@ -80,7 +72,6 @@ msgstr "Yliaja URL" msgid "Keep this field empty if standard path should be used." msgstr "Jätä tämä kenttä tyhjäksi jos halutaan käyttää oletuspolkua." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -102,13 +93,11 @@ msgstr "näytä valikossa" msgid "limit when this page is visible in the menu" msgstr "rajoita tämän sivun näkyvyyttä valikossa" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "URL-asetukset" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "Valikkoasetukset" msgid "Application" msgstr "Sovellus" @@ -120,11 +109,10 @@ msgid "Application configurations" msgstr "Ohjelman asetukset" msgid "A page with this reverse URL id exists already." -msgstr "Sivu tällä käänteisellä URL tunnuksella on jo olemassa." +msgstr "Sivu tällä käänteisellä URL-tunnuksella on jo olemassa." -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "" +msgstr "Virheellinen sovelluksen konfigurointiarvo" msgid "An application instance using this configuration already exists." msgstr "Kyseisellä konfiguraatiolla oleva ohjelma on jo olemassa." @@ -159,32 +147,44 @@ msgstr "Poista" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Käyttäjät eivät voi luoda sivua ilman oikeuksia muuttaa luotua sivua. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi luoda sivua ilman oikeuksia muuttaa luotua sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Käyttäjät eivät voi poistaa sivua ilman oikeuksia muuttaa sivua. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi poistaa sivua ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Käyttäjät eivät voi asettaa sivuoikeuksia ilman oikeuksia muuttaa sivua. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi asettaa sivuoikeuksia ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Käyttäjät eivät voi poistaa sivuoikeuksia ilman oikeuksia muuttaa sivua. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi poistaa sivuoikeuksia ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Käyttäjät eivät voi luoda sivuoikeuksia ilman oikeuksia muuttaa luotuja sivuoikeuksia. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi luoda sivuoikeuksia ilman oikeuksia muuttaa luotuja " +"sivuoikeuksia. Muokkausoikeudet vaadittu." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Käyttäjät eivät voi poistaa sivuoikeuksia ilman oikeuksia muuttaa oikeuksia. Muokkausoikeudet vaadittu." +msgstr "" +"Käyttäjät eivät voi poistaa sivuoikeuksia ilman oikeuksia muuttaa oikeuksia." +" Muokkausoikeudet vaadittu." #, python-format msgid "Invalid plugin type '%s'" @@ -196,13 +196,12 @@ msgstr "Kielen tulee olla tuettu!" msgid "Parent plugin language must be same as language!" msgstr "Isäntäliitännäisen kielen tulee vastata aktiivista kieltä!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "Liitännäisen sijainnin tulee olla suurempi kuin %(position)d" msgid "Advanced Settings" msgstr "Edistyneet asetukset" @@ -211,9 +210,8 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "%(name)s \"%(obj)s\" on poistettu onnistuneesti." #, python-format msgid "Cannot delete %(name)s" @@ -228,9 +226,10 @@ msgstr "Olio %(name)s perusavaimella %(key)r ei ole olemassa" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Virhe! Oikeutesi eivät riitä tämän sivun siirtämiseen. Ole hyvä ja lataa sivu uudelleen." +msgstr "" +"Virhe! Oikeutesi eivät riitä tämän sivun siirtämiseen. Ole hyvä ja lataa " +"sivu uudelleen." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Virhe! Sinulla ei ole oikeuksia kopioida tätä sivua." @@ -263,7 +262,6 @@ msgstr "Asettelupohja vaihdettu" msgid "You do not have permission to copy these plugins." msgstr "Oikeutesi eivät riitä näiden liitännäisten kopiointiin." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Sinulla ei ole oikeuksia poistaa tätä sivua" @@ -271,8 +269,20 @@ msgstr "Sinulla ei ole oikeuksia poistaa tätä sivua" msgid "Title and plugins with language %(language)s was deleted" msgstr "Otsikko ja liitännäiset kielelle %(language)s poistettu" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Sinulla ei ole oikeutta vaihtaa tämän sivun valikkonäkyvyyttä" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Tyhjä" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Näkyvyyden rajoittaminen" @@ -290,7 +300,6 @@ msgstr "Oikeutesi eivät riitä tämän kohteen muokkaamiseen" msgid "You do not have permission to add a plugin" msgstr "Oikeutesi eivät riitä liitännäisen lisäämiseen" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Oikeutesi eivät riitä tämän sisältöpaikan kopiointiin." @@ -300,18 +309,15 @@ msgstr "Liitännäistä ei löytynyt" msgid "You do not have permission to edit this plugin" msgstr "Oikeutesi eivät riitä tämän liitännäisen muokkaamiseen" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Oikeutesi eivät riitä tämän liitännäisen liittämiseen" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Oikeutesi eivät riitä tämän sisältöpaikan liittämiseen" msgid "You have no permission to move this plugin" msgstr "Oikeutesi eivät riitä tämän liitännäisen siirtämiseen" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Oikeutesi eivät riitä tämän liitännäisen leikkaamiseen" @@ -341,6 +347,47 @@ msgstr "Käyttäjä- & ryhmäoikeudet" msgid "Page permissions management" msgstr "Sivun oikeuksien hallinta" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Esikatselu" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -369,9 +416,6 @@ msgstr "Luo" msgid "Edit" msgstr "Muokkaa" -msgid "Preview" -msgstr "Esikatselu" - msgid "Structure" msgstr "Rakenne" @@ -397,7 +441,7 @@ msgid "Clear clipboard" msgstr "Tyhjennä leikepöytä" msgid "Disable toolbar" -msgstr "" +msgstr "Poista työkalupalkki käytöstä" msgid "Shortcuts..." msgstr "Oikopolut..." @@ -415,26 +459,22 @@ msgstr "Kirjaudu ulos" msgid "Language" msgstr "Kieli" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Lisää käännös" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Poista käännös" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopioi kaikki liitännäiset" #, python-format msgid "from %s" -msgstr "" +msgstr "kohteesta %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" -msgstr "" +msgstr "Oletko varma, että haluat kopioida kaikki liitännäiset kohteesta %s?" msgid "Pages" msgstr "Sivut" @@ -442,7 +482,6 @@ msgstr "Sivut" msgid "Page" msgstr "Sivu" -#| msgid "Create" msgid "Create Page" msgstr "Luo sivu" @@ -489,20 +528,12 @@ msgid "Select a valid page" msgstr "Valitse kelvollinen sivu" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -516,12 +547,17 @@ msgstr "Anna otsikko uudelle sivulle." msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Oikeutesi eivät riitä sivun lisäämiseen." msgid "ID" -msgstr "" +msgstr "tunnus" msgid "position" msgstr "Sijainti" @@ -613,6 +649,57 @@ msgstr "Myönnä oikeus" msgid "page" msgstr "sivu" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "ainoastaan kirjautuneille käyttäjille" + +msgid "for anonymous users only" +msgstr "ainoastaan kirjautumattomille käyttäjille" + +msgid "Inherit from parent page" +msgstr "Peri isäntäsivulta" + +msgid "Deny" +msgstr "Estä" + +msgid "Only this website" +msgstr "Vain tämä sivusto" + +msgid "Allow" +msgstr "Salli" + +msgid "title" +msgstr "otsikko" + +msgid "overwrite the title (html title tag)" +msgstr "Yliaja otsikko (HTML title)" + +msgid "overwrite the title in the menu" +msgstr "yliaja otsikko valikossa" + +msgid "description" +msgstr "kuvaus" + +msgid "The text displayed in search engines." +msgstr "Hakukoneissa näytettävä kieli." + +msgid "redirect" +msgstr "edelleenohjaus" + +msgid "The template used to render the content." +msgstr "Asettelu jota käytetään sisällön tulostukseen ruudulle." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "oletus" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -621,9 +708,6 @@ msgstr "" msgid "pages" msgstr "sivut" -msgid "default" -msgstr "oletus" - msgid "slug" msgstr "url-otsikko" @@ -651,7 +735,6 @@ msgstr "sivutasolla" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Valitse käyttäjä tai käyttäjäryhmä." @@ -659,27 +742,37 @@ msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Käyttäjät eivät voi julkaista sivua ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." msgstr "" +"Käyttäjät eivät voi muuttaa sivun kehittyneitä asetuksia ilman oikeuksia " +"muuttaa sivua. Muokkausoikeudet vaadittu." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." msgstr "" +"Käyttäjät eivät voi muuttaa sivun oikeuksia ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Käyttäjät eivät voi siirtää sivua ilman oikeuksia muuttaa sivua. " +"Muokkausoikeudet vaadittu." msgid "can recover any deleted page" msgstr "voi palauttaa minkä tahansa poistetun sivun" msgid "If none selected, user haves granted permissions to all sites." -msgstr "jos mitään ei ole valittu käyttäjälle myönnetään oikeudet kaikkiin sivustoihin" +msgstr "" +"jos mitään ei ole valittu käyttäjälle myönnetään oikeudet kaikkiin " +"sivustoihin" msgid "Page global permission" msgstr "Sivun globaali käyttöoikeus" @@ -693,7 +786,9 @@ msgstr "Sivun käyttöoikeus" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Sivun luontioikeus vaatii pääsyn myös sen jälkeläisiin. Muuten sivun luoja ei voi muokata sitä myöhemmin." +msgstr "" +"Sivun luontioikeus vaatii pääsyn myös sen jälkeläisiin. Muuten sivun luoja " +"ei voi muokata sitä myöhemmin." msgid "User (page)" msgstr "Käyttäjä (sivu)" @@ -758,46 +853,8 @@ msgid "static placeholders" msgstr "staattiset sisältöpaikat" msgid "A static placeholder with the same site and code already exists" -msgstr "Staattinen sisältöalue samalla sivustolla ja tunnisteella on jo olemassa" - -msgid "for logged in users only" -msgstr "ainoastaan kirjautuneille käyttäjille" - -msgid "for anonymous users only" -msgstr "ainoastaan kirjautumattomille käyttäjille" - -msgid "Inherit from parent page" -msgstr "Peri isäntäsivulta" - -msgid "Deny" -msgstr "Estä" - -msgid "Only this website" -msgstr "Vain tämä sivusto" - -msgid "Allow" -msgstr "Salli" - -msgid "title" -msgstr "otsikko" - -msgid "overwrite the title (html title tag)" -msgstr "Yliaja otsikko (HTML title)" - -msgid "overwrite the title in the menu" -msgstr "yliaja otsikko valikossa" - -msgid "description" -msgstr "kuvaus" - -msgid "The text displayed in search engines." -msgstr "Hakukoneissa näytettävä kieli." - -msgid "redirect" -msgstr "edelleenohjaus" - -msgid "The template used to render the content." -msgstr "Asettelu jota käytetään sisällön tulostukseen ruudulle." +msgstr "" +"Staattinen sisältöalue samalla sivustolla ja tunnisteella on jo olemassa" msgid "Advanced options" msgstr "Edistyneet asetukset" @@ -806,75 +863,65 @@ msgid "Generic" msgstr "Yleinen" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" +msgstr "%(name)s \"%(obj)s\" on muutettu onnistuneesti." msgid "There are no further settings for this plugin. Please press save." -msgstr "Tälle liitännäiselle ei ole muita asetuksia. Ole hyvä ja paina Tallenna-painiketta." +msgstr "" +"Tälle liitännäiselle ei ole muita asetuksia. Ole hyvä ja paina Tallenna-" +"painiketta." msgid "Moved" -msgstr "" +msgstr "Siirretty" -#| msgid "Change" msgid "Changed" msgstr "Muokattu" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "Poistettu" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "" +msgstr "Lisätty sivun käännös" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "" +msgstr "Muutettu sivun käännöstä" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "" +msgstr "Poistettu sivun käännös" -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "" +msgstr "Lisätty liitännäinen" -#| msgid "Change" msgid "Changed Plugin" -msgstr "" +msgstr "Muutettu liitännäistä" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "" +msgstr "Siirretty liitännäinen" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "" +msgstr "Poistettu liitännäinen" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "Liitetty liitännäinen" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Tallenna" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Kirjaudu hallintapaneeliin." @@ -889,9 +936,8 @@ msgstr "Käyttäjänimi:" msgid "Password:" msgstr "Salasana:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Lisää sivu" +msgstr "" msgid "Change a page" msgstr "Muuta sivua" @@ -970,16 +1016,21 @@ msgstr "Leikkaa" msgid "Paste" msgstr "Liitä" -#| msgid "Save as new" msgid "Set as home" msgstr "Aseta kotisivuksi" +msgid "Permissions" +msgstr "Oikeudet" + msgid "is restricted" msgstr "rajoitettu" msgid "last change by" msgstr "muokkaaja" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -989,7 +1040,6 @@ msgstr "Sivulistaus" msgid "Search" msgstr "Haku" -#| msgid "Page Title" msgid "Page Tree" msgstr "Sivupuu" @@ -1003,17 +1053,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "Valinnat" @@ -1021,7 +1063,8 @@ msgid "Successfully moved" msgstr "Siirretty onnistuneesti" msgid "Changes within the tree might require a refresh." -msgstr "Puun sisällä tapahtuvat muutokset saattavat vaatia sivun virkistyksen." +msgstr "" +"Puun sisällä tapahtuvat muutokset saattavat vaatia sivun virkistyksen." msgid "Error:" msgstr "Virhe:" @@ -1037,7 +1080,6 @@ msgstr "Haluatko varmasti § tämän sivun?" msgid "Reload" msgstr "Lataa uudelleen" -#| msgid "New Page" msgid "New node" msgstr "Uusi solmu" @@ -1051,10 +1093,6 @@ msgid "Menu" msgstr "Valikko" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1075,30 +1113,15 @@ msgstr "Sulje" msgid "Legend" msgstr "Selite" -#| msgid "published" -msgid "Published" -msgstr "Julkaistu" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Julkaisematon" - -msgid "Empty" -msgstr "Tyhjä" - -#| msgid "in menu" msgid "In menu" msgstr "Valikossa" -#| msgid "not in menu" msgid "Not in menu" msgstr "Ei valikossa" -#| msgid "New page" msgid "View page" msgstr "Näytä sivu" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1115,12 +1138,18 @@ msgstr "valikossa" msgid "not in menu" msgstr "ei valikossa" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Oikeudet" +msgid "This page has no preview!" +msgstr "Tätä sivua ei voi esikatsella!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Uudelleenohjataan tällä hetkellä:" msgid "Clipboard" msgstr "Leikepöytä" @@ -1170,7 +1199,6 @@ msgstr "Korosta" msgid "Available plugins" msgstr "Saatavilla olevat liitännäiset" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1184,7 +1212,6 @@ msgid "More" msgstr "Lisää" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1196,7 +1223,6 @@ msgstr "Peruuta" msgid "The following error occured:" msgstr "Seuraava virhe tapahtui:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Toiminto onnistui" @@ -1209,15 +1235,12 @@ msgstr "Haluatko varmasti julkaista tämän sivun?" msgid "Plugin will be added here" msgstr "Liitännäinen lisätään tähän" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Sinulla on tallentamattomia muutoksia." -#| msgid "Loading..." msgid "Loading" msgstr "Ladataan" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Haluatko varmasti hylätä nämä muutokset?" @@ -1225,10 +1248,11 @@ msgid "" "The form could not be loaded. Please check that the server is running " "correctly." msgstr "" +"Lomaketta ei voitu ladata. Tarkistathan, että palvelin on toiminnassa " +"oikein." -#| msgid "Notify user" msgid "Most used" -msgstr "" +msgstr "Eniten käytetty" msgid "Shortcuts" msgstr "Oikopolut" @@ -1236,10 +1260,12 @@ msgstr "Oikopolut" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Sulje/peruuta" @@ -1253,34 +1279,31 @@ msgid "Open \"Create\" dialog" msgstr "" msgid "Focus on Toolbar" -msgstr "" +msgstr "Keskitä työkalupalkkiin" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "Siirry seuraavaan/edelliseen elementtiin" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Muokkaa liitännäistä" -#| msgid "not in menu" msgid "Open actions menu" -msgstr "" +msgstr "Avaa toimintovalikko" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Laajenna/pienennä" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Kirjautuminen epäonnistui. Tarkista tunnuksesi ja yritä uudelleen." +msgstr "" +"Kirjautuminen epäonnistui. Tarkista tunnuksesi ja yritä " +"uudelleen." msgid "Double-click to edit" msgstr "Muokkaa tuplaklikkaamalla" @@ -1295,22 +1318,16 @@ msgid "Click to go forward" msgstr "" msgid "Minimize" -msgstr "" +msgstr "Pienennä" msgid "Maximize" -msgstr "" +msgstr "Suurenna" msgid "Drop a plugin here" msgstr "Raahaa liitännäinen tähän" -msgid "This page has no preview!" -msgstr "Tätä sivua ei voi esikatsella!" - -msgid "It is being redirected to:" -msgstr "Uudelleenohjataan tällä hetkellä:" - msgid "Installation successful!" -msgstr "" +msgstr "Asennus onnistui!" msgid "Add your first page" msgstr "Lisää ensimmäinen sivusi" @@ -1349,15 +1366,6 @@ msgstr "Tuki" msgid "Documentation" msgstr "Dokumentaatio" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1366,15 +1374,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1399,11 +1398,7 @@ msgstr "Valitse valinta alapuolelta jatkaaksesi seuraavaan vaiheeseen." msgid "Next" msgstr "Seuraava" -msgid "no content" -msgstr "ei sisältöä" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1482,7 +1477,6 @@ msgstr "Artikkelit" msgid "Sample App" msgstr "Esimerkkiohjelma" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1492,7 +1486,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1500,10 +1493,10 @@ msgid "Namespaced App" msgstr "" msgid "Parent app" -msgstr "" +msgstr "Emosovellus" msgid "Child app" -msgstr "" +msgstr "Tytärsovellus" msgid "Variable urls-menus App" msgstr "" @@ -1529,7 +1522,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1558,12 +1550,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Lisää liitännäinen sisältöpaikkaan \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1581,7 +1571,9 @@ msgstr "Tämä sisältöpaikka sisältää jo enimmäismäärän (%s) liitännä msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Tämä sisältöpaikka sisältää jo sallitun enimmäismäärän (%(limit)s) %(plugin_name)s-liitännäisiä." +msgstr "" +"Tämä sisältöpaikka sisältää jo sallitun enimmäismäärän (%(limit)s) " +"%(plugin_name)s-liitännäisiä." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1600,394 +1592,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fi/LC_MESSAGES/djangojs.mo b/cms/locale/fi/LC_MESSAGES/djangojs.mo index f9a222255a8ce863fd1f3644bfc128283641b66e..a4cc5cdaa7f78f172debd5068f0c8cb229ee4827 100644 GIT binary patch delta 97 zcmcb_a+PI*4sR_Z1H)7X1_nnU7M^IioYz3t&`{UdK*7Mw%EWTwTXAi_%;X2FAKzTNY72o%+X8E&$ZK0FfuSSpRB{Ez?@i6u-TuHnGpaFof~cd delta 94 zcmcc0a*1Vv4sR7B1H)7X1_nnU7MN(coYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Finnish (http://www.transifex.com/divio/django-cms/language/fi/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Niklas Jerva , 2017\n" +"Language-Team: Finnish (http://app.transifex.com/divio/django-cms/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Haluatko varmasti muuttaa välilehtiä tallentamatta sivua ensin?" diff --git a/cms/locale/fi_FI/LC_MESSAGES/django.mo b/cms/locale/fi_FI/LC_MESSAGES/django.mo index 51caf178b67baab2d9a78b232d1c3879e189970f..56c970469ab12df9bd9e472fa0b2266a6c635d7d 100644 GIT binary patch delta 944 zcmXxiO=uHA6u|Lk6K&EOYogfNMzdmL8sld3QKQsi3xXAcALvCC#84B7ZQ7a*MMa4S zdhxi}n}`HNFJ5x6#hW<@ejpxHytH^I2!bGpP*C*$VjOn%H?uqY=FRN93(f_rivjmt zp~R>`YGswkK78HAjWX{NN#X)p_!YUN&n@D^5c<)?Q5?Yx-oQ?LioMvtHMofDars}r zDnDs#P6cpWw19D48#n)m@b&`nf*-i2$i2Q{%UMlg+Icm{QRt>qK+ zN|lw-NbsV8I?)f*fU$OwO*n|;CRyyl;~2nms4KTo6S{?AtRuO}C)Ax=LXGF=rg3`l zHoF``gZbs5S0surkg@U|H{c4cLmz3!F^HOA7B%2a)CBIJPIwQyv4*Tco}niC98chT z4B-I(WeXm{>M)H04GmC310SPq}sTYd`leWB$g)U$LA z58yoNf_~vP?DWa$<^(2RYrs9&hsRI{PT&r_iu%C=)E#PI8egGK_y@^FI{1j4Z7!nU zS#BGN4$%8ww$q4EHKHz8kGsyMCq3#Mah=>8rlr3~W5%djH15v&g6omXxzhf{ZH||0 zC+{(RDKn{;kxUGwQ_g))ckF0!VlrnNhx6sxoH0Dr?8Pr?Z}dVbSDcKGPnY)ZGE#|D z+Ij1VMC>8U%FWEgE9KmjT`c4;>j3L~ake;ZRr0x#ZSCHh$qd%}y$QEd_AUJdi-mCg delta 1041 zcmXxjUr19?9Ki9TTieuTWwNp~Pk+_v?wt(zEgOuOu0u0G#6HClFpDz$+T z^ze`@97S?e!&rryE?Xkil#0mqZMMpKb+AK<{=Xd|Xs5T)r55r{NDA^f1S>Juc++7b z**{sRi!KStVx3EmU5l(V!_cl+tHU2I+4BNl#I%lcipYy=f*2BUnmw1b%#U8 z`*e3tG!p3y(`rYpf)kp^Te(8Ua_oFmpG?n`B4IsX{d2HnrEJ@nw6iBF&wOo0)HG*j zXAMUNq%SAtL&zM8hpsc9>hv_q5Gf|(&ITFJzcw, 2016 -# Timo Riski , 2019 +# 6e24184c9f8092a67bcd413cbcf598da_29fd2b5 <08b9fabf956572ae43d0b31e4effa6b5_821440>, 2022 +# Niklas Jerva , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Finnish (Finland) (http://www.transifex.com/divio/django-cms/language/fi_FI/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Niklas Jerva , 2023\n" +"Language-Team: Finnish (Finland) (https://app.transifex.com/divio/teams/58664/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,9 +57,6 @@ msgstr "Kuvauksen meta tag" msgid "A description of the page used by search engines." msgstr "Hakukoneiden käyttämä kuvaus." -msgid "Slug must not be empty." -msgstr "Lyhyt url ei saa olla tyhjä." - msgid "Page type" msgstr "Sivutyyppi" @@ -72,7 +69,6 @@ msgstr "Korvaa URL" msgid "Keep this field empty if standard path should be used." msgstr "Jätä kenttä tyhjäksi jos oletuspolkua tulisi käyttää." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +108,6 @@ msgstr "Sovellusasetukset" msgid "A page with this reverse URL id exists already." msgstr "Kyseinen käänteinen URL on jo olemassa." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +181,6 @@ msgstr "Kieli on oltava jo tuettu kieli!" msgid "Parent plugin language must be same as language!" msgstr "Isäntä lisäosan kieli on oltava sama kuin valittu kieli!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Isäntä lisäosan 'placeholder' on oltava sama kuin 'placeholder'!" @@ -203,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,9 +211,10 @@ msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Virhe! Sinulla ei ole oikeuksia siirtää sivua. Ole hyvä ja lataa sivu uudelleen" +msgstr "" +"Virhe! Sinulla ei ole oikeuksia siirtää sivua. Ole hyvä ja lataa sivu " +"uudelleen" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +247,6 @@ msgstr "Sapluuna muutettiin onnistuneesti" msgid "You do not have permission to copy these plugins." msgstr "Sinulla ei ole oikeuksia kopioda näitä lisäosia." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +254,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +285,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +294,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +332,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +401,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -407,15 +444,12 @@ msgstr "" msgid "Language" msgstr "Kieli" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +458,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +467,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +513,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +532,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +634,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +693,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -643,7 +720,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +828,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -798,7 +835,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +844,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -881,7 +906,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +986,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1010,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1023,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1049,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1062,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1082,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1107,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1168,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1181,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1192,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1204,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1218,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1227,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1248,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1291,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1331,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1339,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1363,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1442,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1451,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1487,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1515,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1555,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fi_FI/LC_MESSAGES/djangojs.mo b/cms/locale/fi_FI/LC_MESSAGES/djangojs.mo index b50009e6769ffa0caec8a6ad1b276d0df59adcc2..ca44807233c4edc8410cc85dff7446361a125e42 100644 GIT binary patch delta 68 zcmX@Yyo-5)3S+}W)p%Y5T|+}%V*>>PGb>;M1& delta 78 zcmdnRe1v&|3S-wq)p%YDT?0d1Lqi2aGb>|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!$np^78VDpN|6o#~vGx diff --git a/cms/locale/fi_FI/LC_MESSAGES/djangojs.po b/cms/locale/fi_FI/LC_MESSAGES/djangojs.po index f4fd69f69d9..892c5a259b2 100644 --- a/cms/locale/fi_FI/LC_MESSAGES/djangojs.po +++ b/cms/locale/fi_FI/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Finnish (Finland) (http://www.transifex.com/divio/django-cms/language/fi_FI/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Finnish (Finland) (http://app.transifex.com/divio/django-cms/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/fr/LC_MESSAGES/django.mo b/cms/locale/fr/LC_MESSAGES/django.mo index 5b5bd94297ae1d2f503e8b62ea6a416f198cfd3e..2889ef8e6cc3b6f9620d8d6ae96e337bc937d897 100644 GIT binary patch delta 13378 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 delta 10815 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 v`0ZnR`=^DXU9`&UP6XYSJ5, 2017 -# Alexandre Cloquet , 2014-2015 -# Antoine Nguyen , 2011 -# Samir ASNOUN , 2015 -# Assma Buifruri , 2017 -# Bertrand Bordage , 2012-2013,2015 -# bmassot , 2019 -# Bertrand Bordage , 2012 -# Simon Charette , 2011-2012 -# Chary titouan <>, 2011 -# Frigory33 , 2016 -# chrisglass , 2011 -# Christophe CHAUVET , 2013 -# a270031086f2a0d3514bc0cb507b48f6, 2019 -# Dylann CORDEL , 2014-2015 -# Freddy L. , 2014 -# Gabriel Le Breton , 2015 -# Gonzo id , 2014-2015 -# Jérôme Place , 2014-2015 -# kalvn , 2014 -# Marc Antoine THEVENET , 2016 -# mbi0 , 2013 -# mbi0 , 2013 -# Nicolas PASCAL , 2018-2019 -# Patrick Lauber , 2014 -# Samuel Sorin, 2016 -# kalvn , 2014 -# Sébastien Fievet <_@sebastien-fievet.fr>, 2013 -# Valentin Sandoz , 2018 -# Sébastien Fievet <_@sebastien-fievet.fr>, 2013 +# Marc Antoine THEVENET , 2022 +# Adrien Delhorme, 2023 +# Nicolas PASCAL , 2023 +# a270031086f2a0d3514bc0cb507b48f6, 2023 +# Valentin Sandoz , 2023 +# François Palmier , 2023 +# Florian Delizy , 2023 +# Sylvain Chiron , 2023 +# Fabian Braun , 2023 +# Corentin Bettiol, 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: French (http://www.transifex.com/divio/django-cms/language/fr/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Corentin Bettiol, 2023\n" +"Language-Team: French (https://app.transifex.com/divio/teams/58664/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Tout" @@ -61,13 +38,13 @@ msgid "Title" msgstr "Titre" msgid "The default title" -msgstr "Le titre par défaut" +msgstr "Titre par défaut" msgid "Slug" msgstr "Slug" msgid "The part of the title that is used in the URL" -msgstr "La partie du titre qui doit être utilisée dans l'URL" +msgstr "Partie du titre qui doit être utilisée dans l'URL" msgid "Menu Title" msgstr "Titre du menu" @@ -80,7 +57,9 @@ msgstr "Titre de la page" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Écrase le titre affiché dans l'onglet du navigateur et dans les favoris/marque-pages" +msgstr "" +"Écrase le titre affiché dans l'onglet du navigateur et dans les " +"favoris/marque-pages" msgid "Description meta tag" msgstr "Balise méta de description" @@ -88,14 +67,11 @@ msgstr "Balise méta de description" msgid "A description of the page used by search engines." msgstr "Une description de la page utilisée par les moteurs de recherche." -msgid "Slug must not be empty." -msgstr "Un slug doit être indiqué." - msgid "Page type" msgstr "Type de page" msgid "Page Types" -msgstr "Types de page" +msgstr "Types de pages" msgid "Overwrite URL" msgstr "Écraser l'URL" @@ -103,35 +79,32 @@ msgstr "Écraser l'URL" msgid "Keep this field empty if standard path should be used." msgstr "Laissez ce champ vide pour utiliser l'URL par défaut." -#| msgid "softroot" msgid "Soft root" -msgstr "" +msgstr "Racine virtuelle" msgid "All ancestors will not be displayed in the navigation" -msgstr "Les parents n'appaîtront pas dans le menu" +msgstr "Les ascendants n'appaîtront pas dans le menu" msgid "Redirect" -msgstr "Redirection" +msgstr "Rediriger" msgid "Redirects to this URL." msgstr "Redirige vers cette URL." msgid "Start typing..." -msgstr "Commencez à taper..." +msgstr "Commencez à écrire..." msgid "menu visibility" -msgstr "visibilité du menu" +msgstr "visibilité dans le menu" msgid "limit when this page is visible in the menu" -msgstr "limite quand cette page est visible dans le menu" +msgstr "Limite la visibilité de la page dans le menu" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "Options de l’URL" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "Options du menu" msgid "Application" msgstr "Application" @@ -143,20 +116,21 @@ msgid "Application configurations" msgstr "Configurations de l'application" msgid "A page with this reverse URL id exists already." -msgstr "Une page avec cet identifiant existe déjà." +msgstr "Une page avec cet identifiant inversé existe déjà." -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "Valeur de configuration d'application non valide" +msgstr "Configuration d'application incorrecte" msgid "An application instance using this configuration already exists." -msgstr "Il existe déjà une instance d'application utilisant cette configuration." +msgstr "" +"Une autre instance d'application utilisant cette configuration à déjà été " +"crée." msgid "An application instance with this name already exists." msgstr "Il existe déjà une instance d'application portant ce nom." msgid "You can't move the home page inside another page" -msgstr "Vous ne pouvez pas déplacer la page d'accueil dans une autre page" +msgstr "Vous ne pouvez pas déplacer la page d′accueil sous une autre page" msgid "Yes" msgstr "Oui" @@ -168,7 +142,7 @@ msgid "user" msgstr "utilisateur" msgid "can_view" -msgstr "peut_voir" +msgstr "can_view" msgid "Add" msgstr "Ajouter" @@ -182,61 +156,77 @@ msgstr "Supprimer" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Un utilisateur ne peut pas créer de page s'il n'a pas l'autorisation de modifier la page créée. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas créer de page s'il n'a pas l'autorisation de " +"modifier la page créée. La permission de modifier est requise." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Un utilisateur ne peut pas supprimer une page s'il n'a pas l'autorisation de modifier la page. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas supprimer une page s'il n'a pas l'autorisation de" +" modifier la page. La permission de modifier est requise." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Un utilisateur ne peut pas définir les permissions liées aux pages s'il n'a pas l'autorisation de modifier des pages. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas définir les permissions liées aux pages s'il n'a " +"pas l'autorisation de modifier des pages. La permission de modifier est " +"requise." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Un utilisateur ne peut pas supprimer les permissions liées aux pages s'il n'a pas l'autorisation de modifier des pages. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas supprimer les permissions liées aux pages s'il " +"n'a pas l'autorisation de modifier des pages. La permission de modifier est " +"requise." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Un utilisateur ne peut pas créer de permissions liées aux pages s'il n'a pas l'autorisation de modifier les permissions crées. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas créer de permissions liées aux pages s'il n'a pas" +" l'autorisation de modifier les permissions crées. La permission de modifier" +" est requise." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Un utilisateur ne peut pas supprimer les permissions liées aux pages s'il n'a pas l'autorisation de modifier les permissions. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas supprimer les permissions liées aux pages s'il " +"n'a pas l'autorisation de modifier les permissions. La permission de " +"modifier est requise." #, python-format msgid "Invalid plugin type '%s'" -msgstr "Type de plugin invalide : « %s »" +msgstr "Type de bloc invalide : « %s »" msgid "Language must be set to a supported language!" msgstr "Une langue disponible doit être sélectionnée !" msgid "Parent plugin language must be same as language!" -msgstr "Le plugin parent doit être dans la langue sélectionnée !" +msgstr "Le bloc parent doit être dans la langue sélectionnée !" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Le texte de substitution du plugin parent doit être identique au texte de substitution !" +msgstr "" +"Le texte de substitution du bloc parent doit être identique au texte de " +"substitution !" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "La position du bloc doit être supérieure à %(position)d " msgid "Advanced Settings" msgstr "Paramètres avancés" msgid "The page is not eligible to be home." -msgstr "La page ne peut pas être la page d'accueil." +msgstr "La page ne peut pas être la page d′accueil." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "Le(La) %(name)s\"%(obj)s\" à été supprimé." #, python-format msgid "Cannot delete %(name)s" @@ -251,16 +241,19 @@ msgstr "L'objet %(name)s de clé primaire %(key)r n'existe pas." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Erreur ! Vous n'avez pas la permission de déplacer cette page. Veuillez actualiser la page" +msgstr "" +"Erreur ! Vous n'avez pas la permission de déplacer cette page. Veuillez " +"actualiser la page" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Erreur! Vous n'avez pas les permission pour copier la page" msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Erreur ! La page que vous êtes en train de coller n'est traduite dans aucun des langages configurés du site cible." +msgstr "" +"Erreur ! La page que vous êtes en train de coller n'est traduite dans aucun " +"des langages configurés du site cible." msgid "You do not have permission to edit this page" msgstr "Vous n'avez pas la permission de modifier cette page" @@ -284,24 +277,35 @@ msgid "The template was successfully changed" msgstr "Le modèle a été modifié avec succès" msgid "You do not have permission to copy these plugins." -msgstr "Vous n’avez pas la permission de copier ces plugins." +msgstr "Vous n’avez pas la permission de copier ces blocs." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Vous n'avez pas la permission de supprimer cette page" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Les titres et les plugins en %(language)s ont été supprimés" +msgstr "Les titres et les blocs en %(language)s ont été supprimés" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Vous n'avez pas la permission de changer le statut « Apparaître dans le menu » de cette page" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "Contenu public" + +msgid "Empty" +msgstr "Vide" + +msgid "Create Content" +msgstr "Ajouter du contenu" msgid "View restriction" -msgstr "Voir la restriction" +msgstr "Restriction d'affichage" msgid "View restrictions" -msgstr "Voir les restrictions" +msgstr "Restrictions d'affichage" #, python-format msgid "Field %s not found" @@ -311,39 +315,35 @@ msgid "You do not have permission to edit this item" msgstr "Vous n'avez pas la permission de modifier cet élément" msgid "You do not have permission to add a plugin" -msgstr "Vous n'avez pas la permission d'ajouter un plugin" +msgstr "Vous n'avez pas la permission d'ajouter un bloc" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Vous n'êtes pas autorisé à copier cet élément de substitution." msgid "Plugin not found" -msgstr "Plugin non trouvé" +msgstr "Bloc non trouvé" msgid "You do not have permission to edit this plugin" -msgstr "Vous n'avez pas la permission de modifier ce plugin" +msgstr "Vous n'avez pas la permission de modifier ce bloc" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" -msgstr "Vous n'avez pas l'autorisation de coller ce plugin" +msgstr "Vous n'avez pas l'autorisation de coller ce bloc" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Vous n'êtes pas autorisé à coller cet élément de substitution." msgid "You have no permission to move this plugin" -msgstr "Vous n’avez pas la permission de déplacer ce plugin" +msgstr "Vous n’avez pas la permission de déplacer ce bloc" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" -msgstr "Vous n'êtes pas autorisé à couper ce plugin" +msgstr "Vous n'êtes pas autorisé à couper ce bloc" msgid "You do not have permission to delete this plugin" -msgstr "Vous n’avez pas la permission de supprimer ce plugin" +msgstr "Vous n’avez pas la permission de supprimer ce bloc" #, python-format msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." -msgstr "Le plugin %(name)s « %(obj)s » a été supprimé avec succès." +msgstr "Le bloc %(name)s « %(obj)s » a été supprimé avec succès." msgid "You do not have permission to clear this placeholder" msgstr "Vous n’avez pas la permission de vider cette zone" @@ -364,6 +364,52 @@ msgstr "Permissions relatives aux utilisateurs et groupes" msgid "Page permissions management" msgstr "Gestion des permissions relatives aux pages" +msgid "Actions" +msgstr "Actions" + +msgid "Empty content" +msgstr "Contenu vide" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "%(object_name)s Propriétés" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "Ajouter un nouveau %(object_name)s" + +msgid "Add content" +msgstr "Ajouter du contenu" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" +"Le contenu pour la langue courante a été modifié. Cliquer sur \"Précédent\" " +"pour revenir au formulaire et sauvegarder les modifications. Cliquer sur " +"\"Ok\" pour annuler les modifications." + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Prévisualiser" + +msgid "Settings" +msgstr "Paramètres" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" +"Langue invalide : %(value)s. Ce formulaire ne peut être validé. Essayez de " +"changer de langue." + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Aucune accroche enregistrée « %r » trouvée" @@ -384,7 +430,9 @@ msgstr "Créer un alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Ceci est une référence liée ; le contenu ne peut être modifié que sur la page %(page_title)s." +msgstr "" +"Ceci est une référence liée ; le contenu ne peut être modifié que sur la " +"page %(page_title)s." msgid "Create" msgstr "Créer" @@ -392,9 +440,6 @@ msgstr "Créer" msgid "Edit" msgstr "Modifier" -msgid "Preview" -msgstr "Prévisualiser" - msgid "Structure" msgstr "Structure" @@ -438,26 +483,22 @@ msgstr "Se déconnecter" msgid "Language" msgstr "Langue" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Ajouter une traduction" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Supprimer une traduction" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" -msgstr "Copier tous les plugins" +msgstr "Copier tous les blocs" #, python-format msgid "from %s" msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" -msgstr "Êtes-vous sûr de vouloir copier tous les plugins des %s?" +msgstr "Êtes-vous sûr de vouloir copier tous les blocs des %s?" msgid "Pages" msgstr "Pages" @@ -465,7 +506,6 @@ msgstr "Pages" msgid "Page" msgstr "Page" -#| msgid "Create" msgid "Create Page" msgstr "Créer une page" @@ -512,26 +552,22 @@ msgid "Select a valid page" msgstr "Choisissez une page valide" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "La page %(conflict_page)s a le même url \"%(url)s\" que la page actuelle%(instance)s." +msgstr "" +"La page %(conflict_page)s a le même url \"%(url)s\" que la page " +"actuelle%(instance)s." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "La page %(conflict_page)s a le même url \"%(url)s\" que la page actuelle." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Facultatif. Si indiqué, sera automatiquement ajouté dans un nouveau plugin texte." +msgstr "" +"Facultatif. Si indiqué, sera automatiquement ajouté dans un nouveau bloc " +"texte." msgid "Provide a title for the new page." msgstr "Fournit un titre à la nouvelle page." @@ -539,7 +575,14 @@ msgstr "Fournit un titre à la nouvelle page." msgid "Leave empty for automatic slug, or override as required." msgstr "Laissez vide pour un slug automatique, ou écrasez si nécessaire." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" +"Le slug ne peut être auto-généré. Spécifiez-le manuellement, s'il vous " +"plaît." + +msgid "Please provide a valid slug." +msgstr "Saisissez un slug valide." + msgid "You don't have the permissions required to add a page." msgstr "Vous n'avez pas la permission nécessaire pour créer une page." @@ -553,7 +596,7 @@ msgid "language" msgstr "langue" msgid "plugin_name" -msgstr "nom du plugin" +msgstr "nom_du_bloc" msgid "creation date" msgstr "date de création" @@ -636,17 +679,67 @@ msgstr "S'applique sur" msgid "page" msgstr "page" +msgid "no limit set" +msgstr "aucune limite fixée" + +msgid "for logged in users only" +msgstr "pour les utilisateurs enregistrés uniquement" + +msgid "for anonymous users only" +msgstr "pour les utilisateurs anonymes uniquement" + +msgid "Inherit from parent page" +msgstr "Hériter de la page parente" + +msgid "Deny" +msgstr "Refuser" + +msgid "Only this website" +msgstr "Uniquement ce site web" + +msgid "Allow" +msgstr "Autoriser" + +msgid "title" +msgstr "titre" + +msgid "overwrite the title (html title tag)" +msgstr "remplacer le titre de la page (balise HTML « title »)" + +msgid "overwrite the title in the menu" +msgstr "remplacer le titre dans le menu" + +msgid "description" +msgstr "description" + +msgid "The text displayed in search engines." +msgstr "Le texte affiché dans les moteurs de recherche." + +msgid "redirect" +msgstr "redirection" + +msgid "The template used to render the content." +msgstr "Le modèle utilisé pour l'affichage du contenu." + +msgid "page content" +msgstr "contenu de la page" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "par défaut" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Identifiant unique utilisé par la balise de modèle page_url pour créer un lien vers cette page" +msgstr "" +"Identifiant unique utilisé par la balise de modèle page_url pour créer un " +"lien vers cette page" msgid "pages" msgstr "pages" -msgid "default" -msgstr "par défaut" - msgid "slug" msgstr "slug" @@ -672,37 +765,48 @@ msgid "on page level" msgstr "au niveau de la page" msgid "frontend view restriction" -msgstr "restriction de vue client" +msgstr "restriction d'affichage client" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Veuillez sélectionner un utilisateur ou un groupe." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Un utilisateur ne peut pas publier une page s'il n'a pas l'autorisation de modifier la page. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas publier une page s'il n'a pas l'autorisation de " +"modifier la page. La permission de modifier est requise." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Un utilisateur ne peut pas modifier les paramètres avancés d'une page s'il n'a pas l'autorisation de modifier la page. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas modifier les paramètres avancés d'une page s'il " +"n'a pas l'autorisation de modifier la page. La permission de modifier est " +"requise." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Un utilisateur ne peut pas modifier les permissions liées à une page s'il n'a pas l'autorisation de modifier la page. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas modifier les permissions liées à une page s'il " +"n'a pas l'autorisation de modifier la page. La permission de modifier est " +"requise." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Un utilisateur ne peut pas déplacer une page s'il n'a pas l'autorisation de modifier la page. La permission de modifier est requise." +msgstr "" +"Un utilisateur ne peut pas déplacer une page s'il n'a pas l'autorisation de " +"modifier la page. La permission de modifier est requise." msgid "can recover any deleted page" msgstr "peut restaurer n'importe quelle page supprimée" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Si aucun n'est selectionné, les permissions de l'utilisateur sont valables sur tous les sites." +msgstr "" +"Si aucun n'est selectionné, les permissions de l'utilisateur sont valables " +"sur tous les sites." msgid "Page global permission" msgstr "Permissions globales de la page" @@ -716,7 +820,9 @@ msgstr "Permissions de la page" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "La permission d'ajouter une page nécessite aussi l'accès aux descendants, sinon les pages ajoutées ne pourront pas être modifiées par leur créateur." +msgstr "" +"La permission d'ajouter une page nécessite aussi l'accès aux descendants, " +"sinon les pages ajoutées ne pourront pas être modifiées par leur créateur." msgid "User (page)" msgstr "Utilisateur (page)" @@ -760,7 +866,9 @@ msgstr "nom du bloc statique" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nom descriptif pour identifier ce bloc statique. N'est pas visible par les utilisateurs." +msgstr "" +"Nom descriptif pour identifier ce bloc statique. N'est pas visible par les " +"utilisateurs." msgid "placeholder code" msgstr "code du bloc" @@ -783,45 +891,6 @@ msgstr "blocs statiques" msgid "A static placeholder with the same site and code already exists" msgstr "Un bloc statique avec le même site et le même code existe déjà" -msgid "for logged in users only" -msgstr "pour les utilisateurs enregistrés uniquement" - -msgid "for anonymous users only" -msgstr "pour les utilisateurs anonymes uniquement" - -msgid "Inherit from parent page" -msgstr "Hériter de la page parente" - -msgid "Deny" -msgstr "Refuser" - -msgid "Only this website" -msgstr "Uniquement ce site web" - -msgid "Allow" -msgstr "Autoriser" - -msgid "title" -msgstr "titre" - -msgid "overwrite the title (html title tag)" -msgstr "remplacer le titre de la page (balise HTML « title »)" - -msgid "overwrite the title in the menu" -msgstr "remplacer le titre dans le menu" - -msgid "description" -msgstr "description" - -msgid "The text displayed in search engines." -msgstr "Le texte affiché dans les moteurs de recherche." - -msgid "redirect" -msgstr "redirection" - -msgid "The template used to render the content." -msgstr "Le modèle utilisé pour l'affichage du contenu." - msgid "Advanced options" msgstr "Paramètres avancés" @@ -829,75 +898,64 @@ msgid "Generic" msgstr "Générique" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "Le %(name)s « %(obj)s » a bien été modifié." msgid "There are no further settings for this plugin. Please press save." -msgstr "Il n'y a pas d'autres réglages pour ce plugin. Cliquez sur enregistrer." +msgstr "Il n'y a pas d'autres réglages pour ce bloc. Cliquez sur enregistrer." msgid "Moved" -msgstr "" +msgstr "Déplacé" -#| msgid "Change" msgid "Changed" msgstr "Modifié" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "Supprimé" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "" +msgstr "La traduction de la page a été ajoutée." -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "" +msgstr "La traduction de la page a été modifiée." -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "" +msgstr "La traduction de la page a été supprimée." -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "" +msgstr "Bloc ajouté" -#| msgid "Change" msgid "Changed Plugin" -msgstr "" +msgstr "Bloc modifié" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "" +msgstr "Bloc déplacé" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "" +msgstr "Bloc supprimé" -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "" +msgstr "Couper le plugin" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "\"Coller\" le bloc" -#| msgid "static placeholder" msgid "Paste to Placeholder" -msgstr "" +msgstr "Coller la zone" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "" +msgstr "Bloc ajouté au placeholder depuis le presse-papier" -#| msgid "Placeholder" msgid "Cleared Placeholder" -msgstr "" +msgstr "Placeholder vidé" msgid "Save" msgstr "Enregistrer" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" +"Certains champs ne peuvent être modifiés puisqu'ils sont en lecture seule." + #, python-format msgid "Log in to administration here." msgstr "Identifiez-vous à l'administration." @@ -912,9 +970,8 @@ msgstr "Nom d'utilisateur :" msgid "Password:" msgstr "Mot de passe :" -#| msgid "Add Page" msgid "Add a page" -msgstr "Ajouter une page" +msgstr "Ajouter une Page" msgid "Change a page" msgstr "Modifier une page" @@ -929,6 +986,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "Veuillez corriger l'erreur suivante." msgstr[1] "Veuillez corriger les erreurs suivantes." +msgstr[2] "Veuillez corriger les erreurs suivantes." msgid "All permissions" msgstr "Toutes les permissions" @@ -993,9 +1051,11 @@ msgstr "Couper" msgid "Paste" msgstr "Coller" -#| msgid "Save as new" msgid "Set as home" -msgstr "Défini comme page d'accueil" +msgstr "Défini comme page d′accueil" + +msgid "Permissions" +msgstr "Permissions" msgid "is restricted" msgstr "est restreint" @@ -1003,6 +1063,9 @@ msgstr "est restreint" msgid "last change by" msgstr "dernière modification par" +msgid "last change on" +msgstr "Dernnière modification le" + msgid "meta" msgstr "méta" @@ -1012,7 +1075,6 @@ msgstr "Liste de pages" msgid "Search" msgstr "Rechercher" -#| msgid "Page Title" msgid "Page Tree" msgstr "Arborescence des pages" @@ -1024,19 +1086,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nRestaurer %(name)s supprimé" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Restaurer %(name)s supprimé" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navigation principale" -#| msgid "Actions" msgid "Options" msgstr "Options" @@ -1044,7 +1100,9 @@ msgid "Successfully moved" msgstr "Déplacement réussi" msgid "Changes within the tree might require a refresh." -msgstr "Les modifications dans l'arborescence peuvent nécessiter un rafraîchissement." +msgstr "" +"Les modifications dans l'arborescence peuvent nécessiter un " +"rafraîchissement." msgid "Error:" msgstr "Erreur :" @@ -1052,7 +1110,10 @@ msgstr "Erreur :" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Cette page ne peut pas être copiée car une application y est attachée. Consultez les Paramètres avancés de la page pour gérer les accroches d'application." +msgstr "" +"Cette page ne peut pas être copiée car une application y est attachée. " +"Consultez les Paramètres avancés de la page pour gérer les accroches " +"d'application." msgid "Are you sure you want to § this page?" msgstr "Êtes-vous sûr(e) de vouloir § cette page ?" @@ -1060,7 +1121,6 @@ msgstr "Êtes-vous sûr(e) de vouloir § cette page ?" msgid "Reload" msgstr "Actualiser" -#| msgid "New Page" msgid "New node" msgstr "Nouveau nœud" @@ -1074,17 +1134,17 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nIl n'y a pas encore %(object)s.\n
    \nAjouter %(object)s maintenant." +msgstr "" +"\n" +"Il n'y a pas encore %(object)s.\n" +"
    \n" +"Ajouter %(object)s maintenant." msgid "Copy options" msgstr "Options de copie" @@ -1098,30 +1158,15 @@ msgstr "Fermer" msgid "Legend" msgstr "Légende" -#| msgid "published" -msgid "Published" -msgstr "Publié" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Dépublié" - -msgid "Empty" -msgstr "Vide" - -#| msgid "in menu" msgid "In menu" msgstr "Dans le menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Pas dans le menu" -#| msgid "New page" msgid "View page" msgstr "Voir la page" -#| msgid "softroot" msgid "Softroot" msgstr "Racine" @@ -1138,18 +1183,24 @@ msgstr "dans le menu" msgid "not in menu" msgstr "pas dans le menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Paramètres de la page (Maj+clic pour les paramètres avancés)" -msgid "Permissions" -msgstr "Permissions" +msgid "This page has no preview!" +msgstr "Cette page n'a pas d'aperçu !" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "En cours de redirection vers :" msgid "Clipboard" msgstr "Presse-papiers" msgid "Add plugin" -msgstr "ajouter un plugin" +msgstr "ajouter un bloc" msgid "Copy all" msgstr "Copier tout" @@ -1161,7 +1212,7 @@ msgid "Empty all" msgstr "Tout enlever" msgid "Filter plugins..." -msgstr "Filtrer les plugins…" +msgstr "Filtrer les blocs…" msgid "This is a static placeholder" msgstr "Ceci est un espace réservé statique" @@ -1173,27 +1224,26 @@ msgid "Collapse all" msgstr "Tout réduire" msgid "You cannot add plugins to this plugin." -msgstr "Vous ne pouvez pas ajouter de plugins à ce plugin." +msgstr "Vous ne pouvez pas ajouter de plugins à ce bloc." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Ce plugin ne peut pas être déplacé ou modifié en dehors de son parent" +msgstr "Ce bloc ne peut pas être déplacé ou modifié en dehors de son parent" msgid "Clipboard is empty." msgstr "Le presse-papiers est vide." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "Ce plugin n'accepte pas des plugins imbriqués de ce type." +msgstr "Ce bloc n'accepte pas des plugins imbriqués de ce type." msgid "This plugin cannot have nested plugins." -msgstr "Ce plugin ne peut pas avoir de plugins imbriqués." +msgstr "Ce bloc ne peut pas avoir de plugins imbriqués." msgid "Highlight" msgstr "Surligner" msgid "Available plugins" -msgstr "Plugin disponibles" +msgstr "Blocs disponibles" -#| msgid "Structure" msgid "Toggle structure" msgstr "Afficher/masquer la structure" @@ -1201,55 +1251,53 @@ msgid "Login" msgstr "Connexion" msgid "Add plugin to" -msgstr "Ajouter le plugin à" +msgstr "Ajouter le bloc à" msgid "More" msgstr "Plus" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Version de développement utilisant django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Version de développement utilisant django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Annuler" msgid "The following error occured:" -msgstr "L\\'erreur suivante est survenue:" +msgstr "L'erreur suivante est survenue:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Action réussie !" msgid "Are you sure you want to delete this plugin?" -msgstr "Êtes-vous sûr de vouloir supprimer ce plugin ?" +msgstr "Êtes-vous sûr de vouloir supprimer ce bloc ?" msgid "Are you sure you want to publish this page?" msgstr "Êtes-vous sûr de vouloir publier cette page ?" msgid "Plugin will be added here" -msgstr "Le plugin sera ajouté ici" +msgstr "Le bloc sera ajouté ici" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Vous avez effectué des modifications non sauvegardées." -#| msgid "Loading..." msgid "Loading" msgstr "Chargement" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Êtes-vous sûr(e) de vouloir abandonner ces modifications ?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Le formulaire n'a pas pu être chargé. Veuillez vérifier que le serveur est en fonctionnement." +msgstr "" +"Le formulaire n'a pas pu être chargé. Veuillez vérifier que le serveur est " +"en fonctionnement." -#| msgid "Notify user" msgid "Most used" msgstr "Fréquemment utilisé" @@ -1259,10 +1307,12 @@ msgstr "Raccourcis" msgid "The page was changed in the meantime, reloading..." msgstr "La page a été entre-temps changée, rechargement..." +msgid "CMS-wide Shortcuts" +msgstr "Raccourcis clavier du CMS" + msgid "Bring up this help dialog" msgstr "Afficher cette fenêtre d'aide" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Fermer/annuler" @@ -1270,7 +1320,7 @@ msgid "Toggle structure mode" msgstr "Mode structure" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "Passer en mode structure et surligner le plugin pointé" +msgstr "Passer en mode structure et surligner le bloc pointé" msgid "Open \"Create\" dialog" msgstr "Ouvrir le formulaire « Créer »" @@ -1278,32 +1328,29 @@ msgstr "Ouvrir le formulaire « Créer »" msgid "Focus on Toolbar" msgstr "Donner le focus à la barre d'outils" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Donner le focus aux blocs" msgid "Move to next/previous element" msgstr "Se déplacer vers l'élément suivant/précédent" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" -msgstr "Donner le focus aux plugins de bloc" +msgstr "Donner le focus aux blocs de placeholder" -#| msgid "Add plugin" msgid "Edit plugin" -msgstr "Modifier le plugin" +msgstr "Modifier le bloc" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Ouvrir le menu d'actions" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Développer/réduire" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Échec de la connexion. Veuillez vérifier votre saisie et réessayer." +msgstr "" +"Échec de la connexion. Veuillez vérifier votre saisie et " +"réessayer." msgid "Double-click to edit" msgstr "Double-cliquez pour modifier" @@ -1324,13 +1371,7 @@ msgid "Maximize" msgstr "Maximiser" msgid "Drop a plugin here" -msgstr "Déposez un plugin ici" - -msgid "This page has no preview!" -msgstr "Cette page n'a pas d'aperçu !" - -msgid "It is being redirected to:" -msgstr "En cours de redirection vers :" +msgstr "Déposez un bloc ici" msgid "Installation successful!" msgstr "Installation réussie !" @@ -1346,14 +1387,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Bienvenue sur django CMS version %(cms_version)s.\n " +msgstr "" +"\n" +" Bienvenue sur django CMS version %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Ajouter la première page au système pour continuer.\n " +msgstr "" +"\n" +" Ajouter la première page au système pour continuer.\n" +" " #, python-format msgid "" @@ -1361,7 +1408,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript semble être désactivé, veuillez donc\n ajouter une page manuellement.\n " +msgstr "" +"\n" +" JavaScript semble être désactivé, veuillez donc\n" +" ajouter une page manuellement.\n" +" " msgid "Installation Notes" msgstr "Notes d’installation" @@ -1372,32 +1423,16 @@ msgstr "Assistance" msgid "Documentation" msgstr "Documentation" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Si vous ne voyez pas le logo de django CMS au sommet de la page, assurez-vous d'avoir correctement lié le dossier static/cms à vos dossiers statiques" - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Si vous ne voyez pas le logo de django CMS au sommet de la page, assurez-vous d'avoir correctement lié le dossier static/cms à vos dossiers statiques" + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1405,7 +1440,10 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Vous voyez ce message parce que vous avet DEBUG = True dans le fichier paramètres de django et que vous n'avez pas encore ajouté de pages.\n

    " +msgstr "" +"\n" +"

    Vous voyez ce message parce que vous avez DEBUG = True dans le fichier paramètres de django et que vous n'avez pas encore ajouté de page.\n" +"

    " msgid "Welcome to django CMS" msgstr "Bienvenue sur django CMS" @@ -1417,17 +1455,14 @@ msgid "Back" msgstr "Retour" msgid "Please choose an option from below to proceed to the next step." -msgstr "Veuillez choisir une option ci-dessous pour passer à l’étape suivante." +msgstr "" +"Veuillez choisir une option ci-dessous pour passer à l’étape suivante." msgid "Next" msgstr "Suivant" -msgid "no content" -msgstr "aucun contenu" - -#| msgid "no content" -msgid "has contents" -msgstr "" +msgid "Unknown" +msgstr "Inconnu" #, python-format msgid "Page not found on %(domain)s" @@ -1437,7 +1472,10 @@ msgstr "Page introuvable sur %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Une balise de modèle n'a pas pu trouver la page avec les arguments de sélection « %(page_lookup)s ». L'URL de la demande était la suivante : http://%(host)s%(path)s" +msgstr "" +"Une balise de modèle n'a pas pu trouver la page avec les arguments de " +"sélection « %(page_lookup)s ». L'URL de la demande était la suivante : " +"http://%(host)s%(path)s" msgid "Two columns" msgstr "Deux colonnes" @@ -1450,7 +1488,9 @@ msgstr "nom d'utilisateur" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Requis. 300 caractères minimum. Lettres, nombres et caractères @/./+/-/_ autorisés." +msgstr "" +"Requis. 300 caractères minimum. Lettres, nombres et caractères @/./+/-/_ " +"autorisés." msgid "Enter a valid username." msgstr "Entrez un nom d'utilisateur valide." @@ -1462,7 +1502,8 @@ msgid "staff status" msgstr "état de l'équipe" msgid "Designates whether the user can log into this admin site." -msgstr "Précise si l'utilisateur peut se connecter à ce site d'administration." +msgstr "" +"Précise si l'utilisateur peut se connecter à ce site d'administration." msgid "active" msgstr "actif" @@ -1470,7 +1511,9 @@ msgstr "actif" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Précise si l'utilisateur doit être considéré comme actif. Décochez ceci plutôt que de supprimer le compte." +msgstr "" +"Précise si l'utilisateur doit être considéré comme actif. Décochez ceci " +"plutôt que de supprimer le compte." msgid "users" msgstr "utilisateurs" @@ -1505,7 +1548,6 @@ msgstr "Articles" msgid "Sample App" msgstr "Exemple d'application" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Exemple d'Application avec configuration" @@ -1515,9 +1557,8 @@ msgstr "Exemple d'application avec permissions exclues" msgid "Sample App 2" msgstr "Exemple d'application 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Application d'exemple 3" +msgstr "Exemple d'application 2" msgid "Namespaced App" msgstr "Application dans un espace de noms" @@ -1552,9 +1593,8 @@ msgstr "Menu statique 2" msgid "Static Menu3" msgstr "Menu statique 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Menu statique 4" +msgstr "Menu statique" msgid "Category" msgstr "Catégorie" @@ -1572,7 +1612,8 @@ msgid "Change Category" msgstr "Modifier une catégorie" msgid "Thanks for spending some quality time with the Web site today." -msgstr "Merci d'avoir partagé un moment privilégié avec le site web aujourd'hui." +msgstr "" +"Merci d'avoir partagé un moment privilégié avec le site web aujourd'hui." msgid "Inherit the template of the nearest ancestor" msgstr "Hériter du modèle du parent le plus proche" @@ -1581,14 +1622,12 @@ msgid "UserSettings" msgstr "Paramètres des utilisateurs" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "Ajouter le plugin au bloc « %(placeholder_label)s »" +msgstr "Ajouter le bloc au placeholder « %(placeholder_label)s »" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" -msgstr "Ajouter le plugin à %(plugin_name)s" +msgstr "Ajouter le bloc à %(plugin_name)s" msgid "CMS - your user account was created." msgstr "CMS — votre compte utilisateur a été créé." @@ -1598,23 +1637,28 @@ msgstr "CMS — votre compte utilisateur a été modifié." #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "Cette zone contient déjà le nombre maximum de plugins (%s)." +msgstr "Cette zone contient déjà le nombre maximum de blocs (%s)." #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Cette zone contient déjà le nombre maximum (%(limit)s) de plugins autorisés %(plugin_name)s ." +msgstr "" +"Cette zone contient déjà le nombre maximum (%(limit)s) de blocs autorisés " +"%(plugin_name)s ." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "Impossible de trouver le module CMS_REQUEST_IP_RESOLVER spécifié : « {0} »." +msgstr "" +"Impossible de trouver le module CMS_REQUEST_IP_RESOLVER spécifié : « {0} »." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Impossible de trouver la fonction CMS_REQUEST_IP_RESOLVER spécifiée : « {0} » dans le module « {1} »." +msgstr "" +"Impossible de trouver la fonction CMS_REQUEST_IP_RESOLVER spécifiée : " +"« {0} » dans le module « {1} »." #, python-format msgid "Create a new %s instance." @@ -1623,394 +1667,3 @@ msgstr "Créer une nouvelle instance de %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Un assistant a déjà été enregistré pour le modèle : %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fr/LC_MESSAGES/djangojs.mo b/cms/locale/fr/LC_MESSAGES/djangojs.mo index fc1f5d26cfde6c69b33141d774012d12c8e5f19e..6709733a622ddbbc9aebc9f9f60270edb1746b63 100644 GIT binary patch delta 342 zcmcb~@}0H*o)F7a1|VPsVi_QI0b+I_&H-W&=m278AnpWW4j?`YrLO^Lkh=RoyquAN z;W?1@0pflph`KvKniI%>3Zy~m-UDf%GB98PlFUF1w3CT}X`-i(WIDAd#_fLVr` z3id#*6_BS05?50LvQ!le4Zr}R)?UF7sK974H5$-*_66D~+D`5_1 F005|BOg8`k delta 183 zcmey)dXvTTo)F7a1|VPpVi_RT0b*7lwgF-g2moSdAPxlL3PuJ7kYX<&<^yT~a>4q5 z6a&M=MxTk#y?HHk4GeV+4HXQ{tc)!t+cS!51SFQ`, 2012-2013 -# Frigory33 , 2016 +# Sylvain Chiron , 2016 # chrisglass , 2011 +# Fabian Braun , 2023 +# François Palmier , 2023 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: French (http://www.transifex.com/divio/django-cms/language/fr/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: French (http://app.transifex.com/divio/django-cms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "pathname" + +msgid "urnpath" +msgstr "urnpath" + +msgid "reserved" +msgstr "réservé" msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "Êtes-vous sûr·e de vouloir changer d'onglet sans enregistrer la page ?" +msgstr "Êtes-vous sûr·e de vouloir changer d′onglet sans enregistrer la page ?" diff --git a/cms/locale/fr_CA/LC_MESSAGES/django.mo b/cms/locale/fr_CA/LC_MESSAGES/django.mo index 65d335b7cf655a86aac62bd2cac687fda475cb07..ee6c44a7de4c1b7c4902e0a54df7938ee7e47767 100644 GIT binary patch delta 158 zcmdnQyoGs!3S-qoRXrBnn9cz=#>;D z<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOcr76@-VhmD99--O3bm<$WySjRWMMf nsZjv43^f((fm|yfPZ1=prUqoG0<8iAh+2CEL!bg9Yc2)=6ACF$ delta 155 zcmdnOyoq^&3S-4YRXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6CZVn7+EV6, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: French (Canada) (http://www.transifex.com/divio/django-cms/language/fr_CA/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: French (Canada) (https://app.transifex.com/divio/teams/58664/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr_CA\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -896,6 +917,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "" msgstr[1] "" +msgstr[2] "" msgid "All permissions" msgstr "" @@ -960,16 +982,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1006,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1188,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1511,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/fr_CA/LC_MESSAGES/djangojs.mo b/cms/locale/fr_CA/LC_MESSAGES/djangojs.mo index 3f1f609ab518c35b12531b093a608d763cdc6a45..b0f7c4682d896ad0a7d85e46d54ec1bdcb4893b4 100644 GIT binary patch delta 141 zcmX@e{F-@!3ggC!s`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O zr50pl<|OK6mP|aa$(&eFF!A>$4`XYEf}GN##2j0VJOx`@1p|ee8U--RP*cGk$h89U c6hY!@YCx8%f}sHzK-AhR7y=a-S#vP}0AFDzuK)l5 delta 99 zcmaFOe2{s93S;|3)p%YDT?0d1Lqi2aGb>|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l wL@3`OC9^CuUoSah;!#cJ^78VDA2*2@St}IeloloC*lOe{*eMulT5~Y~09V=|!T\n" -"Language-Team: French (Canada) (http://www.transifex.com/divio/django-cms/language/fr_CA/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: French (Canada) (http://app.transifex.com/divio/django-cms/language/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr_CA\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ga/LC_MESSAGES/django.mo b/cms/locale/ga/LC_MESSAGES/django.mo index 1cb8fff7477be4bcf96ced74eb9a0694fb51ddf2..0e153a1f6479f7e87f2ce530b900ae748f3b78e7 100644 GIT binary patch delta 85 zcmX@fJe_%h3S;an9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*+T4*(t}8PEU# delta 158 zcmbQve3E&B3S<97RXr93XW!t7;kxw(x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^K, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Irish (http://www.transifex.com/divio/django-cms/language/ga/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Irish (https://app.transifex.com/divio/teams/58664/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -963,16 +984,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -982,7 +1008,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -996,17 +1021,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1030,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1044,10 +1060,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,30 +1080,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1108,11 +1105,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1163,7 +1166,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1177,7 +1179,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1189,7 +1190,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1202,15 +1202,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1219,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1229,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1248,26 +1246,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1296,12 +1289,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1342,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1359,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,11 +1361,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1475,7 +1440,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1485,7 +1449,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1522,7 +1485,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1551,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1593,397 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" -#~ msgstr[4] "a848884d0af974a125106fa2043a5716_pl_4" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ga/LC_MESSAGES/djangojs.mo b/cms/locale/ga/LC_MESSAGES/djangojs.mo index 266453e2f03a85a1e3ce5c0cbcb7b20889c36285..6ea6c8c90e77208972ce1b009a64201691398881 100644 GIT binary patch delta 68 zcmcb?e2#g73geWCs`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Yr50pl<|OK6mP|Y^&zx9LF!AGa0Oaf#FaQ7m delta 78 zcmX@de1my{3gf(qs`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQpFalx*jgLY diff --git a/cms/locale/ga/LC_MESSAGES/djangojs.po b/cms/locale/ga/LC_MESSAGES/djangojs.po index 35bd71f9b9b..878926368fe 100644 --- a/cms/locale/ga/LC_MESSAGES/djangojs.po +++ b/cms/locale/ga/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Irish (http://www.transifex.com/divio/django-cms/language/ga/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Irish (http://app.transifex.com/divio/django-cms/language/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ga\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/gl/LC_MESSAGES/django.mo b/cms/locale/gl/LC_MESSAGES/django.mo index 4cdd293dc4b3c07d99b0dcdcba6668df531d2793..0fee563994c5a70cd73c1280d40b7225754b6146 100644 GIT binary patch delta 4329 zcmYk;2~bt_0>|+`bWv0=)D*%eTr2`)xo}xTR5HsXb1SWEA-!x0$`ThvE4-PRxuhXk zmYABFW|-O4Or_GvY|@so8OQcjZLyiA1)BGKZ+hP!=WpW~e)seLpL@=KJ?H9|GtS-{ z_^PjKt>HLK{-ty?CL{zSsBpNWjLF9Y?16V-IF?~|ti~*yiyqvLm*Hvbg`Z<2{(ui) zhdqB^A7gqO6EIB__%kc{;5+l2t?$M#>PJuwzKgkd0x!pqzRvf3P#r~MEMA3aScvL) zHfo>?Z~!jCp12Of>ECSWDj3s-YG|LWA3@!499b0eEvmsEu^)D#2H2B|I*39oS`2C; ziMF0+y&jpdnT%?0I`*P}Q$fLn^{AOOVt-tU{Fx1WXvBL^4YZ>=K7owEoJ0-a3~FnB zvEO&t?=PU*?|p?aao7(-(Tjl?3b_>Wa3ZRKC76z@P%~~v4d6IxYT~;Fu>P48j@b+TLOlZ^(Tb`BL0q+b@(8vy=_VTFpv_1bb4(0rxsHIF} z*xH&x%*HvGjGIs^@*b+AUojs$P#tEld=yPKYM|p$?FFV$P{&oMrD{SAXa%aFwWz&Z zk6MWxs2dO95Ili7*oj$~$~&kPEk?bDtE`7GgZhuC`=Z$&1`;r%DR8fuh#J5w)YClA zxxg&6_2sA^s5Pi9*o}H-j-j^Zr1dk@48KQR|0`<15mat`FQP&;DfNnfSL3?}x zHS$kTBRq$?uoG+fH{rjSM}1Db)6f=c8>)kSI1JxHz32Z%t!RSVX*UJ6fR}0vG1gSnKnhUDKQz4v?V_lHmedmA;eQ>gaO zqT2rr`7NWNtDFu7p!PN%)j=k*dL|!r;WSi-HK>6tMy*sc>iVsyfwZBv;wb7V{}8ou zpQ7HHuTcZ-ME*?Re|&~gNVwYR=xQ86y#RG#Bj(^j)Qp0tnY@FV*-6wuzD0HPCu)HI zK`nK7qH|q;)OCrdcJk3p|7IM8B2LUk&15g?!gkb(e1sb5H>er7u5n(wfv6ehB7K<& z_Iy3+{*|bo;EkwfA!zF#qXvEsyZ-&}q`-r1{>I@rD9IW5ov6L9Ky5*-bqQ*T*Q2&% z8+OBkr~w{94g3@Ajz1wkdgeD&I}ypw^@AnPpGl#hhB8qNk3n5H2{nUq495ki-~5N| z`PWcCrN=Q3JCHe;v=p`zr=SKf7j<8gt?xli_y7j97pEy`gg+s_mc~V^>e!8%Ne+hN z7}U~EwE9rjHK00v3^kD5$e%gK2a`5^Qkf(UL&j)IQRi2tvj4hpFDH88*XYLcsMjQd ze?fG9pfw5gP-UY!9EDn`nW*cUtjkdMuSGqKTTvapih5=~Lrv)SG}b?Y!UazB#PD?I z>FkGUFwvTY`hFy8tBO!7Rg8K~7oZoP!7zLu^;Uh18ptWsGjawq@H}cDu>oqDffu!u zMW{Wy2Q|Vn`+YU`roI?^;2P9GT2TYpW6ytp8o+5(hhL)FJ7ep=peFo>J%62kA9X>v zH462wS`6x$@S>iP38;prV+iV4Oy;#TNA_#k6zK{)Ol^`*bL?|4*IR|2B)y2e$y4Ml zqM^?rE#x|K7rBq@Av(s8I|$oj77(qq4ozV?d4t?ec&Y+m%*$P$&c`^omArPzxiZRA z$Rp$#vW)0BKt_@0NeOwD=vSqg=r~050E||Jqrkx|wXRbCl~nZ9yl7AAiO^9&YRD@@ zoBR;b8W)pHqGJhJMCB%JN0Y-ppF1c$M;^0h zCg5_?NS-G1Nj^y-v&medr}BRCIw>L>$i<@vg;&XKWF;9&y86GCf_|)@AZ{|5Y$7_M z$)jB*V-8~|$+Gnu@p1B`t@B@{uBUDbR@-wI$)m84q}vlS@g?Cc^&S&;2b&E)7g-sf*fpIYy$@z3!!)Yccc zZ}gQ^`fA*x>wR-;+#@RdB`S=XSv^0ath_MI?alONx5UQBCHV_H9$#HuMuYCHtSFzK pQCeH=DXW}US?g&i_f`8nx%qi{Il+qf;vT`X$xns`+fz5Y{tqqGt8)MV delta 4525 zcmZA3dvH|M0mtz}9*_hQBZMdclPe}9BkO+}Anh zo^$Ue7al#cC~~%M!WKjMkPITjdK%NKhcRROXsbe zpau}fs5J6a)U%L*YB(Ep{0`LhZq!VSLRQU8LA5gr^RWh}Vtaq)Uk&_~9ctk3*7JB9 z+y6%THmR(`033{(+Oe32(~*w}@uittk2?Mw4#d5vjz2~X_#|p(zC_*lg-qtZn95aq zg6EdlGf-}=Ks7i6b!Sz`siqz^@F!6NT!VUcI#DyU3$=9ntw&KEpF&-C2Kkt8B7AG) zS5PBNVOUzz3~N4W|7aYAQ&3a73bjNVu@nzu0e**?nE_0fI-G!ISb^$zHFAo13N_$J zClxig3)S&Es3|*+>i7#(Ll;nMdI>cnKccQn=AA3Vfmnf+cqg`F34VZ@;qOteWiIO? zXP{f}|7t2~U>|BkpCfIX^QeJbMLpep_;u3p4Ai!R`oSvTOG{FLdWPnsma5j;gu1R3 z`Iw*arGdYQ(f9uV6LE<$<<|Z@)b(!E z^`&;Z+&Uh$w39KS3#L=iiL>kp^HFQt?iqr296@LY(7Js zcL}xTJ#u3M%S6poF6#VIsDVsCEyZlqL+(Y*Tm$N@i8NEuNY^24nrAQ$51=}F3&-Md z)Ojg+vG@CC)E!l#?qm+?&T3Et31cFzLCxF-)J#8*I&T+pUc|gjMGbw14xYhjcolUg zQ-{PFydO0qRj7f6P!{>1#)^*N}Yggpu^Y7{W!Mv^qXsw=HSl`ug{zPsL(_)+>EFCS zMHd{j9!4Hya}?F!1yl!DP#q@>jonEWCb8{C{S6pp_t&F-Q6s3=a}P2Z=4({DNgUKb z3NfM!hua;CQFk6dElE3Sq}!2SVRHyIg(p#WbP+XxE2uS(FN&FoI&Ubd<8e3%YfuAv z1-ZnWEn@wdO_Mx~ld%N3Niz?%zYTTbtJoV)p@Zj8Z%u+Lw!fb>2m7$U2-R^JYQ`4Y z<1N-FP}gs8G5@JlI@zHP_n;o4zo72yTU3MJV+!g|mS(0mYCyMHhoX*;KrPus)Qmlh zdTp2DaNLB6cntNHeHx*XM&&r_890r6%sIX^kiMSS9TcLbbRuf)W}*f--yZj28rv%| z8P}r*@+@i~yY2puPy_fQs=vrdDr)ew-Ekgu$CvE>AFcW$uJe*muUk6m*(gNKNCm3l z+1LZS3rigx&~H&QHjg|@o+Hda#5_+$<=13qw8sDP*g~e-?V0$1t#^~!T|vD?38aHe zA>GAKWu@IH#Tn#fvW93`qF3sPe=WMfKL^$~QPZa~hm?>*?8Y$kGx05k?}-@RWhTA`Zw#yV)72zPNtEckYAEfL_e1*zan~_8c8M5b25Rn zk*CNca%0)X#uySLKP7swyUSoIdu{(_6&nlfk(aD>)@QJt=xrE5?j|a~A@{06=_Kn( zD_KfZ2FAGl9ll=UhlqN4besF1PUYvsODc$-W|h~;YVxQyZYZ;;A13;%_&ym*RCbeG zvYGszG!wm|`eU_%sLUk?$ue>u*+c(k7rC({vT+ZYPj(Q83?g@tLQ+N2$-5+l%qD9| z7kQDWJWQ68jbsZ^d6lF^Yy2~c@kITbUyw|4g!Cj^$xY-fl1D}ol?^e>6F9`ypT?Q`UO~Xy=qy z+>knNpw{Pv>--_7$y@8o4>|t8!hm;~zt$V}2Lnzh>?$dC4KH^}MvN{kEh?s@-0Ka6T{D}#flz}t9Bdx#+~u!tEiHD&dZSKk_0|Q0 z?&@IU_>PU)+3wLE&+_HV-C)c}~;O9V`3+ WuM_<&^VNDgzA7Bpb*ykl!v6qjI@F~A diff --git a/cms/locale/gl/LC_MESSAGES/django.po b/cms/locale/gl/LC_MESSAGES/django.po index 96b898b79ed..022102ef26d 100644 --- a/cms/locale/gl/LC_MESSAGES/django.po +++ b/cms/locale/gl/LC_MESSAGES/django.po @@ -3,18 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Manuel Alejandro Núñez Liz , 2013 -# Pablo, 2015 -# Pablo, 2015 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Galician (http://www.transifex.com/divio/django-cms/language/gl/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Galician (https://app.transifex.com/divio/teams/58664/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -50,7 +48,8 @@ msgstr "Título da páxina" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobreescribe ó mostrado na parte superior do navegador ou nos bookmarks" +msgstr "" +"Sobreescribe ó mostrado na parte superior do navegador ou nos bookmarks" msgid "Description meta tag" msgstr "" @@ -58,9 +57,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "Unha descrición da páxina usada polos motores de busca." -msgid "Slug must not be empty." -msgstr "El slug no puede estar en blanco." - msgid "Page type" msgstr "Tipo de Páxina" @@ -73,7 +69,6 @@ msgstr "Sobreescribir URL" msgid "Keep this field empty if standard path should be used." msgstr "Manter este campo valeiro se o \"path\" estandar é utilizado." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -95,11 +90,9 @@ msgstr "visibilidade do menú" msgid "limit when this page is visible in the menu" msgstr "limitar cando esta páxina é visible no menú" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -115,7 +108,6 @@ msgstr "Configuracións de aplicación" msgid "A page with this reverse URL id exists already." msgstr "Unha páxina con este id URL xa existe." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -189,7 +181,6 @@ msgstr "O idioma debe ser definido nunha linguaxe soportada!" msgid "Parent plugin language must be same as language!" msgstr "O idioma do plugin ten que ser o mesmo que o do plugin pai!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -204,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -223,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -256,7 +245,6 @@ msgstr "O padrón foi cambiado con éxito" msgid "You do not have permission to copy these plugins." msgstr "Non ten permiso para copiar estes plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -264,8 +252,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "O título e plugins en %(language)s foron eliminado" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Non ten permiso para cambiar o estado desta páxina na navegación" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Baleiro" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Amosar restrición" @@ -283,7 +283,6 @@ msgstr "Non ten permiso para editar este elemento" msgid "You do not have permission to add a plugin" msgstr "Non ten permiso para engadir un plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -293,18 +292,15 @@ msgstr "No se atopou o plugin" msgid "You do not have permission to edit this plugin" msgstr "Non ten permiso para editar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Non ten permiso para trasladar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -334,6 +330,47 @@ msgstr "Permisos de Usuarios e Grupos" msgid "Page permissions management" msgstr "Xestor dos permisos da páxina" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -362,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "Estrutura" @@ -408,15 +442,12 @@ msgstr "Rematar sesión" msgid "Language" msgstr "Lingua" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -425,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -435,7 +465,6 @@ msgstr "Páxinas" msgid "Page" msgstr "Páxina" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -482,20 +511,12 @@ msgid "Select a valid page" msgstr "Elixa unha páxina válida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -509,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -606,6 +632,57 @@ msgstr "Autorizado" msgid "page" msgstr "páxina" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "só para usuarios identificados" + +msgid "for anonymous users only" +msgstr "só para usuarios anónimos" + +msgid "Inherit from parent page" +msgstr "Herdar da páxina pai" + +msgid "Deny" +msgstr "Denegar" + +msgid "Only this website" +msgstr "Só este sitio web" + +msgid "Allow" +msgstr "Permitir" + +msgid "title" +msgstr "título" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "descrición" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "redirixir" + +msgid "The template used to render the content." +msgstr "O padrón usado para amosar o contido." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "por defecto" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -614,9 +691,6 @@ msgstr "" msgid "pages" msgstr "páxinas" -msgid "default" -msgstr "por defecto" - msgid "slug" msgstr "rastro" @@ -644,7 +718,6 @@ msgstr "no nivel da páxina" msgid "frontend view restriction" msgstr "restrición para visualizar a interface do usuario" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -686,7 +759,9 @@ msgstr "Permiso da páxina" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Engadir permiso de páxina require tamén acceder a nenos, ou descendentes, a páxina engadida doutro xeito non pode ser mudada polo seu creador." +msgstr "" +"Engadir permiso de páxina require tamén acceder a nenos, ou descendentes, a " +"páxina engadida doutro xeito non pode ser mudada polo seu creador." msgid "User (page)" msgstr "Usuario (páxina)" @@ -753,45 +828,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "só para usuarios identificados" - -msgid "for anonymous users only" -msgstr "só para usuarios anónimos" - -msgid "Inherit from parent page" -msgstr "Herdar da páxina pai" - -msgid "Deny" -msgstr "Denegar" - -msgid "Only this website" -msgstr "Só este sitio web" - -msgid "Allow" -msgstr "Permitir" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "descrición" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "redirixir" - -msgid "The template used to render the content." -msgstr "O padrón usado para amosar o contido." - msgid "Advanced options" msgstr "Opcións avanzadas" @@ -799,7 +835,6 @@ msgid "Generic" msgstr "Xenérico" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -809,65 +844,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Gardar" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -882,7 +906,6 @@ msgstr "Nome de usuario:" msgid "Password:" msgstr "Contrasinal:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -963,16 +986,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Permisos" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -982,7 +1010,6 @@ msgstr "Lista de páxinas" msgid "Search" msgstr "Procura" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -996,17 +1023,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1030,7 +1049,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1044,10 +1062,6 @@ msgid "Menu" msgstr "Menú" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,30 +1082,15 @@ msgstr "Pechar" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Baleiro" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1108,12 +1107,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Permisos" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1163,7 +1168,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1177,7 +1181,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1189,7 +1192,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1202,15 +1204,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1219,7 +1218,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1229,10 +1227,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1248,26 +1248,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1296,12 +1291,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1342,15 +1331,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1359,15 +1339,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,11 +1363,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1475,7 +1442,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1485,7 +1451,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1522,7 +1487,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1551,12 +1515,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1593,394 +1555,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/gl/LC_MESSAGES/djangojs.mo b/cms/locale/gl/LC_MESSAGES/djangojs.mo index d673728e62a61867a202849b47c32a7515b0765d..740a0e702cdc086ec2e0655bdb615fe708dbc8db 100644 GIT binary patch delta 112 zcmcb^@{VPK4sS0b1H)7X1_m!6R-S0NoYz3t&`{UdK*7Mw%EWTwTX8Gj#Jtkf90kXm z)U3q3l%jkEzr(u@Z%nOH@X4%Fut|goJCx)Xn5dhzW925Wm diff --git a/cms/locale/gl/LC_MESSAGES/djangojs.po b/cms/locale/gl/LC_MESSAGES/djangojs.po index 6b3a7fa23e8..d2b342cd8e2 100644 --- a/cms/locale/gl/LC_MESSAGES/djangojs.po +++ b/cms/locale/gl/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Galician (http://www.transifex.com/divio/django-cms/language/gl/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Manuel Alejandro Núñez Liz , 2013\n" +"Language-Team: Galician (http://app.transifex.com/divio/django-cms/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Esta seguro de que desexa cambiar o contido sen gardar primeiro a páxina?" diff --git a/cms/locale/gu/LC_MESSAGES/django.mo b/cms/locale/gu/LC_MESSAGES/django.mo index 9c4f46159891aee39e510bbd35808741bab218bc..a3b403e4252e85aaedbc382ae612b6d8f701dfae 100644 GIT binary patch delta 209 zcmeyv@}Fgbk8VCA1H)|w1_mx5_GV&WUm23E#K+6F+t<&#)kq8n0_m{**WSdw34rQnvBl$n^P;8c`Ynx|lsR-6Q4 zIHc!R=%u9E=_nW(7#RUI<)xPwJ}f delta 180 zcmey*@`q)Dk8Tbl1H)|w1_mx5_F!UQU diff --git a/cms/locale/gu/LC_MESSAGES/django.po b/cms/locale/gu/LC_MESSAGES/django.po index 5cb82ea044d..220d366b34b 100644 --- a/cms/locale/gu/LC_MESSAGES/django.po +++ b/cms/locale/gu/LC_MESSAGES/django.po @@ -3,19 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# slam , 2013 -# Mattias Lindvall , 2013 -# Roger Pons , 2013 -# slam , 2013 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Gujarati (http://www.transifex.com/divio/django-cms/language/gu/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Gujarati (https://app.transifex.com/divio/teams/58664/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -59,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -74,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -190,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -224,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -284,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -409,15 +441,12 @@ msgstr "" msgid "Language" msgstr "Llengua" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -483,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -645,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -754,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -800,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -883,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -983,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -997,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1031,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1164,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1190,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1297,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1343,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1476,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1523,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1552,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/gu/LC_MESSAGES/djangojs.mo b/cms/locale/gu/LC_MESSAGES/djangojs.mo index 85985d155f4ca290c31d3a3fcdf19ac24fb71260..b3277af9def112e9a72c2f8edb7fe28e1c083ace 100644 GIT binary patch delta 68 zcmdnWyqbA}3S;3!)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!!2$^78VDuMPqLxsMx4 diff --git a/cms/locale/gu/LC_MESSAGES/djangojs.po b/cms/locale/gu/LC_MESSAGES/djangojs.po index c72d821b3d7..74852677b80 100644 --- a/cms/locale/gu/LC_MESSAGES/djangojs.po +++ b/cms/locale/gu/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Gujarati (http://www.transifex.com/divio/django-cms/language/gu/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Gujarati (http://app.transifex.com/divio/django-cms/language/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/he/LC_MESSAGES/django.mo b/cms/locale/he/LC_MESSAGES/django.mo index 39598102c8fd6048064e82db22c6651368682b80..bd49a83e4557373e7558515de175cc24b02b4259 100644 GIT binary patch delta 3854 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 xhaC3+nZ~AH2Appn{xUT-JSsKv(w**pck}, 2013 -# Daniel Braun , 2013 -# Fishfur A Banter , 2016 +# Fabian Braun , 2022 +# Fishfur A Banter , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Hebrew (http://www.transifex.com/divio/django-cms/language/he/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fishfur A Banter , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/divio/teams/58664/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -59,9 +57,6 @@ msgstr "תיאור meta tag" msgid "A description of the page used by search engines." msgstr "התיאור של הדף שבו ישתמשו מנועי החיפוש" -msgid "Slug must not be empty." -msgstr "שם ה-slug אינו יכול להיות ריק" - msgid "Page type" msgstr "סוג דף" @@ -74,7 +69,6 @@ msgstr "שכתב URL" msgid "Keep this field empty if standard path should be used." msgstr "השאר תיבה זו ריקה אם נדרש שימוש ב-path סטנדרטי" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +108,6 @@ msgstr "הגדרות אפליקציה" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -153,32 +144,44 @@ msgstr "מחק" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "משתמשים אינם יכולים ליצור דף בלי ההרשאות לשנות את הדף שהם יצרו. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים ליצור דף בלי ההרשאות לשנות את הדף שהם יצרו. נדרשת עריכת " +"הרשאות." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "משתמשים אינם יכולים למחוק דף בלי ההרשאות לשנות את הדף שהם מנסים למחוק. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים למחוק דף בלי ההרשאות לשנות את הדף שהם מנסים למחוק. נדרשת" +" עריכת הרשאות." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "משתמשים אינם יכולים לקבוע הרשאות של דף אם אין להם הרשאות לשנות דף. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים לקבוע הרשאות של דף אם אין להם הרשאות לשנות דף. נדרשת " +"עריכת הרשאות." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "משתמשים אינם יכולים למחוק הרשאות של דף בלי ההרשאות לשנות דף. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים למחוק הרשאות של דף בלי ההרשאות לשנות דף. נדרשת עריכת " +"הרשאות." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "משתמשים אינם יכולים ליצור הרשאות לדף אם אין להם אפשרות לשנות את ההרשאות שנוצרו. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים ליצור הרשאות לדף אם אין להם אפשרות לשנות את ההרשאות " +"שנוצרו. נדרשת עריכת הרשאות." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "משתמשים אינכם יכולים למחוק הרשאות דף בלי הרשאות לשנות הרשאות. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינכם יכולים למחוק הרשאות דף בלי הרשאות לשנות הרשאות. נדרשת עריכת " +"הרשאות." #, python-format msgid "Invalid plugin type '%s'" @@ -190,7 +193,6 @@ msgstr "השפה חייבת להיות שפה הנתמכת על ידי המער msgid "Parent plugin language must be same as language!" msgstr "שפת התוסף ההורה חייב להיות זהה לשפה!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +207,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -224,7 +225,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "אזהרה! אין לך הרשאות להזיז את הדף הזה. טען מחדש את הדף." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +257,6 @@ msgstr "התבנית שונתה בהצלחה" msgid "You do not have permission to copy these plugins." msgstr "אין לך הרשאה להעתיק את התוסף האלה" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,8 +264,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "אין לך הרשאות לשנות את מצב in_navigation של דף זה" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "" @@ -284,7 +295,6 @@ msgstr "אין לך הרשאה לערוך פריט זה" msgid "You do not have permission to add a plugin" msgstr "אין לך הרשאה להוסיף תוספים" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +304,15 @@ msgstr "תוסף לא נמצא" msgid "You do not have permission to edit this plugin" msgstr "אין לך הרשאה לערוך את התוסף הזה" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "אין לך הרשאה להדביק את התוסף הזה" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "אין לך הרשאה להזיז את התוסף הזה" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +342,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "תצוגה מקדימה" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +411,6 @@ msgstr "צור" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "תצוגה מקדימה" - msgid "Structure" msgstr "מבנה" @@ -409,15 +454,12 @@ msgstr "יציאת משתמש" msgid "Language" msgstr "שפה" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "הוסף תרגום" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "מחק תרגום" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +468,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +477,6 @@ msgstr "דפים" msgid "Page" msgstr "עמוד" -#| msgid "Create" msgid "Create Page" msgstr "צור דף" @@ -483,20 +523,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +542,12 @@ msgstr "תן כותרת לדף החדש" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +644,57 @@ msgstr "" msgid "page" msgstr "עמוד" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "למשתמשים אנונימיים בלבד" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "כותרת" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "תיאור" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "נתב מחדש" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "ברירת מחדל" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +703,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "ברירת מחדל" - msgid "slug" msgstr "" @@ -645,29 +730,35 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "משתמשים אינם יכולים לפרסם דף בלי ההרשאות לשנות את הדף שהם מנסים למחוק. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים לפרסם דף בלי ההרשאות לשנות את הדף שהם מנסים למחוק. נדרשת" +" עריכת הרשאות." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "משתמשים אינם יכולים לשנות הגדרות מתקדמות של דף אם אין להם הרשאות לשנות דף. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים לשנות הגדרות מתקדמות של דף אם אין להם הרשאות לשנות דף. " +"נדרשת עריכת הרשאות." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "משתמשים אינם יכולים לשנות הרשאות של דף אם אין להם הרשאות לשנות את הדף. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים לשנות הרשאות של דף אם אין להם הרשאות לשנות את הדף. נדרשת" +" עריכת הרשאות." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "משתמשים אינם יכולים להעביר דף בלי ההרשאות לשנות את הדף. נדרשת עריכת הרשאות." +msgstr "" +"משתמשים אינם יכולים להעביר דף בלי ההרשאות לשנות את הדף. נדרשת עריכת הרשאות." msgid "can recover any deleted page" msgstr "יכול לשחזר כל דף שנמחק" @@ -754,45 +845,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "למשתמשים אנונימיים בלבד" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "כותרת" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "תיאור" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "נתב מחדש" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "אפשרויות מתקדמות" @@ -800,7 +852,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +861,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "שמור" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -883,7 +923,6 @@ msgstr "שם משתמש:" msgid "Password:" msgstr "סיסמה:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -966,16 +1005,21 @@ msgstr "גזור" msgid "Paste" msgstr "הדבק" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "הרשאות" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "לאחרונה שונה על ידי" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -985,7 +1029,6 @@ msgstr "רשימת עמודים" msgid "Search" msgstr "חפש" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -999,17 +1042,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "אפשרויות" @@ -1033,7 +1068,6 @@ msgstr "" msgid "Reload" msgstr "טען מחדש" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1047,10 +1081,6 @@ msgid "Menu" msgstr "תפריט" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1071,30 +1101,15 @@ msgstr "סגור" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "הצג דף" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1111,12 +1126,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "הרשאות" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1166,7 +1187,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1180,7 +1200,6 @@ msgid "More" msgstr "עוד" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1192,7 +1211,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1205,15 +1223,12 @@ msgstr "האם אתה בטוח שברצונך לפרסם דף זה?" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "ישנם שינוים שלא נשמרו." -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1222,7 +1237,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1232,10 +1246,12 @@ msgstr "קיצורי דרך" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "הצג את דיאלוג העזרה הזה" -#| msgid "Cancel" msgid "Close/cancel" msgstr "סגור/בטל" @@ -1251,26 +1267,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "ערוך תוסף" -#| msgid "not in menu" msgid "Open actions menu" msgstr "פתח תפריט פעולות" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1299,12 +1310,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "ההתקנה הושלמה בהצלחה!" @@ -1345,15 +1350,6 @@ msgstr "תמיכה" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1362,15 +1358,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1395,11 +1382,7 @@ msgstr "" msgid "Next" msgstr "הבא" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1478,7 +1461,6 @@ msgstr "מאמרים" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1488,7 +1470,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1525,7 +1506,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1554,12 +1534,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1596,396 +1574,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/he/LC_MESSAGES/djangojs.mo b/cms/locale/he/LC_MESSAGES/djangojs.mo index 93e10c279188791d01143eb97ff2c36a3521e6a7..6d3ae3fe2e65458a247c6e7af596ca58ea737f70 100644 GIT binary patch delta 102 zcmcb@dWUs_4)1+N28O8&3=C;NTsqNmIj@1Pp`os^fr5dVm5JrVx8eqFnZ+4tr9}#k x3Qmc6C8b7DckW\n" -"Language-Team: Hebrew (http://www.transifex.com/divio/django-cms/language/he/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Fishfur A Banter , 2016\n" +"Language-Team: Hebrew (http://app.transifex.com/divio/django-cms/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "האם אתה בטוח שברצונך לשנות כרטיסיות מבלי לשמור את העמוד?" diff --git a/cms/locale/hi/LC_MESSAGES/django.mo b/cms/locale/hi/LC_MESSAGES/django.mo index 3bc65e179ff8d8735093366ea4ee074e2976785a..2a08ee4899c41c27d1a0f3bed6e9152934a473d8 100644 GIT binary patch delta 2569 zcmXxle@sgxMG^Afq)Po3X&+)rKww6 z8RenYkC9usqBd)V{!=s4F?HogT3gWuZcewBvsP^_%Bc4Tp3d%bUe9^X^Xq)i_rO0p zj&F}lB*na9IC?4RDlx{Kl<}N6uDFdU!BKRfdyX->m4YG6z#wkKXpA5~bBI$n_TfC7 z<1ywA%s}-kz!h{iVJdTJXhaR{LO&kH1pF8m<5}x1E`&TfQk4aYN9i!iHA`OUcp!#LxN|n;v&3` zG3yjG^Ya zX75j;7M?;aoJ;~JVgc0ndoT&h=MjG;M-`_4?!=||GAg8>qLS|m)WAv9hNe&xdYOf) z$w5uHf|EA74)sbmS$ClNx1cuOg-Z6`B;v1~573~{okBg)S?eX#z){qIanyo;q56Bs zBGnF?num&1#7{*N6{9+?v>n#k>j$tU%9w}oMed(TWm4Qg z*km1kf<4%eK^h5;8Acy|hn0-~6PI#bMnYs`J(AoJ^Bk4uY3RdTOuKU?87t7?x(f9* z+`ta>k(mduA9FB~_fm#oT!w8}gm0j7Y6Oe%HY&-B_%zgBiGF?md#NZCZ=pgxhzjW? z)P}}T1OG)m!CXFWJz)u||9WKarWuuVM^K;bF;w!tj_=_&Sd9l6bPPw)6QNS)BYe0Q z^YLfY!V9v<3oJ)1IEYK|GhB|>umux|=V|OlZ8St!6ygdj$2#=kJ9sw^qc(gSBacv- zPo`<7&8UGVtQT$jPZ*{>hh6cSO*Lvmt;ilsFXrLfSb<-nHsWEo1(=T7@Oso&u^$zw zLraK1{{+lSw!;NfB!0uK*v70{=quch6G#+IHSb{qc48r(M?Kl^Sc%ICBU6|*)cseH zhcy>b8@p+*|IR1=_tTI`<|xUUP)T%xlalCbRI)^~eI-!{>#-5n;0TgeCfPre8-=I{ zZoxS0K`nR~XJbEl@J;Jrgo*~7whiCg>l>&Y$FurF=*QLAjhgUt>j)}B6R3H9MZL-t z;;sjI5Ixw1>URV+{xyujErV2&shmXpX+4MP_ya1`x9qhiXiOB>8z_3RofI7_DRq<@ zUD)F(-0N(K&rEHmcF?x!?`9jN*Et%WmcN_YI?6tZzBWZ)pEV!F^f8MwZ`15@M&p-f z=`&Hv>d>zA-)RqJJ0*eA>14Qa0*_PE;if2E^jtc;l*guPGjCDVE~nMyjcRm`xN;UM z)pW$qF#VOP`m}S-l^3h`-Qe7EW#(?9rr2~-o}@HU{y&Jj*+{8%Lhj6j9n=(d9qrCG zw>PTA>2&8sJ>v|xGqYN0?VvnCSw*R&@Mm@UP*(K}jk}M>4V_P#ii!#BZ0&G{QvwO$ zKuAAdsIass>`bM2bMCFFZK~PrTissMx!YIP&{3<(s$H#J1$Fi1eqXpS9Civ))8aZx kgTb0Tdz_7_sdM(#*R*y7SCkYN-!-&9^>WJ4$g*JUe}P93$p8QV delta 2848 zcmZA2X>1f_9LMpeSdLwxTrGtnFtvpO?b1S1zy``uxncnWNCbpBJ!lu&-P+xjR*nVK zf}GI-Uno*cwg?1FfXHDCNaY2hfLBoCkwJq7A~7K93qtVwqvIPV`^@KgW}fr^Jkz!= zyI&gnsZZi=!?l6*7%4N+m?N0ejT@KiH)cFuLm#F+YK&fG;%E$DE|%gWxD)vqhudmw z#ojouyD_~mfT~x71;)h8R5Cqz(1dEZ8FO$K_P}$PiB~-DVpqxoc-arrk-3@isEHMO zmZ1832D_k*{7f~szSxL~jBmD(p-;0DHN!n#`3P#JA7B!mL3MNq)$!M;0bT5jH;~|& zKX5SK#UkuW;~boaV=;zmcLD>9Z_bjTuDOL;$vrH@E`&t`PC-4NiK;grv(UyF_$q4P zFHrTa;vl?+$@l;VU^1)I0!MKhijy#=5LS|*j#-2J%rf zwUQgCe(reheQdY}PC^Zwfr{8fRQp-j2j}!A{^X6#Er1amj_;sCdJ%Q_K1Vh5(Ml6a zLUovhyfXR7&rIW{i9U zfT;TUsDYnG)i3j`MQu?NYJe70yB*&1H&F{afSvHYnD^o+YQVF|_L~dd^KUSd@^u`7 ze&VV~j6`*mi)vSZMBfx4KQq^RUV*A#i>hDmm76?cYsn~N8&Mr?Lsi`ERd~xQ@55k% zG5c``?|TuhRBZJ;iN`2k!CknKmju(KvR@XC#A4b%g~KWD@673_x}bN zeV^x1k+_Wt^*vNb2l6p%LOH00^H3`&L#=Qts{USN?&b{Y@O_I~*mWF_zvH_&l*$Y7 z622ZIlWBD{IEia0pT`k6CB0+dl^CS_8fw6MI1H1BUp5wC4choVUPevyWx_(%?7|{E zi5C8i<1m$j71NC8l39R3)J)Hy8vf&%#`5)iB96gEWSh-F)Pz1l=48IYEc^?n;2>tH ziIn0f45KEz7xh(K97g;Vs;fNUpMm+st1y6G6p3lL1lv&q4JPiZa5NH4a}Z1L0_I@~ zVbjW{V==Bnx-{*m_cxHmn=}r{7AzV`{58W*c%T>G;Vit5I&3qTE?Kh?b(oHz4%0Q% zVd|N~Ur(HlPvT+ZyqVj`oJPQ^v24)=H-Mn&pFR6kcxTXzSwknG%!@fM=$#mdR3gGNlm7VL{#u|Kw=DxN}x z{8O)d6B8(xkhHQ2lCDW4MWjpx@6wjlljeA3O>72gIzMh=Uvo6h*zYOLDQYonisnO}-%Lptb zr^`=jB5Ad{Qb{^&y0o{tnw_P-)P$hZ;L8~BT*sq_eCZ}tIoth1(nCCrl5Ems zk`8nVNte#r+T)k}tzD-r3O864VJj4lTGe)ArBzp1UmJ`>g5i)A4O`{acBrb-idF|B zR-Ii{nH8~uq0*4u7_73RsuPLY(T2$Jm3g`aZ#*T*T3#}=^mCgBi)&%>Zlbh}8aClUCxVDI@p{fSP3M{C!YYVNJ z!B9oe8eScZ))nUFu3EKfR8-vrmsd8aer`puF&NIRSV60Bpu9GcThrC+;CN=rXUR(r zS#Erj8$Shy+_sn8_(`{IyBps}dAHlP{(tMC;=|W%Zv3npk8|&+w-pY%@%?W6m>WOf gwr$d5Cq1oSGMNKz{4`y;@r@M7Z9aZ;L_z0&0mM^{8vp, 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Hindi (http://www.transifex.com/divio/django-cms/language/hi/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Hindi (https://app.transifex.com/divio/teams/58664/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,7 +48,8 @@ msgstr "पृष्ठ शीर्षक" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Overwrites आपके ब्राउज़र या बुकमार्क में के शीर्ष पर प्रदर्शित होता है क्या" +msgstr "" +"Overwrites आपके ब्राउज़र या बुकमार्क में के शीर्ष पर प्रदर्शित होता है क्या" msgid "Description meta tag" msgstr "" @@ -55,9 +57,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "अल्पविराम से अलग कभी कभी खोज इंजन द्वारा उपयोग खोजशब्दों की एक सूची." -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +69,6 @@ msgstr "अधिलेखित यूआरएल" msgid "Keep this field empty if standard path should be used." msgstr "इस क्षेत्र खाली रखें अगर मानक पथ प्रयोग किया जाना चाहिए." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "इस रिवर्स यूआरएल आईडी के साथ एक पृष्ठ पहले से ही मौजूद है." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +181,6 @@ msgstr "भाषा एक समर्थित भाषा के लिए msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +245,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,8 +252,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "शीर्षक और plugins भाषा %(language)s के साथ नष्ट कर दिया गया" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "आप इस पृष्ठ की in_navigation स्थिति को बदलने की अनुमति नहीं है" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "" @@ -280,7 +283,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +292,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +330,47 @@ msgstr "उपयोगकर्ता और समूह की अनुम msgid "Page permissions management" msgstr "पृष्ठ अनुमति प्रबंधन" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "पूर्वावलोकन" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "पूर्वावलोकन" - msgid "Structure" msgstr "" @@ -405,15 +442,12 @@ msgstr "लॉगआउट" msgid "Language" msgstr "भाषा" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +465,6 @@ msgstr "" msgid "Page" msgstr "पृष्ठ" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +511,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +632,57 @@ msgstr "अनुदान पर" msgid "page" msgstr "पृष्ठ" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "शीर्षक" + +msgid "overwrite the title (html title tag)" +msgstr "शीर्षक अधिलेखित(HTML शीर्षक टैग)" + +msgid "overwrite the title in the menu" +msgstr "मेनू में शीर्षक अधिलेखित" + +msgid "description" +msgstr "वर्णन" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "पुनर्निर्देशित" + +msgid "The template used to render the content." +msgstr "के लिए सामग्री प्रदान करते थे खाके." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "default" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +691,6 @@ msgstr "" msgid "pages" msgstr "पन्ने" -msgid "default" -msgstr "default" - msgid "slug" msgstr "slug" @@ -641,7 +718,6 @@ msgstr "पृष्ठ स्तर पर" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -683,7 +759,9 @@ msgstr "पृष्ठ अनुमति" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "पृष्ठ अनुमति जोड़ें भी बच्चों, या वंश का उपयोग करने की आवश्यकता है, अन्यथा पृष्ठ जोड़े अपने निर्माता से नहीं बदला जा सकता है." +msgstr "" +"पृष्ठ अनुमति जोड़ें भी बच्चों, या वंश का उपयोग करने की आवश्यकता है, अन्यथा " +"पृष्ठ जोड़े अपने निर्माता से नहीं बदला जा सकता है." msgid "User (page)" msgstr "उपयोगकर्ता (पृष्ठ)" @@ -750,45 +828,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "शीर्षक" - -msgid "overwrite the title (html title tag)" -msgstr "शीर्षक अधिलेखित(HTML शीर्षक टैग)" - -msgid "overwrite the title in the menu" -msgstr "मेनू में शीर्षक अधिलेखित" - -msgid "description" -msgstr "वर्णन" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "पुनर्निर्देशित" - -msgid "The template used to render the content." -msgstr "के लिए सामग्री प्रदान करते थे खाके." - msgid "Advanced options" msgstr "उन्नत विकल्प" @@ -796,7 +835,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +844,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "बचाना" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "प्रशासन में यहाँ प्रवेश करें." @@ -879,7 +906,6 @@ msgstr "प्रयोक्ता नाम:" msgid "Password:" msgstr "पासवर्ड:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +986,21 @@ msgstr "काटना" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1010,6 @@ msgstr "पृष्ठों की सूची" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1023,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1049,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1062,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1082,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1107,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1168,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1181,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1192,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1204,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1218,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1227,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1248,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1291,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1331,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1339,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1363,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1442,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1451,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1487,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1515,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1555,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/hi/LC_MESSAGES/djangojs.mo b/cms/locale/hi/LC_MESSAGES/djangojs.mo index 2ab8ccb618e518bd7d1723d98a0a52c96349b1dd..999b0cd1bb6ad9c9279b986e84ce436b0cb170db 100644 GIT binary patch delta 83 zcmaFKdY^TI4sRYK1H)7X28LTe%ren(Ij@1Pp`os^fr5dVm5JrVx8kyuiP_ne3O1Q~ m#RZ8uIjJQjnGSiW1sRz+iF%nOleHP;nG*{NHv2NpVFUowkQoF3 delta 93 zcmcc5`jT~m4sQh`1H)7X28LTe%s0_;Ij@DTfuXLUp@N~Am9fRdx8mvniKRLD3XVBt oiA9Mi`3g1#AiiEAl<$y|S(cfvmz*(Kkx`zxyu5s~Gvgda0PLw8u>b%7 diff --git a/cms/locale/hi/LC_MESSAGES/djangojs.po b/cms/locale/hi/LC_MESSAGES/djangojs.po index 732ef81d6e6..19fc7d8fa07 100644 --- a/cms/locale/hi/LC_MESSAGES/djangojs.po +++ b/cms/locale/hi/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Hindi (http://www.transifex.com/divio/django-cms/language/hi/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Hindi (http://app.transifex.com/divio/django-cms/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "क्या आप सुनिश्चित हैं कि आप पृष्ठ टैब को बचाने के बिना परिवर्तन पहली करना चाहते हैं?" diff --git a/cms/locale/hr/LC_MESSAGES/django.mo b/cms/locale/hr/LC_MESSAGES/django.mo index 4d6fb87c1e83e9d57cf508b8a5036485e5b98235..414cb1c78d9602ceb9b70757532b6c68ee8f6b5e 100644 GIT binary patch delta 9512 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 delta 9821 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 B%X$C+ diff --git a/cms/locale/hr/LC_MESSAGES/django.po b/cms/locale/hr/LC_MESSAGES/django.po index 9be70ad647d..c047b19e675 100644 --- a/cms/locale/hr/LC_MESSAGES/django.po +++ b/cms/locale/hr/LC_MESSAGES/django.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Damir , 2013-2015,2018 -# Dino Ilic , 2017 -# legendri , 2012 -# legendri , 2012 +# Dino Ilic , 2022 +# Aleks Acimovic, 2023 +# Fabian Braun , 2023 +# Damir , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Croatian (http://www.transifex.com/divio/django-cms/language/hr/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Damir , 2023\n" +"Language-Team: Croatian (https://app.transifex.com/divio/teams/58664/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,10 +57,9 @@ msgid "Description meta tag" msgstr "Opis meta tag" msgid "A description of the page used by search engines." -msgstr "Popis ključnih riječi, razadvojenih zarezima, koje koriste pojedine tražilice." - -msgid "Slug must not be empty." -msgstr "Slug nesmije biti prazan" +msgstr "" +"Popis ključnih riječi, razadvojenih zarezima, koje koriste pojedine " +"tražilice." msgid "Page type" msgstr "Tip stranice" @@ -74,7 +73,6 @@ msgstr "Pregazi URL" msgid "Keep this field empty if standard path should be used." msgstr "Ostavite ovo polje prazno ako treba koristiti standardnu putanju." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +94,9 @@ msgstr "vidljivost izbornika" msgid "limit when this page is visible in the menu" msgstr "ograniči kada je ova stranica vidljiva u izborniku" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +112,6 @@ msgstr "Postavke aplikacije" msgid "A page with this reverse URL id exists already." msgstr "Stranica sa zadatim inverznim URL-om već postoji." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Neispravna vrijednost za postavku aplikacije." @@ -127,7 +122,8 @@ msgid "An application instance with this name already exists." msgstr "Aplikacija s ovim imenom već postoji." msgid "You can't move the home page inside another page" -msgstr "Početna stranica ne može se premjestiti kao dijete neke druge stranice." +msgstr "" +"Početna stranica ne može se premjestiti kao dijete neke druge stranice." msgid "Yes" msgstr "Da" @@ -153,32 +149,44 @@ msgstr "Izbriši" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Korisnicima nije dozvoljeno stvaranje stranice bez ovlasti za uređivanje stvorene stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno stvaranje stranice bez ovlasti za uređivanje " +"stvorene stranice. Uredite tražene ovlasti." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Korisnicima nije dozvoljeno brisanje stranice bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno brisanje stranice bez ovlasti za uređivanje " +"stranice. Uredite tražene ovlasti." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Korisnicima nije dozvoljeno postavljanje ovlasti bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno postavljanje ovlasti bez ovlasti za uređivanje " +"stranice. Uredite tražene ovlasti." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Korisnicima nije dozvoljeno brisanje ovlasti stranice bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno brisanje ovlasti stranice bez ovlasti za " +"uređivanje stranice. Uredite tražene ovlasti." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Korisnicima nije dozvoljeno dodavanje ovlasti stranice bez ovlasti za uređivanje dodane ovlasti. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno dodavanje ovlasti stranice bez ovlasti za " +"uređivanje dodane ovlasti. Uredite tražene ovlasti." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Korisnicima nije dozvoljeno brisanje ovlasti stranice bez ovlasti za uređivanje ovlasti. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno brisanje ovlasti stranice bez ovlasti za " +"uređivanje ovlasti. Uredite tražene ovlasti." #, python-format msgid "Invalid plugin type '%s'" @@ -190,7 +198,6 @@ msgstr "Jezik mora biti postavljen na jedan od podržanih!" msgid "Parent plugin language must be same as language!" msgstr "Jezik nadređenog plugina mora biti isti." -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Roditelj plugina mora biti u istom placeholderu kao i plugin!" @@ -205,7 +212,6 @@ msgid "The page is not eligible to be home." msgstr "Stranica nije raspoloživa za postavljanje u ulogu početne stranice." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,16 +228,19 @@ msgstr "objekt %(name)s sa primarnim ključem %(key)r ne postoji." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Pogreška! Nemate ovlasti premjestiti ovu stranicu. Molim, ponovno učitajte stranicu." +msgstr "" +"Pogreška! Nemate ovlasti premjestiti ovu stranicu. Molim, ponovno učitajte " +"stranicu." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Greška! Nemate ovlasti za kopiranje ove stranice." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Greška! Stranica koju želite zalijepiti nije prevedena na nijedan jezik koji je konfiguriran za odredišno sjedište." +msgstr "" +"Greška! Stranica koju želite zalijepiti nije prevedena na nijedan jezik koji" +" je konfiguriran za odredišno sjedište." msgid "You do not have permission to edit this page" msgstr "Nemate ovlasti za uređivanje ove stranice" @@ -257,7 +266,6 @@ msgstr "Predložak je uspješno promijenjen" msgid "You do not have permission to copy these plugins." msgstr "Nemate ovlasti za kopiranje ovih pluginova." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Nemate ovlasti za brisanje ove stranice" @@ -265,8 +273,20 @@ msgstr "Nemate ovlasti za brisanje ove stranice" msgid "Title and plugins with language %(language)s was deleted" msgstr "Naslov i plugin na jeziku %(language)s je obrisan" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nemate ovlasti da izmjenite status ove stranice \"u navigaciji\"" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Prazno" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Ograničenja pregleda" @@ -284,7 +304,6 @@ msgstr "Nemate ovlasti za uređivanje ove stavke" msgid "You do not have permission to add a plugin" msgstr "Nemate ovlasti dodati plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Nemate ovlasti za kopiranje placeholdera" @@ -294,18 +313,15 @@ msgstr "Plugin nije pronađen" msgid "You do not have permission to edit this plugin" msgstr "Nemate ovlasti za uređivanje ovog plugina" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Nemate ovlasti za zalijepiti ovaj plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Nemate ovlasti za zalijepiti ovaj placeholder" msgid "You have no permission to move this plugin" msgstr "Nemate ovlasti za premještanje ovog plugina" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Nemate ovlasti za izrezati ovaj plugin" @@ -335,6 +351,47 @@ msgstr "Ovlasti korisnika i grupe" msgid "Page permissions management" msgstr "Upravljanje ovlastima nad stranicom" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Pregled" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Nema registriranog apphooka \"%r\"" @@ -355,7 +412,9 @@ msgstr "Izradi Alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Ovo je alias referenca, sadržaj se može uređivati samo na stranici %(page_title)s." +msgstr "" +"Ovo je alias referenca, sadržaj se može uređivati samo na stranici %(page_title)s." msgid "Create" msgstr "Stvori" @@ -363,9 +422,6 @@ msgstr "Stvori" msgid "Edit" msgstr "Uredi" -msgid "Preview" -msgstr "Pregled" - msgid "Structure" msgstr "Struktura" @@ -409,15 +465,12 @@ msgstr "Odjavi se" msgid "Language" msgstr "Jezik" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Dodaj prijevod" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Izbriši prijevod" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopiraj sve pluginove" @@ -426,7 +479,6 @@ msgid "from %s" msgstr "iz %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Da li ste sigurni da želite kopirati sve pluginove sa %s?" @@ -436,7 +488,6 @@ msgstr "Stranice" msgid "Page" msgstr "Stranica" -#| msgid "Create" msgid "Create Page" msgstr "Stvori stranicu" @@ -483,22 +534,17 @@ msgid "Select a valid page" msgstr "Izaberite ispravnu stranicu" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Stranica %(conflict_page)s ima isti url '%(url)s' kao trenutna stranica \"%(instance)s\"." +msgstr "" +"Stranica %(conflict_page)s ima isti url '%(url)s' kao trenutna stranica " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Stranica %(conflict_page)s ima isti url '%(url)s' kao trenutna stranica." +msgstr "" +"Stranica %(conflict_page)s ima isti url '%(url)s' kao trenutna stranica." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." @@ -510,7 +556,12 @@ msgstr "Definirajte naziv za novu stranicu." msgid "Leave empty for automatic slug, or override as required." msgstr "Ostavite prazno za automatski slug ili upišite slug." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Nemate ovlasti dodati stranicu." @@ -607,17 +658,67 @@ msgstr "Postavi ovlasti za" msgid "page" msgstr "stranica" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "samo za prijavljene korisnike" + +msgid "for anonymous users only" +msgstr "samo za anonimne korisnike" + +msgid "Inherit from parent page" +msgstr "Nasljeđeno od nadređene stranice" + +msgid "Deny" +msgstr "Zabrani" + +msgid "Only this website" +msgstr "Samo ovo sjedište" + +msgid "Allow" +msgstr "Dozvoli" + +msgid "title" +msgstr "Naslov" + +msgid "overwrite the title (html title tag)" +msgstr "pregazi naslov (html tag title)" + +msgid "overwrite the title in the menu" +msgstr "pregazi naslov u meniju" + +msgid "description" +msgstr "opis" + +msgid "The text displayed in search engines." +msgstr "Tekst koji se prikazuje u tražilicama." + +msgid "redirect" +msgstr "preusmjeravanje" + +msgid "The template used to render the content." +msgstr " predložak korišten za prikaz sadržaja" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "uobičajenoa" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Jedinstveni identifikator korišten sa page_url templatetag-om za povezivanje s ovom stranicom" +msgstr "" +"Jedinstveni identifikator korišten sa page_url templatetag-om za povezivanje" +" s ovom stranicom" msgid "pages" msgstr "stranice" -msgid "default" -msgstr "uobičajenoa" - msgid "slug" msgstr "slug" @@ -645,29 +746,36 @@ msgstr "na nivou stranice" msgid "frontend view restriction" msgstr "zabrana prikaza na frontendu" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Molimo izaberite korisnika ili grupu." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Korisnicima nije dozvoljeno objavljivanje stranice bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno objavljivanje stranice bez ovlasti za uređivanje" +" stranice. Uredite tražene ovlasti." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Korisnicima nije dozvoljeno postavljanje naprednih postavki bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno postavljanje naprednih postavki bez ovlasti za " +"uređivanje stranice. Uredite tražene ovlasti." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Korisnicima nije dozvoljeno postavljanje ovlasti za stranicu bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno postavljanje ovlasti za stranicu bez ovlasti za " +"uređivanje stranice. Uredite tražene ovlasti." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Korisnicima nije dozvoljeno premještanje stranice bez ovlasti za uređivanje stranice. Uredite tražene ovlasti." +msgstr "" +"Korisnicima nije dozvoljeno premještanje stranice bez ovlasti za uređivanje " +"stranice. Uredite tražene ovlasti." msgid "can recover any deleted page" msgstr "može povratiti bilo koju obrisanu stranicu" @@ -687,7 +795,10 @@ msgstr "Ovlasti stranice" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Privilegije za dodavanje stranice također zahtjeva pravo pristupa djeci ili potomcima. U suprotnom, stranica se neće moći mijenjati od strane njenog tvorca." +msgstr "" +"Privilegije za dodavanje stranice također zahtjeva pravo pristupa djeci ili " +"potomcima. U suprotnom, stranica se neće moći mijenjati od strane njenog " +"tvorca." msgid "User (page)" msgstr "Korisnik (stranica)" @@ -731,7 +842,9 @@ msgstr "ime statičkog placeholdera" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Opisno ime za identifikaciju ovog statičkog placeholdera. Ne prikazuje se korisnicima." +msgstr "" +"Opisno ime za identifikaciju ovog statičkog placeholdera. Ne prikazuje se " +"korisnicima." msgid "placeholder code" msgstr "kôd placeholdera" @@ -754,45 +867,6 @@ msgstr "statički placeholderi" msgid "A static placeholder with the same site and code already exists" msgstr "Statički placeholder s istim kôdom za isto sjedište već postoji" -msgid "for logged in users only" -msgstr "samo za prijavljene korisnike" - -msgid "for anonymous users only" -msgstr "samo za anonimne korisnike" - -msgid "Inherit from parent page" -msgstr "Nasljeđeno od nadređene stranice" - -msgid "Deny" -msgstr "Zabrani" - -msgid "Only this website" -msgstr "Samo ovo sjedište" - -msgid "Allow" -msgstr "Dozvoli" - -msgid "title" -msgstr "Naslov" - -msgid "overwrite the title (html title tag)" -msgstr "pregazi naslov (html tag title)" - -msgid "overwrite the title in the menu" -msgstr "pregazi naslov u meniju" - -msgid "description" -msgstr "opis" - -msgid "The text displayed in search engines." -msgstr "Tekst koji se prikazuje u tražilicama." - -msgid "redirect" -msgstr "preusmjeravanje" - -msgid "The template used to render the content." -msgstr " predložak korišten za prikaz sadržaja" - msgid "Advanced options" msgstr "Napredna svojstva" @@ -800,7 +874,6 @@ msgid "Generic" msgstr "Generičko" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" je/su uspješno uređen/i." @@ -810,65 +883,54 @@ msgstr "Nema dodatnih postavki za ovaj plugin. Pritisnite Spremi." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Promijenjeno" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Spremi" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Ovdje se prijavite u administraciju.ovde" @@ -883,9 +945,8 @@ msgstr "Korisničko ime:" msgid "Password:" msgstr "Lozinka:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Dodaj stranicu" +msgstr "" msgid "Change a page" msgstr "Promijeni stranicu" @@ -965,16 +1026,21 @@ msgstr "Izreži" msgid "Paste" msgstr "Zalijepi" -#| msgid "Save as new" msgid "Set as home" msgstr "Postavi kao početno" +msgid "Permissions" +msgstr "Ovlasti" + msgid "is restricted" msgstr "ograničeno" msgid "last change by" msgstr "zadnja promjena od" +msgid "last change on" +msgstr "zadnja promjena" + msgid "meta" msgstr "meta" @@ -984,7 +1050,6 @@ msgstr "Popis stranica" msgid "Search" msgstr "Pretraživanje" -#| msgid "Page Title" msgid "Page Tree" msgstr "Stablo stranica" @@ -996,19 +1061,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Vrati obrisano %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Vrati obrisano %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Osnovna navigacija" -#| msgid "Actions" msgid "Options" msgstr "Opcije" @@ -1024,7 +1084,10 @@ msgstr "Greška:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Ova stranica ne može biti kopirana zato što ima pridruženu aplikaciju. Pogledajte napredne postavke stranice kako bi upravljali pridruženim aplikacijama." +msgstr "" +"Ova stranica ne može biti kopirana zato što ima pridruženu aplikaciju. " +"Pogledajte napredne postavke stranice kako bi upravljali pridruženim " +"aplikacijama." msgid "Are you sure you want to § this page?" msgstr "Da li ste sigurni da želite § ovu stranicu?" @@ -1032,7 +1095,6 @@ msgstr "Da li ste sigurni da želite § ovu stranicu?" msgid "Reload" msgstr "Ponovno učitaj" -#| msgid "New Page" msgid "New node" msgstr "Novi čvor" @@ -1046,17 +1108,18 @@ msgid "Menu" msgstr "Izborni" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Trenutno ne postoji %(object)s.\n
    \n Dodaj %(object)s sada.\n " +msgstr "" +"\n" +" Trenutno ne postoji %(object)s.\n" +"
    \n" +" Dodaj %(object)s sada.\n" +" " msgid "Copy options" msgstr "Opcija kopiranja" @@ -1070,30 +1133,15 @@ msgstr "Zatvori" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Objavljeno" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Neobjavljeno" - -msgid "Empty" -msgstr "Prazno" - -#| msgid "in menu" msgid "In menu" msgstr "U izborniku" -#| msgid "not in menu" msgid "Not in menu" msgstr "Nije u izborniku" -#| msgid "New page" msgid "View page" msgstr "Pogledaj stranicu" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1110,12 +1158,18 @@ msgstr "u izborniku" msgid "not in menu" msgstr "nije u izborniku" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Postavke stranice (SHIFT klik za napredne postavke)" -msgid "Permissions" -msgstr "Ovlasti" +msgid "This page has no preview!" +msgstr "Ova stranica nema pregled!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Preusmjerena je na:" msgid "Clipboard" msgstr "Međumemorija" @@ -1148,7 +1202,8 @@ msgid "You cannot add plugins to this plugin." msgstr "Ne možete dodavati pluginove u ovaj plugin." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Ovaj plugin ne može biti premješten niti uređivan izvan svog roditelja." +msgstr "" +"Ovaj plugin ne može biti premješten niti uređivan izvan svog roditelja." msgid "Clipboard is empty." msgstr "Međumemorija je prazna" @@ -1165,7 +1220,6 @@ msgstr "Označi" msgid "Available plugins" msgstr "Dostupni pluginovi" -#| msgid "Structure" msgid "Toggle structure" msgstr "Prebaci na strukturu" @@ -1179,11 +1233,12 @@ msgid "More" msgstr "Više" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Razvojna verzija koristi django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Razvojna verzija koristi django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Odustani" @@ -1191,7 +1246,6 @@ msgstr "Odustani" msgid "The following error occured:" msgstr "Došlo je do sljedeće pogreške:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Akcija uspješna." @@ -1204,24 +1258,22 @@ msgstr "Da li želite objaviti ovu stranicu?" msgid "Plugin will be added here" msgstr "Plugin će biti dodan ovdje" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Imate promjene koje još nisu spremljene." -#| msgid "Loading..." msgid "Loading" msgstr "Učitavanje" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Da li ste sigurni da ne želite spremiti ove promjene?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Formular ne može biti učitan. Molimo provjerite ako poslužitelj radi ispravno." +msgstr "" +"Formular ne može biti učitan. Molimo provjerite ako poslužitelj radi " +"ispravno." -#| msgid "Notify user" msgid "Most used" msgstr "Najkorištenije" @@ -1231,10 +1283,12 @@ msgstr "Kratice" msgid "The page was changed in the meantime, reloading..." msgstr "Stranica je u međuvremenu promijenjena, ponovno učitavam..." +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "Prikaži ovaj dijalog za pomoć" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Zatvori/Odustani" @@ -1242,7 +1296,8 @@ msgid "Toggle structure mode" msgstr "Prebaci u prikaz strukture" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "Prebaci u prikaz strukture i označi plugin iznad kojeg se nalazi pokazivač" +msgstr "" +"Prebaci u prikaz strukture i označi plugin iznad kojeg se nalazi pokazivač" msgid "Open \"Create\" dialog" msgstr "Otvori dijalog za izradu" @@ -1250,32 +1305,29 @@ msgstr "Otvori dijalog za izradu" msgid "Focus on Toolbar" msgstr "Fokusiraj na toolbar" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Fokusiraj na placholdere" msgid "Move to next/previous element" msgstr "Premjesti u sljedeći/prethodni element" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Fokusiraj na pluginove placeholdera" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Uredi plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Otvori izbornik akcija" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Proširi/sažmi" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Prijava neuspješna. Molim provjerite pristupne podatke i pokušajte ponovno." +msgstr "" +"Prijava neuspješna. Molim provjerite pristupne podatke i " +"pokušajte ponovno." msgid "Double-click to edit" msgstr "Dvostruki klik za uređivanje" @@ -1298,12 +1350,6 @@ msgstr "Maksimiziraj" msgid "Drop a plugin here" msgstr "Ispusti plugin ovdje" -msgid "This page has no preview!" -msgstr "Ova stranica nema pregled!" - -msgid "It is being redirected to:" -msgstr "Preusmjerena je na:" - msgid "Installation successful!" msgstr "Instalacija uspješna!" @@ -1318,14 +1364,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Dobrodošli u django CMS verzija %(cms_version)s.\n " +msgstr "" +"\n" +" Dobrodošli u django CMS verzija %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Dodaj prvu stranicu u sustav za nastavak.\n " +msgstr "" +"\n" +" Dodaj prvu stranicu u sustav za nastavak.\n" +" " #, python-format msgid "" @@ -1333,7 +1385,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript je onemogućena stoga molimo\n dodajte stranicu ručno.\n " +msgstr "" +"\n" +" JavaScript je onemogućena stoga molimo\n" +" dodajte stranicu ručno.\n" +" " msgid "Installation Notes" msgstr "Zabilješke za instalaciju" @@ -1344,32 +1400,19 @@ msgstr "Podrška" msgid "Documentation" msgstr "Dokumentacija" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Ako ne vidite django CMS logo na vrhu, osigurajte\n vezu na static/cms direktorij u vašim\n static datotekama.

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Ako ne vidite django CMS logo na vrhu, osigurajte\n" +" vezu na static/cms direktorij u vašim\n" +" static datotekama.

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1377,7 +1420,13 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Vidite ovu stranicu zato što imate\n DEBUG = True django u postavkama i\n niste još dodali nijednu stranicu.\n

    \n " +msgstr "" +"\n" +"

    Vidite ovu stranicu zato što imate\n" +" DEBUG = True django u postavkama i\n" +" niste još dodali nijednu stranicu.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Dobrodošli u django CMS" @@ -1389,16 +1438,14 @@ msgid "Back" msgstr "Povratak" msgid "Please choose an option from below to proceed to the next step." -msgstr "Molimo odaberite jednu opciju od ispod ponuđenih kako bi nastavili na sljedeći korak." +msgstr "" +"Molimo odaberite jednu opciju od ispod ponuđenih kako bi nastavili na " +"sljedeći korak." msgid "Next" msgstr "Sljedeći" -msgid "no content" -msgstr "bez sadržaja" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1409,7 +1456,9 @@ msgstr "Stranica nije pronađena na %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Template tag ne može pronaći stranicu sa parametrima `%(page_lookup)s `. URL je bio: http://%(host)s%(path)s" +msgstr "" +"Template tag ne može pronaći stranicu sa parametrima `%(page_lookup)s `. URL" +" je bio: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dva stupca" @@ -1434,7 +1483,8 @@ msgid "staff status" msgstr "status osoblja" msgid "Designates whether the user can log into this admin site." -msgstr "Označava da li se korisnik može prijaviti na ovu administracijsku stranicu." +msgstr "" +"Označava da li se korisnik može prijaviti na ovu administracijsku stranicu." msgid "active" msgstr "aktivan" @@ -1442,7 +1492,9 @@ msgstr "aktivan" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Označava da li je ovaj korisnik aktivan. Odznačite ovo polje umjesto brisanja korisničkog računa." +msgstr "" +"Označava da li je ovaj korisnik aktivan. Odznačite ovo polje umjesto " +"brisanja korisničkog računa." msgid "users" msgstr "korisnici" @@ -1477,7 +1529,6 @@ msgstr "Članci" msgid "Sample App" msgstr "Ogledna Aplikacija" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Ogledna aplikacija sa konfiguracijom" @@ -1487,9 +1538,8 @@ msgstr "Primjer aplikacije bez uključenih ovlasti" msgid "Sample App 2" msgstr "Ogledna Aplikacija 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Ogledna aplikacija 3" +msgstr "Ogledna Aplikacija 2" msgid "Namespaced App" msgstr "Aplikacija sa prostorom imena" @@ -1524,9 +1574,8 @@ msgstr "Statički Izbornik2" msgid "Static Menu3" msgstr "Static Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Static Menu4" +msgstr "Statički Izbornik" msgid "Category" msgstr "Kategorija" @@ -1553,12 +1602,10 @@ msgid "UserSettings" msgstr "UserSettings" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Dodaj plugin u placeholder \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Dodaj plugin u %(plugin_name)s" @@ -1576,7 +1623,9 @@ msgstr "Ovaj placeholder već ima najveći mogući broj pluginova (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Ovaj placeholder veći ima najveći dozvoljeni broj (%(limit)s) pluginova %(plugin_name)s." +msgstr "" +"Ovaj placeholder veći ima najveći dozvoljeni broj (%(limit)s) pluginova " +"%(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1586,7 +1635,9 @@ msgstr "Ne može se pronaći specificirani CMS_REQUEST_IP_RESOLVER modul: \"{0}\ msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Ne može se pronaći specificirana CMS_REQUEST_IP_RESOLVER funkcija: \"{0}\" u modulu \"{1}\"." +msgstr "" +"Ne može se pronaći specificirana CMS_REQUEST_IP_RESOLVER funkcija: \"{0}\" u" +" modulu \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1595,395 +1646,3 @@ msgstr "Izradi novu %s instancu." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Čarobnjak je već registriran za model: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/hr/LC_MESSAGES/djangojs.mo b/cms/locale/hr/LC_MESSAGES/djangojs.mo index 1ff121b38c9b62f13564603f8d827c49c02df137..a392bcc53e93f03f89566fb9dbca7bcc8cfdbfb4 100644 GIT binary patch delta 89 zcmZ3@x{P(~oj28O8&3=Dxl95T^zIj@1Pp`os^fr5dVm5JrVx8lkj(ji~vFO8A|{F delta 94 zcmZ3+x|(%@4)0+`28O8&3=Dxl968Z)Ij@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fYS)EalxxBo5vo~WjBLL$U98~}S diff --git a/cms/locale/hr/LC_MESSAGES/djangojs.po b/cms/locale/hr/LC_MESSAGES/djangojs.po index 95a1aca8b5f..259a402a301 100644 --- a/cms/locale/hr/LC_MESSAGES/djangojs.po +++ b/cms/locale/hr/LC_MESSAGES/djangojs.po @@ -10,15 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Croatian (http://www.transifex.com/divio/django-cms/language/hr/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: legendri , 2012\n" +"Language-Team: Croatian (http://app.transifex.com/divio/django-cms/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Jeste li ste sigurni da želite promjeniti tab prije nego što spremite stranicu?" diff --git a/cms/locale/hu/LC_MESSAGES/django.mo b/cms/locale/hu/LC_MESSAGES/django.mo index 79a2f9d4c558c2208961b6e7bc373caa17390b6f..438842e2b1c1176367e7549638b57583d671ac40 100644 GIT binary patch delta 7652 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 diff --git a/cms/locale/hu/LC_MESSAGES/django.po b/cms/locale/hu/LC_MESSAGES/django.po index e7e000d916b..499c4912c95 100644 --- a/cms/locale/hu/LC_MESSAGES/django.po +++ b/cms/locale/hu/LC_MESSAGES/django.po @@ -3,25 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Attila Kovacs , 2013 -# fazekasda , 2012 -# fazekasda , 2013-2014 -# fazekasda , 2012 -# Szabo L. , 2013 -# Tibor Balogh, 2014 -# Tibor Balogh, 2014 -# Tibor Balogh, 2014 -# Viktor Nagy, 2013 -# Viktor Nagy, 2013 +# Fabian Braun , 2023 +# Alexander Blomberg, 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Hungarian (http://www.transifex.com/divio/django-cms/language/hu/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Alexander Blomberg, 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/divio/teams/58664/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -65,9 +57,6 @@ msgstr "\"Description\" meta tag" msgid "A description of the page used by search engines." msgstr "Keresők által használt leírás az oldalról" -msgid "Slug must not be empty." -msgstr "Az URL aliasz nem lehet üres!" - msgid "Page type" msgstr "Oldal típus" @@ -78,9 +67,10 @@ msgid "Overwrite URL" msgstr "URL felülírása" msgid "Keep this field empty if standard path should be used." -msgstr "Hagyja ezt a mezőt üresen, ha az alapértelmezett útvonalat kívánja használni " +msgstr "" +"Hagyja ezt a mezőt üresen, ha az alapértelmezett útvonalat kívánja használni" +" " -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,7 +84,7 @@ msgid "Redirects to this URL." msgstr "Átirányítás erre az URL-re." msgid "Start typing..." -msgstr "" +msgstr "Kezdj el gépelni..." msgid "menu visibility" msgstr "menü láthatósága" @@ -102,11 +92,9 @@ msgstr "menü láthatósága" msgid "limit when this page is visible in the menu" msgstr "korlátozza, hogy mikor jelenjen meg ez az oldal a menüben" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -117,29 +105,28 @@ msgid "Hook application to this page." msgstr "Alkalmazás csatolása az oldalhoz" msgid "Application configurations" -msgstr "" +msgstr "Alkalmazás konfigurációk" msgid "A page with this reverse URL id exists already." msgstr "Az adott URL azonosítóval már létezik oldal." -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "" +msgstr "Érvénytelen alkalmazáskonfigurációs érték" msgid "An application instance using this configuration already exists." -msgstr "" +msgstr "Már létezik ezt a konfigurációt használó alkalmazáspéldány." msgid "An application instance with this name already exists." -msgstr "" +msgstr "Már létezik ilyen nevű alkalmazáspéldány." msgid "You can't move the home page inside another page" -msgstr "" +msgstr "A kezdőlapot nem helyezheti át másik oldalra" msgid "Yes" -msgstr "" +msgstr "Igen" msgid "No" -msgstr "" +msgstr "Nem" msgid "user" msgstr "felhasználó" @@ -196,7 +183,6 @@ msgstr "A beállított nyelvnek támogatott nyelvnek kell lennie!" msgid "Parent plugin language must be same as language!" msgstr "A nyelvnek meg kell egyeznie a szülő plugin nyelvével!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -208,10 +194,9 @@ msgid "Advanced Settings" msgstr "További beállítások" msgid "The page is not eligible to be home." -msgstr "" +msgstr "Az oldal nem használható kezőlapként." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -230,14 +215,15 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "Hiba! Nincs jogosultságod az oldal mozgatásához. Frissítsd az oldalt!" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." -msgstr "" +msgstr "Hiba! Nincs engedélye az oldal másolására." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." msgstr "" +"Hiba! A beillesztendő oldal nincs lefordítva a célwebhely által konfigurált " +"nyelvek egyikére sem." msgid "You do not have permission to edit this page" msgstr "Nincs jogosultsága az oldal szerkesztéséhez" @@ -246,10 +232,10 @@ msgid "Add Page Copy" msgstr "Oldal másolat hozzáadása" msgid "New sub page" -msgstr "" +msgstr "Új aloldal" msgid "New page" -msgstr "" +msgstr "Új oldal" msgid "Database error" msgstr "Adatbázis hiba" @@ -263,16 +249,27 @@ msgstr "A sablon sikeresen megváltozott" msgid "You do not have permission to copy these plugins." msgstr "Nincs jogosultsága ezen pluginek másolásához." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "" +msgstr "Nincs engedélye az oldal törlésére" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "%(language)s nyelvű cím és plugin már létezik" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nincs joga az oldal menübeli pozíciójának változtatásához" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Üres" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Nézet korlátozás" @@ -290,28 +287,24 @@ msgstr "Nincs jogosultsága az elem szerkesztéséhez" msgid "You do not have permission to add a plugin" msgstr "Nincs jogosultsága plugin hozzáadásához." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." -msgstr "" +msgstr "Nincs engedélye ennek a helyőrzőnek a másolására." msgid "Plugin not found" -msgstr "" +msgstr "Plugin nem található" msgid "You do not have permission to edit this plugin" msgstr "Nincs jogosultsága a plugin szerkesztéséhez" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Nincs jogosultsága a plugin mozgatásához" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -341,6 +334,47 @@ msgstr "Felhasználó és Csoport jogok" msgid "Page permissions management" msgstr "Oldal jogainak kezelése" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Előnézet" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -364,14 +398,11 @@ msgid "" msgstr "" msgid "Create" -msgstr "" +msgstr "Létrehoz" msgid "Edit" msgstr "Szerkesztés" -msgid "Preview" -msgstr "Előnézet" - msgid "Structure" msgstr "Struktúra" @@ -415,15 +446,12 @@ msgstr "Kilépés" msgid "Language" msgstr "Nyelv" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -432,7 +460,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -442,9 +469,8 @@ msgstr "Oldalak" msgid "Page" msgstr "Oldal" -#| msgid "Create" msgid "Create Page" -msgstr "" +msgstr "Oldal létrehozása" msgid "New Page" msgstr "Új oldal" @@ -489,20 +515,12 @@ msgid "Select a valid page" msgstr "Válasszon egy érvényes oldalt" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -516,12 +534,17 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" msgid "ID" -msgstr "" +msgstr "ID" msgid "position" msgstr "pozíció" @@ -613,17 +636,67 @@ msgstr "Engedélyezés" msgid "page" msgstr "oldal" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "csak bejelentkezett felhasználók számára" + +msgid "for anonymous users only" +msgstr "csak névtelen felhasználók számára" + +msgid "Inherit from parent page" +msgstr "A szülő oldal beállításai szerint" + +msgid "Deny" +msgstr "Tiltás" + +msgid "Only this website" +msgstr "Csak ezen az oldalon" + +msgid "Allow" +msgstr "Engedélyezés" + +msgid "title" +msgstr "cím" + +msgid "overwrite the title (html title tag)" +msgstr "cím felülírása (html title tag-ban)" + +msgid "overwrite the title in the menu" +msgstr "cím felülírása a menüben" + +msgid "description" +msgstr "leírás" + +msgid "The text displayed in search engines." +msgstr "A szöveg megjelenik a kereső motrokban." + +msgid "redirect" +msgstr "átirányítás" + +msgid "The template used to render the content." +msgstr "A tartalom megjelenítéséhez használt sablon." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "alapértelmezett" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Egyedi azonosító, amelyet az url-ben használunk ennek az oldalnak a hivatkozásánál." +msgstr "" +"Egyedi azonosító, amelyet az url-ben használunk ennek az oldalnak a " +"hivatkozásánál." msgid "pages" msgstr "oldalak" -msgid "default" -msgstr "alapértelmezett" - msgid "slug" msgstr "URL aliasz" @@ -651,9 +724,8 @@ msgstr "oldal szinten" msgid "frontend view restriction" msgstr "frontend nézet korlátozás" -#| msgid "Please select user or group first." msgid "Please select user or group." -msgstr "" +msgstr "Kérjük, válasszon felhasználót vagy csoportot." msgid "" "Users can't publish a page without permissions to change the page. Edit " @@ -679,7 +751,9 @@ msgid "can recover any deleted page" msgstr "bármelyik törölt oldalt visszaállíthatja?" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Ha egyiket sem jelöli ki, akkor a felhasználónak mindegyik webhelyhez lesz hozzáférése." +msgstr "" +"Ha egyiket sem jelöli ki, akkor a felhasználónak mindegyik webhelyhez lesz " +"hozzáférése." msgid "Page global permission" msgstr "Oldal globális jogosultság" @@ -693,7 +767,10 @@ msgstr "Oldal jogosultság" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Az oldal létrehozása jogosultság igényli a gyermekekhez és leszármazottakhoz való hozzáférést is, egyébként a létrehozott oldalt az oldal készítője nem tudja majd szerkeszteni." +msgstr "" +"Az oldal létrehozása jogosultság igényli a gyermekekhez és leszármazottakhoz" +" való hozzáférést is, egyébként a létrehozott oldalt az oldal készítője nem " +"tudja majd szerkeszteni." msgid "User (page)" msgstr "Felhasználó (oldal)" @@ -737,7 +814,9 @@ msgstr "statikus helyőrző neve" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Leíró név, amely segítségével azonosítja a helyőrzőt. A látogatók számára nem jelenik meg." +msgstr "" +"Leíró név, amely segítségével azonosítja a helyőrzőt. A látogatók számára " +"nem jelenik meg." msgid "placeholder code" msgstr "helyőrző kódja" @@ -760,45 +839,6 @@ msgstr "statikus helyőrzők" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "csak bejelentkezett felhasználók számára" - -msgid "for anonymous users only" -msgstr "csak névtelen felhasználók számára" - -msgid "Inherit from parent page" -msgstr "A szülő oldal beállításai szerint" - -msgid "Deny" -msgstr "Tiltás" - -msgid "Only this website" -msgstr "Csak ezen az oldalon" - -msgid "Allow" -msgstr "Engedélyezés" - -msgid "title" -msgstr "cím" - -msgid "overwrite the title (html title tag)" -msgstr "cím felülírása (html title tag-ban)" - -msgid "overwrite the title in the menu" -msgstr "cím felülírása a menüben" - -msgid "description" -msgstr "leírás" - -msgid "The text displayed in search engines." -msgstr "A szöveg megjelenik a kereső motrokban." - -msgid "redirect" -msgstr "átirányítás" - -msgid "The template used to render the content." -msgstr "A tartalom megjelenítéséhez használt sablon." - msgid "Advanced options" msgstr "További beállítások" @@ -806,78 +846,70 @@ msgid "Generic" msgstr "Álltalános" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" msgid "There are no further settings for this plugin. Please press save." -msgstr "Ennek a bővítménynek nincs több beállítása. Kérem, nyomja meg a mentés gombot." +msgstr "" +"Ennek a bővítménynek nincs több beállítása. Kérem, nyomja meg a mentés " +"gombot." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Mentés" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "Az adminisztrációs felületre ezen a linken jelentkezhet be." +msgstr "" +"Az adminisztrációs felületre ezen a linken " +"jelentkezhet be." #, python-format msgid "Login url: %(login_url)s" @@ -889,7 +921,6 @@ msgstr "Felhasználói név:" msgid "Password:" msgstr "Jelszó:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -968,18 +999,23 @@ msgid "Cut" msgstr "Kivágás" msgid "Paste" -msgstr "" +msgstr "Beillesztés" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Jogosultságok" + msgid "is restricted" msgstr "korlátozott" msgid "last change by" msgstr "utoljára módosította:" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -989,7 +1025,6 @@ msgstr "Oldalak listája" msgid "Search" msgstr "Keresés" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1003,19 +1038,11 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" -msgstr "" +msgstr "Opciók" msgid "Successfully moved" msgstr "Áthelyezés sikeres" @@ -1024,7 +1051,7 @@ msgid "Changes within the tree might require a refresh." msgstr "A fastruktúra változásait szükséges lehet frissíteni." msgid "Error:" -msgstr "" +msgstr "Hiba:" msgid "" "This page cannot be copied because an application is attached to it. See the" @@ -1037,7 +1064,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1051,10 +1077,6 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1075,30 +1097,15 @@ msgstr "Bezárás" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Üres" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1115,12 +1122,18 @@ msgstr "menüben" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Jogosultságok" +msgid "This page has no preview!" +msgstr "Ennek az oldalnak nincs előnézete!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Az oldal átkerült a következő címre:" msgid "Clipboard" msgstr "" @@ -1170,7 +1183,6 @@ msgstr "" msgid "Available plugins" msgstr "Elérhető bővítmények" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1184,7 +1196,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1194,9 +1205,8 @@ msgid "Cancel" msgstr "Mégsem" msgid "The following error occured:" -msgstr "A következő hiba történt:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1209,15 +1219,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1226,7 +1233,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1236,10 +1242,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1255,32 +1263,28 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Sikertelen belépés. Ellenőrizd az adatokat és próbáld újra." +msgstr "" +"Sikertelen belépés. Ellenőrizd az adatokat és próbáld újra." msgid "Double-click to edit" msgstr "Dupla kattintás a szerkesztéshez" @@ -1303,12 +1307,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "Húzz egy plugint ide" -msgid "This page has no preview!" -msgstr "Ennek az oldalnak nincs előnézete!" - -msgid "It is being redirected to:" -msgstr "Az oldal átkerült a következő címre:" - msgid "Installation successful!" msgstr "" @@ -1347,17 +1345,8 @@ msgid "Support" msgstr "" msgid "Documentation" -msgstr "" +msgstr "Dokumentáció" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1366,15 +1355,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1399,11 +1379,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "nincs tartalom" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1414,7 +1390,9 @@ msgstr "Az oldal nem található itt: %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "A template tag nem találja az oldalt a következő argumentumokkal: `%(page_lookup)s`.\nA kérésben szereplő URL: http://%(host)s%(path)s" +msgstr "" +"A template tag nem találja az oldalt a következő argumentumokkal: `%(page_lookup)s`.\n" +"A kérésben szereplő URL: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1482,7 +1460,6 @@ msgstr "Cikkek" msgid "Sample App" msgstr "Példa Alkalmazás" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1492,9 +1469,8 @@ msgstr "" msgid "Sample App 2" msgstr "Példa alkalmazás 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Példa alkalmazás 2" msgid "Namespaced App" msgstr "Névtér App" @@ -1529,9 +1505,8 @@ msgstr "Statikus menü 2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Statikus menü" msgid "Category" msgstr "Kategória" @@ -1558,12 +1533,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1581,7 +1554,9 @@ msgstr "Ezen a helyen elérte a pluginek száma a maximálisat (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Ezen a helyen a megengedett %(plugin_name)s bővítmények száma elérte a maximális mennyiséget (%(limit)s)." +msgstr "" +"Ezen a helyen a megengedett %(plugin_name)s bővítmények száma elérte a " +"maximális mennyiséget (%(limit)s)." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1600,394 +1575,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/hu/LC_MESSAGES/djangojs.mo b/cms/locale/hu/LC_MESSAGES/djangojs.mo index 9bfe2a7f91a242aa9c0bb99fb13b259d20519bff..19b162c0248fd85487a48c35ee8ff4054853bf56 100644 GIT binary patch delta 91 zcmaFL@`z=E4sRtR1H)7X28JLY=AUS}oYz3t&`{UdK*7Mw%EWTwTXEIks>Gyx1s^>H to1FZjlGNmkywnnh^xVYE9KGcHTss{FBLhR@$vTWm%!vgBn*$j|7y)6J88H9= delta 94 zcmaFF@|0zQ4sQ)31H)7X28JLY7Mf_eoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Hungarian (http://www.transifex.com/divio/django-cms/language/hu/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Szabo L. , 2013\n" +"Language-Team: Hungarian (http://app.transifex.com/divio/django-cms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Biztosan meg szeretné változtatni a füleket még mielőtt elmentené az oldalt?" diff --git a/cms/locale/id/LC_MESSAGES/django.mo b/cms/locale/id/LC_MESSAGES/django.mo index 2c0c14d3185888622a48265d86427fd31ee8daba..6afad7ef6253b869fe6dc85cf5feafb7c286a79b 100644 GIT binary patch delta 1201 zcmXxjOGs2v9LMpKGg?lWW-rUKn`UZyXLQu5EF(*jUJxa;sEDicaIASWcMJn#7P+#Z zAVcUyM9UV@5JAwUR&Anf1ktW&lP%ncMBm?VJ>36%&N(x4{^$Jfy0#H@f6nJEpI%F8yG*r zlg1RxD>@BKEMWxe%Z*uuXEA^mym1`YFwUShFoi8RgG2Zl_4`Gv#B#E0ood{Kbw~;m z!fNcnTJoDgIy%XDv@wazIESod-eVL$Vjf#p8gmh!pyn4biI>Ud;3rhY+S!FRdI`0W zE2s_RQS08&nEa;TO-$oB<)6X*%r9^pa+(nJ)d?cF9#5kdbWo)nM=n#~LkVu965m55 zdWyC90^|4=8?k|M77oxEprb@LQ6-#4E_0U;mFh8S!I#*C@9+eE_vYL9lCIf{tZfEy zGoC?hXbe^16l%i-SyPK~^#vgyrJHMDaMTzc&+)QMDHwOs^{N$GZQn9}`( z(sM%5Og+&?s2X}^^oH#q^qSj*8L*-;cQjYD{QYIciHeNRZ;z(j`@bsfLfG!oWp#D- zb%)zKX@OIYo41E^PTIZdzFf=bkf$5oHLQO4#wRPbq*&|lfh{0P=^)n42Sts zIx*oSV)k&%N%dLB)6q;i=IU>)WBGj6?F)sRY&MwJvdMUCGB}z^g`&yo>&Z+g&tKe7 T@4iT+r}!)o@D)E)&H4TVnK6ab delta 1246 zcmY+@OGs2v9LMpKqm`3pTA8NSZPcu69y(ZPR)$5PMGJ!#+2X3>IL+u)=bBoeM6QC` zSXql|WAt#BK@>vtSVYt=D2sxYE}~7~D(L$gr-g_4-_Je&nK_UDxp%@h?;HP7ka@$< zfE6Oyc28&UtR?Nkdn2%?14LZ0PFQ&i0i7V+(<2sy4_vdf}{WsWZ z%((f&%@z_BS;p+aW?YRI(2JMT{cD&*e+spLX{^F0coe^)e(z(}Z1khX*^7nPgiK{l z<0fp!JmxnpHw7dnP&=AJKR&`r{EUok{$dw;R`DO~!FK$P$~Q1u4DX?h*{nj9i=!5N z2eqIX)Iy$O7W13u>BLJV=)c7%$M7EO>DN+U<~9k`PLjADub>9Jiz?{@i%JsFK)5lu^lLP46(zU8+o_v%fsYG71wzQLA?-=~{h`Yjs4d zNN>M88kh~Q9PngX%_rI>A7=aahx|1me{H>0Q`ZmZpBl9Lk_p>&1{WHs6;n?~&(#|d;gy$2>sy;h(h7#toR4!HV5tUEHIZ-QO1^D!sbb, 2014 -# Gunawan Ariyanto , 2014 -# Oby Sumampouw , 2014 -# Prasasto Adi , 2016 +# Prasasto Adi , 2022 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Indonesian (http://www.transifex.com/divio/django-cms/language/id/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Indonesian (https://app.transifex.com/divio/teams/58664/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -51,7 +49,8 @@ msgstr "Judul Halaman" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Mengganti apa yang terpampang di atas browser anda atau di dalam bookmarks" +msgstr "" +"Mengganti apa yang terpampang di atas browser anda atau di dalam bookmarks" msgid "Description meta tag" msgstr "Deskripsi meta tag" @@ -59,9 +58,6 @@ msgstr "Deskripsi meta tag" msgid "A description of the page used by search engines." msgstr "Deskripsi dari halaman yang digunakan oleh mesin pencari." -msgid "Slug must not be empty." -msgstr "Slug tidak boleh kosong" - msgid "Page type" msgstr "Tipe halaman" @@ -74,7 +70,6 @@ msgstr "Mengganti URL" msgid "Keep this field empty if standard path should be used." msgstr "Biarkan kolom ini kosong jika path standar harus digunakan." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +91,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +109,6 @@ msgstr "Konfigurasi aplikasi" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -153,32 +145,44 @@ msgstr "Hapus" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Pengguna tidak dapat membuat halaman tanpa izin untuk mengubah halaman yang dibuat. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat membuat halaman tanpa izin untuk mengubah halaman yang " +"dibuat. Diperlukan penyuntingan izin." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Pengguna tidak dapat menghapus halaman tanpa izin untuk mengubah halaman. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat menghapus halaman tanpa izin untuk mengubah halaman. " +"Diperlukan penyuntingan izin." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Pengguna tidak dapat mengatur perizinan halaman tanpa izin untuk mengubah halaman. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat mengatur perizinan halaman tanpa izin untuk mengubah " +"halaman. Diperlukan penyuntingan izin." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Pengguna tidak dapat menghapus perizinan halaman tanpa izin untuk mengubah halaman. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat menghapus perizinan halaman tanpa izin untuk mengubah " +"halaman. Diperlukan penyuntingan izin." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Pengguna tidak dapat membuat perizinan halaman tanpa izin untuk mengubah izin yang dibuat. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat membuat perizinan halaman tanpa izin untuk mengubah " +"izin yang dibuat. Diperlukan penyuntingan izin." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Pengguna tidak dapat menghapus perizinan halaman tanpa izin untuk mengubah perizinan. Diperlukan penyuntingan izin." +msgstr "" +"Pengguna tidak dapat menghapus perizinan halaman tanpa izin untuk mengubah " +"perizinan. Diperlukan penyuntingan izin." #, python-format msgid "Invalid plugin type '%s'" @@ -190,7 +194,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +208,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,9 +224,10 @@ msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Kesalahan! Anda tidak memiliki izin untuk memindahkan halaman ini. Silahkan memuat kembali halaman ini" +msgstr "" +"Kesalahan! Anda tidak memiliki izin untuk memindahkan halaman ini. Silahkan " +"memuat kembali halaman ini" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +260,6 @@ msgstr "Template berhasil diganti" msgid "You do not have permission to copy these plugins." msgstr "Anda tidak memiliki izin untuk menyalin plugin ini." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,7 +267,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -284,7 +298,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +307,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +345,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +414,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -409,15 +457,12 @@ msgstr "" msgid "Language" msgstr "Bahasa" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +471,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +480,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -483,20 +526,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +545,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +647,57 @@ msgstr "" msgid "page" msgstr "halaman" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "judul" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +706,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -645,7 +733,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -754,45 +841,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "judul" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -800,7 +848,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +857,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -883,7 +919,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -963,16 +998,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -982,7 +1022,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -996,17 +1035,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1030,7 +1061,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1044,10 +1074,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,30 +1094,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1108,11 +1119,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1163,7 +1180,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1177,7 +1193,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1189,7 +1204,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1202,15 +1216,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1219,7 +1230,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1229,10 +1239,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1248,26 +1260,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1296,12 +1303,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1342,15 +1343,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1359,15 +1351,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,11 +1375,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1475,7 +1454,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1485,7 +1463,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1522,7 +1499,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1551,12 +1527,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1593,393 +1567,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/id/LC_MESSAGES/djangojs.mo b/cms/locale/id/LC_MESSAGES/djangojs.mo index 055f757ce5d8195d745a2b895cc16603ef4b9e1b..b7e358e8fd15bc6115bf6f809a460695f4873339 100644 GIT binary patch delta 68 zcmdnMyo`B*3S-Vh)p%Y5T|+}%V*>>PGbh($ delta 78 zcmZ3+yn%Uw3S-$s)p%YDT?0d1Lqi2aGb>|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!zdm^78VDZ*~CywKp3$ diff --git a/cms/locale/id/LC_MESSAGES/djangojs.po b/cms/locale/id/LC_MESSAGES/djangojs.po index fdeae058fc1..696343133af 100644 --- a/cms/locale/id/LC_MESSAGES/djangojs.po +++ b/cms/locale/id/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Indonesian (http://www.transifex.com/divio/django-cms/language/id/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Indonesian (http://app.transifex.com/divio/django-cms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/is/LC_MESSAGES/django.mo b/cms/locale/is/LC_MESSAGES/django.mo index ba56ec8b9a5186a4b6d01d29e7212d9fbc578906..2d7b030863722e6045d2edf0c1b5b076fd8fdab7 100644 GIT binary patch delta 1252 zcmXZa+e=hY6vy#hji!#bF5@k2P9jOv%;=0+Ok!rFWDy0KRFEBYj1kA%j3I%ZAPK@A zBFne%rOQJFg?15w9>qT(h=@c8Ea@S#An2jKzdSPd*=MoW+G}5aHU4gV*6VSuuQR61 zXUslh%>4pmvhgEk;#b^=tC)pA13y)$Bj$;YlcH>WRE8nxI zbry=8wN5^`6TYE3Tg5a?D>mi=dQk;?P&*jG47`e3@CNDxZecmz#U^}>4fq!|zkzOa zB1cj6MjZy);RM#>6zb^Tp-yJe{q}5gPX@JPKUQK858@eABU7lt_pl5fBPGlNTKE~Y z^R&`6odO2LOeLz3!>B?h@I1D<@#n5@kjwDP z+L0@E%m9NhfpOf0uTTvvp^o|sY6ss@iQetT@D5F>YXtQ+T2NQlhME_5zptPgxrwSf zjcV{A=Ci(e$v}5DkGwy#f;x%y{m&e zgVU%DJwer()wjdoErb6JpzeGH)oGqZ6Ig&sC`K(%fwdS!H4sC+>M`7blc;(xP<7s; z7G6X(vW%Ml6I)dvlPoPzj!Foi5^7L)R_A&M)j$(!-bvKFHq_C#yYa!9xs0)FPoOiA zoIKzQG=~G#`dQUg(MWiA6@OXB?PMx&ddTie_S&ibp{Uhlcf{>Jt8vI4?z8H;lN}l~ zTuO`tyJGcwtZ-F0Jo&)quS`ZmA$wpTm{M-MJ2n#R>`#Qc;+Nz7p;XLHBtv`m*Vfj| J{P11#{sSd(jSK() delta 1249 zcmXZa%S)6|7{~FWnN4bC*?1{!#uB1zZVnY{nrUcIw#ca#SuuH;rgR3pG-;O?5yBSH zWp?2vYEdmJvjU-|_y+_LkqCh$EdpBzE`s|0^oaO5@9{j(dCqgra^q6to1QFZG{cxO zw=oBeF;5DO$-}R>9)IFGT*Mq)#x1y}$QVLQp>-c-@!g0Uu?4g742JPMD*hoV-#Bi@ zXGO*_6%0Nw5x{SlkGaLh6ksVTFo-Iw7IX2KosXb4ylCeWsEvnl1CHP}yl>}U;#R&V zQ2WdjJFAs^u?v2oDqF<0m|0@X1$3bj#!x31L>JydZFmROfqS?UA7L}T#|He1T3<&s z>PRyx->}0#Cmh3iOru)=3Ducd`<=1fb_R9gQrwM|co^GIg``o5A7dFlM^cy>^x}8a z$umn=bqW|TXDU#IG@ue4$8&hf&cCuwA%`*3s1D7c;^)ze+I16@quxr$dKA^6v#0{v zkt=pgFM}#3MsN?lLlrQGYV{A)34WsjT|0PqSYi#L-bM@R>LRFh-S#_$D&#II?>MT! zrOe10c_#GjF!;z|r2y2OFQ6*T^KwsEfC?x?ZBUK}uo6|kCDg0Ff#vuBmG3Po&u7%e zv#3JmQS1NUX(h-eN*j1k0eevaA=I5!TkBB;G@;hDqSi%Ft#7yUiODI~?Yt~+Q)^qg z*6phc`a(fpRkb&?za|{64Dyq6BHBOTi}Xbk{XNlvWM7T, 2013 -# Hannes Baldursson , 2013 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Icelandic (http://www.transifex.com/divio/django-cms/language/is/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Icelandic (https://app.transifex.com/divio/teams/58664/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -72,7 +68,6 @@ msgstr "Yfirskrifa URL" msgid "Keep this field empty if standard path should be used." msgstr "Haltu þessum reit tómum ef stöðluð slóð skal vera notuð." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +89,9 @@ msgstr "sýnileiki valmyndar" msgid "limit when this page is visible in the menu" msgstr "takmarka hvenær þessi síða birtist í valmyndinni." -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +180,6 @@ msgstr "Valið tungumál verður að vera stutt af kerfinu!" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,9 +210,10 @@ msgstr "%(name)s hlutur með frumlykilinn %(key)r er ekkki til." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Villa! Þú hefur ekki réttindi til að færa þessa síðu. Vinsamlega endurhladdu síðuna." +msgstr "" +"Villa! Þú hefur ekki réttindi til að færa þessa síðu. Vinsamlega endurhladdu" +" síðuna." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +246,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +253,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +284,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +293,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +331,47 @@ msgstr "Réttindi Notanda og Hópa" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Forsýning" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +400,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "Forsýning" - msgid "Structure" msgstr "" @@ -407,15 +443,12 @@ msgstr "Skrá út" msgid "Language" msgstr "Tungmál" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +457,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +466,6 @@ msgstr "" msgid "Page" msgstr "Síða" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +512,12 @@ msgid "Select a valid page" msgstr "Veldu gilda síðu" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +531,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +633,57 @@ msgstr "Leyfa á" msgid "page" msgstr "síða" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "eingöngu fyrir innskráða notendur" + +msgid "for anonymous users only" +msgstr "eingöngu fyrir nafnlausa notendur" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "titill" + +msgid "overwrite the title (html title tag)" +msgstr "yfirskrifa titilinn (html titill)" + +msgid "overwrite the title in the menu" +msgstr "yfirskrifa titilinn í valmyndinni" + +msgid "description" +msgstr "lýsing" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "endursenda" + +msgid "The template used to render the content." +msgstr "Sniðmátið notað til að birta efnið." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "sjálfgefið" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +692,6 @@ msgstr "" msgid "pages" msgstr "síður" -msgid "default" -msgstr "sjálfgefið" - msgid "slug" msgstr "skot" @@ -643,7 +719,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +827,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "eingöngu fyrir innskráða notendur" - -msgid "for anonymous users only" -msgstr "eingöngu fyrir nafnlausa notendur" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "titill" - -msgid "overwrite the title (html title tag)" -msgstr "yfirskrifa titilinn (html titill)" - -msgid "overwrite the title in the menu" -msgstr "yfirskrifa titilinn í valmyndinni" - -msgid "description" -msgstr "lýsing" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "endursenda" - -msgid "The template used to render the content." -msgstr "Sniðmátið notað til að birta efnið." - msgid "Advanced options" msgstr "Ítarlegar stillingar" @@ -798,7 +834,6 @@ msgid "Generic" msgstr "Almennt" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +843,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Vista" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Innskráning kerfisstjórnar here." @@ -881,7 +905,6 @@ msgstr "Notandanafn:" msgid "Password:" msgstr "Lykilorð:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +985,21 @@ msgstr "Klippa" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1009,6 @@ msgstr "Listi síðna" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "Íbætur í boði" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1191,6 @@ msgstr "Hætta við" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1441,6 @@ msgstr "Greinar" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/is/LC_MESSAGES/djangojs.mo b/cms/locale/is/LC_MESSAGES/djangojs.mo index 98637f24e4e46e7327632259948c2fd9e318d2fe..ae3633ecadb637d933d2a2f2985f62603e6492ba 100644 GIT binary patch delta 97 zcmey)@{47H4)0V(28O8&3=DoitUb|kIj@1Pp`os^fr5dVm5JrVx8m9!iFtXc#R^V| xIVq(@#l`t~3N{%)At1vcJvT8kM=v=)*G@;l$iUEevJRsXb7Dck=0HX@MgU9I9Ay9i delta 94 zcmeyx@||UZ4(}vJ28O8&3=DoitTEAYIj@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fYS)WmfxxBo5a|ojvBLMuo9BTjo diff --git a/cms/locale/is/LC_MESSAGES/djangojs.po b/cms/locale/is/LC_MESSAGES/djangojs.po index 437d6a2c559..5ff4c222c7a 100644 --- a/cms/locale/is/LC_MESSAGES/djangojs.po +++ b/cms/locale/is/LC_MESSAGES/djangojs.po @@ -10,15 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Icelandic (http://www.transifex.com/divio/django-cms/language/is/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Hannes Baldursson , 2013\n" +"Language-Team: Icelandic (http://app.transifex.com/divio/django-cms/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Ertu viss um að þú viljir breyta flipum án þess að vista síðuna fyrst?" diff --git a/cms/locale/is_IS/LC_MESSAGES/django.mo b/cms/locale/is_IS/LC_MESSAGES/django.mo index c04de59bdc018b6d2fa073f94f4ca5ca5c38a6fd..ff2af66f6f8ae0127dfed79d5c9b74e5c9b05fb5 100644 GIT binary patch delta 68 zcmX@hJezrf3S;6#RXrBnn9czO#C3q UU6PuZTdZ$tVP0I+H-_y7O^ diff --git a/cms/locale/is_IS/LC_MESSAGES/django.po b/cms/locale/is_IS/LC_MESSAGES/django.po index 6f2db471cd7..a325088fb4d 100644 --- a/cms/locale/is_IS/LC_MESSAGES/django.po +++ b/cms/locale/is_IS/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Icelandic (Iceland) (http://www.transifex.com/divio/django-cms/language/is_IS/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Icelandic (Iceland) (https://app.transifex.com/divio/teams/58664/is_IS/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/is_IS/LC_MESSAGES/djangojs.mo b/cms/locale/is_IS/LC_MESSAGES/djangojs.mo index fe00fb6ebc59e90b6dbba60bd05b6145debbf025..2b2a830dd28d17d3ddef06b8160246a928aa8f37 100644 GIT binary patch delta 68 zcmcb^e2IC23ge84s`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Yr50pl<|OK6mP|aa%bZwHF!BFg0O)!cP5=M^ delta 78 zcmcb_e20003ge=Qs`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQzupA^++Z8= diff --git a/cms/locale/is_IS/LC_MESSAGES/djangojs.po b/cms/locale/is_IS/LC_MESSAGES/djangojs.po index 346bad31628..8fb1b985125 100644 --- a/cms/locale/is_IS/LC_MESSAGES/djangojs.po +++ b/cms/locale/is_IS/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Icelandic (Iceland) (http://www.transifex.com/divio/django-cms/language/is_IS/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Icelandic (Iceland) (http://app.transifex.com/divio/django-cms/language/is_IS/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: is_IS\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/it/LC_MESSAGES/django.mo b/cms/locale/it/LC_MESSAGES/django.mo index d647cae747dbcea73157b67af5eceba91d306c96..23d39aa6ddf80115ae26e756d6268bf723f0cc99 100644 GIT binary patch delta 10166 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 delta 9958 zcmZA630zd={>SknA}DSkxP%LXqM|IaxFRZUiHhWc=8hu_isC@b4DL>fOS#u*np#?E z*{0QWtG{WcW!v?Zm36a4+bp%Ln^~DR^Z)sB9{czDpI1NLzvnsUJm=ZY0q;G&E#&L1 zA^y`%LN{9+Pt~%lR=A^~W%UmsZ>d_#awJ$*6~^PIxD^BFYj0Txv0ewuYRtW_p^Nf| z9WCoDW+z%!Pi)(XYj6_QMHhyn8;4t#->M=>r{XAf!OPeW6FOT~H5TKocn&i#C&{v! zpa*N?O018ou>szLjKO*c8{^X$fk$v59yjIOWL@XCtT805IpIWg#E;SVG}gys*a+Xn zDEu5F@scUmPO+>yl$)YD)DpX49I69j&3PB*P@aw5@d*s)`PNq?deCybfNFCw#UeTxmT5!0tBZiVV-dkn=McoSwLt7nZfE=0f9Vi!p>+>4s3 z!>ESdGQN-M;HRd14#Oz_gu3qv>b}Nl_IJ24XXoBEeg*PS%w)7XIWCDhbkH|094pX!^S9u$X~fsUvFC1WIZL$!BvI`gj^ zMw$~-P(62}>V2q@FGEe?deqeK#rAj-b=_6e+K01Fjj%qdomgyw@u+sXqB@j=F*w*y zGJ<3x_QJjB!Y^?a=4RS662zvIUqMafDO3aBViWuWqp@*U`vL7xOOl9sa3-o_{ZKQO zkD3900ZDU`sW=0xkpHaH{1}eWY-Nq45H*D*s1cW&@*>oOR-l${BdUYDP#xQcQFsJ3 z_3vX-{2Jr*{$C~0TE+5C=mBj}JxoG1kdEr0#G5MF-{7nlkHu3yEI4naH(PHL4>AFa=*heaU`8%|vGk8eux>f&EZ3Fa)!3 zG-?3rumuKC_dS6cNDwtshp?{R|9_EaWFMj$`a~!28&m%y>c-2c57nR80$Z_Rw5Huq z*AGH1%?MMTXe=`IWvJ)ON6p+4^gBqFl4z4Wh+38c<)<435WmoaQG{&z7Oqa4l+to3Uoo zpr$^ET3bC$9d3v!w=lLx-Isw0I26@kH)=*bs1DqLHA{_Z-@lJUAC7+*-!vC|hU(aP z)PsIT&4h-jhQqKq)<<=`9cn3(Q4h#Q-Ir?|Yn+a1w;Xvb{nmUEP03o+jhj&K>n_xV zL1ggOA=DE6fxL-UN`HH^x=>R+7f0eI)OBZ3GtrD4n1Q`91>MNU(%ONEJl{G&qRsWY zF>WA#0Z|@|YIqf{#N9X_lLpySxd#g=AI2Pv8_Yv+8tSdsfi!8oirN$5H`_DV6g5*V zu_w>Bl1Ngq7`0gfs88f>)JPAYX66!(#Xph0SOvUus^5yCxEr;rA2szyQLppcs2Tkn z)sdf3OH(VC`PURTBB_HdP$$}8875%~ZpC7}j$SMt$}5JaQ1#u1@kZcwoQQRXThx#8%+5KYG!{$-QPan{+%$+Se?)O>w>4K(0hLdJ7Ke1><8qaZk&xtxC8YXy@3(< zC5GWetdEz?dF{l8lw&a*6H({WOgS61w+8u1^xisA4bH>5SZ!R3x^Xk=h6hkH^pZJ$ z0(IXhw88ma>gN7?N(MO`0{y3U_WqD_-!9D}-{3^h_OYHzH^5Zq+WZ$UM% z)A%H+<1b<(d=)ig@0;>&DiJ^M`&yncHi>MJ_MO|38z`igFHFeER zxg*Z5#n%iMP=7BUg-k|KMx5>Q+8#m_MFBZZLNOf3V`y$ZuwACGVpew$Etud6BUjt~1QJ939kv^!` zdL%|;$rRRK$pR|2<9gIcJ5RN5%))redDsozsLi??HMNIO*MER&_$+Ga{%gt&3hfze zYfQu;oKHnvS5@e@d%B8>Tq-tV7M?=QM9egMX=av5p~R-qoa z6JziZR67SzU&hx_9e*3O$v;E2djWY1{MKa>P0>|U17Z9|Q4d?9Mwozla0Z6rK-2?r zQTL6()>w$zBa1NugQ%JL2Gx;YQ3Jh(>Tr}xGvH@ENz}t+48`84j^rS3iZvDo;C`Hs zm#_@WO6(~=g_?=)Q0>&7Vb53-Y(_Z+wK)f&1~w5jpdxI{^DQrlE?kava64+M9zgAl zeOQTaqh7QAGucR3h2eMv)$p6BhTlVt_$$;5UO;v13Tn;6OYH&1qF*<3A<@+2m=gu4 z2bW@9yc0FmccU7_XP)w%mnZ^8TYIaef z*XlX!fG1F|+i$2Fqi5TH1GYtVz=_>)CJx1&sF^sA8u3r4CA^O6XbkI>i^-__eWz6V+JL5!BS}KsC4%wPvrOmg*F0WEW5mx{iY|)@=`<5cM6HfoV7&wTT}?wI5o} z8-w+6B>D?UG(}HgLwp0Z7d}MIzy;KUenmYvs={8X4ycahp!UibY=a(j;N7St3}Rz^ z2X);URQuPlx8DEg+w3*I1=Yi;sD@mqsalR2;Rfu9C$SzjTiSd+^jrpk8yaI1x|5;Te`hsml-MG(Oa2Pd($56ZV3yi|6s17yo*$-}k+N2$g z$*37jM|E^0s$&ySn{kFId(p3oW#+^N)C}yvruZPEjef|>)(%xN-DG_&tNisjomS7o?XsGJ;;ap^?W~S zGo8X}{2lMc#eARJV&nq*A10ZoPxn?FfuEq->9ml2fuk2P|C-7TRA_T-$ENros;4iY zI(8McG|7wXx1kTJTRgRX1L66l6x_lil{=*;d%?_W5dDL%GpX`)|c<$ZA9-$v~}j4r()vHr|H1ek0b#z1SO{z)U=cDcEW`|D3~Nn1MS{_3vR< zv{ux7p!`-h65UvWn(A%X1&`YoSbty-$|)=Df2z4q4Q;}1c+}KiL3Om_D*Ls)8N(=# zLe1!SY=4H-53{f? zE=OIr4)s=TN6qLS)KWi>^?APaPbK(o)CcD))MonuHPzQq4`|MU)xm+7fJ0FubYlqm zurAI+b$BVN-HoX0cA#F%hcFSJL%(+W84^A47YxNPc9zQZQRP;sDU8PmOvM=Ng=#1t z9XJ>DpsmK8s17`g8u>G*8GY5%f3}+WuSdmsD%6pmQ6sLm#vVyL>W0q7fvD>yV{5EL zb#S9`vvHeoC#wD3r~&Ll&A^MO=e)g!`B%j^RA}mcM~xt4t!+KjT16TYus-FU=KLVk zR1ZfzXd>1^HLkZJjKUVYaa<>PlDczPsSCCK9SI#hs927*a5R?c0**Ntf%hOEIBOlT zlsG{2AQqVGvdBH;O9(f)j@!uh5?_)3lZYnQ(Mmta{Z;&Ufc!O8{OveP-iH{B#n5Qc!RicwBW)` z6h>hiVh{OI;w9oo;>PhiNd-UXSozdFOl&0diT0U#(VV)0coXV)$oK{MaPrMHwg30y5&OLM zzh%8lyidGHJj#gy#A5pbYS_iZ3F1Q{i~3bqgrP(cc{MIZwRSJLjtzu9QaW~;x)sJC zb;oMXuq#fI3?L>GZxSQ8$b&ipL|r11_<-;dcXPg@X=pO8B=mcsuBjunUL`&cI9o;g zQ>opdDvnL$NAM$}iMjeI^4|y@rwF&HUymy&wE*E=I-hk<*t~W+g*T|Gf|2ooY zF(Z3Tu@esd>lFW6%ir>Yk&GtZLEfzdw{sx zl-t&_*Vo!c<*me0;%81?CMw8daTifaBom3$rQ zA|9*B>>mYObDDH6rs7t@M?P5V|1pL8DC|TXHxa)O!>Ds&e;h*SNFn}9Y$w_gmxx<9 zw-2L;oBOysjxAhsr=40? z@F8L%F@gG9@GT;o{2%xYp<}g;)s_05L@4EU*pgUFz6|T!_`dF=FpyYIByqAFb=+(m zi$m=yYr3hsO8H^pT~jX}zi}V=Zj&cq2g(6liQRE4@d&wp2FVzbJMdeaij9f?A=j~p zJkCz7c=G#A9!Wmjy|N5B`aF5HAoqW>cr5(B`k7GpTP$>2{*NxyFica0Kq@5EFPgp+)fH zgl^%1=E*~YWy$Z>4vtKl6%sg>(IXg|xhE|6TrYoUa6sSqTA`kquHs->zrtF9lR0gh zmHB2k=J-5bhr8VCnC^18=2Up+rv@+Qd=?hS%S*g?QNSx{QR%CVQGI#FW zRIeH;Epg4$9bJk`t4hne6wl(m@|2=Eo_bx%OcQ}S$1ab_=Cmfm`mNx;H^`qg$7SfkE|WIIAYq zj|ZZ?J0eEa^_HFXY9Ue`)o2jbsz4DC10O)- or=!T}E^?KX1x~Dt4Hm4-4GrvHJ+3j&@wv@fa(%G&nxP^83k3xX6aWAK diff --git a/cms/locale/it/LC_MESSAGES/django.po b/cms/locale/it/LC_MESSAGES/django.po index a1db59b7dd6..0a256ac8475 100644 --- a/cms/locale/it/LC_MESSAGES/django.po +++ b/cms/locale/it/LC_MESSAGES/django.po @@ -3,40 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Marco Badan , 2011 -# Denis Darii , 2011 -# Denis Darii , 2011 -# Francesco Moggia , 2013 -# geobaldi , 2018 -# giammi , 2017 -# yakky , 2011 -# yakky , 2013-2016,2019 -# yakky , 2012 -# karim79 , 2011 -# Marco Badan , 2011,2017 -# Marco Barberis , 2011 -# mbi0 , 2013 -# mbi0 , 2013 -# Saverio , 2014 -# Stefano Brentegani , 2013-2014 -# Stefano Brentegani , 2011 -# Stefano Brentegani , 2011,2014-2015 -# Tania Monti , 2013 -# yakky , 2011-2012 +# Marco Badan , 2022 +# Fabian Braun , 2023 +# giammi , 2023 +# geobaldi , 2023 +# yakky , 2023 +# Leonardo Cavallucci, 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Italian (http://www.transifex.com/divio/django-cms/language/it/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Leonardo Cavallucci, 2023\n" +"Language-Team: Italian (https://app.transifex.com/divio/teams/58664/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Tutti" @@ -67,7 +53,9 @@ msgstr "Titolo pagina" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sovrascrive ciò che viene visualizzato nella parte superiore del browser o nei Preferiti" +msgstr "" +"Sovrascrive ciò che viene visualizzato nella parte superiore del browser o " +"nei Preferiti" msgid "Description meta tag" msgstr "Meta Tag Descrizione" @@ -75,9 +63,6 @@ msgstr "Meta Tag Descrizione" msgid "A description of the page used by search engines." msgstr "Una descrizione della pagina, talvolta usata dai motori di ricerca." -msgid "Slug must not be empty." -msgstr "Lo slug non può essere vuoto." - msgid "Page type" msgstr "Tipo di pagina" @@ -90,12 +75,12 @@ msgstr "Sovrascrive l'URL" msgid "Keep this field empty if standard path should be used." msgstr "Lascia questo campo vuoto per utilizzare il percorso standard." -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Tutti gli antenati non verranno visualizzati nella barra di navigazione" +msgstr "" +"Tutti gli antenati non verranno visualizzati nella barra di navigazione" msgid "Redirect" msgstr "Reindirizza" @@ -112,13 +97,11 @@ msgstr "visibilità menu" msgid "limit when this page is visible in the menu" msgstr "limita visibilità della pagina nel menu" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "Opzioni URL" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "Opzioni menù" msgid "Application" msgstr "Applicazione" @@ -132,12 +115,12 @@ msgstr "Configurazioni applicazione" msgid "A page with this reverse URL id exists already." msgstr "Esiste già una pagina con questo reverse URL id." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Valore della configurazione non valido" msgid "An application instance using this configuration already exists." -msgstr "Esiste già un'istanza di applicazione che usa la stessa configurazione." +msgstr "" +"Esiste già un'istanza di applicazione che usa la stessa configurazione." msgid "An application instance with this name already exists." msgstr "Esiste già un'istanza di applicazione con lo stesso nome." @@ -169,32 +152,44 @@ msgstr "Elimina" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Gli utenti non possono creare una pagina senza i permessi per modificare la pagina creata. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono creare una pagina senza i permessi per modificare la " +"pagina creata. Modifica i permessi relativi." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Gli utenti non possono cancellare una pagina senza i permessi per modificare la pagina stessa. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono cancellare una pagina senza i permessi per modificare" +" la pagina stessa. Modifica i permessi relativi." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Gli utenti non possono impostare i permessi di una pagina senza i permessi per modificare la pagina stessa. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono impostare i permessi di una pagina senza i permessi " +"per modificare la pagina stessa. Modifica i permessi relativi." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Gli utenti non possono cancellare i permessi di una pagina senza i permessi per modificare la pagina stessa. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono cancellare i permessi di una pagina senza i permessi " +"per modificare la pagina stessa. Modifica i permessi relativi." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Gli utenti non possono creare i permessi di una pagina senza i permessi per modificare il permesso stesso. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono creare i permessi di una pagina senza i permessi per " +"modificare il permesso stesso. Modifica i permessi relativi." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Gli utenti non possono cancellare i permessi di una pagina senza i permessi per modificare i permessi stessi. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono cancellare i permessi di una pagina senza i permessi " +"per modificare i permessi stessi. Modifica i permessi relativi." #, python-format msgid "Invalid plugin type '%s'" @@ -206,7 +201,6 @@ msgstr "La lingua deve essere scelta tra le lingue supportate!" msgid "Parent plugin language must be same as language!" msgstr "Il linguaggio del plugin di livello superiore deve essere lo stesso!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Il placeholder del plugin genitore deve essere identico!" @@ -221,7 +215,6 @@ msgid "The page is not eligible to be home." msgstr "La pagina non può essere impostata come home" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -238,16 +231,18 @@ msgstr "L'oggetto %(name)s con chiave primaria %(key)r non esiste." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Errore! Non hai il permesso per spostare questa pagina. Ricarica la pagina" +msgstr "" +"Errore! Non hai il permesso per spostare questa pagina. Ricarica la pagina" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Errore! Non hai il permesso di copiare questa pagina" msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Errore! la pagina che stai incollando non è tradotta in nessuna delle lingue configurate sul sito di destinazione" +msgstr "" +"Errore! la pagina che stai incollando non è tradotta in nessuna delle lingue" +" configurate sul sito di destinazione" msgid "You do not have permission to edit this page" msgstr "Non hai i permessi per modificare questa pagina" @@ -273,16 +268,27 @@ msgstr "Il template è stato modificato con successo" msgid "You do not have permission to copy these plugins." msgstr "Non hai i permessi per copiare questi plugin." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Non sei autorizzato/a a cancellare questa pagina" +msgstr "Non hai i permessi per cancellare questa pagina" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Il titolo e i plugin con lingua %(language)s sono stati eliminati" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Non disponi del permesso per modificare lo status di in_navigation per questa pagina" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "Contenuto pubblico" + +msgid "Empty" +msgstr "Vuoto" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Restrizione di visualizzazione" @@ -300,7 +306,6 @@ msgstr "Non hai i permessi per modificare questo elemento" msgid "You do not have permission to add a plugin" msgstr "Non sei autorizzato/a ad aggiungere un plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Non hai il permesso di copiare questo metacarattere." @@ -310,18 +315,15 @@ msgstr "Plugin non trovato" msgid "You do not have permission to edit this plugin" msgstr "Non hai i permessi per modificare questo plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Non hai i permessi per incollare questo plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Non hai il permesso di incollare questo metacarattere" msgid "You have no permission to move this plugin" msgstr "Non hai i permessi per spostare questo plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Non hai il permesso di tagliare questo plugin." @@ -351,6 +353,47 @@ msgstr "Permessi utenti e gruppi" msgid "Page permissions management" msgstr "Pagina di gestione dei permessi" +msgid "Actions" +msgstr "Azioni" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "Aggiungi contenuto" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Anteprima" + +msgid "Settings" +msgstr "Impostazioni" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Nessun apphook \"%r\" registrato trovato" @@ -371,7 +414,9 @@ msgstr "Crea Alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Questo è un alias, puoi modificare il contenuto solo dalla pagina %(page_title)s." +msgstr "" +"Questo è un alias, puoi modificare il contenuto solo dalla pagina %(page_title)s." msgid "Create" msgstr "Crea" @@ -379,9 +424,6 @@ msgstr "Crea" msgid "Edit" msgstr "Modifica" -msgid "Preview" -msgstr "Anteprima" - msgid "Structure" msgstr "Struttura" @@ -425,15 +467,12 @@ msgstr "Logout" msgid "Language" msgstr "Lingua" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Aggiungi traduzione" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Elimina traduzione" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Copia tutti i plugin" @@ -442,7 +481,6 @@ msgid "from %s" msgstr "da %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Sei sicuro di volere copiare tutti i plugins da %s?" @@ -452,7 +490,6 @@ msgstr "Pagine" msgid "Page" msgstr "Pagina" -#| msgid "Create" msgid "Create Page" msgstr "Crea pagina" @@ -499,22 +536,18 @@ msgid "Select a valid page" msgstr "Seleziona una pagina valida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "La pagina %(conflict_page)s ha lo stesso URL '%(url)s' della pagina \"%(instance)s\"." +msgstr "" +"La pagina %(conflict_page)s ha lo stesso URL '%(url)s' della pagina " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "La pagina %(conflict_page)s ha lo stesso URL '%(url)s' as della pagina corrente." +msgstr "" +"La pagina %(conflict_page)s ha lo stesso URL '%(url)s' as della pagina " +"corrente." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." @@ -524,9 +557,15 @@ msgid "Provide a title for the new page." msgstr "Inserisci un titolo per la nuova pagina." msgid "Leave empty for automatic slug, or override as required." -msgstr "Lascia vuoto per slug automatico, o inserisci a seconda delle necessità." +msgstr "" +"Lascia vuoto per slug automatico, o inserisci a seconda delle necessità." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." msgstr "Non hai i permessi necessari per aggiungere una pagina." @@ -623,17 +662,67 @@ msgstr "Concesso su" msgid "page" msgstr "pagina" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "solo per utenti che hanno eseguito il login" + +msgid "for anonymous users only" +msgstr "solo per utenti anonimi" + +msgid "Inherit from parent page" +msgstr "Eredita dalla pagina di livello superiore" + +msgid "Deny" +msgstr "Nega" + +msgid "Only this website" +msgstr "Solo questo sito" + +msgid "Allow" +msgstr "Consenti" + +msgid "title" +msgstr "titolo" + +msgid "overwrite the title (html title tag)" +msgstr "sovrascrivere il titolo (tag html title)" + +msgid "overwrite the title in the menu" +msgstr "sovrascrivere il titolo nel menu" + +msgid "description" +msgstr "descrizione" + +msgid "The text displayed in search engines." +msgstr "Il testo mostrato dai motori di ricerca." + +msgid "redirect" +msgstr "redirect" + +msgid "The template used to render the content." +msgstr "Il template utilizzato per il rendering del contenuto." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "predefinito" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Identificativo univoco usato con il templatetag page_url per riferirsi a questa pagina" +msgstr "" +"Identificativo univoco usato con il templatetag page_url per riferirsi a " +"questa pagina" msgid "pages" msgstr "pagine" -msgid "default" -msgstr "predefinito" - msgid "slug" msgstr "slug" @@ -661,29 +750,36 @@ msgstr "il livello di pagina" msgid "frontend view restriction" msgstr "Restrizione visualizzazione frontend" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Sei pregato di selezionare un utente o un gruppo." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Gli utenti non possono pubblicare una pagina senza i permessi per modificare la pagina. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono pubblicare una pagina senza i permessi per modificare" +" la pagina. Modifica i permessi relativi." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Gli utenti non possono modificare le impostazioni avanzate senza i permessi per modificare la pagina. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono modificare le impostazioni avanzate senza i permessi " +"per modificare la pagina. Modifica i permessi relativi." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Gli utenti non possono modificare i permessi di una pagina senza i permessi per modificare la pagina stessa. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono modificare i permessi di una pagina senza i permessi " +"per modificare la pagina stessa. Modifica i permessi relativi." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Gli utenti non possono spostare una pagina senza i permessi per modificare la pagina stessa. Modifica i permessi relativi." +msgstr "" +"Gli utenti non possono spostare una pagina senza i permessi per modificare " +"la pagina stessa. Modifica i permessi relativi." msgid "can recover any deleted page" msgstr "può recuperare qualsiasi pagina cancellata" @@ -703,7 +799,10 @@ msgstr "Autorizzazioni sulla pagina" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Il permesso \"Aggiungi pagina\" richiede anche l'accesso ai figli o discendenti, altrimenti la pagina aggiunta non potrà essere modificata dal suo creatore." +msgstr "" +"Il permesso \"Aggiungi pagina\" richiede anche l'accesso ai figli o " +"discendenti, altrimenti la pagina aggiunta non potrà essere modificata dal " +"suo creatore." msgid "User (page)" msgstr "Utente (pagina)" @@ -747,7 +846,9 @@ msgstr "Nome segnaposto statico" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Un nome descrittivo per identificare questo segnaposto statico. Non visibile agli utenti." +msgstr "" +"Un nome descrittivo per identificare questo segnaposto statico. Non visibile" +" agli utenti." msgid "placeholder code" msgstr "Codice segnaposto" @@ -768,46 +869,8 @@ msgid "static placeholders" msgstr "segnaposto statici" msgid "A static placeholder with the same site and code already exists" -msgstr "Esiste già un segnaposto statico con lo stesso codice per lo stesso sito" - -msgid "for logged in users only" -msgstr "solo per utenti che hanno eseguito il login" - -msgid "for anonymous users only" -msgstr "solo per utenti anonimi" - -msgid "Inherit from parent page" -msgstr "Eredita dalla pagina di livello superiore" - -msgid "Deny" -msgstr "Nega" - -msgid "Only this website" -msgstr "Solo questo sito" - -msgid "Allow" -msgstr "Consenti" - -msgid "title" -msgstr "titolo" - -msgid "overwrite the title (html title tag)" -msgstr "sovrascrivere il titolo (tag html title)" - -msgid "overwrite the title in the menu" -msgstr "sovrascrivere il titolo nel menu" - -msgid "description" -msgstr "descrizione" - -msgid "The text displayed in search engines." -msgstr "Il testo mostrato dai motori di ricerca." - -msgid "redirect" -msgstr "redirect" - -msgid "The template used to render the content." -msgstr "Il template utilizzato per il rendering del contenuto." +msgstr "" +"Esiste già un segnaposto statico con lo stesso codice per lo stesso sito" msgid "Advanced options" msgstr "Opzioni avanzate" @@ -816,7 +879,6 @@ msgid "Generic" msgstr "Generico" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "Il %(name)s \"%(obj)s\" è stato modificato con successo." @@ -826,68 +888,58 @@ msgstr "Questo plugin non prevede altre impostazioni. Premi salva." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Modificata" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "Cancellato" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "" +msgstr "Taglia plugin" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "Incolla Plugin" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Salva" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "Accedi alla pagina d'amministrazione da qui." +msgstr "" +"Accedi alla pagina d'amministrazione da qui." #, python-format msgid "Login url: %(login_url)s" @@ -899,9 +951,8 @@ msgstr "Nome utente:" msgid "Password:" msgstr "Password:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Aggiungi una pagina" +msgstr "Aggiungi una Pagina" msgid "Change a page" msgstr "Modifica una pagina" @@ -916,6 +967,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "Per favore correggi l'errore sottostante." msgstr[1] "Per favore correggi gli errori sottostanti." +msgstr[2] "Per favore correggi gli errori sottostanti." msgid "All permissions" msgstr "Tutti i permessi" @@ -980,16 +1032,21 @@ msgstr "Taglia" msgid "Paste" msgstr "Incolla" -#| msgid "Save as new" msgid "Set as home" msgstr "Imposta come home" +msgid "Permissions" +msgstr "Permessi" + msgid "is restricted" msgstr "è limitata" msgid "last change by" msgstr "ultima modifica di" +msgid "last change on" +msgstr "ultima modifica il" + msgid "meta" msgstr "Meta" @@ -999,7 +1056,6 @@ msgstr "Elenco pagine" msgid "Search" msgstr "Cerca" -#| msgid "Page Title" msgid "Page Tree" msgstr "Albero delle pagine" @@ -1011,19 +1067,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Recupera %(name)s cancellato\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Recupera %(name)s cancellato\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navigazione principale" -#| msgid "Actions" msgid "Options" msgstr "Opzioni" @@ -1031,7 +1082,8 @@ msgid "Successfully moved" msgstr "Spostato con successo" msgid "Changes within the tree might require a refresh." -msgstr "Per modifiche all'interno dell'albero potrebbe essere necessario ricaricare." +msgstr "" +"Per modifiche all'interno dell'albero potrebbe essere necessario ricaricare." msgid "Error:" msgstr "Errore:" @@ -1039,7 +1091,9 @@ msgstr "Errore:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Questa pagina non può essere copiata perché è collegata ad un'applicazione. Vai nelle impostazioni avanzate della pagina per gestire l'apphook." +msgstr "" +"Questa pagina non può essere copiata perché è collegata ad un'applicazione. " +"Vai nelle impostazioni avanzate della pagina per gestire l'apphook." msgid "Are you sure you want to § this page?" msgstr "Confermi di voler § questa pagina?" @@ -1047,7 +1101,6 @@ msgstr "Confermi di voler § questa pagina?" msgid "Reload" msgstr "Ricarica" -#| msgid "New Page" msgid "New node" msgstr "Nuovo nodo" @@ -1061,17 +1114,18 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Non è presente alcun %(object)s \n
    \n Add %(object)s now.\n " +msgstr "" +"\n" +" Non è presente alcun %(object)s \n" +"
    \n" +" Add %(object)s now.\n" +" " msgid "Copy options" msgstr "Copia opzioni" @@ -1085,30 +1139,15 @@ msgstr "Chiudi" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Pubblicata" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Non pubblicata" - -msgid "Empty" -msgstr "Vuoto" - -#| msgid "in menu" msgid "In menu" msgstr "In navigazione" -#| msgid "not in menu" msgid "Not in menu" msgstr "Non in navigazione" -#| msgid "New page" msgid "View page" msgstr "Visualizza pagina" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1125,12 +1164,18 @@ msgstr "Nei menu" msgid "not in menu" msgstr "non nel menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Impostazioni pagina (Maiusc-clic per impostazioni avanzate)" -msgid "Permissions" -msgstr "Permessi" +msgid "This page has no preview!" +msgstr "Questa pagina non ha un'anteprima!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Redirezione a:" msgid "Clipboard" msgstr "Appunti" @@ -1163,7 +1208,8 @@ msgid "You cannot add plugins to this plugin." msgstr "Non è possibile aggiungere plugin a questo plugin." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Questo plugin non può essere spostato o modificato fuori dal suo contenitore" +msgstr "" +"Questo plugin non può essere spostato o modificato fuori dal suo contenitore" msgid "Clipboard is empty." msgstr "Non ci sono appunti." @@ -1180,7 +1226,6 @@ msgstr "Evidenzia" msgid "Available plugins" msgstr "Plugin disponibili" -#| msgid "Structure" msgid "Toggle structure" msgstr "Attiva struttura" @@ -1194,11 +1239,12 @@ msgid "More" msgstr "approfondisci" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Versione di sviluppo basata django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Versione di sviluppo basata django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Annulla" @@ -1206,7 +1252,6 @@ msgstr "Annulla" msgid "The following error occured:" msgstr "Si è verificato il seguente errore:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Azione eseguita con successo." @@ -1219,15 +1264,12 @@ msgstr "Sei sicuro di voler pubblicare questa pagina?" msgid "Plugin will be added here" msgstr "Il plugin sarà aggiunto qui" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Ci sono modifiche non salvate." -#| msgid "Loading..." msgid "Loading" msgstr "Caricamento in corso" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Sicuro di voler annullare queste modifiche?" @@ -1236,7 +1278,6 @@ msgid "" "correctly." msgstr "Il form non può essere caricato. Controlla che il server sia attivo." -#| msgid "Notify user" msgid "Most used" msgstr "Più usato" @@ -1246,10 +1287,12 @@ msgstr "Scorciatoie" msgid "The page was changed in the meantime, reloading..." msgstr "La pagina è cambiata nel frattempo, aggiornamento in corso ..." +msgid "CMS-wide Shortcuts" +msgstr "Scorciatoie a livello di CMS" + msgid "Bring up this help dialog" msgstr "Attiva questa finestra di aiuto" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Chiudi/annulla" @@ -1265,32 +1308,29 @@ msgstr "Apri finestra \"Crea\"" msgid "Focus on Toolbar" msgstr "Focus sulla toolbar" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Focus sui segnaposto" msgid "Move to next/previous element" msgstr "Vai all'elemento successivo/precedente" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Focus sui plugin del segnaposto" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Modifica plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Apri il menù delle azioni" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Espandi/chiudi" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Login fallito. Per favore, verifica le credenziali e riprova." +msgstr "" +"Login fallito. Per favore, verifica le credenziali e " +"riprova." msgid "Double-click to edit" msgstr "Doppio clic per modificare" @@ -1313,12 +1353,6 @@ msgstr "Ingrandisci" msgid "Drop a plugin here" msgstr "Rilascia un plugin qui" -msgid "This page has no preview!" -msgstr "Questa pagina non ha un'anteprima!" - -msgid "It is being redirected to:" -msgstr "Redirezione a:" - msgid "Installation successful!" msgstr "Installazione completata!" @@ -1333,14 +1367,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Benvenuto in django CMS versione %(cms_version)s.\n " +msgstr "" +"\n" +" Benvenuto in django CMS versione %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Aggiungi la prima pagina al sito per continuare.\n " +msgstr "" +"\n" +" Aggiungi la prima pagina al sito per continuare.\n" +" " #, python-format msgid "" @@ -1348,7 +1388,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n Sembra che JavaScript sia disabilitato,\n aggiungi una pagina manualmente.\n " +msgstr "" +"\n" +" Sembra che JavaScript sia disabilitato,\n" +" aggiungi una pagina manualmente.\n" +" " msgid "Installation Notes" msgstr "Note di installazione" @@ -1359,32 +1403,17 @@ msgstr "Supporto" msgid "Documentation" msgstr "Documentazione" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Se non vedi il logo di django CMS in cima alla pagina, verifica di aver collegato la cartella static/cms alla cartella degli static file

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Se non vedi il logo di django CMS in cima alla pagina, verifica di aver collegato la cartella static/cms alla cartella degli static file

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,7 +1421,12 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Vedi questo messaggio perchê è impostato \n DEBUG = True nei setting di Django e non sono state ancora aggiunte pagine.\n

    \n " +msgstr "" +"\n" +"

    Vedi questo messaggio perchê è impostato \n" +" DEBUG = True nei setting di Django e non sono state ancora aggiunte pagine.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Benvenuto in django CMS" @@ -1409,11 +1443,7 @@ msgstr "Seleziona un'opzione fra quelle presenti per procedere." msgid "Next" msgstr "Avanti" -msgid "no content" -msgstr "nessun contenuto" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1424,7 +1454,9 @@ msgstr "Pagina non trovata su %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Un template tag non può trovare la pagina con argomenti di lookup `%(page_lookup)s `. \nL'URL della richiesta era: http://%(host)s%(path)s" +msgstr "" +"Un template tag non può trovare la pagina con argomenti di lookup `%(page_lookup)s `. \n" +"L'URL della richiesta era: http://%(host)s%(path)s" msgid "Two columns" msgstr "Due colonne" @@ -1437,7 +1469,8 @@ msgstr "nome utente" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" +msgstr "" +"Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" msgid "Enter a valid username." msgstr "Inserisci un nome utente valido" @@ -1457,7 +1490,9 @@ msgstr "attivo" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Stabilisce se l'utente può essere considerato attivo. Deseleziona questo selettore piuttosto che cancellare gli account." +msgstr "" +"Stabilisce se l'utente può essere considerato attivo. Deseleziona questo " +"selettore piuttosto che cancellare gli account." msgid "users" msgstr "utenti" @@ -1492,7 +1527,6 @@ msgstr "Articoli" msgid "Sample App" msgstr "App d'esempio" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "App di esempio con configurazione" @@ -1502,9 +1536,8 @@ msgstr "App di prova con permessi esclusi" msgid "Sample App 2" msgstr "App di esempio 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "App di esempio 3" +msgstr "App di esempio 2" msgid "Namespaced App" msgstr "App con namespace" @@ -1539,9 +1572,8 @@ msgstr "Menu2 statico" msgid "Static Menu3" msgstr "Static Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Static Menu4" +msgstr "Menu statico" msgid "Category" msgstr "Categoria" @@ -1568,12 +1600,10 @@ msgid "UserSettings" msgstr "UserSettings" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Aggiungi plugin al segnaposto \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Aggiungi plugin a %(plugin_name)s" @@ -1591,7 +1621,9 @@ msgstr "Questo placeholder contiene già il numero massimo di plugin (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Questo placeholder contiene già il numero massimo contentito (%(limit)s) di plugin %(plugin_name)s." +msgstr "" +"Questo placeholder contiene già il numero massimo contentito (%(limit)s) di " +"plugin %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1601,7 +1633,9 @@ msgstr "Impossibile trovare il seguente modulo CMS_REQUEST_IP_RESOLVER: \"{0}\"" msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Impossibile trovare la seguente funzione CMS_REQUEST_IP_RESOLVER: \"{0}\" nel modulo \"{1}\"" +msgstr "" +"Impossibile trovare la seguente funzione CMS_REQUEST_IP_RESOLVER: \"{0}\" " +"nel modulo \"{1}\"" #, python-format msgid "Create a new %s instance." @@ -1610,394 +1644,3 @@ msgstr "Crea una nuova istanza di %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "E' già stato registrato uno wizard per il model: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/it/LC_MESSAGES/djangojs.mo b/cms/locale/it/LC_MESSAGES/djangojs.mo index d8654bdc501c32907d03884f3f5084372a84f8f5..78f875760bdcfa5ee50d1865f4c1ec73299c2f0b 100644 GIT binary patch delta 233 zcmW;GzY2m-7zOZa8dT8I5<$b)kW<3FDuISXM4M1cdzW+wMCJBpYi>5{5!#|B=^1*1 z-l1a$ew>fX8SdM-)YqSmac77QeQ==;AynDG93(X00auN&7kUD-8e>iL8I5O#VtTPy zHB`Kh)hUjOTiE875SGJ&^0jBH8fN(G_x|c&^7=9E}z8W65WuZ#Ju91#FG3XD}{i>(wuw+$DFdn zqQsPZ1)Bm8UoR2LcSy-B%gonH&aj(o#;CwtUS2*ql5vfYk+niWPH9nMj;%(Xf}*X0 Kq2^>eCVK$6=PQZ; diff --git a/cms/locale/it/LC_MESSAGES/djangojs.po b/cms/locale/it/LC_MESSAGES/djangojs.po index 3ed415037ad..911c1fef4fb 100644 --- a/cms/locale/it/LC_MESSAGES/djangojs.po +++ b/cms/locale/it/LC_MESSAGES/djangojs.po @@ -5,6 +5,7 @@ # Translators: # Translators: # yakky , 2015 +# Leonardo Cavallucci, 2023 # Marco Barberis , 2011 # Stefano Brentegani , 2013 # Stefano Brentegani , 2011 @@ -14,15 +15,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Italian (http://www.transifex.com/divio/django-cms/language/it/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Leonardo Cavallucci, 2023\n" +"Language-Team: Italian (http://app.transifex.com/divio/django-cms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "riservato" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Vuoi davvero cambiare scheda senza salvare prima la pagina?" diff --git a/cms/locale/ja/LC_MESSAGES/django.mo b/cms/locale/ja/LC_MESSAGES/django.mo index 615be3eca6b5b389029a57b1ba06fc36ab17f8ba..6eb1d4334ce4560efd0f33f934b3c5711087fd27 100644 GIT binary patch delta 8286 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 MN{hx(_32*!23zg{`v3p{ delta 8497 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 MyQ!gFU7zOv15v+9fB*mh diff --git a/cms/locale/ja/LC_MESSAGES/django.po b/cms/locale/ja/LC_MESSAGES/django.po index 28ca7560530..c894fc7cfb6 100644 --- a/cms/locale/ja/LC_MESSAGES/django.po +++ b/cms/locale/ja/LC_MESSAGES/django.po @@ -3,22 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Daigo Sakamoto , 2011 -# Jonas Obrist , 2011 -# Jonas Obrist , 2012,2015 -# Paulo Alvarado , 2017 -# tenomoto , 2017 -# tenomoto , 2017 -# Yasushi Masuda , 2013 +# Paulo Alvarado , 2023 +# tenomoto , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Japanese (http://www.transifex.com/divio/django-cms/language/ja/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Japanese (https://app.transifex.com/divio/teams/58664/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,9 +58,6 @@ msgstr "メタタグの記述" msgid "A description of the page used by search engines." msgstr "検索エンジンが利用する記述。" -msgid "Slug must not be empty." -msgstr "スラグは空ではいけません。" - msgid "Page type" msgstr "ページタイプ" @@ -77,7 +70,6 @@ msgstr "上書きURL" msgid "Keep this field empty if standard path should be used." msgstr "標準のパスを使う場合は、このフィールドを空のままにしてください。" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -99,11 +91,9 @@ msgstr "メニューの可視性" msgid "limit when this page is visible in the menu" msgstr "このページをメニューに表示するタイミングを制限します" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -119,7 +109,6 @@ msgstr "アプリケーション設定" msgid "A page with this reverse URL id exists already." msgstr "この逆引きURLを持っているページが存在します。" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -193,7 +182,6 @@ msgstr "「言語」に、サポートする言語をセットしてください msgid "Parent plugin language must be same as language!" msgstr "親プラグインの言語は言語と同じでなければなりません。" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "親プラグインのプレースホルダはプレースホルダと同じでなくてはなりません。" @@ -208,7 +196,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -227,7 +214,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "エラー!このページを移動する権限がありません。ページを再読み込みしてください。" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -260,7 +246,6 @@ msgstr "テンプレートを変更しました。" msgid "You do not have permission to copy these plugins." msgstr "プラグインをコピーする権限がありません。" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -268,8 +253,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "%(language)s 版のタイトルとプラグインを削除しました。" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "このページの in_navigation ステータスを変更する権限がありません" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "空" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "表示制限" @@ -287,7 +284,6 @@ msgstr "これを編集する権限がありません。" msgid "You do not have permission to add a plugin" msgstr "プラグインを追加する権限がありません。" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "このプレースホルダをコピーする権限がありません。" @@ -297,18 +293,15 @@ msgstr "プラグインが見つかりません。" msgid "You do not have permission to edit this plugin" msgstr "このプラグインを編集する権限がありません" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "このプラグインをペーストする権限がありません。" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "このプレースホルダをペーストする権限がありません。" msgid "You have no permission to move this plugin" msgstr "このプラグインを移動する権限がありません。" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "このプラグインをカットする権限がありません。" @@ -338,6 +331,47 @@ msgstr "ユーザとグループ権限" msgid "Page permissions management" msgstr "ページ権限管理" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "プレビュー" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "登録されたapphook \"%r\" が見つかりません。" @@ -358,7 +392,9 @@ msgstr "エリアスを作る。" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "これはエイリアス参照です。内容の編集ができるページは %(page_title)s だけです。" +msgstr "" +"これはエイリアス参照です。内容の編集ができるページは %(page_title)s だけです。" msgid "Create" msgstr "作成" @@ -366,9 +402,6 @@ msgstr "作成" msgid "Edit" msgstr "編集" -msgid "Preview" -msgstr "プレビュー" - msgid "Structure" msgstr "ストラクチャ" @@ -412,15 +445,12 @@ msgstr "ログアウト" msgid "Language" msgstr "言語" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "翻訳を追加" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "翻訳を削除" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "全てのプラグインをコピー" @@ -429,7 +459,6 @@ msgid "from %s" msgstr "%s から" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "%s から全てのプラグインをコピーしてもよいですか?" @@ -439,7 +468,6 @@ msgstr "ページ" msgid "Page" msgstr "ページ" -#| msgid "Create" msgid "Create Page" msgstr "ページ作成" @@ -486,20 +514,12 @@ msgid "Select a valid page" msgstr "有効なページを選択してください" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -513,7 +533,12 @@ msgstr "新しいページのタイトルを設定する。" msgid "Leave empty for automatic slug, or override as required." msgstr "空欄のままで自動スラグを使うか必要に応じて上書きする。" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -610,6 +635,57 @@ msgstr "権限を付与" msgid "page" msgstr "ページ" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "ログインユーザー用" + +msgid "for anonymous users only" +msgstr "匿名ユーザー用" + +msgid "Inherit from parent page" +msgstr "親ページから継承" + +msgid "Deny" +msgstr "否定" + +msgid "Only this website" +msgstr "このウェブサイトのみ" + +msgid "Allow" +msgstr "肯定" + +msgid "title" +msgstr "タイトル" + +msgid "overwrite the title (html title tag)" +msgstr "タイトル (HTMLのtitleタグの中身) を書き換えます" + +msgid "overwrite the title in the menu" +msgstr "メニューのタイトルを書き替える" + +msgid "description" +msgstr "説明" + +msgid "The text displayed in search engines." +msgstr "検索エンジンに表示するテキストです。" + +msgid "redirect" +msgstr "リダイレクト" + +msgid "The template used to render the content." +msgstr "コンテンツのレンダリングに使うテンプレートです。" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "デフォルト" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -618,9 +694,6 @@ msgstr "page_url テンプレートタグでこのページをリンクする時 msgid "pages" msgstr "ページ" -msgid "default" -msgstr "デフォルト" - msgid "slug" msgstr "スラグ" @@ -648,7 +721,6 @@ msgstr "ページレベルの権限です" msgid "frontend view restriction" msgstr "フロントエンドで表示制限します" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "ユーザかグループを選択してください。" @@ -690,7 +762,8 @@ msgstr "ページ権限" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "ページ追加権限を付与する場合、子ページやその配下へのアクセス権限も付与してください。さもないと、作成者が追加したページを編集できなくなります。" +msgstr "" +"ページ追加権限を付与する場合、子ページやその配下へのアクセス権限も付与してください。さもないと、作成者が追加したページを編集できなくなります。" msgid "User (page)" msgstr "ユーザ (ページ)" @@ -757,45 +830,6 @@ msgstr "固定プレースホルダ" msgid "A static placeholder with the same site and code already exists" msgstr "同じサイトとコードの固定プレースホルダが既に存在します。" -msgid "for logged in users only" -msgstr "ログインユーザー用" - -msgid "for anonymous users only" -msgstr "匿名ユーザー用" - -msgid "Inherit from parent page" -msgstr "親ページから継承" - -msgid "Deny" -msgstr "否定" - -msgid "Only this website" -msgstr "このウェブサイトのみ" - -msgid "Allow" -msgstr "肯定" - -msgid "title" -msgstr "タイトル" - -msgid "overwrite the title (html title tag)" -msgstr "タイトル (HTMLのtitleタグの中身) を書き換えます" - -msgid "overwrite the title in the menu" -msgstr "メニューのタイトルを書き替える" - -msgid "description" -msgstr "説明" - -msgid "The text displayed in search engines." -msgstr "検索エンジンに表示するテキストです。" - -msgid "redirect" -msgstr "リダイレクト" - -msgid "The template used to render the content." -msgstr "コンテンツのレンダリングに使うテンプレートです。" - msgid "Advanced options" msgstr "詳細設定" @@ -803,7 +837,6 @@ msgid "Generic" msgstr "ジェネリック" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s プラグイン \"%(obj)s\" を無事変更しました。" @@ -813,65 +846,54 @@ msgstr "このプラグインにこれ以上設定する項目はありません msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "変更済" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "保存" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "ここ から管理ページにログインしてください。" @@ -886,7 +908,6 @@ msgstr "ユーザ名" msgid "Password:" msgstr "パスワード" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -966,16 +987,21 @@ msgstr "カット" msgid "Paste" msgstr "ペースト" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "権限" + msgid "is restricted" msgstr "制限あり" msgid "last change by" msgstr "最終変更者" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "メタ" @@ -985,7 +1011,6 @@ msgstr "ページの一覧" msgid "Search" msgstr "検索" -#| msgid "Page Title" msgid "Page Tree" msgstr "ページ木" @@ -997,19 +1022,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n削除された %(name)s を復元" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"削除された %(name)s を復元" -#| msgid "in navigation" msgid "Main Navigation" msgstr "主ナビゲーション" -#| msgid "Actions" msgid "Options" msgstr "オプション" @@ -1033,7 +1052,6 @@ msgstr "このページを § して良いですか。" msgid "Reload" msgstr "再読み込み" -#| msgid "New Page" msgid "New node" msgstr "新しいノード" @@ -1047,10 +1065,6 @@ msgid "Menu" msgstr "メニュー" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1071,30 +1085,15 @@ msgstr "閉じる" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "公開済" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "非公開済" - -msgid "Empty" -msgstr "空" - -#| msgid "in menu" msgid "In menu" msgstr "メニューの中" -#| msgid "not in menu" msgid "Not in menu" msgstr "メニューになし" -#| msgid "New page" msgid "View page" msgstr "ページを閲覧" -#| msgid "softroot" msgid "Softroot" msgstr "ソフトルート" @@ -1111,12 +1110,18 @@ msgstr "メニューにあり" msgid "not in menu" msgstr "メニューになし" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "ページ設定 (SHIFTクリックして高度な設定)" -msgid "Permissions" -msgstr "権限" +msgid "This page has no preview!" +msgstr "このページはプレビューがありません。" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "リダイレクト中" msgid "Clipboard" msgstr "クリップボード" @@ -1166,7 +1171,6 @@ msgstr "" msgid "Available plugins" msgstr "利用可能なプラグイン" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1180,11 +1184,12 @@ msgid "More" msgstr "詳しく" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Django CMS %(cms_version)s, Django %(django_version)s と Python %(python_version)s を使った開発バージョン" +msgstr "" +"Django CMS %(cms_version)s, Django %(django_version)s と Python " +"%(python_version)s を使った開発バージョン" msgid "Cancel" msgstr "キャンセル" @@ -1192,7 +1197,6 @@ msgstr "キャンセル" msgid "The following error occured:" msgstr "次のエラーが発生:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1205,15 +1209,12 @@ msgstr "本当にこのページを公開しますか。" msgid "Plugin will be added here" msgstr "プラグインはこちらに追加されます" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "保存していない変更があります。" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "本当に変更を中止しても構いませんか。" @@ -1222,7 +1223,6 @@ msgid "" "correctly." msgstr "フォームを読み込みできませんでした。サーバが正しく動作しているか確認してください。" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1232,10 +1232,12 @@ msgstr "ショートカット" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "このヘルプダイアログを表示する" -#| msgid "Cancel" msgid "Close/cancel" msgstr "閉じる/キャンセル" @@ -1251,26 +1253,21 @@ msgstr "「作成」ダイアログを開く" msgid "Focus on Toolbar" msgstr "ツールバーにフォーカスする" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "プレースホルダにフォーカスする" msgid "Move to next/previous element" msgstr "次/前の要素に移動する" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "プレースホルダのプラグインにフォーカス" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "プラグインを編集" -#| msgid "not in menu" msgid "Open actions menu" msgstr "アクションメニューを開く" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "開く/閉じる" @@ -1299,12 +1296,6 @@ msgstr "最大化" msgid "Drop a plugin here" msgstr "ここにプラグインをドロップ" -msgid "This page has no preview!" -msgstr "このページはプレビューがありません。" - -msgid "It is being redirected to:" -msgstr "リダイレクト中" - msgid "Installation successful!" msgstr "インストール成功。" @@ -1319,7 +1310,9 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\ndjango CMS バージョン %(cms_version)s へようこそ。" +msgstr "" +"\n" +"django CMS バージョン %(cms_version)s へようこそ。" #, python-format msgid "" @@ -1334,7 +1327,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavaScriptがオフになっているので、\n手動でページを追加 " +msgstr "" +"\n" +"JavaScriptがオフになっているので、\n" +"手動でページを追加 " msgid "Installation Notes" msgstr "インストールのメモ" @@ -1345,15 +1341,6 @@ msgstr "サポート" msgid "Documentation" msgstr "ドキュメント" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1362,15 +1349,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1395,11 +1373,7 @@ msgstr "次のステップに進むため以下のオプションから1つ選 msgid "Next" msgstr "次" -msgid "no content" -msgstr "内容なし" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1410,7 +1384,9 @@ msgstr "%(domain)s 上にページがありません" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "テンプレートタグは、引数 `%(page_lookup)s` に該当するページを見つけられませんでした。\nリクエストのURLは http://%(host)s%(path)s です" +msgstr "" +"テンプレートタグは、引数 `%(page_lookup)s` に該当するページを見つけられませんでした。\n" +"リクエストのURLは http://%(host)s%(path)s です" msgid "Two columns" msgstr "2コラム" @@ -1478,7 +1454,6 @@ msgstr "記事" msgid "Sample App" msgstr "サンプルアプリ" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1488,9 +1463,8 @@ msgstr "拡大した権限を使うアプリケーションの見本" msgid "Sample App 2" msgstr "サンプルアプリ2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "サンプルアプリ2" msgid "Namespaced App" msgstr "ネームスペースつきアプリ" @@ -1525,9 +1499,8 @@ msgstr "固定メニュー2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "固定メニュー4" +msgstr "固定メニュー" msgid "Category" msgstr "カテゴリー" @@ -1554,12 +1527,10 @@ msgid "UserSettings" msgstr "ユーザ設定" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "プースホルダ #%(placeholder_label)s\" にプラグインを追加" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1596,393 +1567,3 @@ msgstr "新しい%sインスタンスを作成する。" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "モデル \"%s\" についてウィーザードか゜既に登録されています。" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ja/LC_MESSAGES/djangojs.mo b/cms/locale/ja/LC_MESSAGES/djangojs.mo index d55b7801c9c669cf9d78ad044238fe634c3e101e..a74fe47477becf46147b70a94373ae0e5148afd0 100644 GIT binary patch delta 96 zcmaFL@|\n" -"Language-Team: Japanese (http://www.transifex.com/divio/django-cms/language/ja/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Yasushi Masuda , 2013\n" +"Language-Team: Japanese (http://app.transifex.com/divio/django-cms/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "先にページを保存しないままタブを変更しますが、よいですか??" diff --git a/cms/locale/ka/LC_MESSAGES/django.mo b/cms/locale/ka/LC_MESSAGES/django.mo index b26f9065e416da8be6a3f62cdc8a054ebf2a532c..d316043ef6ba1d7defb6119001ecbcd9bbaa7498 100644 GIT binary patch delta 517 zcmXZXO-lk%6b9g9#-y19iDVctQISzIqmzk=ghsds+O}vnelpOgI2JAhU4%a%!CkwE zc1iXRTGS?J6>X%VRh#Gsxad7~;WE!X_v5{1hQaq>|I*R297G|BC_qHL38ECdfz$8@ z1|hkK+F%~)@B+@jXUO+HVHA$Udc;kXM!g3)rz7k^47$Q+1@_(4`U`r&0tbCT4j!8% zT8Dn9!Zh^3DpcSZ^ut@o4?K$c6)vOxhTG8RA&SETn1mh3KXea6@XgaA!dY@n5yhYn za^OB(gh!A&ZbE*z1G&LF$PGNe1RRR}fcO7?2J-%)sEO7;K% delta 498 zcmXZXKTASU7{~EPtea+%C{iMXL4gt1zZEGWickNqZc1ho$KKO{#fe~r%0YUk1D5QX(B^T_{`#kQ(A+dCl*xDC#v8+&ZBo! zB!XG=VI6fmL_c1ly5QcbpK*rz3sdNEi7ew9X0U_mLAMyjS654fe`R<~WC=Z}0#|Vw zH;`V$Ky`5kRfE^48o0wWzF7Ny_y73SFPHxJVMpznS+T6eCW>E1NNa%VZCUs zXu3P5$76aT6^bvWlS#9!O$74Q9U~bFWl95cMrpgzh?E=kta+nNY3XRR*=(Bcn%}os XEA3Spdbz$I-DP%As%&-p+K2WBKFCHn diff --git a/cms/locale/ka/LC_MESSAGES/django.po b/cms/locale/ka/LC_MESSAGES/django.po index eb2e6d84e0a..72bf0eac7a6 100644 --- a/cms/locale/ka/LC_MESSAGES/django.po +++ b/cms/locale/ka/LC_MESSAGES/django.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# André Bouatchidzé , 2012-2013 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Georgian (http://www.transifex.com/divio/django-cms/language/ka/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Georgian (https://app.transifex.com/divio/teams/58664/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +441,12 @@ msgstr "გამოსვლა" msgid "Language" msgstr "ენა" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +464,6 @@ msgstr "" msgid "Page" msgstr "გვერდი" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +631,57 @@ msgstr "" msgid "page" msgstr "გვერდი" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "სათაური" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "გადამისამართება" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "გადამისამართება" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "სლაგი" @@ -642,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "სათაური" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "გადამისამართება" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "გადამისამართება" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "დამატებითი პარამეტრები" @@ -797,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "შენახვა" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +903,6 @@ msgstr "მომხმარებლის სახელი:" msgid "Password:" msgstr "პაროლი:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +983,21 @@ msgstr "ამოჭრა" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1007,6 @@ msgstr "გვერდების სია" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ka/LC_MESSAGES/djangojs.mo b/cms/locale/ka/LC_MESSAGES/djangojs.mo index 20478f1b25d73c3442041366e19d4799855682ad..2d6432e795322e4ce8e344ec19e8a793a78a3155 100644 GIT binary patch delta 77 zcmdnYypef=3S;?1)p%Y5T|+}%V*>>PGbh($ delta 79 zcmdnUyqS4|3S;F&)p%YDT?0d1Lqi2aGb>|@i4(;&0uoDe@)aC&$`XqbQ}PvT3P60l cL@3`OC9^CuUoSbsZsIvb=JN9LiJ$fZ0MnrxnE(I) diff --git a/cms/locale/ka/LC_MESSAGES/djangojs.po b/cms/locale/ka/LC_MESSAGES/djangojs.po index aa57be79925..8c8ce0e2958 100644 --- a/cms/locale/ka/LC_MESSAGES/djangojs.po +++ b/cms/locale/ka/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Georgian (http://www.transifex.com/divio/django-cms/language/ka/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: André Bouatchidzé , 2013\n" +"Language-Team: Georgian (http://app.transifex.com/divio/django-cms/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ka\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/kk/LC_MESSAGES/django.mo b/cms/locale/kk/LC_MESSAGES/django.mo index 951bcc73a005dde745d43ea1b55a18653d59fa97..46f840b43442ffcec7f9240ade81cd077bf15db1 100644 GIT binary patch delta 208 zcmdnWxr1{;OKLVF1H)G!)?{E{NMvSU-~-a#K$;Cm&jQlYKzbpN76;OMfwVc0z6zve zfiy1*1A{V<)&|nfK-wQjgY-{^(u;sJ$efKEU#c;(=qBeDPZnm<r z$-YeD%5I5CnTdG{PDP2Oc?vdZ#YrHBLwat7UP`K+j)IYaki(D}DXMf`ZBO YnMAouQWJBF^-V3z%uF^PXL`p70AlhfrT_o{ delta 244 zcmdnNxs`K5OKJuq1H)G!)?{E{h+}48-~-YfK$;CmPY2S{KzbgK76;P1fV4S~z67LY zfixEj1A{V<)&SDZK-vdLgY-{;(({2d$eeW>U#c;(C^-8DPZnm<6EpJj^^)^*?YMjr^U_Nb(^GXrQWJBn6uc9w60jk^Yv4*fZFnPlXHvpbD#!nKE?Eo5dck1 BIQ;+s diff --git a/cms/locale/kk/LC_MESSAGES/django.po b/cms/locale/kk/LC_MESSAGES/django.po index 69ccd756196..e0fb9674c36 100644 --- a/cms/locale/kk/LC_MESSAGES/django.po +++ b/cms/locale/kk/LC_MESSAGES/django.po @@ -3,17 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# tonukok , 2014 -# tonukok , 2014 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Kazakh (http://www.transifex.com/divio/django-cms/language/kk/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Kazakh (https://app.transifex.com/divio/teams/58664/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -72,7 +68,6 @@ msgstr "URL қайта жазу" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -407,15 +441,12 @@ msgstr "" msgid "Language" msgstr "Тіл" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "тақырып" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -643,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "тақырып" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "Кеңейтілген нұсқаулар" @@ -798,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -881,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/kk/LC_MESSAGES/djangojs.mo b/cms/locale/kk/LC_MESSAGES/djangojs.mo index 1e2f5d3c984041795efc7c5b02ea9b682c981880..ce4c63980fb8be32080a107e49653ae3545f2862 100644 GIT binary patch delta 90 zcmZo+ZD5_C!&}VAz%Z48fuRhDIVV~!=QYqZG}JXVP%tpFGO?WaR$QedKd&@9KU={j sw>TrUC^I)HHQOOQH!(9uFF8NgPDjDWz|dr}4x>DCVnM-XKSnb~04r}91poj5 delta 94 zcmZo*ZDF0D!&}bCz%Z48fuRhDc_&&f=e5u^Fw`|PR4_ENGPaobR$L<>u{0-N!7-;S pu_!SmU%{pT#MeuN@*Pq#%QExzk~8ckYcR?)mzS4s_F^<+1OTEO8*Tsq diff --git a/cms/locale/kk/LC_MESSAGES/djangojs.po b/cms/locale/kk/LC_MESSAGES/djangojs.po index 31fb38dc112..be9ad73c698 100644 --- a/cms/locale/kk/LC_MESSAGES/djangojs.po +++ b/cms/locale/kk/LC_MESSAGES/djangojs.po @@ -10,15 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Kazakh (http://www.transifex.com/divio/django-cms/language/kk/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: tonukok , 2014\n" +"Language-Team: Kazakh (http://app.transifex.com/divio/django-cms/language/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: kk\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Парақшаларды сақтамай тұрып, терезелерді өзгерткіңіз келеді ме?" diff --git a/cms/locale/km/LC_MESSAGES/django.mo b/cms/locale/km/LC_MESSAGES/django.mo index 76657cfaf4b02f79b7514f915fcb9bfcd87013cf..a7416d7615e1ddfe7e4e94ff6adb32f9a232b992 100644 GIT binary patch delta 985 zcmXZa%WG3X6u{wQ)mW=GwNJHGuaCx8UQKMRA+#Z&w6=uK%+uWp)CJo80v?5#( zTvSksy3mEzm2L~!31Xq5f))$X{sAt;F4Tn&aOdxM69V7NnVB`Oy<@Et znX45!AR-&4SJBNGKzZgX>7;mco&z@&y8N@I&_1X zogzo^5uU-7PJN@DMfOB3{Bzs5cgDbJv~4i}Z`g zkbJ;6e#KsF-|fz`aDe`8>_TUihQ8f4vgtw}&S4Vugr89p)a`XWkGgOcb^I;riGHKz z@fmJmy*Nz&3hIr$LQ=^J>J$G$_H(3-`%Mw(Most_wet6Qv6@CkbG zBkIkpVikTtefzaa{7*#>U$_?1jKk>1di`4N{BMXntyo5_@D1vTzN1#YiTBaOzVfsu zQN1BBnk(IZSsQR7fe!r}9pP9saxBcRX3#9zfuW+AFO8e_L@{QZHb=5%-bfbB$-EIy zmqxUa$mFJiDXYhCM8c5>i}IOCGh+pYEHf7~2F7w$(KtM2+l5jr6fz5ipsg9RX=^Gt cI*|*dve&W`A-jgzrBG*gSJ&}!!Mo7-4^Uo+DgXcg delta 959 zcmXZazfV(96u|K#AW=k$P?U;4D)mRSzV?+`6KWCEU=YDY9nir(DAX$OBCRc*UgA&_ z6O9pd&=?luOv2zINsXE)k;K3s;9z7>2Y)24`aQgM`P_5vyXT&JZ|D2w`sN0zo#AyN zvkf8v5vghv*@XMC2|F->y?7FDVJE)BR{Vzswr+9b(|Diw3dZp#zQ7>G9^x|Y!gRBU ziKS+7q=mst5<0Pj2k-~Bq1P+27fsxQ7qJ%$=)ncl#+FdOYou5dV_1(FJcD`Mh-K8e zi>T{YTO2p>m&6!}rmgP6B0eB4p>FKk=5BBd`BajqC(q+Pe2({U5f5{tLtKw;Q1Xc! z!pGQ;uTf84zuj%L%V980;s)vozE$+lW|H^_YJo?n15H6w(oSm8^*K5xA7=CD-854>!_v+12~J_s3-i4T43{T*Fn^UcTwlxqMqnCYMp@J zZ7hLF;>)Nv_6jK_%cxKM3)#;RANQLg5koEb1hw<`s3%|FE^-b{)CL{Y4WD8yenh>Q z6|BN9sBgbo$^WTX%|BclX~rZT#3uc>+*uolJgYc|+Tk126MaYRyoUGD!h!i>ZO?`p z|EaV!Z diff --git a/cms/locale/km/LC_MESSAGES/django.po b/cms/locale/km/LC_MESSAGES/django.po index 70db257a7da..5cb60c1e535 100644 --- a/cms/locale/km/LC_MESSAGES/django.po +++ b/cms/locale/km/LC_MESSAGES/django.po @@ -3,20 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# pykhmer , 2011 -# Sovichet Tep, 2011 -# Sovichet Tep, 2011 -# vireax, 2011 -# vireax, 2011 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Khmer (http://www.transifex.com/divio/django-cms/language/km/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Khmer (https://app.transifex.com/divio/teams/58664/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -52,7 +48,9 @@ msgstr "ចំណង​ជើង​ទំព័រ" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "ជំនួស​ពី​លើ អ្វី​ដែល​បាន​បង្ហាញ​នៅ​ផ្នែក​កំពូល​នៃ​កម្មវិធី​រុក​រក​របស់​អ្នក ឬ នៅ​ក្នុង​សៀវភៅ​កត់​ចំណាំ" +msgstr "" +"ជំនួស​ពី​លើ អ្វី​ដែល​បាន​បង្ហាញ​នៅ​ផ្នែក​កំពូល​នៃ​កម្មវិធី​រុក​រក​របស់​អ្នក " +"ឬ នៅ​ក្នុង​សៀវភៅ​កត់​ចំណាំ" msgid "Description meta tag" msgstr "" @@ -60,9 +58,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -75,7 +70,6 @@ msgstr "ជំនួស​ពី​លើ URL" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -97,11 +91,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -117,7 +109,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -191,7 +182,6 @@ msgstr "ភាសា ត្រូវ​តែ​បាន​កំណត់​ msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -206,7 +196,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -225,7 +214,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -258,7 +246,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -266,7 +253,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -285,7 +284,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -295,18 +293,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -336,6 +331,47 @@ msgstr "សិទ្ធិ​របស់ អ្នក​ប្រើ​ប្ msgid "Page permissions management" msgstr "ការ​គ្រប់​គ្រង​សិទ្ធិ​របស់​ទំព័រ" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "មើល​ជា​មុន" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -364,9 +400,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "មើល​ជា​មុន" - msgid "Structure" msgstr "" @@ -410,15 +443,12 @@ msgstr "ចាក​ចេញ" msgid "Language" msgstr "ភាសា" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -427,7 +457,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -437,7 +466,6 @@ msgstr "" msgid "Page" msgstr "ទំព័រ" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -484,20 +512,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -511,7 +531,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -608,6 +633,57 @@ msgstr "" msgid "page" msgstr "ទំព័រ" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "ចំណង​ជើង" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "សេចក្ដី​អធិប្បាយ" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "លំនាំ​ដើម" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -616,9 +692,6 @@ msgstr "" msgid "pages" msgstr "ទំព័រ" -msgid "default" -msgstr "លំនាំ​ដើម" - msgid "slug" msgstr "" @@ -646,7 +719,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -755,45 +827,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "ចំណង​ជើង" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "សេចក្ដី​អធិប្បាយ" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "ជម្រើស​កម្រិត​ខ្ពស់" @@ -801,7 +834,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -811,65 +843,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "រក្សា​ទុក" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -884,7 +905,6 @@ msgstr "ឈ្មោះ​ប្រើ​ប្រាស់៖" msgid "Password:" msgstr "ពាក្យ​សម្ងាត់៖" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +984,21 @@ msgstr "កាត់" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -983,7 +1008,6 @@ msgstr "បញ្ជី​ទំព័រ" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -997,17 +1021,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1031,7 +1047,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1060,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1080,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,11 +1105,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1164,7 +1166,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1179,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1190,7 +1190,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1202,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1216,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1225,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,26 +1246,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1297,12 +1289,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1343,15 +1329,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1337,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1361,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1476,7 +1440,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,7 +1449,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1523,7 +1485,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1552,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,393 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/km/LC_MESSAGES/djangojs.mo b/cms/locale/km/LC_MESSAGES/djangojs.mo index 53bc5356f20b5a27da049154425229a11f6b5356..db61dd7c6eb24a935f7af6b6077c44284599db29 100644 GIT binary patch delta 73 zcmcc4dXRO34qr4Q1H)7X28Q!M{E=~@)iPcKT|+}%V*>>PGb9}78GpuW$a=E0M)t_3;+NC delta 95 zcmX@edYyHG4qqW71H)7X28Q!M%+55?Y8kJEu7RPhp`n7InU%4{#JA!a0g0tK`3jCX qWr;\n" -"Language-Team: Khmer (http://www.transifex.com/divio/django-cms/language/km/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Sovichet Tep, 2011\n" +"Language-Team: Khmer (http://app.transifex.com/divio/django-cms/language/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "តើ​ប្រាកដ​ថា​ចង់​ប្ដូរ ផ្ទាំង ដោយ​មិន​មាន​ការ​រក្សា​ទុក​ទំព័រ​ជា​មុន​ឬ?" diff --git a/cms/locale/ko/LC_MESSAGES/django.mo b/cms/locale/ko/LC_MESSAGES/django.mo index 060b914886ddd09caa08e5f45c5fd8f6b2fe47f7..23cbc2c0f3e3d3d58b0b5d42c099b587a738b789 100644 GIT binary patch delta 1084 zcmX|;&ref95XYC6-zp&ZD@JiVX(DZ*DjGCKqKOC53wSi~`Q8Fg>3j9<0~HS?rXm6& zrc@gR#YjRhCZeF$Uw;4xy=X#W3>R;G+k-a}5Bl9wnC$FlXLfgHc6Pbq_r};#bzzc0 zwnBG6e?WIZhYK)4N_~tqfMwtf@CdjOd=FNE3!oqT39bW|^8O6C3HD#G7OcXdMlb}H zg6&{AV=-o9u>p==a1S^Do&slA4zT4s{e>t3{t6I-ZNsDr*$D=~5Lg7B2QQ&`9Xtv9 z8=TW%P4P;ePkAnY#mLVVv8cv@rToSpa5LF7KHCDt!`4J~ zKy_tRR05TBRn$Y&k>9;y3U0l*CxHw>@pl~)sgLx!G+E(L$h1~+wJ7eRa0=%41?z*>YBC3rHdT* zG^+#Ni`U6?1?djgT-ynHp;YUZ>Q@7c)61$3J^B z^ZDrB=s2xq^ajW1qzKyR7{zEr(?&3k+i)CZ?LM5u93IB=IE=S(3*N{5_!LjzdVjpF?POP( zxED8}i8^L+0;h2d&!K@OjA0K8TRnRYDRpPxWEXa@J-8Dxrf4Y^+!GR{522ljh3ZHS-v zSw37O3@M{jLW1h_%ZpMC3E5Oa4*wtW(yinuDODQrVv!@>mq^!hqAw@rDvgq=HtMdb zIj*`?RK@C5w`F=s-PYCd({tWU-Iz`p>6CFWr_zV=naqI{F?`CdyT<&oU8`4Y*ICZ1 znevrZCZ(qA&|@uo$#KkrQ$6ba){|!5vYO4N>B@rgV)2HISPSLrWye~$Y}ZPTQK;6f z3V#i|RP?4|8{Wp?$5+qekpVMUUGpEW{dn`%U%jjRcPqiY*D83_fnepK^aZ_+f9ILs N?fBg%ruSkf`xhGzcc}mX diff --git a/cms/locale/ko/LC_MESSAGES/django.po b/cms/locale/ko/LC_MESSAGES/django.po index 0343af69789..0f20e25ee6d 100644 --- a/cms/locale/ko/LC_MESSAGES/django.po +++ b/cms/locale/ko/LC_MESSAGES/django.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Song M. Kim , 2018 +# Александр, 2022 +# Song M. Kim , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Korean (http://www.transifex.com/divio/django-cms/language/ko/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Song M. Kim , 2022\n" +"Language-Team: Korean (https://app.transifex.com/divio/teams/58664/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +57,6 @@ msgstr "설명 메타 태그 " msgid "A description of the page used by search engines." msgstr "검색 엔진들에서 사용되어지는 페이지에 관한 설명" -msgid "Slug must not be empty." -msgstr "슬러그는 비어 있어서는 안됩니다." - msgid "Page type" msgstr "페이지 타입" @@ -71,7 +69,6 @@ msgstr "URL을 덮어 씌움니다" msgid "Keep this field empty if standard path should be used." msgstr "표준 경로를 사용해야만 하는 경우에는 이 필드를 비워 두세요." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +181,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -196,13 +189,12 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "" +msgstr "고급 설정" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +245,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +252,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +283,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +292,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +330,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -404,17 +440,14 @@ msgid "Logout" msgstr "" msgid "Language" -msgstr "" +msgstr "언어" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +465,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +511,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +632,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +691,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +718,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -684,7 +759,7 @@ msgstr "" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" +msgstr "페이지 추가 권한은 자식이나 후손에 대한 액세스도 필요하며, 그렇지 않으면 추가된 페이지는 작성자가 변경할 수 없습니다." msgid "User (page)" msgstr "" @@ -751,53 +826,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" -msgstr "" +msgstr "고급 옵션" msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +842,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +904,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,393 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ko/LC_MESSAGES/djangojs.mo b/cms/locale/ko/LC_MESSAGES/djangojs.mo index ce808d6f1e2fe015b026ae4596ffd4a507f23b94..d1ceab5b9515c183dade9778343eb9bb5798e513 100644 GIT binary patch delta 68 zcmZ3(yoh;%3S-7Z)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!y?W^78VDFLnU{v5Old diff --git a/cms/locale/ko/LC_MESSAGES/djangojs.po b/cms/locale/ko/LC_MESSAGES/djangojs.po index a48dc21e096..c05c29416bb 100644 --- a/cms/locale/ko/LC_MESSAGES/djangojs.po +++ b/cms/locale/ko/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Korean (http://www.transifex.com/divio/django-cms/language/ko/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Korean (http://app.transifex.com/divio/django-cms/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ko_KR/LC_MESSAGES/django.mo b/cms/locale/ko_KR/LC_MESSAGES/django.mo index 21e3d48a9778a2be4e7c18d6bf2021a0c2e91bfc..c2d6a2b7f0bd1cf00ce08d203e5f1f75154caa73 100644 GIT binary patch delta 6376 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 delta 6577 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 diff --git a/cms/locale/ko_KR/LC_MESSAGES/django.po b/cms/locale/ko_KR/LC_MESSAGES/django.po index 720e3fbc8bb..094b35f05b3 100644 --- a/cms/locale/ko_KR/LC_MESSAGES/django.po +++ b/cms/locale/ko_KR/LC_MESSAGES/django.po @@ -3,19 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# daeyong , 2013,2015 -# daeyong , 2013,2015 -# enoch2110 , 2014 -# enoch2110 , 2014 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Korean (Korea) (http://www.transifex.com/divio/django-cms/language/ko_KR/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Korean (Korea) (https://app.transifex.com/divio/teams/58664/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -59,9 +56,6 @@ msgstr "메타 태그 설명" msgid "A description of the page used by search engines." msgstr "검색 엔진에 의해 사용되는 쉼표로 구분 된 키워드 목록입니다." -msgid "Slug must not be empty." -msgstr "슬러그는 비워둘 수 없습니다." - msgid "Page type" msgstr "페이지 종류" @@ -74,7 +68,6 @@ msgstr "URL을 덮어 씀" msgid "Keep this field empty if standard path should be used." msgstr "기본 경로가 사용되면 이 항목을 비워 둠" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +89,9 @@ msgstr "메뉴 가시성" msgid "limit when this page is visible in the menu" msgstr "페이지가 메뉴에서 보여질 때만 제한 함" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +107,6 @@ msgstr "응용프로그램 설정" msgid "A page with this reverse URL id exists already." msgstr "이 URL id 가 이미 존재하는 페이지" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -190,7 +180,6 @@ msgstr "지원 가능한 언어로 설정되어야 합니다!" msgid "Parent plugin language must be same as language!" msgstr "부모 플러그인 언어가 언어와 같아야 합니다." -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -224,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "에러! 이 페이지를 이동 할 수있는 권한이 없습니다.페이지를 다시로드하십시오" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +244,6 @@ msgstr "템플릿이 잘 바뀌었습니다." msgid "You do not have permission to copy these plugins." msgstr "플러그인을 복사할 권한이 없습니다" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,8 +251,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "%(language)s 언어의 제목과 플러그인은 삭제 되었음" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "이 페이지의 '탐색중' 상태를 바꿀 권한이 없습니다." +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "없음" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "보기 제한" @@ -284,7 +282,6 @@ msgstr "이 페이지를 수정할 권한이 없습니다" msgid "You do not have permission to add a plugin" msgstr "플러그인을 추가할 권한이 없습니다" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +291,15 @@ msgstr "플러그인을 찾지 못했습니다" msgid "You do not have permission to edit this plugin" msgstr "이 플러그인을 수정할 권한이 없습니다" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "이 플러그인을 이동 할 권한이 없습니다" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +329,47 @@ msgstr "사용자 & 그룹 권한" msgid "Page permissions management" msgstr "페이지 권한 관리" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "수정" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "구조" @@ -409,15 +441,12 @@ msgstr "로그아웃" msgid "Language" msgstr "언어" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +464,6 @@ msgstr "페이지" msgid "Page" msgstr "페이지" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -483,20 +510,12 @@ msgid "Select a valid page" msgstr "유효한 페이지를 선택하세요" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +631,57 @@ msgstr "허가" msgid "page" msgstr "페이지" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "로그인한 사용자만" + +msgid "for anonymous users only" +msgstr "모르는 사용자만" + +msgid "Inherit from parent page" +msgstr "부모 페이지에서 상속" + +msgid "Deny" +msgstr "거부" + +msgid "Only this website" +msgstr "오직 이 웹사이트만" + +msgid "Allow" +msgstr "허가" + +msgid "title" +msgstr "제목" + +msgid "overwrite the title (html title tag)" +msgstr "제목을 덮어 씀 (html title tag)" + +msgid "overwrite the title in the menu" +msgstr "메뉴에 표시되는 것을 덮어 씀" + +msgid "description" +msgstr "설명" + +msgid "The text displayed in search engines." +msgstr "검색 엔진에서 표시되는 글자" + +msgid "redirect" +msgstr "리다이렉트" + +msgid "The template used to render the content." +msgstr "콘텐츠를 렌더링하는 데 사용되는 템플릿" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "기본" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +690,6 @@ msgstr "이 페이지에 링크하는 page_url templatetag에 사용되는 고 msgid "pages" msgstr "페이지" -msgid "default" -msgstr "기본" - msgid "slug" msgstr "슬러그" @@ -645,7 +717,6 @@ msgstr "페이지 레벨에서" msgid "frontend view restriction" msgstr "앞단 보기 제한" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -754,45 +825,6 @@ msgstr "정적 영역들" msgid "A static placeholder with the same site and code already exists" msgstr "같은 사이트와 코드의 정적 영역이 이미 존재 합니다." -msgid "for logged in users only" -msgstr "로그인한 사용자만" - -msgid "for anonymous users only" -msgstr "모르는 사용자만" - -msgid "Inherit from parent page" -msgstr "부모 페이지에서 상속" - -msgid "Deny" -msgstr "거부" - -msgid "Only this website" -msgstr "오직 이 웹사이트만" - -msgid "Allow" -msgstr "허가" - -msgid "title" -msgstr "제목" - -msgid "overwrite the title (html title tag)" -msgstr "제목을 덮어 씀 (html title tag)" - -msgid "overwrite the title in the menu" -msgstr "메뉴에 표시되는 것을 덮어 씀" - -msgid "description" -msgstr "설명" - -msgid "The text displayed in search engines." -msgstr "검색 엔진에서 표시되는 글자" - -msgid "redirect" -msgstr "리다이렉트" - -msgid "The template used to render the content." -msgstr "콘텐츠를 렌더링하는 데 사용되는 템플릿" - msgid "Advanced options" msgstr "고급 옵션" @@ -800,7 +832,6 @@ msgid "Generic" msgstr "일반적인" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +841,54 @@ msgstr "더 이상 이 플러그인을 위한 설정이 없습니다. 저장하 msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "저장" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "관리자로 로그인 함 여기." @@ -883,7 +903,6 @@ msgstr "사용자" msgid "Password:" msgstr "비밀번호" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -963,16 +982,21 @@ msgstr "잘라내기" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "권한" + msgid "is restricted" msgstr "제한된" msgid "last change by" msgstr "마지막 변경" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -982,7 +1006,6 @@ msgstr "페이지 항목" msgid "Search" msgstr "검색" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -996,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1030,7 +1045,6 @@ msgstr "이 페이지를 § 하기 원하십니까 ?" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1044,10 +1058,6 @@ msgid "Menu" msgstr "메뉴" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,30 +1078,15 @@ msgstr "종료" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "없음" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1108,12 +1103,18 @@ msgstr "메뉴에서" msgid "not in menu" msgstr "메뉴에 없습니다" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "권한" +msgid "This page has no preview!" +msgstr "이 페이지는 미리보기가 없습니다!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "리다이렉트됨:" msgid "Clipboard" msgstr "" @@ -1163,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "사용가능한 플러그인" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1177,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,9 +1186,8 @@ msgid "Cancel" msgstr "취소" msgid "The following error occured:" -msgstr "아래 에러 발생:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1202,15 +1200,12 @@ msgstr "이 페이지를 발행하기 원하십니까 ?" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1219,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1229,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1248,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1296,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "여기에 플러그인을 놓기" -msgid "This page has no preview!" -msgstr "이 페이지는 미리보기가 없습니다!" - -msgid "It is being redirected to:" -msgstr "리다이렉트됨:" - msgid "Installation successful!" msgstr "" @@ -1342,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1359,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "내용 없음" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1407,7 +1370,8 @@ msgstr "%(domain)s 에서 페이지가 발견되지 않음" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "'%(page_lookup)s' 로 페이지를 찾을 수 없습니다. .요구한 URL: http://%(host)s%(path)s" +msgstr "" +"'%(page_lookup)s' 로 페이지를 찾을 수 없습니다. .요구한 URL: http://%(host)s%(path)s" msgid "Two columns" msgstr "두 줄" @@ -1440,7 +1404,9 @@ msgstr "동작중" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "이 사용자가 현재 활성상태인지를 나타낸다.\n계정을 제거하지말고 이것을 선택해제하면 비활성된다." +msgstr "" +"이 사용자가 현재 활성상태인지를 나타낸다.\n" +"계정을 제거하지말고 이것을 선택해제하면 비활성된다." msgid "users" msgstr "사용자" @@ -1475,7 +1441,6 @@ msgstr "기사" msgid "Sample App" msgstr "같은 어플리케이션" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1485,9 +1450,8 @@ msgstr "권한이 제거된 Sample App" msgid "Sample App 2" msgstr "예제 어플리케이션 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "예제 어플리케이션 2" msgid "Namespaced App" msgstr "같은 이름 공간의 어플리케이션" @@ -1522,9 +1486,8 @@ msgstr "정적 메뉴2" msgid "Static Menu3" msgstr "정적 메뉴3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "정적 메뉴" msgid "Category" msgstr "카테고리" @@ -1551,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1593,393 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo b/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo index 3a1da623d4aef0b7593924a25bc677ac4e8d9506..0ae9e697478cc436bda6342c71b26d802a2d4b8e 100644 GIT binary patch delta 87 zcmcc1a*btz4sRtR1H)7X1_n1E=AUS}oYz3t&`{UdK*7Mw%EWTwTXDsd#MH|CymSQ{ kD8nH=H!(9uFF8NgPDjDWz|eTI4x>7AVnM;?Fh+Jp0R99R2LJ#7 delta 94 zcmcb{a+hU-4sQb^1H)7X1_n1E7Mp0foYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Korean (Korea) (http://www.transifex.com/divio/django-cms/language/ko_KR/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: daeyong , 2013\n" +"Language-Team: Korean (Korea) (http://app.transifex.com/divio/django-cms/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "첫 페이지를 저장하지 않고 탭을 변경 하시겠습니까?" diff --git a/cms/locale/ku_IQ/LC_MESSAGES/django.mo b/cms/locale/ku_IQ/LC_MESSAGES/django.mo index 774e08590f523c06b0f48938233d32e8ce4073d6..5630f9e5acf305567300ed9489641e9e07c117a2 100644 GIT binary patch delta 3076 zcmXZe4NO&K9LMqJD#**d3W6wz2nL8KmscS~5!BRF%y8J$h3<-oihyxZ5zI@9sp0!c znl@{t%dOSaaA|9+H7jM>W;R=!o7P;})E1S?vTS{S+~@56&*wSkJm-1&KhHr=)ZVNK z+>8l1Y&g1!QN)!HW4^&H5u7+Kd5kH>Uev7tgN+GC4~AhJ=3x@%-~!x^0UU?}hZy6= zFl@(I9E$rfnrh}P3aa=47UG8(h4)b}{)<@{&Q01hg{TH*U>Yv6wxI^}CJx7w7>S>t z2Hb1ChHCdl|8>BaI}`?SqtE&f)zN<#iynqaQcMbx1e1>ZOuoIIfttXx$XHDks=XRi zM{7|7+lU&-Rt&|R7()MMFNM)~2&dv1)QtPE2$PtuUaUedR-*>kg__|JEWs0~hHs$; z@S}ZxA65S$W?*QHF|*N&0nKa!1vS)$Nw@=t;c-mB^T=4tHB86bs1!$#9_^VFBw3~u zRc}5f;xdfKHq_p6Q2iala(p|M^;c?cb3-${hidqNt>|VH8b~xJ4I~|v(lVrqnP**& zYS@pA&9owuHC?ET9m8>W8I_?2s7?K782Q(W1#!WV7Na_-L^V*2YOo14gKeliu*Z4? zHRE?s_0OT+??t8jI`&Txm8pBE35Ii0#*+gSH1qM+0#pN2P%k`UB=X5G52pXO?5nKWN-pr)Dlj?FX`XRp|Fq}(QH}$<*Grwa0fNBzwj0& zu^!6AW6Z%!J{2v+5?qZdQD4tjoRq11SdNcS?M>zz&%_GUz&2tj{hL!1^x`k54&CID zK20u;#R}wS{G3wJLDfHpjNM#E4Wtj*U*;cNfJ0M)Ywp8BuG=sjPov)d76VG@0}2`V z7&Y?rF~JTeqMlcwHcK@sb(^f6Sj6=~Jc^gF3~QcXc6c21{zyh$g{i1^T9IvF4yBU+ z=P0~uAGnyl9weehSb)kzCCm*aSncpB*#RM z)_lwy8wjTCd2Xn~W}J)%khqex{KVlQOR(V>cI2DZP&x zxQE^=F&8zVZKx$Wi>h}ORj)62KVXJs2RBu&wG<<%Fc{VPUvU}(tobt%=-0z*_&_&p@o}I=+I(qAYLR& z2p#(9bR6c-sN+r_{6g^39Kv1B7w(MEJ(QZ9-`peO*4k%JAxmSbiIi$ZEQnce)vjAjMA>T*N9=Rud1m6c!g1P3(Cs;bctDnXErT{|5#Q BJIw$9 delta 3295 zcmXxkdvH|c8OQM_kQmr3h)H9T2FYm&h7^`0U?@a^Af%`WSVW}Cf({p0!KO8U*_VG8vqe}dUKoQ%0R4QnufRk$9z za6gX4f{A8%ScDJYRJ;n0;3TuS4N*|VSFje(;+6Ovs-d5onOKbUX$`0jR%1D~c=n+t zG>BK@DfHnv)Pz%>AEEmF-{^hZ>?;aa@Icd%xu}6AVgXJ@l48|J608>a*p1%(YSaSm zLFR1DsD7fTfwrS2)`ObJKFq;Gn9cb17=v8Ql4rcoKnF3cQiUm^Kd!zDb>Om9LB5JYv*hUzem zTEPL-8FYI%V-3h|#O)66#U@mP7^*?1cOUoM zjoN}esE%Azy+^(GM^O_R@SdN-ZCPgjz9p`Y<>KZUdE2ye$Gj;{W} zPNHU7NB*_4<@h0PMrGnQekxVC1GN=@!B#wle9YlDt$`L|J+46Yw+}1v2+m`CdxOFP z97EpJupTwwI@Hgo3$Mi^$j8p|H5LDhs_%2mn7d6!O=Jmj{%j?#!e%51_AJ)on>Y=} z{)GIigGvfY=`yUq+fXy#h8pl;@BIMktUQhS75vllJkI6*-}px?{i)d^Jc%9nC93~6 zX5EM#sDA!6mHcyF>_0rX1HboPG_rg>52Gg7gUZA)T!Js*cFblO>Nt*i-;3(_7;43* zk+JPOs=sgWX3Qs@TG+3zjhoG;u!9Fm*&u4bSMhrM7-?f=q($!=P$|9}7vl!ho*qXH z@B-H0Tc`<)ou1kI$#@s{YjF-fkE(YmPC0~Pd$rfnr-2J0qP7qjclu( zL6Tt?k*YS1-YMF3$YL#sti|@AQu_>Q0dM0k@k`XgZkmP&_l)LE#(akv~eVk43y`#WBv-~T5Rv{yMy zPp5ba{v3aWYPc6C;z95JPpB3C6_vSjcr|{Gnm`^0Y7!Qs+E=2U&&Dfok@x%;IEnFX z6$S0#J*W=by$Xjhi+k-`8}Trq`bu*HaSPE$=+XcSi72sy=puC0kACx~gUg9d;sC*J z*mZ>a!T9p5UN_5EP)^7JPUq#?|+#e#eUH1~YbcTLUDD#&u&bV!NKlK&F@23`PaVJzaiw=J z^#8Ko-RZB&NlyVD$T!jYKM8tiCsHn(hP3q_-$NZ5%*oTk=bcw>tb zYYj!6&B2W=6;US?ULOv2gf<3asuPU`W9`GQ6}~to+gY+=wcA}Bm{1+4sSeDZ@6^=R z&6(q#DK08m9NN@5r`ow8IBI=our(5y)f8!4=zd*XKC7;(YU|dmvtnC<;b>?>%Qn5K zY7TXTB2~@zF@7Y_)E2F}pHe$h7+zX3kRN|C-Q%RX(>){4r4z{~oz&^{zT{wXC^?Yo zby7X)ex44jGRagB!|-d4uzrQV2bv;(}`5K+9pO4=|sApt_G6>qtBgG cFFhWoIq&q;=q`~QO7+lJcY64%8K30*0KJ&ANdN!< diff --git a/cms/locale/ku_IQ/LC_MESSAGES/django.po b/cms/locale/ku_IQ/LC_MESSAGES/django.po index ea3c1c9410c..71767ff742a 100644 --- a/cms/locale/ku_IQ/LC_MESSAGES/django.po +++ b/cms/locale/ku_IQ/LC_MESSAGES/django.po @@ -3,17 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# muhammad , 2012 -# muhammad , 2012 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Kurdish (Iraq) (http://www.transifex.com/divio/django-cms/language/ku_IQ/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/divio/teams/58664/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,10 +54,9 @@ msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "خشتەی ئەو کۆمایەنەی کا کلیلە ووشەکان لەیەکتر جیا دەکاتەوە - هەندێک جار لە لایەن بزوێنەری گەڕانەوە بەکاردێت - " - -msgid "Slug must not be empty." msgstr "" +"خشتەی ئەو کۆمایەنەی کا کلیلە ووشەکان لەیەکتر جیا دەکاتەوە - هەندێک جار لە " +"لایەن بزوێنەری گەڕانەوە بەکاردێت - " msgid "Page type" msgstr "" @@ -72,7 +70,6 @@ msgstr "ئەدرەسی نووسین" msgid "Keep this field empty if standard path should be used." msgstr "ئەم خانەیە بە بەتاڵی جێبهێڵە گەر پێویستە ڕێرەوی ئاسایی بەکاربێت " -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +91,9 @@ msgstr "دەرکەوتنی پێڕست" msgid "limit when this page is visible in the menu" msgstr "سنووردارکردن لە کاتێکا ئەم پەرەیە دەرکەوتبێت لە پێڕستدا" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +109,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "پەڕەیەک بە هەمان ناسەرەوەی ئەدرەس بوونی هەیە" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +182,6 @@ msgstr "زمان پیویستە بگۆڕدرەت بۆ زمانەکی پشتیگ msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +196,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,7 +214,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +246,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,8 +253,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "سڕدرانەوە %(language)s ناونیسان و پێوەکراوەکانی زمان" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "تۆ مۆڵەت پێدراو نیت بۆ گۆڕانکاری کردن لەم پەڕەیەدا لە وێبگەڕدا" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "پیشاندانی سنوورەکان" @@ -282,7 +284,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +293,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +331,47 @@ msgstr "مؤڵەتەکانی بەکارهێنەرو کۆمەڵە" msgid "Page permissions management" msgstr "بەڕێوەبەرایەتی مۆڵەتەکانی پەڕە " +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "پێشبینین" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +400,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "پێشبینین" - msgid "Structure" msgstr "" @@ -407,15 +443,12 @@ msgstr "چوونە دەرەوە" msgid "Language" msgstr "زمان" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +457,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +466,6 @@ msgstr "" msgid "Page" msgstr "پەڕە" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +512,12 @@ msgid "Select a valid page" msgstr "پەرەیەکی شیاو دەسنیشان بکە" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +531,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +633,57 @@ msgstr "پێبەخشراوە لە" msgid "page" msgstr "پەڕە" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "تەنها بۆ بەکارهێنەرە هاتووە ژوورەکانە " + +msgid "for anonymous users only" +msgstr "تەنها بۆ بەکارهێنەرە نە ناسراوەکانە" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "ناونیشان" + +msgid "overwrite the title (html title tag)" +msgstr " نووسینەوەی ناونیشان(html title tag)" + +msgid "overwrite the title in the menu" +msgstr "تنووسینەوەی ناونیشان لە پێڕست" + +msgid "description" +msgstr "پێناسە" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "ئاڕاستەکردن" + +msgid "The template used to render the content." +msgstr "ئەو قاڵبەی بەکاردێت بۆ نەخشاندنی ناوەڕۆک " + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "بنەڕەت" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +692,6 @@ msgstr "" msgid "pages" msgstr "پەڕەکان" -msgid "default" -msgstr "بنەڕەت" - msgid "slug" msgstr "بەستەر" @@ -643,7 +719,6 @@ msgstr "لە ئاستی پەڕە" msgid "frontend view restriction" msgstr "پیساندانی بەشی پێشەوەی سنوورەکان" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -671,7 +746,9 @@ msgid "can recover any deleted page" msgstr "توانای بەدەست خستنەوەی هەر پەڕەیەکئ سڕدراوە" msgid "If none selected, user haves granted permissions to all sites." -msgstr "ئەگەر هیچ هەڵبژاردنەک دیاری نەکردوە ،بەکارهێنەر مؤڵەتی هەموو شوێنەکانی پێ بەخشراوە" +msgstr "" +"ئەگەر هیچ هەڵبژاردنەک دیاری نەکردوە ،بەکارهێنەر مؤڵەتی هەموو شوێنەکانی پێ " +"بەخشراوە" msgid "Page global permission" msgstr "مؤڵەتی گشتی پەڕە " @@ -685,7 +762,9 @@ msgstr "مؤڵەتی پەڕە" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "زیادکردنی مۆڵەت بۆ پەڕە پێویستی بە گەشتن بە لقەکان هەیە بە پێچەوانەوە پەڕەی زیادکراو ناگۆڕدرێت لە لایەن دروستەکەرەکەیەوە" +msgstr "" +"زیادکردنی مۆڵەت بۆ پەڕە پێویستی بە گەشتن بە لقەکان هەیە بە پێچەوانەوە پەڕەی " +"زیادکراو ناگۆڕدرێت لە لایەن دروستەکەرەکەیەوە" msgid "User (page)" msgstr "بەکارهێنەر(پەڕ)ە" @@ -752,45 +831,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "تەنها بۆ بەکارهێنەرە هاتووە ژوورەکانە " - -msgid "for anonymous users only" -msgstr "تەنها بۆ بەکارهێنەرە نە ناسراوەکانە" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "ناونیشان" - -msgid "overwrite the title (html title tag)" -msgstr " نووسینەوەی ناونیشان(html title tag)" - -msgid "overwrite the title in the menu" -msgstr "تنووسینەوەی ناونیشان لە پێڕست" - -msgid "description" -msgstr "پێناسە" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "ئاڕاستەکردن" - -msgid "The template used to render the content." -msgstr "ئەو قاڵبەی بەکاردێت بۆ نەخشاندنی ناوەڕۆک " - msgid "Advanced options" msgstr "هەڵبژاردنە پێشکەوتووەکان" @@ -798,7 +838,6 @@ msgid "Generic" msgstr "گشتی" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +847,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "پاشەکەوتکردن" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "لێرەچوونەژوورەوە بۆ بەڕێوەبردن" @@ -881,7 +909,6 @@ msgstr "ناوی بەکارهێنەر" msgid "Password:" msgstr "تێپەرە ووشە" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +989,21 @@ msgstr "بڕین" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1013,6 @@ msgstr "لیستی پەرەکان" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1026,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1052,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1065,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1085,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1110,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1171,6 @@ msgstr "" msgid "Available plugins" msgstr "پێوەکراوا بەردەستەکان" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1184,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1195,6 @@ msgstr "پاشگەزبوونەوە" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1207,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1221,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1230,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1251,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1294,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1334,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1342,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1366,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1406,7 +1377,9 @@ msgstr " %(domain)s پەرە نە دۆزرایەوە لە " msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n`. The URL of the request was: http://%(host)s%(path)s" +msgstr "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1474,7 +1447,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1456,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1492,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1520,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1560,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo b/cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo index 87b8691d2796aa1dbd4f580d433a96ced98d0c5a..4ff7b235968dc37d5e2c6e15e4c413a5ab1019d9 100644 GIT binary patch delta 68 zcmX@eyq$T13S;d=)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!zFe^78VDAC3b6#9bSJ diff --git a/cms/locale/ku_IQ/LC_MESSAGES/djangojs.po b/cms/locale/ku_IQ/LC_MESSAGES/djangojs.po index 5c151ad7e24..403e83dc15d 100644 --- a/cms/locale/ku_IQ/LC_MESSAGES/djangojs.po +++ b/cms/locale/ku_IQ/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Kurdish (Iraq) (http://www.transifex.com/divio/django-cms/language/ku_IQ/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Kurdish (Iraq) (http://app.transifex.com/divio/django-cms/language/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ky/LC_MESSAGES/django.mo b/cms/locale/ky/LC_MESSAGES/django.mo index e41dde504ab389fd1cd552b9d2f034af81ebc1f0..f8ee6d7a7a6d7434ca1220831a73b4cf3c9ccde6 100644 GIT binary patch delta 950 zcmXxi%TE(g6u{xrmRdzXDxy&+4k$$e!?Xn&Y>akCjP(gF)DSb4S{qtQ`cR7|jk+Xh zf=zcW+_6y;(}htNCN5lPBDyhdaG{COf55mf(cdBC$=rVDPVeK)o%tDf5~zOJ+0qaq zNb98~Tq2Wr+szMg#v>BOvuNQxGEqD<-(RTU;+$B<# z3P~S-)X>1ks0+QvR`hyBw3be6$1WVgew@bRsN+^0AK*6nYq%Ak;%NKcmjuzzV1L4bRh`WAGd{Q491_mD-D^ zaR{f`Uv7}-(Y(Sz{NVI|;Q{(SX0_o64&W3<@Dj$chFb7C?!gJppBf~AdQvlZ3UA?E ze2aVWB#TxxNt1Np9b^q@U_U-Yed5=s-^M%V{twinZ{>ZE$~k<5mr=*Jb%-Rf8~s>8 zEocRK=W^fauXRX$#U1eL>+hlIe;Nbz=Wc5_K&Fqcp}S}>akDZX25EZk`|EyBk7Xhn9ZTkOM@NlFC^F7E zi|MkRPMNbQI~OxfR0`?JvT^8IskBs#S(d%DG*;@F|9Ki9ntLvKDnw5sB`D&{*Vs>^F10}Kh&)9gQEd_#1`!n~!7S9R1SNtlUAsl!-#R_^?dScO_vZJ0^PV>SYMNZ#T6$km zBGg7|!lzU_-u3fGxm==D94$1_L4NAJ=O^r@zk-Lbs#K{;?7^Mbk7YQFTkxjWpTg}* zO{y6hyO?;08kbNuTEz;i4JakCXxxlplwjl7i|0|EoAaETt>E3Yq$e{ zVm0qqe`(Y(5F$(iH8Q07a1awHCw`4FTteCSx91;}ja6`CT>uBjVkMqq*yiC2_yHx* zFwu!o?C1TegNB@B1|>xW+=uI4znrJT^y{$-yKoPl#8ymWH$FlMcn#%*$N3J#rY>Rx zlh}u|IECMEvYy5zb`^8D4IN|;^%!^K3zQRo!4~|Ea#zau9x@+BIlwVwO3mUtK0sO5 z8zLik1|`!kQ3CrIQX#nn>a#bn?&SQeN56BDm7W*47ktWNEnIO}} z6Ut}Pj<2M_kgz0&a&x3KQ6;zkODzq#b=B1U`4c7g{B5q4VrA{IPJJ|WJ=Ye~ zhpnRBIqRBjM+fZm5obEs80|F8iHV75Ru-hLCU47(IheYYvdzI^Yjnsq2GSXGgx0t< ql+3RLeSyfF`^J6d=C%9WeOs6=!id*dbQcPD+y!?rnqRK^;rj>v7m+mp diff --git a/cms/locale/ky/LC_MESSAGES/django.po b/cms/locale/ky/LC_MESSAGES/django.po index 0fec490626f..4d801d158d6 100644 --- a/cms/locale/ky/LC_MESSAGES/django.po +++ b/cms/locale/ky/LC_MESSAGES/django.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Soyuzbek Orozbek uulu , 2020 +# Fabian Braun , 2022 +# Soyuzbek orozbek uulu , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Kyrgyz (http://www.transifex.com/divio/django-cms/language/ky/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Soyuzbek orozbek uulu , 2023\n" +"Language-Team: Kyrgyz (https://app.transifex.com/divio/teams/58664/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +57,6 @@ msgstr "Ачыктоочу мета тег" msgid "A description of the page used by search engines." msgstr "Издөө энжиндери колдонгон барактын ачыктоосу." -msgid "Slug must not be empty." -msgstr "Слаг бош болбош керек." - msgid "Page type" msgstr "Барак тиби" @@ -71,7 +69,6 @@ msgstr "Урл ду кайрадан жазуу" msgid "Keep this field empty if standard path should be used." msgstr "стандарт жол колдонулуп атса бул талааны бош кармаңыз." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +108,6 @@ msgstr "Колдонмо тууралоосу" msgid "A page with this reverse URL id exists already." msgstr "Бул тескери УРЛдун ID боюнча барак мурдатан эле бар." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Туура эмес колдонмо конфиг мааниси" @@ -150,7 +144,9 @@ msgstr "Өчүрүү" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Колдонуучулар өзгөртүү жеткиси жок болсо барактады кошо албайт. Керектүү жеткилерди кошуңуз." +msgstr "" +"Колдонуучулар өзгөртүү жеткиси жок болсо барактады кошо албайт. Керектүү " +"жеткилерди кошуңуз." msgid "" "Users can't delete a page without permissions to change the page. Edit " @@ -187,7 +183,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +197,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +215,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +247,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +254,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +285,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +294,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +332,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +401,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +444,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +458,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +467,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +513,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +532,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +634,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +693,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +720,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +828,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +835,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +844,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +906,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +985,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1009,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1191,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1441,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,393 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ky/LC_MESSAGES/djangojs.mo b/cms/locale/ky/LC_MESSAGES/djangojs.mo index 9d9a8f5a0b11acca7e35a3b1310adb409ef9af9a..c5a49dc26849b7aa02e870d3bf2149c7e1d1b875 100644 GIT binary patch delta 93 zcmZ3;x}0@_4sQb^1H)7X28IbhEH=?{8K0qnuA!l>v4MhtnU#s<#J38J`IGq=)iiVz wj0}tnxO@`x(n}N5Q*}d96LYN;yeo^+E2|VVGD=Dctn~F03ko)eF?urs05N|V6aWAK delta 60 zcmZ3^x{!5(4sR7B1H)7X28IbhEHKe>8K04Xu7R1Zfu(|hv6X@O#J38J{*(C_)h1gp P$}^Xjmv4??^kxJAq(cs1 diff --git a/cms/locale/ky/LC_MESSAGES/djangojs.po b/cms/locale/ky/LC_MESSAGES/djangojs.po index 55449e1891a..a6c062f46cd 100644 --- a/cms/locale/ky/LC_MESSAGES/djangojs.po +++ b/cms/locale/ky/LC_MESSAGES/djangojs.po @@ -4,20 +4,29 @@ # # Translators: # Translators: -# Soyuzbek Orozbek uulu , 2020 +# Soyuzbek orozbek uulu , 2020 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-06-09 03:07+0000\n" -"Last-Translator: Soyuzbek Orozbek uulu \n" -"Language-Team: Kyrgyz (http://www.transifex.com/divio/django-cms/language/ky/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Soyuzbek orozbek uulu , 2020\n" +"Language-Team: Kyrgyz (http://app.transifex.com/divio/django-cms/language/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ky\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Сиз чындап эле баракты сактабай туруп жарлыктарды өзгөртүүнү каалап атасызбы?" diff --git a/cms/locale/lt/LC_MESSAGES/django.mo b/cms/locale/lt/LC_MESSAGES/django.mo index 1843a426a53fd8b1bdf1cd4df15ec1d4241bdbed..04b56c60b04b93e844de074e79f7078dce836386 100644 GIT binary patch delta 9407 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, 2014 -# Matas Dailyda, 2015 -# Matas Dailyda , 2015-2018 +# Fabian Braun , 2023 +# Matas Dailyda , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Lithuanian (http://www.transifex.com/divio/django-cms/language/lt/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Matas Dailyda , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/divio/teams/58664/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -50,7 +49,9 @@ msgstr "Puslapio pavadinimas" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Perrašo tai kas atvaizduojama jūsų naršyklės viršutinėje juostoje ar naršyklės žymėse (bookmarks)" +msgstr "" +"Perrašo tai kas atvaizduojama jūsų naršyklės viršutinėje juostoje ar " +"naršyklės žymėse (bookmarks)" msgid "Description meta tag" msgstr "Aprašymo meta žymenys" @@ -58,9 +59,6 @@ msgstr "Aprašymo meta žymenys" msgid "A description of the page used by search engines." msgstr "Puslapio aprašymas naudojamas paieškos sistemose." -msgid "Slug must not be empty." -msgstr "Nuoroda negali būti tuščia." - msgid "Page type" msgstr "Puslapio tipas" @@ -73,7 +71,6 @@ msgstr "Perrašyti URL" msgid "Keep this field empty if standard path should be used." msgstr "Palikite šį lauką tuščią jeigu bus naudojamas standartinis kelias." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -95,11 +92,9 @@ msgstr "meniu matomumas" msgid "limit when this page is visible in the menu" msgstr "apriboti, kada šis puslapis yra matomas meniu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -115,7 +110,6 @@ msgstr "Aplikacijų nustatymai" msgid "A page with this reverse URL id exists already." msgstr "Puslapis su tokia nuoroda jau egzistuoja." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Netinkama aplikacijos konfigūracijos reikšmė" @@ -152,32 +146,44 @@ msgstr "Pašalinti" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Vartotojai negali sukurti puslapio be leidimų keisti sukurtą puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali sukurti puslapio be leidimų keisti sukurtą puslapį. " +"Reikalingi redagavimo leidimai." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Vartotojai negali ištrinti puslapio be leidimų keisti puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali ištrinti puslapio be leidimų keisti puslapį. Reikalingi " +"redagavimo leidimai." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Vartotojai negali nustatyti puslapio leidimų be leidimo keisti puslapį. Reikalingas redagavimo leidimas." +msgstr "" +"Vartotojai negali nustatyti puslapio leidimų be leidimo keisti puslapį. " +"Reikalingas redagavimo leidimas." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Vartotojai negali ištrinti puslapio leidimų be leidimo keisti puslapį. Reikalingas redagavimo leidimas." +msgstr "" +"Vartotojai negali ištrinti puslapio leidimų be leidimo keisti puslapį. " +"Reikalingas redagavimo leidimas." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Vartotojai negali sukurti puslapio leidimų be leidimo keisti sukurtus leidimus. Reikalingas redagavimo leidimas." +msgstr "" +"Vartotojai negali sukurti puslapio leidimų be leidimo keisti sukurtus " +"leidimus. Reikalingas redagavimo leidimas." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Vartotojai negali ištrinti puslapio leidimų be leidimo keisti leidimus. Reikalingas redagavimo leidimas." +msgstr "" +"Vartotojai negali ištrinti puslapio leidimų be leidimo keisti leidimus. " +"Reikalingas redagavimo leidimas." #, python-format msgid "Invalid plugin type '%s'" @@ -189,9 +195,10 @@ msgstr "Kalba turi būti nustatyta į palaikomą kalbą!" msgid "Parent plugin language must be same as language!" msgstr "Pradinio įskiepio kalba turi būti tokia pati!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Pradinio įskiepo rezervuota vieta turi būti tokia pati kaip rezervuota vieta!" +msgstr "" +"Pradinio įskiepo rezervuota vieta turi būti tokia pati kaip rezervuota " +"vieta!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -204,7 +211,6 @@ msgid "The page is not eligible to be home." msgstr "Šis puslapis negali būti pradiniu puslapiu." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -223,14 +229,15 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "Klaida! Jūs neturite teisių perkelti šį puslapį. Perkraukite puslapį" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Klaida! Jūs neturite teisių kopijuoti šio puslapio." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Klaida! Puslapis kurį bandote įkopijuoti nėra išverstas jokiomis kalbomis kurios sukonfigūruotos pasirinktame tinklalapyje." +msgstr "" +"Klaida! Puslapis kurį bandote įkopijuoti nėra išverstas jokiomis kalbomis " +"kurios sukonfigūruotos pasirinktame tinklalapyje." msgid "You do not have permission to edit this page" msgstr "Jūs neturite teisės redaguoti šio puslapio" @@ -256,7 +263,6 @@ msgstr "Šablonas buvo sėkmingai pakeistas" msgid "You do not have permission to copy these plugins." msgstr "Jūs neturite teisių kopijuoti šių įskiepių" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Jūs neturite teisės pašalinti šio puslapio" @@ -264,8 +270,20 @@ msgstr "Jūs neturite teisės pašalinti šio puslapio" msgid "Title and plugins with language %(language)s was deleted" msgstr "Pavadinimas ir įskiepiai su %(language)s kalbomis buvo pašalinti" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Jūs neturite teisės keisti šio puslapio atvaizdavimo navigacijoje statuso" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Valyti" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Peržiūrėjimo apribojimas" @@ -283,7 +301,6 @@ msgstr "Jūs neturite teisės redaguoti šio objekto" msgid "You do not have permission to add a plugin" msgstr "Jūs neturite teisės prideti įskiepį" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Jūs neturite teisės kopijuoti šios rezervuotos vietos" @@ -293,18 +310,15 @@ msgstr "Įskiepis nerastas" msgid "You do not have permission to edit this plugin" msgstr "Jūs neturite teisės redaguoti šio įskiepio" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Jūs neturite teisės įkopijuoti šio įskiepio" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Jūs neturite teisės įkopijuoti šios rezervuotos vietos" msgid "You have no permission to move this plugin" msgstr "Jūs neturite teisės perkelti šio įskiepio" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Jūs neturite teisės iškirpti šio įskiepio" @@ -334,6 +348,47 @@ msgstr "Vartotojo ir grupės teisės" msgid "Page permissions management" msgstr "Puslapio teisių valdymas" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Peržiūra" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Nerasta registruota aplikacija \"%r\"" @@ -354,7 +409,9 @@ msgstr "Sukurti alias (kitą varda)" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Tai susijęs paminėjimas, ši turinį galite redaguoti tik %(page_title)s puslapyje." +msgstr "" +"Tai susijęs paminėjimas, ši turinį galite redaguoti tik %(page_title)s puslapyje." msgid "Create" msgstr "Kurti" @@ -362,9 +419,6 @@ msgstr "Kurti" msgid "Edit" msgstr "Redaguoti" -msgid "Preview" -msgstr "Peržiūra" - msgid "Structure" msgstr "Struktūra" @@ -408,15 +462,12 @@ msgstr "Atsijungti" msgid "Language" msgstr "Kalba" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Pridėti vertimą" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Pašalinti vertimą" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopijuoti visus įskiepius" @@ -425,7 +476,6 @@ msgid "from %s" msgstr "iš %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Ar tikrai norite kopijuoti visus įskiepius iš %s?" @@ -435,7 +485,6 @@ msgstr "Puslapiai" msgid "Page" msgstr "Puslapis" -#| msgid "Create" msgid "Create Page" msgstr "Kurti puslapį" @@ -482,34 +531,39 @@ msgid "Select a valid page" msgstr "Pasirinkite tinkamą puslapį" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Puslapis %(conflict_page)s turi tą patį url '%(url)s' kaip dabartinis puslapis \"%(instance)s\"." +msgstr "" +"Puslapis %(conflict_page)s turi tą patį url '%(url)s' kaip dabartinis " +"puslapis \"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Puslapis %(conflict_page)s turi tą patį url '%(url)s' kaip dabartinis puslapis." +msgstr "" +"Puslapis %(conflict_page)s turi tą patį url '%(url)s' kaip dabartinis " +"puslapis." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Nebūtina. Jei suvestas, bus automatiškai pridėtas prie naujo teksto įskiepio." +msgstr "" +"Nebūtina. Jei suvestas, bus automatiškai pridėtas prie naujo teksto " +"įskiepio." msgid "Provide a title for the new page." msgstr "Sukurkite antraštę naujam puslapiui." msgid "Leave empty for automatic slug, or override as required." -msgstr "Palikti tuščią kad nuoroda būtų sugeneruota automatiškai, arba galite pakeisti kaip Jums reikia." +msgstr "" +"Palikti tuščią kad nuoroda būtų sugeneruota automatiškai, arba galite " +"pakeisti kaip Jums reikia." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." msgstr "Jūs neturite teisių reikalingų norint pridėti puslapį." @@ -606,17 +660,67 @@ msgstr "Suteikti" msgid "page" msgstr "puslapis" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "tik prisijungusiems vartotojams" + +msgid "for anonymous users only" +msgstr "tik neregistruotiems lankytojams" + +msgid "Inherit from parent page" +msgstr "Paveldėti iš pirminio puslapio" + +msgid "Deny" +msgstr "Atmesti" + +msgid "Only this website" +msgstr "Tik šis tinklalapis" + +msgid "Allow" +msgstr "Leisti" + +msgid "title" +msgstr "pavadinimas" + +msgid "overwrite the title (html title tag)" +msgstr "perrašyti pavadinimą (html pavadinimo žymę)" + +msgid "overwrite the title in the menu" +msgstr "perrašyti pavadinimą esantį meniu" + +msgid "description" +msgstr "aprašymas" + +msgid "The text displayed in search engines." +msgstr "Tekstas atvaizduojamas paieškos sistemose." + +msgid "redirect" +msgstr "nukreipti" + +msgid "The template used to render the content." +msgstr "Šablonas naudojamas turinio atvaizdavimui." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "pagrindinis" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Unikalus identifikatorius, naudojamas su page_url templatetag nukreipiant į šį puslapį" +msgstr "" +"Unikalus identifikatorius, naudojamas su page_url templatetag nukreipiant į " +"šį puslapį" msgid "pages" msgstr "puslapiai" -msgid "default" -msgstr "pagrindinis" - msgid "slug" msgstr "nuoroda" @@ -644,35 +748,44 @@ msgstr "puslapio lygyje" msgid "frontend view restriction" msgstr "peržiūrėjimo apribojimas" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Pasirinkite vartotoją arba grupę." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Vartotojai negali publikuoti puslapio be leidimų keisti puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali publikuoti puslapio be leidimų keisti puslapį. Reikalingi " +"redagavimo leidimai." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Vartotojai negali keisti puslapio išplėstinių nustatymų be leidimo keisti puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali keisti puslapio išplėstinių nustatymų be leidimo keisti " +"puslapį. Reikalingi redagavimo leidimai." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Vartotojai negali keisti puslapio leidimų be leidimo keisti puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali keisti puslapio leidimų be leidimo keisti puslapį. " +"Reikalingi redagavimo leidimai." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Vartotojai negali perkelti puslapio be leidimų keisti puslapį. Reikalingi redagavimo leidimai." +msgstr "" +"Vartotojai negali perkelti puslapio be leidimų keisti puslapį. Reikalingi " +"redagavimo leidimai." msgid "can recover any deleted page" msgstr "gali grąžinti bet kokį pašalintą puslapį" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Jeigu niekas nepasirinkta, vartotojui bus suteiktos teisės visiems tinklalapiams." +msgstr "" +"Jeigu niekas nepasirinkta, vartotojui bus suteiktos teisės visiems " +"tinklalapiams." msgid "Page global permission" msgstr "Globalios puslapio teisės" @@ -686,7 +799,9 @@ msgstr "Puslapio teisės" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Puslapio pridėjimo teisė taip pat reikalauja prieigos prie vidinių elementų, kitaip pridėto puslapio nebus galima redaguoti." +msgstr "" +"Puslapio pridėjimo teisė taip pat reikalauja prieigos prie vidinių elementų," +" kitaip pridėto puslapio nebus galima redaguoti." msgid "User (page)" msgstr "Vartotojas (puslapis)" @@ -730,7 +845,9 @@ msgstr "statinės rezervuotos vietos pavadinimas" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Apibudinantis pavadinimas atpažinti šią statinę rezervuotą vietą. Nerodoma vartotojams." +msgstr "" +"Apibudinantis pavadinimas atpažinti šią statinę rezervuotą vietą. Nerodoma " +"vartotojams." msgid "placeholder code" msgstr "rezervuotos vietos kodas" @@ -751,46 +868,8 @@ msgid "static placeholders" msgstr "statinės rezervuotos vietos" msgid "A static placeholder with the same site and code already exists" -msgstr "Statinė rezervuota vieta su tuo pačiu tinklalapiu ir kodu jau egzistuoja" - -msgid "for logged in users only" -msgstr "tik prisijungusiems vartotojams" - -msgid "for anonymous users only" -msgstr "tik neregistruotiems lankytojams" - -msgid "Inherit from parent page" -msgstr "Paveldėti iš pirminio puslapio" - -msgid "Deny" -msgstr "Atmesti" - -msgid "Only this website" -msgstr "Tik šis tinklalapis" - -msgid "Allow" -msgstr "Leisti" - -msgid "title" -msgstr "pavadinimas" - -msgid "overwrite the title (html title tag)" -msgstr "perrašyti pavadinimą (html pavadinimo žymę)" - -msgid "overwrite the title in the menu" -msgstr "perrašyti pavadinimą esantį meniu" - -msgid "description" -msgstr "aprašymas" - -msgid "The text displayed in search engines." -msgstr "Tekstas atvaizduojamas paieškos sistemose." - -msgid "redirect" -msgstr "nukreipti" - -msgid "The template used to render the content." -msgstr "Šablonas naudojamas turinio atvaizdavimui." +msgstr "" +"Statinė rezervuota vieta su tuo pačiu tinklalapiu ir kodu jau egzistuoja" msgid "Advanced options" msgstr "Papildomi nustatymai" @@ -799,7 +878,6 @@ msgid "Generic" msgstr "Bendrasis" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" buvo sėkmingai pakeistas." @@ -809,65 +887,54 @@ msgstr "Daugiau nustatymų šiam įskiepiui nėra. Spauskite išsaugoti." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Pakeistas" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Išsaugoti" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Prisijungti prie administravimo čia." @@ -882,9 +949,8 @@ msgstr "Vartotojo vardas:" msgid "Password:" msgstr "Vartotojo slaptažodis:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Pridėti puslapį" +msgstr "" msgid "Change a page" msgstr "Pakeisti puslapį" @@ -965,16 +1031,21 @@ msgstr "Iškirpti" msgid "Paste" msgstr "Įkopijuoti" -#| msgid "Save as new" msgid "Set as home" msgstr "Nustatyti kaip pradinį" +msgid "Permissions" +msgstr "Teisės" + msgid "is restricted" msgstr "yra apribotas" msgid "last change by" msgstr "paskutinis pakeitimas pagal" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -984,7 +1055,6 @@ msgstr "Puslapių sąrašas" msgid "Search" msgstr "Ieškoti" -#| msgid "Page Title" msgid "Page Tree" msgstr "Puslapio medis" @@ -996,19 +1066,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nAtkurti pašalintus %(name)s" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Atkurti pašalintus %(name)s" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Pagrindinė navigacija" -#| msgid "Actions" msgid "Options" msgstr "Nustatymai" @@ -1024,7 +1088,9 @@ msgstr "Klaida:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Šis puslapis negali būti kopijuojamas nes su juo yra susieta aplikacija. Žiūrėkite puslapio išplėstinius nustatymus aplikacijų valdymui." +msgstr "" +"Šis puslapis negali būti kopijuojamas nes su juo yra susieta aplikacija. " +"Žiūrėkite puslapio išplėstinius nustatymus aplikacijų valdymui." msgid "Are you sure you want to § this page?" msgstr "Ar tikrai norite § šį puslapį?" @@ -1032,7 +1098,6 @@ msgstr "Ar tikrai norite § šį puslapį?" msgid "Reload" msgstr "Perkrauti" -#| msgid "New Page" msgid "New node" msgstr "Naujas mazgas" @@ -1046,17 +1111,18 @@ msgid "Menu" msgstr "Meniu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Kol kas nėra jokių %(object)s.\n
    \n Pridėti %(object)s dabar.\n " +msgstr "" +"\n" +" Kol kas nėra jokių %(object)s.\n" +"
    \n" +" Pridėti %(object)s dabar.\n" +" " msgid "Copy options" msgstr "Kopijavimo nustatymai" @@ -1070,30 +1136,15 @@ msgstr "Uždaryti" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Publikuota" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Nepublikuotas" - -msgid "Empty" -msgstr "Valyti" - -#| msgid "in menu" msgid "In menu" msgstr "Yra meniu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Nesantis meniu" -#| msgid "New page" msgid "View page" msgstr "Žiūrėti puslapį" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1110,12 +1161,20 @@ msgstr "yra meniu" msgid "not in menu" msgstr "nesantis meniu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" -msgstr "Puslapio nustatymai (spauskite SHIFT klavišą kad įjungti išplėstinius nustatymus)" +msgstr "" +"Puslapio nustatymai (spauskite SHIFT klavišą kad įjungti išplėstinius " +"nustatymus)" -msgid "Permissions" -msgstr "Teisės" +msgid "This page has no preview!" +msgstr "Šis puslapis neturi peržiūros galimybės!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Yra nukreipiamas į:" msgid "Clipboard" msgstr "Iškarpinė" @@ -1148,7 +1207,8 @@ msgid "You cannot add plugins to this plugin." msgstr "Jūs negalite pridėti įskiepių į šį įskiepį." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Šis įskiepis negali buti perkeltas ar redaguojamas už tėvinio įskiepio ribų" +msgstr "" +"Šis įskiepis negali buti perkeltas ar redaguojamas už tėvinio įskiepio ribų" msgid "Clipboard is empty." msgstr "Iškarpinė yra tuščia." @@ -1165,7 +1225,6 @@ msgstr "Akcentuoti" msgid "Available plugins" msgstr "Galimi įskiepiai" -#| msgid "Structure" msgid "Toggle structure" msgstr "Perjungti struktūrą" @@ -1179,11 +1238,12 @@ msgid "More" msgstr "Daugiau" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Vystymo versija naudojanti django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Vystymo versija naudojanti django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Atšaukti" @@ -1191,7 +1251,6 @@ msgstr "Atšaukti" msgid "The following error occured:" msgstr "Įvyko tokia klaida:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Veiksmas pavyko." @@ -1204,15 +1263,12 @@ msgstr "Ar tikrai norite publikuoti šį puslapį?" msgid "Plugin will be added here" msgstr "Įskiepis bus pridėtas čia" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Jūs turite neišsaugotų pakeitimų." -#| msgid "Loading..." msgid "Loading" msgstr "Kraunama" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Ar tikrai nenorite išsaugoti šių pakeitimų?" @@ -1221,7 +1277,6 @@ msgid "" "correctly." msgstr "Formos nepavyko užkrauti. Patikrinkite ar veikia serveris." -#| msgid "Notify user" msgid "Most used" msgstr "Daugiausia naudojama" @@ -1231,10 +1286,12 @@ msgstr "Nuorodos" msgid "The page was changed in the meantime, reloading..." msgstr "Puslapis buvo pakeistas, perkraunama..." +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "Atidaryti šį pagalbos dialogą" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Uždaryti/atšaukti" @@ -1250,32 +1307,29 @@ msgstr "Atidaryti \"Kūrimo\" dialogą" msgid "Focus on Toolbar" msgstr "Koncentruotis į įrankių juostą" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Koncentruotis į rezervuotas vietas" msgid "Move to next/previous element" msgstr "Pereiti į kitą/buvusį elementą" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Koncentruotis į rezervuotos vietos įskiepius" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Redaguoti įskiepį" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Atidaryti veiksmų meniu" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Išskleisti/suskleisti" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Prisijungti nepavyko. Patikrinkite savo duomenis ir bandykit dar kartą." +msgstr "" +"Prisijungti nepavyko. Patikrinkite savo duomenis ir " +"bandykit dar kartą." msgid "Double-click to edit" msgstr "Redaguoti - dvigubas paspaudimas" @@ -1298,12 +1352,6 @@ msgstr "Maksimizuoti" msgid "Drop a plugin here" msgstr "Mesti įskiepį čia" -msgid "This page has no preview!" -msgstr "Šis puslapis neturi peržiūros galimybės!" - -msgid "It is being redirected to:" -msgstr "Yra nukreipiamas į:" - msgid "Installation successful!" msgstr "Diegimas pavyko!" @@ -1318,14 +1366,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nSveiki, tai django CMS versija %(cms_version)s." +msgstr "" +"\n" +"Sveiki, tai django CMS versija %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nPridėkite pirmąjį puslapį į sistema kad galėtumete tęsti." +msgstr "" +"\n" +"Pridėkite pirmąjį puslapį į sistema kad galėtumete tęsti." #, python-format msgid "" @@ -1333,7 +1385,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavaScript yra išjungtas, prašome\npridėti puslapį rankiniu būdu." +msgstr "" +"\n" +"JavaScript yra išjungtas, prašome\n" +"pridėti puslapį rankiniu būdu." msgid "Installation Notes" msgstr "Diegimo užrašai" @@ -1344,32 +1399,19 @@ msgstr "Palaikymas" msgid "Documentation" msgstr "Dokumentacija" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Jei nematote django CMS logotipo viršuje, įsitikinkite\n jog susiejote static/cms aplanką į\n statinius failus.

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Jei nematote django CMS logotipo viršuje, įsitikinkite\n" +" jog susiejote static/cms aplanką į\n" +" statinius failus.

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1377,7 +1419,13 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Jūs matote šia žinutė todėl kad\n DEBUG = True nustatymas yra nustatytas jūsų django \n nustatymuose ir kol kas nėra sukurti jokie puslapiai.\n

    \n " +msgstr "" +"\n" +"

    Jūs matote šia žinutė todėl kad\n" +" DEBUG = True nustatymas yra nustatytas jūsų django \n" +" nustatymuose ir kol kas nėra sukurti jokie puslapiai.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Sveiki, tai django CMS" @@ -1394,11 +1442,7 @@ msgstr "Pasirinkite žemiau esantį nustatymą kad pereiti prie kito žingsnio." msgid "Next" msgstr "Kitas" -msgid "no content" -msgstr "turinio nėra" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1409,7 +1453,9 @@ msgstr "Puslapis nerastas %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Šablono žymė negalėjo rasti puslapio su argumentais `%(page_lookup)s\n`. Užklausos URL buvo: http://%(host)s%(path)s" +msgstr "" +"Šablono žymė negalėjo rasti puslapio su argumentais `%(page_lookup)s\n" +"`. Užklausos URL buvo: http://%(host)s%(path)s" msgid "Two columns" msgstr "Du stulpeliai" @@ -1422,7 +1468,9 @@ msgstr "vartotojo vardas" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Privalomas. 300 simbolių arba mažiau. Raidės, skaičiai ir @/./+/-/_ simboliai" +msgstr "" +"Privalomas. 300 simbolių arba mažiau. Raidės, skaičiai ir @/./+/-/_ " +"simboliai" msgid "Enter a valid username." msgstr "Įveskite taisyklingą vartotojo vardą." @@ -1434,7 +1482,8 @@ msgid "staff status" msgstr "personalo būsena" msgid "Designates whether the user can log into this admin site." -msgstr "Nustato ar vartotojas gali prisijungti prie šio admininistravimo puslapio." +msgstr "" +"Nustato ar vartotojas gali prisijungti prie šio admininistravimo puslapio." msgid "active" msgstr "aktyvus" @@ -1442,7 +1491,9 @@ msgstr "aktyvus" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Nustato ar šis vartotojas turi būti traktuojamas kaip aktyvus. Atžymėkite užuot šalinę vartotoją." +msgstr "" +"Nustato ar šis vartotojas turi būti traktuojamas kaip aktyvus. Atžymėkite " +"užuot šalinę vartotoją." msgid "users" msgstr "vartotojai" @@ -1477,7 +1528,6 @@ msgstr "Straipsniai" msgid "Sample App" msgstr "Pavyzdinė aplikacija" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Pavyzdinė aplikacija su konfigūracija" @@ -1487,9 +1537,8 @@ msgstr "Pavyzdinė aplikacija su panaikintomis teisėmis" msgid "Sample App 2" msgstr "Pavyzdinė aplikacija 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Pavyzdinė aplikacija 3" +msgstr "Pavyzdinė aplikacija 2" msgid "Namespaced App" msgstr "Namespaced aplikacija" @@ -1524,9 +1573,8 @@ msgstr "Statinis meniu2" msgid "Static Menu3" msgstr "Statinis meniu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statinis meniu4" +msgstr "Statinis meniu" msgid "Category" msgstr "Kategorija" @@ -1553,12 +1601,10 @@ msgid "UserSettings" msgstr "Vartotojo nustatymai" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Pridėti įskiepį į rezervuotą vietą \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Pridėti įskiepį %(plugin_name)s" @@ -1576,7 +1622,9 @@ msgstr "Ši rezervuota vieta jau turi maksimalų skaičių įskiepių (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Ši rezervuota vieta jau turi maksimalų skaičių (%(limit)s) leistinų %(plugin_name)s įskiepių." +msgstr "" +"Ši rezervuota vieta jau turi maksimalų skaičių (%(limit)s) leistinų " +"%(plugin_name)s įskiepių." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1595,396 +1643,3 @@ msgstr "Sukurti naują %s objektą." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Vedlys jau užregistruotas modeliuil: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/lt/LC_MESSAGES/djangojs.mo b/cms/locale/lt/LC_MESSAGES/djangojs.mo index 59160ff87350e1d693f84cb01194028a18b8d093..78646435d4e5a04d3c3892fb1dc001be82eab840 100644 GIT binary patch delta 93 zcmcc0dWCg@4)1?P28O8&3=DQaJawYwa$W;nLqlC-0|f&!D-+9!Z^hMp6H5|{6M@rT!$10S1&m~*G@;l$iUEavJRs%b7Dck<{-vqMgZp~8)E\n" -"Language-Team: Lithuanian (http://www.transifex.com/divio/django-cms/language/lt/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Matas Dailyda , 2015\n" +"Language-Team: Lithuanian (http://app.transifex.com/divio/django-cms/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Jūs tikrai norite neišsaugojus puslapio pakeisti skirtukus? " diff --git a/cms/locale/lt_LT/LC_MESSAGES/django.mo b/cms/locale/lt_LT/LC_MESSAGES/django.mo index 4ef1e5acfea6ba09ab799af4604c20ceea6e1a44..b35a5f96d01f6c11a087b6a905db286b046445d9 100644 GIT binary patch delta 87 zcmdnX(#Zli6>FXyJ6zG){ nCFT`prlnTsCFkerr(~98=IfWFCgv9Fn_8HenQWG3RAK}GTB8}( delta 136 zcmeBX*~>CPg^8JIqM9y?g0pY%#Bg0(16@M{T_Z~cLsKhbV{HQ<;POc^iwj+ dGV}FQvJ&&s^L3MRi}iDWtkT5v)QvBd7y*emE8zeD diff --git a/cms/locale/lt_LT/LC_MESSAGES/django.po b/cms/locale/lt_LT/LC_MESSAGES/django.po index 0bbfdfd6e8d..aa364558118 100644 --- a/cms/locale/lt_LT/LC_MESSAGES/django.po +++ b/cms/locale/lt_LT/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/divio/django-cms/language/lt_LT/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Lithuanian (Lithuania) (https://app.transifex.com/divio/teams/58664/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/lt_LT/LC_MESSAGES/djangojs.mo b/cms/locale/lt_LT/LC_MESSAGES/djangojs.mo index b29ff31550c9d7e2ce72a3a5f046444c692303bf..e92468bf651242fd8ba82609c5e7bc121fd4e726 100644 GIT binary patch delta 70 zcmX@Za)@Pu3M0ov)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!y+U^78VHKfD+L#wr@u diff --git a/cms/locale/lt_LT/LC_MESSAGES/djangojs.po b/cms/locale/lt_LT/LC_MESSAGES/djangojs.po index 804fd34b573..0cfb1dbaa7a 100644 --- a/cms/locale/lt_LT/LC_MESSAGES/djangojs.po +++ b/cms/locale/lt_LT/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/divio/django-cms/language/lt_LT/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Lithuanian (Lithuania) (http://app.transifex.com/divio/django-cms/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/lv/LC_MESSAGES/django.mo b/cms/locale/lv/LC_MESSAGES/django.mo index 6f9652151fc7d335b31c9b8586c22eb05b3a8e2d..feed6d7e84725aef3330cc84e05ed750cc836f9c 100644 GIT binary patch delta 266 zcmeC=>*1TQrhXzL149Kf1A`g^0|OT;0|PgZHU!c(K-v~a%K_;sAZ-hzX98(9AblN3 ziva0+Kw1Due+JT;K$-<884RTLfHX+F2}tt*>B&G^97rz!(ja|1fV2jXKFh|y&%gy_ zd;+%}u8iJ65p@EgL(c}xv;>vD`Ntuax3Qk3drFjZA zX~jt(hC_O8g*SlTroNAnfuVw#fkBOdfq|Wsfq@%H>j7ySAZ-Pt<$!cKkhTTV(||M^kiG(> zMS%2eAT0o-KLBY>Ak7Gr3+%}t8XD*tSt=NsS{WNpzQ8Ol>6n>aX>6cilL)3A zDibsE^YxPRbL}Q`vB>IK>Fbx5m+O@jCFT`prlnSZWb{)q%QExzQ?e5C((`qbbBpzJ PfUMHQ^wiCMEc=)MKqNEN diff --git a/cms/locale/lv/LC_MESSAGES/django.po b/cms/locale/lv/LC_MESSAGES/django.po index aca2c317050..f3962661db6 100644 --- a/cms/locale/lv/LC_MESSAGES/django.po +++ b/cms/locale/lv/LC_MESSAGES/django.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Mikelis Asnins , 2013 +# Fabian Braun , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Latvian (http://www.transifex.com/divio/django-cms/language/lv/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Latvian (https://app.transifex.com/divio/teams/58664/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,7 +48,8 @@ msgstr "Lapas virsraksts" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Pārraksta datus, kas tiek attēloti pārlūka augšējā joslā vai grāmatzīmēs" +msgstr "" +"Pārraksta datus, kas tiek attēloti pārlūka augšējā joslā vai grāmatzīmēs" msgid "Description meta tag" msgstr "" @@ -56,9 +57,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +69,6 @@ msgstr "Pārrakstīt URL" msgid "Keep this field empty if standard path should be used." msgstr "Atstāj šo lauku tukšu, ja tiek izmantots standarta ceļš." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "Lapa ar atgriezto URL id jau eksistē." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +181,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +213,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +245,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +252,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +283,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +292,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +330,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +399,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +442,12 @@ msgstr "" msgid "Language" msgstr "Valoda" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +456,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +465,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +511,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +530,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +632,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +691,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +718,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +826,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +833,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +842,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +904,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +985,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1009,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1191,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1441,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,395 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/lv/LC_MESSAGES/djangojs.mo b/cms/locale/lv/LC_MESSAGES/djangojs.mo index 2eea879d7fabf4aec82aab54aaf1a331c14c4e6c..ece0b166e4ef2d28ea643832ddc69d43ffd902db 100644 GIT binary patch delta 101 zcmZo=?O~mu!@Go$fnh2G14AGXTTQfF&TF7+XsBy!pkQETWnww;t+>8#W_D^$X0d`} wab9L#v4Tx5gs+zf<~vj-X5{DVCFkeb=_nW(7#dI3VN_sFEGXFQ&uGR70D+$!K>z>% delta 121 zcmeBSZDpOH!#kIefnh2G14AGX8&9-c&TFA-V5nV~8y=2|KEB$kwACgv$Dv~07w}no&W#< diff --git a/cms/locale/lv/LC_MESSAGES/djangojs.po b/cms/locale/lv/LC_MESSAGES/djangojs.po index 8808a1b5b14..605eee6abb6 100644 --- a/cms/locale/lv/LC_MESSAGES/djangojs.po +++ b/cms/locale/lv/LC_MESSAGES/djangojs.po @@ -9,15 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Latvian (http://www.transifex.com/divio/django-cms/language/lv/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Mikelis Asnins , 2013\n" +"Language-Team: Latvian (http://app.transifex.com/divio/django-cms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Vai jūs esat pārliecināts, ka gribat mainīt cilnes, bez lapas saglabāšanas?" diff --git a/cms/locale/ml/LC_MESSAGES/django.mo b/cms/locale/ml/LC_MESSAGES/django.mo index cde34272933d9a9114624d4e27549ade00460d97..6e85e8020ca978e542dc885cc427f1680e95f983 100644 GIT binary patch delta 85 zcmZ3^{FP~f3ZwNzRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*;p2>>TT8Os0w delta 134 zcmey$w48Z@3S;g>RXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6YtCf0JdQ))c^nh diff --git a/cms/locale/ml/LC_MESSAGES/django.po b/cms/locale/ml/LC_MESSAGES/django.po index ffa55180b3a..4764c90b21c 100644 --- a/cms/locale/ml/LC_MESSAGES/django.po +++ b/cms/locale/ml/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Malayalam (http://www.transifex.com/divio/django-cms/language/ml/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Malayalam (https://app.transifex.com/divio/teams/58664/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ml/LC_MESSAGES/djangojs.mo b/cms/locale/ml/LC_MESSAGES/djangojs.mo index 98591fd77375d27d13e2ddcb93a1803de7bff8b4..af660c5c5720ee45b304042675d2486264432cf5 100644 GIT binary patch delta 13 VcmZ3(yoPzg3+BXvf{CvW0stpe23P<9 delta 13 VcmZ3(yoPzg3+D3j@`\n" -"Language-Team: Malayalam (http://www.transifex.com/divio/django-cms/language/ml/)\n" +"Language-Team: Malayalam (http://app.transifex.com/divio/django-cms/language/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/mn/LC_MESSAGES/django.mo b/cms/locale/mn/LC_MESSAGES/django.mo index 0229d1dc37c2529cd94e68e11c55cfa6ec3e769c..7b46149c805ab09d02baf62911b545ba843fec79 100644 GIT binary patch delta 211 zcmdnPx}SA|k8S}Y1H&B#1_ntW_GMyVkOk7|KpMnv1=2h~dOnaA0@7V~8y=2|KE=I5p7=YVu+WR#Q?6kF-*Cl(aw nm4HmmOiQiMOU}>LPsuFf%gom=0qQ8$H?=S`Gugb6k(&_!Oh7vw delta 181 zcmdnbx`%awk8Um_1H&B#1_ntW_F`gSkOk5yKpMnv0@6G{dJd2l0@5odR@Sm8IQs@q z{H1GaplfKLYh, 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Mongolian (http://www.transifex.com/divio/django-cms/language/mn/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Mongolian (https://app.transifex.com/divio/teams/58664/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -72,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -407,15 +441,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -643,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -798,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -881,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/mn/LC_MESSAGES/djangojs.mo b/cms/locale/mn/LC_MESSAGES/djangojs.mo index 97fbb53fb395a726d1e3d93e888ed218cd898d01..eb012aa4fd53fd77ee04b9097bac7bd826ae1d0a 100644 GIT binary patch delta 68 zcmdnSyoPy#3S-ek)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!$Ph^78VDuMYwMx_TQ= diff --git a/cms/locale/mn/LC_MESSAGES/djangojs.po b/cms/locale/mn/LC_MESSAGES/djangojs.po index 37e268a3d98..b5ef5d1a6b1 100644 --- a/cms/locale/mn/LC_MESSAGES/djangojs.po +++ b/cms/locale/mn/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Mongolian (http://www.transifex.com/divio/django-cms/language/mn/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Mongolian (http://app.transifex.com/divio/django-cms/language/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/mn_MN/LC_MESSAGES/django.mo b/cms/locale/mn_MN/LC_MESSAGES/django.mo index af7fb2d92b718f8b2cf9c8980a261faa37c23112..58880f41eb0c738c4e9e83a4f6c1af937eb71c2d 100644 GIT binary patch delta 115 zcmaFJ{DgUe4sRnP14B3i0|OTj-<)V^!J?a-TRgE;m)A(w5QG#A4XlifCaxD(c1ujk zOw3boDoQNPQ?N-ZP69C;(sL{HQc~@76pRdvj3(aKVlTGR*H0`cn9R>8%3YG0m|LuG NYGGz(GTEGQ6#yZ6Am;!8 delta 128 zcmaFD{E&Hq4sRVJ14B3i0|OTjUz=!Y!J^>o8$7X8m)Aho&_LJ7Qo+#F%Gh|~dT~j| z%, 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Mongolian (Mongolia) (http://www.transifex.com/divio/django-cms/language/mn_MN/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2022\n" +"Language-Team: Mongolian (Mongolia) (https://app.transifex.com/divio/teams/58664/mn_MN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +441,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/mn_MN/LC_MESSAGES/djangojs.mo b/cms/locale/mn_MN/LC_MESSAGES/djangojs.mo index 3d14ecc379abc58f49fe7717f868b40603aa1524..ded97ce521254eed9bb130b770e325a5acf229f8 100644 GIT binary patch delta 68 zcmX@kyq9@`3S;v`)p%Y5T|+}%V*>>PGbLC{Qv*} delta 78 zcmdnXe4KfL3S;j?)p%YDT?0d1Lqi2aGb>|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!!>3^78VD-;M(S$=@5E diff --git a/cms/locale/mn_MN/LC_MESSAGES/djangojs.po b/cms/locale/mn_MN/LC_MESSAGES/djangojs.po index c108a1476f6..5ed9a3ba23a 100644 --- a/cms/locale/mn_MN/LC_MESSAGES/djangojs.po +++ b/cms/locale/mn_MN/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Mongolian (Mongolia) (http://www.transifex.com/divio/django-cms/language/mn_MN/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Mongolian (Mongolia) (http://app.transifex.com/divio/django-cms/language/mn_MN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mn_MN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ms/LC_MESSAGES/django.mo b/cms/locale/ms/LC_MESSAGES/django.mo index 21d18f84a869afc62bfb2d350445b6b6ecfa37e2..9708294f254e96b0bdaf2c9c15980d99d924c0ab 100644 GIT binary patch delta 85 zcmbQk{EBIU3Zub9RXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy**o1OOZ98JhqA delta 158 zcmaFGG>3VD3S-hlRXr93XW!t7;kxw(x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^K, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Malay (http://www.transifex.com/divio/django-cms/language/ms/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Malay (https://app.transifex.com/divio/teams/58664/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -959,16 +980,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -978,7 +1004,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -992,17 +1017,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1026,7 +1043,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1040,10 +1056,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1064,30 +1076,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1104,11 +1101,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1159,7 +1162,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1173,7 +1175,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1185,7 +1186,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1198,15 +1198,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1215,7 +1212,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1225,10 +1221,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1244,26 +1242,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1292,12 +1285,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1338,15 +1325,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1355,15 +1333,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1388,11 +1357,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1471,7 +1436,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1481,7 +1445,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1518,7 +1481,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1547,12 +1509,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1589,393 +1549,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ms/LC_MESSAGES/djangojs.mo b/cms/locale/ms/LC_MESSAGES/djangojs.mo index adfb6fbfeb41e6a713c316eb33ed15971d2a2e17..1cf717b624aad00b294ec80706fcd676b70c90af 100644 GIT binary patch delta 68 zcmZ3@ypVZ<3S;_2)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!%0#^78VD&vyX;u%H_s diff --git a/cms/locale/ms/LC_MESSAGES/djangojs.po b/cms/locale/ms/LC_MESSAGES/djangojs.po index f77e58aea77..5a84e055c7c 100644 --- a/cms/locale/ms/LC_MESSAGES/djangojs.po +++ b/cms/locale/ms/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Malay (http://www.transifex.com/divio/django-cms/language/ms/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Malay (http://app.transifex.com/divio/django-cms/language/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/mt/LC_MESSAGES/django.mo b/cms/locale/mt/LC_MESSAGES/django.mo index aa41900ca264a64dc5b2e365a4e15af48ea05b8b..0d30df2fa6a5b37226b5b039477196c080bddefb 100644 GIT binary patch delta 85 zcmaFIyoY&$3S-kmRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*&H1OP%e8fE|h delta 160 zcmdnP{Em5o3gecEs(LI6&c4AD!*%NobPWx3jVu)mO|6WLwGDuP%O|n8L^q@;F|Rl$ zu_V99O2IKRyVBS|!6p$*J5(lSFbx5m+O^)49ZMPtpMrJPsuFH%-2uJ0_w}xP0lUm)X#w$G4a+T0L`#ASO5S3 diff --git a/cms/locale/mt/LC_MESSAGES/django.po b/cms/locale/mt/LC_MESSAGES/django.po index 9203f6810fd..2149623bbd9 100644 --- a/cms/locale/mt/LC_MESSAGES/django.po +++ b/cms/locale/mt/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Maltese (http://www.transifex.com/divio/django-cms/language/mt/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Maltese (https://app.transifex.com/divio/teams/58664/mt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/mt/LC_MESSAGES/djangojs.mo b/cms/locale/mt/LC_MESSAGES/djangojs.mo index 723463d1736c302885e8e1541370ae304503425f..3cfe112b149a8328f0d5437c7d1ac7361d29adfc 100644 GIT binary patch delta 69 zcmey%{F!-z3gga+s`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Zr50pl<|OK6mP|aa$edVEu<&@)6DNwR2PBr}loYUve=502B`!iU0rr diff --git a/cms/locale/mt/LC_MESSAGES/djangojs.po b/cms/locale/mt/LC_MESSAGES/djangojs.po index ac2cd82e002..ed80c7c0e1b 100644 --- a/cms/locale/mt/LC_MESSAGES/djangojs.po +++ b/cms/locale/mt/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Maltese (http://www.transifex.com/divio/django-cms/language/mt/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Maltese (http://app.transifex.com/divio/django-cms/language/mt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mt\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/nb/LC_MESSAGES/django.mo b/cms/locale/nb/LC_MESSAGES/django.mo index fff047c98933fae5e425828946254438084fb207..db1bf9847b0c2caff8af0c7e914412d5ae165168 100644 GIT binary patch delta 8244 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 M!@FeFXm8K|0pl~8pa1{> delta 8592 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 diff --git a/cms/locale/nb/LC_MESSAGES/django.po b/cms/locale/nb/LC_MESSAGES/django.po index 45593f962b0..e35573973b2 100644 --- a/cms/locale/nb/LC_MESSAGES/django.po +++ b/cms/locale/nb/LC_MESSAGES/django.po @@ -3,23 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Bjorn Pettersen , 2015 -# Erlend Dalen , 2019 -# fivethreeo , 2011 -# Kim Silkebækken , 2014 -# Kim Silkebækken , 2014 -# fivethreeo , 2011 -# Sindre Myren , 2011 -# Sindre Myren , 2011 +# Erlend Dalen , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/divio/django-cms/language/nb/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/divio/teams/58664/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,7 +49,8 @@ msgstr "Sidetittel" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Overstyrer hva som vises på toppen av nettleseren din eller i bokmerker" +msgstr "" +"Overstyrer hva som vises på toppen av nettleseren din eller i bokmerker" msgid "Description meta tag" msgstr "Meta-tag beskrivelse" @@ -63,9 +58,6 @@ msgstr "Meta-tag beskrivelse" msgid "A description of the page used by search engines." msgstr "En beskrivelse av siden som brukes av søkemotorer." -msgid "Slug must not be empty." -msgstr "Slug må ha innhold" - msgid "Page type" msgstr "Sidetype" @@ -78,7 +70,6 @@ msgstr "Overstyr adresse" msgid "Keep this field empty if standard path should be used." msgstr "La dette feltet være tomt hvis standardadresse skal brukes" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -100,11 +91,9 @@ msgstr "menyvisbarhet" msgid "limit when this page is visible in the menu" msgstr "begrens når denne siden er synlig i menyen" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -120,7 +109,6 @@ msgstr "Applikasjonskonfigurasjoner" msgid "A page with this reverse URL id exists already." msgstr "En side med denne reversadresse id'en finnes allerede." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Ugyldig konfigurasjonsverdi for applikasjonen" @@ -157,32 +145,44 @@ msgstr "Slett" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Brukere kan ikke opprette en side uten rettigheter til å redigere den opprettede siden. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke opprette en side uten rettigheter til å redigere den " +"opprettede siden. Rettigheter til å redigere er påkrevd." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Brukere kan ikke slette en siden uten rettigheter til å redigere siden. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke slette en siden uten rettigheter til å redigere siden. " +"Rettigheter til å redigere er påkrevd." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Brukere kan ikke sette siderettigheter uten rettigheter til å redigere en side. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke sette siderettigheter uten rettigheter til å redigere en " +"side. Rettigheter til å redigere er påkrevd." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Brukere kan ikke slette side-rettigheter uten rettigheter til å endre en side. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke slette side-rettigheter uten rettigheter til å endre en " +"side. Rettigheter til å redigere er påkrevd." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Brukere kan ikke opprette side-rettigheter uten rettigheter til å redigere den opprettede rettigheten. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke opprette side-rettigheter uten rettigheter til å redigere " +"den opprettede rettigheten. Rettigheter til å redigere er påkrevd." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Brukere kan ikke slette side-rettigheter uten rettigheter til å endre rettigheter. Rettigheter til å redigere er påkrevd." +msgstr "" +"Brukere kan ikke slette side-rettigheter uten rettigheter til å endre " +"rettigheter. Rettigheter til å redigere er påkrevd." #, python-format msgid "Invalid plugin type '%s'" @@ -194,7 +194,6 @@ msgstr "Språket må settes til et støttet språk!" msgid "Parent plugin language must be same as language!" msgstr "Språket til foreldre-plugin må være lik språk!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Foreldre-programtillegg må være i samme plassholder!" @@ -209,7 +208,6 @@ msgid "The page is not eligible to be home." msgstr "Denne siden kvalifiserer ikke til å være hjem." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -226,16 +224,19 @@ msgstr "Objekter %(name)s med primærnøkkel %(key)r finnes ikke." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Du har ikke rettigheter til å flytte denne siden. Vennligst last inn siden på nytt." +msgstr "" +"Du har ikke rettigheter til å flytte denne siden. Vennligst last inn siden " +"på nytt." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Feil! Du har ikke rettigheter til å kopiere denne siden." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Feil! Siden du limer inn er ikke oversatt til noen av språkene som er konfigurert på mottaker-nettstedet." +msgstr "" +"Feil! Siden du limer inn er ikke oversatt til noen av språkene som er " +"konfigurert på mottaker-nettstedet." msgid "You do not have permission to edit this page" msgstr "Du har ikke rettigheter til å endre denne siden" @@ -261,7 +262,6 @@ msgstr "Malen er endret" msgid "You do not have permission to copy these plugins." msgstr "Du har ikke rettigheter til å kopiere disse programtilleggene." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Du har ikke rettigheter til å slette denne siden." @@ -269,8 +269,20 @@ msgstr "Du har ikke rettigheter til å slette denne siden." msgid "Title and plugins with language %(language)s was deleted" msgstr "Tittel og programtillegg med språk %(language)s ble slettet" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Du har ikke rettigheter til å endre denne sidens \"i navigasjon\" status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Tom" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Vis restriksjon" @@ -288,7 +300,6 @@ msgstr "Du har ikke rettigheter til å endre dette elementet" msgid "You do not have permission to add a plugin" msgstr "Du har ikke rettigheter til å legge inn et programtillegg" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Du har ikke rettigheter til å kopiere denne plassholderen." @@ -298,18 +309,15 @@ msgstr "Programtillegg ikke funnet" msgid "You do not have permission to edit this plugin" msgstr "Du har ikke rettigheter til å redigere dette programtillegget" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Du mangler rettigheter til å lime inn dette programtillegget" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Du mangler rettigheter til å lime inn denne plassholderen" msgid "You have no permission to move this plugin" msgstr "Du har ikke rettigheter til å flytte dette programtillegget" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Du mangler rettigheter til å klippe ut dette programtillegget." @@ -339,6 +347,47 @@ msgstr "Bruker og grupperettigheter" msgid "Page permissions management" msgstr "Kontroll av siderettigheter" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Forhåndsvis" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -367,9 +416,6 @@ msgstr "Opprett" msgid "Edit" msgstr "Endre" -msgid "Preview" -msgstr "Forhåndsvis" - msgid "Structure" msgstr "Struktur" @@ -413,15 +459,12 @@ msgstr "Logg ut" msgid "Language" msgstr "Språk" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Legg til oversettelse" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Slett oversettelse" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopier alle programtillegg" @@ -430,7 +473,6 @@ msgid "from %s" msgstr "fra %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Er du sikker på at du ønsker å kopiere alle programtillegg fra %s?" @@ -440,7 +482,6 @@ msgstr "Sider" msgid "Page" msgstr "Side" -#| msgid "Create" msgid "Create Page" msgstr "Opprett side" @@ -487,26 +528,19 @@ msgid "Select a valid page" msgstr "Velg en gyldig side" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Valgfritt. Vil bli automatisk lagt til i en ny tekst-plugin hvis oppgitt." +msgstr "" +"Valgfritt. Vil bli automatisk lagt til i en ny tekst-plugin hvis oppgitt." msgid "Provide a title for the new page." msgstr "Oppgi en tittel for den nye siden." @@ -514,7 +548,12 @@ msgstr "Oppgi en tittel for den nye siden." msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Du mangler rettigheter som er påkrevd for å legge til en side." @@ -611,17 +650,67 @@ msgstr "Godkjenn på" msgid "page" msgstr "side" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "kun for innloggede brukere" + +msgid "for anonymous users only" +msgstr "kun for anonyme brukere" + +msgid "Inherit from parent page" +msgstr "Arv fra foreldreside" + +msgid "Deny" +msgstr "Nekt" + +msgid "Only this website" +msgstr "Kun dette nettstedet" + +msgid "Allow" +msgstr "Tillat" + +msgid "title" +msgstr "tittel" + +msgid "overwrite the title (html title tag)" +msgstr "overskriv tittelen (html tittle tag)" + +msgid "overwrite the title in the menu" +msgstr "overskriv tittelen i menyen" + +msgid "description" +msgstr "beskrivelse" + +msgid "The text displayed in search engines." +msgstr "Tekst vist i søkemotorer" + +msgid "redirect" +msgstr "videresend" + +msgid "The template used to render the content." +msgstr "Template brukt for å rendre innholdet." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "standard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "En unik identifikator som brukes med page_url templatetag for lenking til denne siden" +msgstr "" +"En unik identifikator som brukes med page_url templatetag for lenking til " +"denne siden" msgid "pages" msgstr "sider" -msgid "default" -msgstr "standard" - msgid "slug" msgstr "slug" @@ -649,7 +738,6 @@ msgstr "på sidenivå" msgid "frontend view restriction" msgstr "offentlig visningsrestriksjon" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Vennligst velg bruker eller gruppe." @@ -691,7 +779,9 @@ msgstr "Siderettighet" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Legg til side tillatelse krever også tilgang til barn eller undernivå, ellers kan ikke endres av den som opprettet den." +msgstr "" +"Legg til side tillatelse krever også tilgang til barn eller undernivå, " +"ellers kan ikke endres av den som opprettet den." msgid "User (page)" msgstr "Bruker (side)" @@ -735,7 +825,9 @@ msgstr "statisk plassholdernavn" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beskrivende navn for å identifisere denne statiske plassholderen. Ikke vist til brukere." +msgstr "" +"Beskrivende navn for å identifisere denne statiske plassholderen. Ikke vist " +"til brukere." msgid "placeholder code" msgstr "plassholderkode" @@ -758,45 +850,6 @@ msgstr "statiske plassholdere" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "kun for innloggede brukere" - -msgid "for anonymous users only" -msgstr "kun for anonyme brukere" - -msgid "Inherit from parent page" -msgstr "Arv fra foreldreside" - -msgid "Deny" -msgstr "Nekt" - -msgid "Only this website" -msgstr "Kun dette nettstedet" - -msgid "Allow" -msgstr "Tillat" - -msgid "title" -msgstr "tittel" - -msgid "overwrite the title (html title tag)" -msgstr "overskriv tittelen (html tittle tag)" - -msgid "overwrite the title in the menu" -msgstr "overskriv tittelen i menyen" - -msgid "description" -msgstr "beskrivelse" - -msgid "The text displayed in search engines." -msgstr "Tekst vist i søkemotorer" - -msgid "redirect" -msgstr "videresend" - -msgid "The template used to render the content." -msgstr "Template brukt for å rendre innholdet." - msgid "Advanced options" msgstr "Avanserte valg" @@ -804,75 +857,64 @@ msgid "Generic" msgstr "Generisk" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" msgid "There are no further settings for this plugin. Please press save." -msgstr "Det er ingen flere innstillinger for denne pluginen. Vennligst trykk lagre." +msgstr "" +"Det er ingen flere innstillinger for denne pluginen. Vennligst trykk lagre." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Endret" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Lagre" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Logg inn til administreringen her here." @@ -887,9 +929,8 @@ msgstr "Brukernavn" msgid "Password:" msgstr "Passord" -#| msgid "Add Page" msgid "Add a page" -msgstr "Legg til en side" +msgstr "" msgid "Change a page" msgstr "Endre en side" @@ -968,16 +1009,21 @@ msgstr "Klipp" msgid "Paste" msgstr "Lim inn" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Rettigheter" + msgid "is restricted" msgstr "er beskyttet" msgid "last change by" msgstr "siste endring av" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -987,7 +1033,6 @@ msgstr "Liste over sider" msgid "Search" msgstr "Søk" -#| msgid "Page Title" msgid "Page Tree" msgstr "Side-tre" @@ -999,19 +1044,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nGjenopprett slettet %(name)s" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Gjenopprett slettet %(name)s" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Hovednavigasjon" -#| msgid "Actions" msgid "Options" msgstr "Alternativer" @@ -1035,7 +1074,6 @@ msgstr "Er du sikker på at du vil § denne siden?" msgid "Reload" msgstr "Last inn på nytt" -#| msgid "New Page" msgid "New node" msgstr "Ny node" @@ -1049,17 +1087,15 @@ msgid "Menu" msgstr "Meny" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nDet er ingen %(object)s rundt enda.
    Legg til %(object)s nå." +msgstr "" +"\n" +"Det er ingen %(object)s rundt enda.
    Legg til %(object)s nå." msgid "Copy options" msgstr "Kopieringsalternativer" @@ -1073,30 +1109,15 @@ msgstr "Lukk" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "Publisert" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Upublisert" - -msgid "Empty" -msgstr "Tom" - -#| msgid "in menu" msgid "In menu" msgstr "I meny" -#| msgid "not in menu" msgid "Not in menu" msgstr "Ikke i meny" -#| msgid "New page" msgid "View page" msgstr "Vis side" -#| msgid "softroot" msgid "Softroot" msgstr "Myk topp" @@ -1113,12 +1134,18 @@ msgstr "i meny" msgid "not in menu" msgstr "ikke i meny" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Rettigheter" +msgid "This page has no preview!" +msgstr "Denne siden har ingen forhåndsvisning!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "Utklippstavle" @@ -1151,7 +1178,8 @@ msgid "You cannot add plugins to this plugin." msgstr "Du kan ikke legge til plugins til denne plugin." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Dette programtillegget kan ikke flyttes eller redigeres utenfor sin forelder" +msgstr "" +"Dette programtillegget kan ikke flyttes eller redigeres utenfor sin forelder" msgid "Clipboard is empty." msgstr "Utklippstavlen er tom." @@ -1168,7 +1196,6 @@ msgstr "Fremhev" msgid "Available plugins" msgstr "Tilgjengelig plugins" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1182,7 +1209,6 @@ msgid "More" msgstr "Mer" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1192,9 +1218,8 @@ msgid "Cancel" msgstr "Avbryt" msgid "The following error occured:" -msgstr "Følgende feil oppsto:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1207,15 +1232,12 @@ msgstr "Er du sikker på at du vil publisere denne siden?" msgid "Plugin will be added here" msgstr "Plugin vil bli opprettet her" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Du har endringer som ikke er lagret." -#| msgid "Loading..." msgid "Loading" msgstr "Laster" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1224,7 +1246,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "Mest brukt" @@ -1234,10 +1255,12 @@ msgstr "Snarveier" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Lukk/avbryt" @@ -1253,32 +1276,29 @@ msgstr "" msgid "Focus on Toolbar" msgstr "Fokus på verktøylinja" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Fokus på plassholdere" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Rediger programtillegg" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Mislykket innlogging. Vennligst sjekk innloggingsdetaljer og prøv igjen." +msgstr "" +"Mislykket innlogging. Vennligst sjekk innloggingsdetaljer " +"og prøv igjen." msgid "Double-click to edit" msgstr "" @@ -1301,12 +1321,6 @@ msgstr "Maksimer" msgid "Drop a plugin here" msgstr "Slipp en plugin her" -msgid "This page has no preview!" -msgstr "Denne siden har ingen forhåndsvisning!" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "Vellykket innstallasjon!" @@ -1321,14 +1335,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Velkommen til django CMS version %(cms_version)s.\n " +msgstr "" +"\n" +" Velkommen til django CMS version %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Opprett den første siden i systemet for å fortsette.\n " +msgstr "" +"\n" +" Opprett den første siden i systemet for å fortsette.\n" +" " #, python-format msgid "" @@ -1336,7 +1356,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript ser ut til å være deaktivert. Vennligst\n legg til en side manuelt.\n " +msgstr "" +"\n" +" JavaScript ser ut til å være deaktivert. Vennligst\n" +" legg til en side manuelt.\n" +" " msgid "Installation Notes" msgstr "Installasjonsnotis" @@ -1347,15 +1371,6 @@ msgstr "Støtte" msgid "Documentation" msgstr "Dokumentasjon" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1364,15 +1379,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,16 +1398,13 @@ msgid "Back" msgstr "Tilbake" msgid "Please choose an option from below to proceed to the next step." -msgstr "Vennligst velg fra alternativene nedenfor for å fortsette til neste steg." +msgstr "" +"Vennligst velg fra alternativene nedenfor for å fortsette til neste steg." msgid "Next" msgstr "Neste" -msgid "no content" -msgstr "manger innhold" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1412,7 +1415,9 @@ msgstr "Side ikke funnet på %(domain)s " msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "En maltag kunne ikke finne siden med søkeargumenter `%(page_lookup)s\n`. Adressen til forespørselen var: http://%(host)s%(path)s" +msgstr "" +"En maltag kunne ikke finne siden med søkeargumenter `%(page_lookup)s\n" +"`. Adressen til forespørselen var: http://%(host)s%(path)s" msgid "Two columns" msgstr "To kolonner" @@ -1445,7 +1450,9 @@ msgstr "aktiv" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Skal denne brukeren betraktes som aktiv? Fjern denne haken i stedet for å slette kontoer." +msgstr "" +"Skal denne brukeren betraktes som aktiv? Fjern denne haken i stedet for å " +"slette kontoer." msgid "users" msgstr "brukere" @@ -1480,7 +1487,6 @@ msgstr "Artikler" msgid "Sample App" msgstr "Demonstrasjons-app" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1490,9 +1496,8 @@ msgstr "" msgid "Sample App 2" msgstr "Demonstrasjons-app 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Demonstrasjons-app 2" msgid "Namespaced App" msgstr "Applikasjon med navneområde" @@ -1527,9 +1532,8 @@ msgstr "Statisk Meny2" msgid "Static Menu3" msgstr "Statisk Meny3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statisk Meny4" +msgstr "Statisk Meny" msgid "Category" msgstr "Kategori" @@ -1556,12 +1560,10 @@ msgid "UserSettings" msgstr "Brukerinstillinger" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1573,13 +1575,16 @@ msgstr "CMS - din brukerkonto ble endret" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "Denne plassholderen har allerede maksimalt antall programtillegg (%s)." +msgstr "" +"Denne plassholderen har allerede maksimalt antall programtillegg (%s)." #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Denne plassholderen har allerede maksimalt antall (%(limit)s) av tillatte programtillegg %(plugin_name)s." +msgstr "" +"Denne plassholderen har allerede maksimalt antall (%(limit)s) av tillatte " +"programtillegg %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1598,394 +1603,3 @@ msgstr "Lag en ny %s instans." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/nb/LC_MESSAGES/djangojs.mo b/cms/locale/nb/LC_MESSAGES/djangojs.mo index 469c72e1767617569bb632ae82de51c3f40eb970..670fbfcb058d51b8dd6c093d19bc2885db9712b2 100644 GIT binary patch delta 92 zcmcb^a*Jhx4sR191H)7X1_nnUmY8U{oYz3t&`{UdK*7Mw%EWTwTXD7E%)FGMR0ZG4 uqSQPEo8sKcqTIwhhxFXU%pASs{9HR71tSAP!^t{~TFi+B1)C!onHd3#U>W5A delta 94 zcmcb`a))Jt4sQ!11H)7X1_nnUmYQg}oYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMdK15dhjl8|nZ6 diff --git a/cms/locale/nb/LC_MESSAGES/djangojs.po b/cms/locale/nb/LC_MESSAGES/djangojs.po index 62cbebac955..baa860db5c7 100644 --- a/cms/locale/nb/LC_MESSAGES/djangojs.po +++ b/cms/locale/nb/LC_MESSAGES/djangojs.po @@ -12,15 +12,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/divio/django-cms/language/nb/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Sindre Myren , 2011\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/divio/django-cms/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Er du sikker på at du vil endre fane uten å lagre siden først?" diff --git a/cms/locale/nl/LC_MESSAGES/django.mo b/cms/locale/nl/LC_MESSAGES/django.mo index 1fd7a23b7b1f9ee09e46124072c2dcc1c81b45f8..52f81dee4b01fb0158d3cc76a18c2b852c1776f7 100644 GIT binary patch delta 12943 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 delta 10056 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 diff --git a/cms/locale/nl/LC_MESSAGES/django.po b/cms/locale/nl/LC_MESSAGES/django.po index 74e0e5b0ab4..44d71e8bb86 100644 --- a/cms/locale/nl/LC_MESSAGES/django.po +++ b/cms/locale/nl/LC_MESSAGES/django.po @@ -3,35 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# André Hendriks , 2011 -# Bert de Mranda , 2014-2015 -# Bouke Haarsma , 2012 -# Bouke Haarsma , 2012 -# Chris Wesseling , 2011 -# Dries Desmet , 2015 -# Evelijn Saaltink , 2016-2017 -# Jacques de Hooge <>, 2012 -# Jonas Obrist , 2011 -# Koen Molenaar , 2020 -# kurdy , 2013 -# 1de368575dc6c0d8d201ce55df5bf6b3_7f263b1 , 2012 -# 1de368575dc6c0d8d201ce55df5bf6b3_7f263b1 , 2012 -# Maarten Draijer , 2013 -# Maarten Draijer , 2013 -# 9b534940ba88da102a8b2023ae8b0a5c_833de33 <6eff1839cb13e50fd6e97f7bd38c9dda_152118>, 2014-2015 -# Steven Vande Ryse , 2012 -# kurdyma , 2013-2014,2016 -# kurdy , 2013 -# Steven Vande Ryse , 2012 +# kurdyma , 2023 +# Evelijn Saaltink , 2023 +# Fabian Braun , 2023 +# Koen Molenaar , 2023 +# Stefan van den Eertwegh , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Dutch (http://www.transifex.com/divio/django-cms/language/nl/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Stefan van den Eertwegh , 2023\n" +"Language-Team: Dutch (https://app.transifex.com/divio/teams/58664/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -67,7 +52,9 @@ msgstr "Pagina-titel" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Overschrijft wat wordt weergegeven in de titelbalk van de browser of in bladwijzers" +msgstr "" +"Overschrijft wat wordt weergegeven in de titelbalk van de browser of in " +"bladwijzers" msgid "Description meta tag" msgstr "Meta tag Omschrijving" @@ -75,9 +62,6 @@ msgstr "Meta tag Omschrijving" msgid "A description of the page used by search engines." msgstr "Een omschrijving van de pagina die door zoekmachines wordt gebruikt." -msgid "Slug must not be empty." -msgstr "Slug mag niet leeg zijn." - msgid "Page type" msgstr "Paginatype" @@ -90,9 +74,8 @@ msgstr "Overschrijf URL" msgid "Keep this field empty if standard path should be used." msgstr "Laat dit veld leeg als het standaard-pad gebruikt moet worden." -#| msgid "softroot" msgid "Soft root" -msgstr "" +msgstr "Soft root" msgid "All ancestors will not be displayed in the navigation" msgstr "Alle ouders zullen niet worden weergegeven in de navigatie" @@ -112,13 +95,11 @@ msgstr "menu zichtbaarheid" msgid "limit when this page is visible in the menu" msgstr "beperk wanneer deze pagina zichtbaar is in het menu" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "URL opties" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "Menu opties" msgid "Application" msgstr "Applicatie" @@ -132,7 +113,6 @@ msgstr "Applicatieconfiguraties" msgid "A page with this reverse URL id exists already." msgstr "Er bestaat al een pagina met dit omgekeerde URL kenmerk." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Ongeldig toepassingsconfiguratiewaarde" @@ -169,32 +149,44 @@ msgstr "Verwijderen" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Gebruikers kunnen geen pagina aanmaken zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen pagina aanmaken zonder toestemming om de pagina aan " +"te passen. Bewerkpermissies vereist." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Gebruikers kunnen geen pagina verwijderen zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen pagina verwijderen zonder toestemming om de pagina " +"aan te passen. Bewerkpermissies vereist." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Gebruikers kunnen geen permissies van de pagina aanpassen zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen permissies van de pagina aanpassen zonder toestemming" +" om de pagina aan te passen. Bewerkpermissies vereist." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Gebruikers kunnen geen permissies van de pagina verwijderen zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen permissies van de pagina verwijderen zonder " +"toestemming om de pagina aan te passen. Bewerkpermissies vereist." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Gebruikers kunnen geen permissies van de pagina aanmaken zonder toestemming om de aangemaakt permissie aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen permissies van de pagina aanmaken zonder toestemming " +"om de aangemaakt permissie aan te passen. Bewerkpermissies vereist." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Gebruikers kunnen geen permissies van de pagina verwijderen zonder toestemming om de permissies aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen permissies van de pagina verwijderen zonder " +"toestemming om de permissies aan te passen. Bewerkpermissies vereist." #, python-format msgid "Invalid plugin type '%s'" @@ -206,13 +198,12 @@ msgstr "De taal moet worden ingesteld op een ondersteunde taal!" msgid "Parent plugin language must be same as language!" msgstr "De 'parent plugin taal' moet hetzelfde zijn als 'taal'!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Parent plugin placeholder moet hetzelfde zijn als placeholder!" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "Plugin positie moet groter zijn dan %(position)d" msgid "Advanced Settings" msgstr "Geavanceerde instellingen" @@ -221,9 +212,8 @@ msgid "The page is not eligible to be home." msgstr "De pagina is niet geschikt om de startpagina te zijn." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "De %(name)s \"%(obj)s\" is succesvol verwijderd." #, python-format msgid "Cannot delete %(name)s" @@ -238,16 +228,19 @@ msgstr "%(name)s-object met primaire sleutel %(key)r bestaat niet." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Fout! Je hebt geen rechten om deze pagina te verplaatsen. Vernieuw de pagina en probeer opnieuw" +msgstr "" +"Fout! Je hebt geen rechten om deze pagina te verplaatsen. Vernieuw de pagina" +" en probeer opnieuw" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Foutmelding! Je hebt geen rechten om deze pagina te kopiëren." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Foutmelding! De pagina die je probeert te plakken is niet vertaald in een van de talen geconfigureerd door de doelsite." +msgstr "" +"Foutmelding! De pagina die je probeert te plakken is niet vertaald in een " +"van de talen geconfigureerd door de doelsite." msgid "You do not have permission to edit this page" msgstr "U heeft geen toestemming om deze pagina te bewerken." @@ -273,16 +266,27 @@ msgstr "Het template was succesvol veranderd" msgid "You do not have permission to copy these plugins." msgstr "U heeft geen toestemming om deze plugins te kopiëren." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "U heeft geen toestemming deze pagina te verwijderen." +msgstr "Je hebt geen rechten om deze pagina te verwijderen" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Titel en plugins voor de taal %(language)s zijn verwijderd" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Je bent niet toegestaan om de in_navigatie toestand van deze pagina aan te passen" +msgid "You do not have permission to change a page's navigation status" +msgstr "Je hebt geen rechten om de pagina's navigatie status te wijzigen" + +msgid "You cannot change this page's navigation status" +msgstr "Je kan niet de pagina's navigatie status wijzigen" + +msgid "Public content" +msgstr "Publieke content" + +msgid "Empty" +msgstr "Leeg" + +msgid "Create Content" +msgstr "Content maken" msgid "View restriction" msgstr "Bekijk beperking" @@ -300,7 +304,6 @@ msgstr "U heeft geen toestemming om dit item te bewerken." msgid "You do not have permission to add a plugin" msgstr "U heeft geen toestemming om een plugin toe te voegen." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "U heeft geen toestemming om deze placeholder te kopiëren." @@ -310,18 +313,15 @@ msgstr "Plugin niet gevonden" msgid "You do not have permission to edit this plugin" msgstr "U heeft geen toestemming om deze plugins te bewerken." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "U heeft geen toestemming om deze plugin te plakken" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "U hebt geen toestemming om deze placeholder te plakken" msgid "You have no permission to move this plugin" msgstr "U heeft geen toestemming om deze plugin te verplaatsen." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "U heeft geen toestemming om deze plugin te knippen" @@ -351,6 +351,52 @@ msgstr "Gebruikers- & groepsrechten" msgid "Page permissions management" msgstr "Beheer paginarechten" +msgid "Actions" +msgstr "Acties" + +msgid "Empty content" +msgstr "Content legen" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "%(object_name)s Eigenschappen" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "Maak nieuw %(object_name)s" + +msgid "Add content" +msgstr "Content aanmaken" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" +"Content voor de huidige taal is veranderd. Klik \"Annuleer\" om terug te " +"gaan naar het formulier en wijzigingen opslaan. Klik \"OK\" om wijzigingen " +"te annuleren." + +#, python-format +msgid "Add %(language)s content" +msgstr "%(language)s content aanmaken" + +msgid "Preview" +msgstr "Voorbeeld" + +msgid "Settings" +msgstr "Instellingen" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" +"Ongeldige taal %(value)s. Dit formulier kan niet worden verwerkt. Probeer de" +" taal te wijzigen." + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Geen geregistreerde apphook \"%r\" gevonden" @@ -371,7 +417,9 @@ msgstr "Creëer alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Dit is een alias-referentie, je kunt de inhoud alleen aanpassen op de %(page_title)s-pagina." +msgstr "" +"Dit is een alias-referentie, je kunt de inhoud alleen aanpassen op de %(page_title)s-pagina." msgid "Create" msgstr "Maken" @@ -379,9 +427,6 @@ msgstr "Maken" msgid "Edit" msgstr "Bewerken" -msgid "Preview" -msgstr "Voorbeeld" - msgid "Structure" msgstr "Structuur" @@ -425,15 +470,12 @@ msgstr "Uitloggen" msgid "Language" msgstr "Taal" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Voeg vertaling toe" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Verwijder vertaling" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopieer alle plugins" @@ -442,7 +484,6 @@ msgid "from %s" msgstr "van %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Weet u zeker dat u alle plugins van %s wil kopiëren?" @@ -452,7 +493,6 @@ msgstr "Pagina's" msgid "Page" msgstr "Pagina" -#| msgid "Create" msgid "Create Page" msgstr "Maak pagina " @@ -499,26 +539,23 @@ msgid "Select a valid page" msgstr "Selecteer een geldige pagina" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Pagina %(conflict_page)s heeft dezelfde url '%(url)s' als huidige pagina \"%(instance)s\"." +msgstr "" +"Pagina %(conflict_page)s heeft dezelfde url '%(url)s' als huidige pagina " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Pagina %(conflict_page)s heeft dezelfde url '%(url)s' als de huidige pagina." +msgstr "" +"Pagina %(conflict_page)s heeft dezelfde url '%(url)s' als de huidige pagina." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Optioneel. Indien opgegeven wordt deze automatisch toegevoegd in een nieuwe tekst plugin." +msgstr "" +"Optioneel. Indien opgegeven wordt deze automatisch toegevoegd in een nieuwe " +"tekst plugin." msgid "Provide a title for the new page." msgstr "Geef een titel op voor de nieuwe pagina." @@ -526,7 +563,12 @@ msgstr "Geef een titel op voor de nieuwe pagina." msgid "Leave empty for automatic slug, or override as required." msgstr "Laat leeg voor een automatische slug, of overschrijf zoals benodigd." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "Kan niet automatisch slug aanmaken. Probeer aub eenzelfde handmatig." + +msgid "Please provide a valid slug." +msgstr "Probeer aub een geldige slug." + msgid "You don't have the permissions required to add a page." msgstr "Je hebt niet de benodigde rechten om een pagina toe te voegen." @@ -623,17 +665,67 @@ msgstr "Toestemming aan" msgid "page" msgstr "pagina" +msgid "no limit set" +msgstr "geen limiet gezet" + +msgid "for logged in users only" +msgstr "alleen voor aangemelde gebruikers" + +msgid "for anonymous users only" +msgstr "alleen voor anonieme gebruikers" + +msgid "Inherit from parent page" +msgstr "Van bovenliggende pagina erven" + +msgid "Deny" +msgstr "Ontzeggen" + +msgid "Only this website" +msgstr "Alleen deze website" + +msgid "Allow" +msgstr "Toestaan" + +msgid "title" +msgstr "titel" + +msgid "overwrite the title (html title tag)" +msgstr "overschrijf de titel (html 'title'-tag)" + +msgid "overwrite the title in the menu" +msgstr "overschrijf de titel in het menu" + +msgid "description" +msgstr "beschrijving" + +msgid "The text displayed in search engines." +msgstr "De tekst die wordt getoond in zoekmachines." + +msgid "redirect" +msgstr "doorsturen" + +msgid "The template used to render the content." +msgstr "Het sjabloon dat gebruikt wordt om de inhoud weer te geven." + +msgid "page content" +msgstr "pagina content" + +msgid "page contents" +msgstr "pagina inhoudelijk" + +msgid "default" +msgstr "standaard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Een unieke identificatie die gebruikt wordt door de page_url templatetag voor koppelingen naar deze pagina" +msgstr "" +"Een unieke identificatie die gebruikt wordt door de page_url templatetag " +"voor koppelingen naar deze pagina" msgid "pages" msgstr "pagina's" -msgid "default" -msgstr "standaard" - msgid "slug" msgstr "slug" @@ -661,29 +753,36 @@ msgstr "op pagina-niveau" msgid "frontend view restriction" msgstr "beperking van toegang tot view door frontend" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Selecteer een gebruiker of groep." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Gebruikers kunnen geen pagina publiceren zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen pagina publiceren zonder toestemming om de pagina aan" +" te passen. Bewerkpermissies vereist." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Gebruikers kunnen geen geavanceerde instellingen op een pagina aanpassen zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen geavanceerde instellingen op een pagina aanpassen " +"zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Gebruikers kunnen geen instellingen van de pagina zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen instellingen van de pagina zonder toestemming om de " +"pagina aan te passen. Bewerkpermissies vereist." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Gebruikers kunnen geen pagina verplaatsen zonder toestemming om de pagina aan te passen. Bewerkpermissies vereist." +msgstr "" +"Gebruikers kunnen geen pagina verplaatsen zonder toestemming om de pagina " +"aan te passen. Bewerkpermissies vereist." msgid "can recover any deleted page" msgstr "kan iedere verwijderde pagina herstellen" @@ -703,7 +802,10 @@ msgstr "Pagina-rechten" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Om het recht te hebben pagina's toe te voegen, is ook toegang nodig tot de kinderen (of afstammelingen), anders kan de toegevoegde pagina niet door zijn maker worden aangepast." +msgstr "" +"Om het recht te hebben pagina's toe te voegen, is ook toegang nodig tot de " +"kinderen (of afstammelingen), anders kan de toegevoegde pagina niet door " +"zijn maker worden aangepast." msgid "User (page)" msgstr "Gebruiker (pagina)" @@ -747,7 +849,9 @@ msgstr "Statische placeholder naam" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beschrijvende naam om statische placeholder te identificeren. Wordt niet getoond aan gebruikers." +msgstr "" +"Beschrijvende naam om statische placeholder te identificeren. Wordt niet " +"getoond aan gebruikers." msgid "placeholder code" msgstr "placeholder code" @@ -770,45 +874,6 @@ msgstr "statische placeholders" msgid "A static placeholder with the same site and code already exists" msgstr "Er bestaat al een statische placeholder met dezelfde site en code" -msgid "for logged in users only" -msgstr "alleen voor aangemelde gebruikers" - -msgid "for anonymous users only" -msgstr "alleen voor anonieme gebruikers" - -msgid "Inherit from parent page" -msgstr "Van bovenliggende pagina erven" - -msgid "Deny" -msgstr "Ontzeggen" - -msgid "Only this website" -msgstr "Alleen deze website" - -msgid "Allow" -msgstr "Toestaan" - -msgid "title" -msgstr "titel" - -msgid "overwrite the title (html title tag)" -msgstr "overschrijf de titel (html 'title'-tag)" - -msgid "overwrite the title in the menu" -msgstr "overschrijf de titel in het menu" - -msgid "description" -msgstr "beschrijving" - -msgid "The text displayed in search engines." -msgstr "De tekst die wordt getoond in zoekmachines." - -msgid "redirect" -msgstr "doorsturen" - -msgid "The template used to render the content." -msgstr "Het sjabloon dat gebruikt wordt om de inhoud weer te geven." - msgid "Advanced options" msgstr "Geavanceerde opties" @@ -816,7 +881,6 @@ msgid "Generic" msgstr "Generiek" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "De %(name)s \"%(obj)s\" is succesvol aangepast" @@ -824,67 +888,58 @@ msgid "There are no further settings for this plugin. Please press save." msgstr "Er zijn geen verdere opties meer voor deze plugin. Klik op bewaren." msgid "Moved" -msgstr "" +msgstr "Verplaatst" -#| msgid "Change" msgid "Changed" msgstr "Aangepast" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "Verwijderd" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "" +msgstr "Toegevoegde Pagina Vertaling" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "" +msgstr "Gewijzigde Pagina Vertaling" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "" +msgstr "Verwijderde Pagina Vertaling" -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "" +msgstr "Plugin Aangemaakt" -#| msgid "Change" msgid "Changed Plugin" -msgstr "" +msgstr "Gewijzigde Plugin" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "" +msgstr "Verplaatste Plugin" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "" +msgstr "Verwijderde Plugin" -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "" +msgstr "Knip plugin" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "Plak Plugin" -#| msgid "static placeholder" msgid "Paste to Placeholder" -msgstr "" +msgstr "Plak naar Placeholder" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "" +msgstr "Toegevoegde plugins naar placeholder van klembord" -#| msgid "Placeholder" msgid "Cleared Placeholder" -msgstr "" +msgstr "Placeholder Gewist" msgid "Save" msgstr "Opslaan" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" +"Sommige velden kunnen niet worden gewijzigd omdat ze alleen-lezen inhoud " +"zijn." + #, python-format msgid "Log in to administration here." msgstr "Log hier in op de administratie." @@ -899,9 +954,8 @@ msgstr "Gebruikersnaam:" msgid "Password:" msgstr "Wachtwoord:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Voeg een pagina toe" +msgstr "Pagina aanmaken" msgid "Change a page" msgstr "Bewerk een pagina" @@ -980,16 +1034,21 @@ msgstr "Knippen" msgid "Paste" msgstr "Plakken" -#| msgid "Save as new" msgid "Set as home" msgstr "Instellen als startpagina" +msgid "Permissions" +msgstr "Rechten" + msgid "is restricted" msgstr "is beperkt" msgid "last change by" msgstr "laatst bewerkt door" +msgid "last change on" +msgstr "laatst gewijzigd op" + msgid "meta" msgstr "meta" @@ -999,7 +1058,6 @@ msgstr "Lijst van pagina's" msgid "Search" msgstr "Zoeken" -#| msgid "Page Title" msgid "Page Tree" msgstr "Page Tree" @@ -1011,19 +1069,13 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\nHerstel verwijderde %(name)s" - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +"Herstel verwijderde %(name)s" -#| msgid "in navigation" msgid "Main Navigation" msgstr "Hoofd navigatie" -#| msgid "Actions" msgid "Options" msgstr "Opties" @@ -1031,7 +1083,9 @@ msgid "Successfully moved" msgstr "Succesvol verplaatst" msgid "Changes within the tree might require a refresh." -msgstr "Veranderingen binnen de boomstructuur kunnen het nodig maken dat u de pagina opnieuw laadt." +msgstr "" +"Veranderingen binnen de boomstructuur kunnen het nodig maken dat u de pagina" +" opnieuw laadt." msgid "Error:" msgstr "Fout:" @@ -1039,7 +1093,9 @@ msgstr "Fout:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Deze pagina kan niet gekopieerd worden want er zit nog een applicatie aan vast. Zie de pagina's geadvanceerde settings om de apphook te beheren." +msgstr "" +"Deze pagina kan niet gekopieerd worden want er zit nog een applicatie aan " +"vast. Zie de pagina's geadvanceerde settings om de apphook te beheren." msgid "Are you sure you want to § this page?" msgstr "Weet u zeker dat u deze pagina wilt §?" @@ -1047,7 +1103,6 @@ msgstr "Weet u zeker dat u deze pagina wilt §?" msgid "Reload" msgstr "Herlaad" -#| msgid "New Page" msgid "New node" msgstr "Nieuwe node" @@ -1061,17 +1116,18 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Er is nog geen %(object)s aanwezig.\n
    \n Voeg %(object)s nu toe.\n " +msgstr "" +"\n" +" Er is nog geen %(object)s aanwezig.\n" +"
    \n" +" Voeg %(object)s nu toe.\n" +" " msgid "Copy options" msgstr "Kopieer-opties" @@ -1085,30 +1141,15 @@ msgstr "Sluiten" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Gepubliceerd" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Ongepubliceerd" - -msgid "Empty" -msgstr "Leeg" - -#| msgid "in menu" msgid "In menu" msgstr "In menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Niet in menu" -#| msgid "New page" msgid "View page" msgstr "Toon pagina" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1125,12 +1166,18 @@ msgstr "in menu" msgid "not in menu" msgstr "niet in menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Pagina settings (SHIFT klik voor geadvanceerde settings)" -msgid "Permissions" -msgstr "Rechten" +msgid "This page has no preview!" +msgstr "Deze pagina heeft geen voorvertoning!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "Mogelijk biedt de bijgevoegde apphook geen inhoud voor de root." + +msgid "It is being redirected to:" +msgstr "Wordt doorverwezen naar:" msgid "Clipboard" msgstr "Klembord" @@ -1180,7 +1227,6 @@ msgstr "Markeer" msgid "Available plugins" msgstr "Beschikbare plugins" -#| msgid "Structure" msgid "Toggle structure" msgstr "Wissel structuur" @@ -1194,19 +1240,19 @@ msgid "More" msgstr "Meer" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Development versie; gebruikt django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Development versie; gebruikt django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Annuleren" msgid "The following error occured:" -msgstr "De volgende fout is ontstaan:" +msgstr "De volgende error heeft zich voorgedaan:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Actie geslaagd." @@ -1219,24 +1265,21 @@ msgstr "Ben je er zeker van om deze pagina te publiceren?" msgid "Plugin will be added here" msgstr "Plugin zal hier toegevoegd worden" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "U heeft onbewaarde aanpassingen." -#| msgid "Loading..." msgid "Loading" msgstr "Bezig met laden..." -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Weet u zeker dat u deze pagina wilt verlaten?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Het formulier kon niet geladen worden. Check of de server correct loopt." +msgstr "" +"Het formulier kon niet geladen worden. Check of de server correct loopt." -#| msgid "Notify user" msgid "Most used" msgstr "Meest gebruikt" @@ -1246,10 +1289,12 @@ msgstr "Sneltoetsen" msgid "The page was changed in the meantime, reloading..." msgstr "De pagina is ondertussen gewijzigd, herladen..." +msgid "CMS-wide Shortcuts" +msgstr "CMS-brede Sneltoetsen" + msgid "Bring up this help dialog" msgstr "Haal deze help-dialoog omhoog" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Sluiten/annuleren" @@ -1265,32 +1310,29 @@ msgstr "Open \"Aanmaken\"-dialoog" msgid "Focus on Toolbar" msgstr "Focus op toolbar" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Focus op placeholders" msgid "Move to next/previous element" msgstr "Verplaats naar volgende/vorige element" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Focus op plugins van placeholder" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Plugin bewerken" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Actiemenu openen" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Uitklappen/inklappen" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Inloggen mislukt. Controleer je gegevens en probeer nog eens." +msgstr "" +"Inloggen mislukt. Controleer je gegevens en probeer nog " +"eens." msgid "Double-click to edit" msgstr "Dubbelklik om te bewerken" @@ -1313,12 +1355,6 @@ msgstr "Maximaliseer" msgid "Drop a plugin here" msgstr "Drop hier een plugin" -msgid "This page has no preview!" -msgstr "Deze pagina heeft geen voorvertoning!" - -msgid "It is being redirected to:" -msgstr "Wordt doorverwezen naar:" - msgid "Installation successful!" msgstr "Installatie succesvol!" @@ -1333,14 +1369,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nWelkom bij django CMS versie %(cms_version)s." +msgstr "" +"\n" +"Welkom bij django CMS versie %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nVoeg de eerste pagina toe aan het systeem om verder te gaan." +msgstr "" +"\n" +"Voeg de eerste pagina toe aan het systeem om verder te gaan." #, python-format msgid "" @@ -1348,7 +1388,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nHet lijkt erop dat JavaScript is uitgeschakeld\ndus voeg handmatig een pagina toe." +msgstr "" +"\n" +"Het lijkt erop dat JavaScript is uitgeschakeld\n" +"dus voeg handmatig een pagina toe." msgid "Installation Notes" msgstr "Installatie Aantekeningen" @@ -1359,32 +1402,19 @@ msgstr "Ondersteuning" msgid "Documentation" msgstr "Documentatie" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Als je niet het django CMS logo ziet bovenaan de pagina, zorg dan\n dat je de static/cms folder aan je\n static files. hebt gekoppeld.

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Als je niet het django CMS logo ziet bovenaan de pagina, zorg dan\n" +" dat je de static/cms folder aan je\n" +" static files. hebt gekoppeld.

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,7 +1422,13 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Je ziet dit bericht omdat je\n DEBUG = True in je django settings bestand hebt staan en\n en je nog geen pagina's hebt toegevoegd.\n

    \n " +msgstr "" +"\n" +"

    Je ziet dit bericht omdat je\n" +" DEBUG = True in je django settings bestand hebt staan en\n" +" en je nog geen pagina's hebt toegevoegd.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Welkom bij django CMS" @@ -1404,17 +1440,14 @@ msgid "Back" msgstr "Terug" msgid "Please choose an option from below to proceed to the next step." -msgstr "Kies een van de onderstaande opties om door te gaan naar de volgende stap." +msgstr "" +"Kies een van de onderstaande opties om door te gaan naar de volgende stap." msgid "Next" msgstr "Volgende" -msgid "no content" -msgstr "geen inhoud" - -#| msgid "no content" -msgid "has contents" -msgstr "" +msgid "Unknown" +msgstr "Onbekend" #, python-format msgid "Page not found on %(domain)s" @@ -1424,7 +1457,9 @@ msgstr "Pagina niet gevonden in %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Een template tag kan de pagina met opzoek argumenten `%(page_lookup)s\n` niet vinden. De URL van het verzoek was: http://%(host)s%(path)s" +msgstr "" +"Een template tag kan de pagina met opzoek argumenten `%(page_lookup)s\n" +"` niet vinden. De URL van het verzoek was: http://%(host)s%(path)s" msgid "Two columns" msgstr "Twee kolommen" @@ -1457,7 +1492,9 @@ msgstr "actief" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Geeft aan of de gebruiker als actief moet worden behandeld. Deselecteer dit in plaats van accounts te verwijderen." +msgstr "" +"Geeft aan of de gebruiker als actief moet worden behandeld. Deselecteer dit " +"in plaats van accounts te verwijderen." msgid "users" msgstr "gebruikers" @@ -1492,7 +1529,6 @@ msgstr "Artikelen" msgid "Sample App" msgstr "Voorbeeldapplicatie" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Voorbeeldapplicatie met configuratie" @@ -1502,9 +1538,8 @@ msgstr "Voorbeeld App met uitgesloten permissies" msgid "Sample App 2" msgstr "Voorbeeld app 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Voorbeeldapplicatie 3" +msgstr "Voorbeeld app 2" msgid "Namespaced App" msgstr "Namespaced App" @@ -1539,9 +1574,8 @@ msgstr "Statisch menu 2" msgid "Static Menu3" msgstr "Statisch Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statisch menu4" +msgstr "Statisch menu" msgid "Category" msgstr "Categorie" @@ -1568,12 +1602,10 @@ msgid "UserSettings" msgstr "GebruikersInstellingen" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Voeg plugin toe aan placeholder \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Voeg plugin toe aan %(plugin_name)s" @@ -1591,17 +1623,22 @@ msgstr "Deze placeholder bevat al het maximale aantal plugins (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Deze placeholder bevat al het maximale aantal (%(limit)s) van toegestane %(plugin_name)s plugins." +msgstr "" +"Deze placeholder bevat al het maximale aantal (%(limit)s) van toegestane " +"%(plugin_name)s plugins." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "Kan de gespecificeerde CMS_REQUEST_IP_RESOLVER module niet vinden: \"{0}\"." +msgstr "" +"Kan de gespecificeerde CMS_REQUEST_IP_RESOLVER module niet vinden: \"{0}\"." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Kan de gespecificeerde CMS_REQUEST_IP_RESOLVER functie niet vinden: \"{0}\" in module \"{1}\"." +msgstr "" +"Kan de gespecificeerde CMS_REQUEST_IP_RESOLVER functie niet vinden: \"{0}\" " +"in module \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1610,394 +1647,3 @@ msgstr "Maak een nieuwe instantie van %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Er is al een wizard geregistreerd voor model: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/nl/LC_MESSAGES/djangojs.mo b/cms/locale/nl/LC_MESSAGES/djangojs.mo index c96bba1668cb734583c2d16c7b64afcffd6dd004..fa21104ce98a1f45aaf7d2ed1ebf35a60127dd99 100644 GIT binary patch delta 101 zcmcc5@{DDI4sSgp1H)7X28IA27M*ChoYz3t&`{UdK*7Mw%EWTwTXFsD(xQ~g+(ZSN zlA^@C;>@(v3ccj~TnDglYF=4peokg;o?c##osNQ$fuY%C9Y#6k#Dap&zKlYQ0L$+l AG5`Po delta 119 zcmaFHa-U^_4sQh`1H)7X28IA2=9_4_oYz9vz);uFP{Gj5%GhG!TXD~T#L}F61;?DS z#G=HMd\n" -"Language-Team: Dutch (http://www.transifex.com/divio/django-cms/language/nl/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: kurdyma , 2016\n" +"Language-Team: Dutch (http://app.transifex.com/divio/django-cms/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Weet u zeker dat u van tabblad wilt wisselen zonder eerst de pagina op te slaan?" diff --git a/cms/locale/no/LC_MESSAGES/django.mo b/cms/locale/no/LC_MESSAGES/django.mo index 2d29260cad82b72bf9f58cc23713702ccdf849f5..d10e6a4cb26bf1bf549f987dd06ed207b0783dfe 100644 GIT binary patch delta 5209 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 YloXcEsK1*2V#C@Gvm)!yWabC{4~rTW2mk;8 delta 5275 zcmYk;33OD|0mktQNlb*WC5Y@9A_)O9WGf^>zyK-)h-Fh+KyZ=_$*{~|W&i_(5s*cM zf&@|&D3;X@2+o#o0Xep zhd)V(UTZk&NP99Y)|i|I#>{Q1T4M$$8k2{GcsDMEOS7!x*M*$>L^F-C2Mumvu}=D60LZ$~}o0QSTq*bKi#J-A^jV_IWV zOvf(R1V^JfT#S0|6zq&u5yQr8rl66WK>nGt{Aq-Bs2jhr{(x#I>RzY58Q#TtYvd!7 zgu1Vn{k*^Zde1Zod z2RmX6c0oPRje1@IcEpFUAC{t)WDEAfbEx}c+p_*{3eDR(4fI1z;V|rtV^9sOM*3jZ zp+>qFb=?75|2Ap>AE7#W1H0gVa1eHC=XA`6y3UWfzp5Sc-+{tXDl|3QkXy(RbYM{8Pux^6gfiSeL1P=%Vw=THM!iyFXs%*6fn^Xp*>nzDbQ*6x;7 zy(-{59MS%DhJYSch>pq~2{YUWO(Hs1wn_zMc^;g6^X zG-Tm)LoDjSiKvmdP;1=H+Sk?($6V^iqF%4ns1a^OE$v0j!Kfr-(l8e_qfa=7&0-1@ zsn~@D81HgARD_!1QJ9A%*aJ79I(iBmN34exln1$_scI_LAOJ5e3{5Osg-ea;ePqdM3ZwKob; zOFBmNv~MQbiYdtQn;>e9SE1H;2Wsv2Sr4NgcpP>8IaJ4Q+RtyJ?u+Z}n22h)BWgy| zQ60#~upaav1>GTSF)cULoP@8EzY6@S&hIklt{hO!`zK`AUBI-43z(T9R<`~&S zsO!5Smzca1-hY>YH8M>cI`G)LkDgBG1P89Z|lE6UH1)Y24hm4 z``e?gbEDcBfH62ImHAgik^NvKs;6U+Z%^YvHCTzdVFBv;rKnA`0yUx+Q6qgBb=?7+ z)_|G8`#DcfbEbR}>UnqJtjo>tDt*_x?yoFk- zIqW!1`5M&7x7hPTsDYeBb^I#2u?{t};g&3zraA@npe)q;Is`Scd8iI7x1X;?UIeon zJL5Ujb>E?WWTJQ_8etpM40X2WS*YvsQO_HKchSBXML`XZMco**7tBLV(Gt|iR-hiR z0rge;3Ti~}pmy^q7sf0@5a`sB~8XAScy$>32Nju7>}FqF1`P|D5!_E7#R_2 zicevGyoqW!Bg5GvMW~T3LT248M|JQ3sskr+0G>xR*ecWcIZi@#xF2eu4`Y~LNHcHV=o+rU2q}tdt!EC3Z6kt=`GYAN#x6-7<;1Dd>v|U zT*2me4fF6{$mE)I9+FR#NZ(8j4#jd*2liWUB7HHbRI&3Q1xR_ zQ(uf4z*KbMY`h28qpsVFT9PC7{3Po73z(tz{~Co>R3!9v)~YM&!P%%A^HC!$M0H>+ zYE37jIu=AV6h=LG8QzQQur2OEE!8R1)ZfI0cnjlc-+XUBi0%YgaMjn^%j35cMOS_?N=!<&5 z2yBDJs0YkNjd&5N!Bwb^)u1}M6>+b>WKkRq~=j3;|YJMtJQC!>gtl|g+b2eTgaO4gBw$>)TXHe2=n z>-Zh{4SAIuA(V?ms*EE-jPF4Y~*bZ2F{v+s9h_3WLK(>;@;(J)Ui6zp(4!, 2014 -# Eirik Krogstad , 2013,2015 -# fivethreeo , 2011 -# affy , 2014 -# fivethreeo , 2011 -# Sindre Myren , 2011 -# Sindre Myren , 2011 -# Stein Strindhaug , 2012 -# Stein Strindhaug , 2012 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Norwegian (http://www.transifex.com/divio/django-cms/language/no/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Norwegian (https://app.transifex.com/divio/teams/58664/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,7 +48,8 @@ msgstr "Sidetittel" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Overstyrer hva som vises på toppen av nettleseren din eller i bokmerker" +msgstr "" +"Overstyrer hva som vises på toppen av nettleseren din eller i bokmerker" msgid "Description meta tag" msgstr "Metatag for beskrivelse" @@ -64,9 +57,6 @@ msgstr "Metatag for beskrivelse" msgid "A description of the page used by search engines." msgstr "En liste av stikkord noen ganger brukes av søkemotorer" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "Sidetype" @@ -79,7 +69,6 @@ msgstr "Overstyr adresse" msgid "Keep this field empty if standard path should be used." msgstr "La dette feltet være tomt hvis standardsti skal brukes" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -101,11 +90,9 @@ msgstr "synlighet i meny" msgid "limit when this page is visible in the menu" msgstr "begrens når denne siden er synlig i menyen" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -121,7 +108,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "En side med denne reversadresse-IDen finnes allerede." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -195,7 +181,6 @@ msgstr "Språket må settes til et støttet språk!" msgid "Parent plugin language must be same as language!" msgstr "Forelder inplugg språk må være det samme språk!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -210,7 +195,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -227,9 +211,10 @@ msgstr "Objektet %(name)s med primærnøkkel %(key)r finnes ikke." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Feil! Du har ikke rettigheter til å flytte denne siden. Prøv å laste siden på nytt" +msgstr "" +"Feil! Du har ikke rettigheter til å flytte denne siden. Prøv å laste siden " +"på nytt" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -262,7 +247,6 @@ msgstr "Redigering av mal ble godkjent" msgid "You do not have permission to copy these plugins." msgstr "Du har ikke tillatelse til å kopiere disse utvidelsene." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -270,8 +254,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Tittel og utvidelser med språk %(language)s ble slettet" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Du har ikke rettigheter til å endre denne sidens status for \"I navigasjon\"" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Restriksjon for visning" @@ -289,7 +285,6 @@ msgstr "Du har ikke tillatelse til å redigere denne siden" msgid "You do not have permission to add a plugin" msgstr "Du har ikke tillatelse til å legge til en utvidelse" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -299,18 +294,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "Du har ikke tillatelse til å redigere denne utvidelsen" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Du har ikke tillatelse til å flytte denne utvidelsen" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -340,6 +332,47 @@ msgstr "Bruker- og grupperettigheter" msgid "Page permissions management" msgstr "Kontroll av siderettigheter" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Forhåndsvis" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -368,9 +401,6 @@ msgstr "" msgid "Edit" msgstr "Rediger" -msgid "Preview" -msgstr "Forhåndsvis" - msgid "Structure" msgstr "Struktur" @@ -414,15 +444,12 @@ msgstr "Logg ut" msgid "Language" msgstr "Språk" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -431,7 +458,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -441,7 +467,6 @@ msgstr "Sider" msgid "Page" msgstr "Side" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -488,20 +513,12 @@ msgid "Select a valid page" msgstr "Velg en gyldig side" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -515,7 +532,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -612,6 +634,57 @@ msgstr "Godkjenn for" msgid "page" msgstr "side" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "kun for innloggede brukere" + +msgid "for anonymous users only" +msgstr "kun for anonyme brukere" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "tittel" + +msgid "overwrite the title (html title tag)" +msgstr "overskriv tittelen (html title tag)" + +msgid "overwrite the title in the menu" +msgstr "overskriv tittelen i menyen" + +msgid "description" +msgstr "beskrivelse" + +msgid "The text displayed in search engines." +msgstr "Teksten som vises i søkemotorer." + +msgid "redirect" +msgstr "videresend" + +msgid "The template used to render the content." +msgstr "Mal som brukes for å vise innholdet." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "standard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -620,9 +693,6 @@ msgstr "" msgid "pages" msgstr "sider" -msgid "default" -msgstr "standard" - msgid "slug" msgstr "adressetittel" @@ -650,7 +720,6 @@ msgstr "på sidenivå" msgid "frontend view restriction" msgstr "restriksjon for offentlig visning" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -692,7 +761,9 @@ msgstr "Siderettighet" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Tillatelse for \"Legg til side\" krever også tilgang til barn, eller undernivå, siden kan ellers ikke endres av den som opprettet den." +msgstr "" +"Tillatelse for \"Legg til side\" krever også tilgang til barn, eller " +"undernivå, siden kan ellers ikke endres av den som opprettet den." msgid "User (page)" msgstr "Bruker (side)" @@ -736,7 +807,9 @@ msgstr "statisk plassholder navn" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beskrivende navn for å identifisere denne statiske plassholderen. Vises ikke for brukere." +msgstr "" +"Beskrivende navn for å identifisere denne statiske plassholderen. Vises ikke" +" for brukere." msgid "placeholder code" msgstr "plassholder kode" @@ -759,45 +832,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "kun for innloggede brukere" - -msgid "for anonymous users only" -msgstr "kun for anonyme brukere" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "tittel" - -msgid "overwrite the title (html title tag)" -msgstr "overskriv tittelen (html title tag)" - -msgid "overwrite the title in the menu" -msgstr "overskriv tittelen i menyen" - -msgid "description" -msgstr "beskrivelse" - -msgid "The text displayed in search engines." -msgstr "Teksten som vises i søkemotorer." - -msgid "redirect" -msgstr "videresend" - -msgid "The template used to render the content." -msgstr "Mal som brukes for å vise innholdet." - msgid "Advanced options" msgstr "Avanserte valg" @@ -805,7 +839,6 @@ msgid "Generic" msgstr "Generisk" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -815,65 +848,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Lagre" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Logg inn på administrasjonssiden her." @@ -888,7 +910,6 @@ msgstr "Brukernavn:" msgid "Password:" msgstr "Passord:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -969,16 +990,21 @@ msgstr "Klipp ut" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Tillatelser" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -988,7 +1014,6 @@ msgstr "Liste over sider" msgid "Search" msgstr "Søk" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1002,17 +1027,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1036,7 +1053,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1050,10 +1066,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1074,30 +1086,15 @@ msgstr "Lukk" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1114,12 +1111,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Tillatelser" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1169,7 +1172,6 @@ msgstr "" msgid "Available plugins" msgstr "Tilgjengelige utvidelser" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1183,7 +1185,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1195,7 +1196,6 @@ msgstr "Avbryt" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1208,15 +1208,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1225,7 +1222,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1235,10 +1231,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1254,32 +1252,29 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Innlogging feilet. Vennligst sjekk opplysningene dine og prøv igjen." +msgstr "" +"Innlogging feilet. Vennligst sjekk opplysningene dine og " +"prøv igjen." msgid "Double-click to edit" msgstr "Dobbelt-klikk for å redigere" @@ -1302,12 +1297,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "Slipp en utvidelse her" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1348,15 +1337,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1365,15 +1345,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1398,11 +1369,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1413,7 +1380,9 @@ msgstr "Side ikke funnet på %(domain)s " msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "En maltag kunne ikke finne siden med søkeargumenter `%(page_lookup)s\n`. Adressen til forespørselen var: http://%(host)s%(path)s" +msgstr "" +"En maltag kunne ikke finne siden med søkeargumenter `%(page_lookup)s\n" +"`. Adressen til forespørselen var: http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1481,7 +1450,6 @@ msgstr "Artikler" msgid "Sample App" msgstr "Eksempel-app" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1491,9 +1459,8 @@ msgstr "" msgid "Sample App 2" msgstr "Eksempelapplikasjon 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Eksempelapplikasjon 2" msgid "Namespaced App" msgstr "Navnrommet Applikasjon" @@ -1528,9 +1495,8 @@ msgstr "Statisk meny2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Statisk meny" msgid "Category" msgstr "Kategori" @@ -1557,12 +1523,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1580,7 +1544,9 @@ msgstr "Denne plassholderen har allerede maksimalt antall utvidelser (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Denne plassholderen har det maksimale antallet (%(limit)s) av tillatte utvidelser %(plugin_name)s." +msgstr "" +"Denne plassholderen har det maksimale antallet (%(limit)s) av tillatte " +"utvidelser %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1599,394 +1565,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/no/LC_MESSAGES/djangojs.mo b/cms/locale/no/LC_MESSAGES/djangojs.mo index 6c121cd9dc0e58aa2c6f4a8847892d9c646d53dd..88de8e9df16444443ea2ccf00f63f5f88aea5597 100644 GIT binary patch delta 92 zcmcc0a+zg<4sR7B1H)7X1_mb}7MN(coYz3t&`{UdK*7Mw%EWTwTXD7E%)FGMR0ZG4 uqSQPEo8sKcqTIwhhxFXU%pASs{9HR71tSAP!^t{~O3aA`1)BpISr`FPl diff --git a/cms/locale/no/LC_MESSAGES/djangojs.po b/cms/locale/no/LC_MESSAGES/djangojs.po index 83064e0a9b3..32c7b003856 100644 --- a/cms/locale/no/LC_MESSAGES/djangojs.po +++ b/cms/locale/no/LC_MESSAGES/djangojs.po @@ -11,15 +11,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Norwegian (http://www.transifex.com/divio/django-cms/language/no/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Sindre Myren , 2011\n" +"Language-Team: Norwegian (http://app.transifex.com/divio/django-cms/language/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: no\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Er du sikker på at du vil skifte fane uten å lagre siden først?" diff --git a/cms/locale/pap/LC_MESSAGES/django.mo b/cms/locale/pap/LC_MESSAGES/django.mo index 7b201d0c8774a3364786394fddc778351ebc0dc3..bfe96c5ef635d984a61a471f894c9cda8f0ba5a1 100644 GIT binary patch delta 85 zcmZ3*{DWzN3ZvabRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*~t4FD=u8Q1^- delta 134 zcmeytw2FCx3S+@URXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6YtIj0J}3R;s5{u diff --git a/cms/locale/pap/LC_MESSAGES/django.po b/cms/locale/pap/LC_MESSAGES/django.po index 17169e0c54c..7889b87fbd7 100644 --- a/cms/locale/pap/LC_MESSAGES/django.po +++ b/cms/locale/pap/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Papiamento (http://www.transifex.com/divio/django-cms/language/pap/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Papiamento (https://app.transifex.com/divio/teams/58664/pap/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/pap/LC_MESSAGES/djangojs.mo b/cms/locale/pap/LC_MESSAGES/djangojs.mo index 2a8641d52fccb3ed536dd9b77d42d6087ecd115b..29cd8a2519c22606df8a373493de8f6b21698472 100644 GIT binary patch delta 68 zcmdnVyq>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!zdm^78VDZw>\n" -"Language-Team: Papiamento (http://www.transifex.com/divio/django-cms/language/pap/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Papiamento (http://app.transifex.com/divio/django-cms/language/pap/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/pl/LC_MESSAGES/django.mo b/cms/locale/pl/LC_MESSAGES/django.mo index 22fe302232bd43c4fa554639de0e3fef67d01b12..cbbb4291d5ab9011c3e7baabd10ad076a90064a8 100644 GIT binary patch delta 9518 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 bI8W4)ru74+>g4j-&ePlS3q9!%t?>RozXQ5O diff --git a/cms/locale/pl/LC_MESSAGES/django.po b/cms/locale/pl/LC_MESSAGES/django.po index 19cbe444d25..a83c9249aec 100644 --- a/cms/locale/pl/LC_MESSAGES/django.po +++ b/cms/locale/pl/LC_MESSAGES/django.po @@ -3,39 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# angularcircle, 2012-2013 -# angularcircle, 2013 -# angularcircle, 2012 -# ar4s , 2014-2015 -# Arkadiusz Błasiak , 2015 -# filip klosowski , 2017 -# Grzegorz Biały , 2017 -# Jakub Paczkowski , 2013 -# ksiedlarek , 2014 -# ksiedlarek , 2014 -# Piotr Jakimiak , 2015 -# Maciej Kostuch , 2017-2018,2020 -# m_aciek , 2016-2018 -# Piotr Jakimiak , 2015 -# Piotr Kilczuk , 2013 -# Piotr Wojcik , 2016 -# Rafał Łopatka , 2015 -# Robert Weglarek , 2014 -# Robert Weglarek , 2014-2015 -# sebastian1 , 2012 -# sebastian1 , 2012 -# Robert Weglarek , 2014 -# Robert Weglarek , 2014 -# Ziemowit Płaszaj , 2013 +# Piotr Wojcik , 2022 +# Grzegorz Biały , 2023 +# filip klosowski , 2023 +# Maciej Kostuch , 2023 +# Fabian Braun , 2023 +# Maciej Olko , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Polish (http://www.transifex.com/divio/django-cms/language/pl/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Maciej Olko , 2023\n" +"Language-Team: Polish (https://app.transifex.com/divio/teams/58664/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -71,16 +53,15 @@ msgstr "Tytuł strony" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Nadpisuje to co jest wyświetlane u góry przeglądarki lub w jej zakładkach" +msgstr "" +"Nadpisuje to co jest wyświetlane u góry przeglądarki lub w jej zakładkach" msgid "Description meta tag" msgstr "Opis w meta tagu" msgid "A description of the page used by search engines." -msgstr "Lista słów oddzielonych przecinkami używana czasem przez wyszukiwarki." - -msgid "Slug must not be empty." -msgstr "Skrót nie może być pusty." +msgstr "" +"Lista słów oddzielonych przecinkami używana czasem przez wyszukiwarki." msgid "Page type" msgstr "Typ strony" @@ -94,7 +75,6 @@ msgstr "Nadpisz URL" msgid "Keep this field empty if standard path should be used." msgstr "Pozostaw to pole puste jeśli ma zostać użyta standardowa ścieżka" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -116,11 +96,9 @@ msgstr "widoczność w menu" msgid "limit when this page is visible in the menu" msgstr "określa kiedy strona jest widoczna w men" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -136,7 +114,6 @@ msgstr "Konfiguracja aplikacji" msgid "A page with this reverse URL id exists already." msgstr "Inna strona z takim samym odwrotnym adresem url już istnieje." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Nieprawidłowa wartość w konfiguracji aplikacji" @@ -173,32 +150,44 @@ msgstr "Usuń" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Użytkownicy nie mogą stworzyć strony nie mając uprawnienia do zmieniania stworzonej strony. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą stworzyć strony nie mając uprawnienia do zmieniania " +"stworzonej strony. Wymagana zmiana uprawnień." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Użytkownicy nie mogą usunąć strony bez uprawnienia do zmieniania strony. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą usunąć strony bez uprawnienia do zmieniania strony. " +"Wymagana zmiana uprawnień." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Użytkownicy nie mogą ustalać uprawnień do strony bez uprawnień do zmieniania strony. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą ustalać uprawnień do strony bez uprawnień do zmieniania" +" strony. Wymagana zmiana uprawnień." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Użytkownicy nie mogą usuwać uprawnień strony bez uprawnień do zmiany strony. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą usuwać uprawnień strony bez uprawnień do zmiany strony." +" Wymagana zmiana uprawnień." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Użytkownicy nie mogą tworzyć uprawnień strony bez uprawnień do zmiany stworzonego uprawnienia. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą tworzyć uprawnień strony bez uprawnień do zmiany " +"stworzonego uprawnienia. Wymagana zmiana uprawnień." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Użytkownicy nie mogą usuwać uprawnień strony bez uprawnień do zmiany uprawnień. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy nie mogą usuwać uprawnień strony bez uprawnień do zmiany " +"uprawnień. Wymagana zmiana uprawnień." #, python-format msgid "Invalid plugin type '%s'" @@ -210,7 +199,6 @@ msgstr "Język musi być ustawiony na jeden z dostępnych!" msgid "Parent plugin language must be same as language!" msgstr "Język wtyczki nadrzędnej musi być ten sam co i język!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Placeholder wtyczki nadrzędnej musi być taki sam jak placeholder!" @@ -225,7 +213,6 @@ msgid "The page is not eligible to be home." msgstr "Ta strona nie nadaje się na stronę główną." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -242,16 +229,19 @@ msgstr "Obiekt %(name)s o kluczu głównym %(key)r nie istnieje." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Błąd! Nie masz uprawnień do przeniesienia tej strony. Proszę odświeżyć stronę." +msgstr "" +"Błąd! Nie masz uprawnień do przeniesienia tej strony. Proszę odświeżyć " +"stronę." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Błąd! Nie masz uprawnień do skopiowania tej strony." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Błąd! Strona którą wklejasz nie jest przetłumaczona na żaden z języków skonfigurowanych przez stronę docelową." +msgstr "" +"Błąd! Strona którą wklejasz nie jest przetłumaczona na żaden z języków " +"skonfigurowanych przez stronę docelową." msgid "You do not have permission to edit this page" msgstr "Nie masz uprawnień aby edytować tą stronę" @@ -277,7 +267,6 @@ msgstr "Zmiana szablonu zakończona powodzeniem" msgid "You do not have permission to copy these plugins." msgstr "Nie masz uprawnień aby skopiować te wtyczki." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Nie masz uprawnienia do usunięcia tej strony" @@ -285,8 +274,20 @@ msgstr "Nie masz uprawnienia do usunięcia tej strony" msgid "Title and plugins with language %(language)s was deleted" msgstr "Tytuł i wtyczki dla języka %(language)s zostały usunięte" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Brak zezwolenia na zmianę statusu in_navigation dla tej strony" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Pusty" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Ograniczenie dostępu" @@ -304,7 +305,6 @@ msgstr "Nie masz uprawnień do edycji tej pozycji" msgid "You do not have permission to add a plugin" msgstr "Nie masz uprawnień aby dodać wtyczkę" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Nie masz uprawnień, aby skopiować ten placeholder" @@ -314,18 +314,15 @@ msgstr "Nie znaleziono wtyczki" msgid "You do not have permission to edit this plugin" msgstr "Nie masz uprawnień aby edytować tę wtyczkę" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Nie masz uprawnień, by wkleić ten plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Nie masz uprawnień, by wkleić symbol zastępczy" msgid "You have no permission to move this plugin" msgstr "Nie masz uprawnień aby przenieść ta wtyczkę" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Nie mas zuprawnień, aby wyciąć tę wtyczkę" @@ -355,6 +352,47 @@ msgstr "Uprawnienia grup i użytkowników" msgid "Page permissions management" msgstr "Zarządzanie prawami dostępu do stron" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Podgląd" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Brak zarejestrowanego apphooka „%r”" @@ -375,7 +413,9 @@ msgstr "Utwórz Alias" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "To jest alias, możesz edytować jego zawartość tylko na stronie %(page_title)s." +msgstr "" +"To jest alias, możesz edytować jego zawartość tylko na stronie %(page_title)s." msgid "Create" msgstr "Utwórz" @@ -383,9 +423,6 @@ msgstr "Utwórz" msgid "Edit" msgstr "Edytuj" -msgid "Preview" -msgstr "Podgląd" - msgid "Structure" msgstr "Struktura" @@ -429,15 +466,12 @@ msgstr "Wyloguj" msgid "Language" msgstr "Język" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Dodaj tłumaczenie" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Usuń tłumaczenie" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Skopiuj wszystkie pluginy" @@ -446,7 +480,6 @@ msgid "from %s" msgstr "od %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Czy na pewno skopiować wszystkie wtyczki z %s?" @@ -456,7 +489,6 @@ msgstr "Strony" msgid "Page" msgstr "Strona" -#| msgid "Create" msgid "Create Page" msgstr "Stwórz stronę" @@ -503,26 +535,23 @@ msgid "Select a valid page" msgstr "Wybierz poprawną podstronę" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Strona %(conflict_page)s ma taki sam URL '%(url)s' jak bieżąca strona „%(instance)s”." +msgstr "" +"Strona %(conflict_page)s ma taki sam URL '%(url)s' jak bieżąca strona " +"„%(instance)s”." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Strona %(conflict_page)s ma taki sam URL '%(url)s' jak bieżąca strona." +msgstr "" +"Strona %(conflict_page)s ma taki sam URL '%(url)s' jak bieżąca strona." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Opcjonalne. Gdy podane, będzie automatycznie dodane wewnątrz nowej tekstowej wtyczki." +msgstr "" +"Opcjonalne. Gdy podane, będzie automatycznie dodane wewnątrz nowej tekstowej" +" wtyczki." msgid "Provide a title for the new page." msgstr "Nadaj tytuł dla nowej strony." @@ -530,7 +559,12 @@ msgstr "Nadaj tytuł dla nowej strony." msgid "Leave empty for automatic slug, or override as required." msgstr "Zostaw puste, aby wygenerować automatyczny skrót, lub nadpisz." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Nie masz uprawnień wymaganych do dodania strony." @@ -627,17 +661,67 @@ msgstr "Uprawnienia dla" msgid "page" msgstr "stronę" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "tylko dla zalogowanych" + +msgid "for anonymous users only" +msgstr "tylko dla niezalogowanych" + +msgid "Inherit from parent page" +msgstr "Dziedzicz ze strony nadrzędnej" + +msgid "Deny" +msgstr "Odmów" + +msgid "Only this website" +msgstr "Tylko na tym serwisie" + +msgid "Allow" +msgstr "Pozwalaj" + +msgid "title" +msgstr "tytuł" + +msgid "overwrite the title (html title tag)" +msgstr "nadpisz tytuł (znacznik title w HTML)" + +msgid "overwrite the title in the menu" +msgstr "nadpisz tytuł z menu" + +msgid "description" +msgstr "Opis" + +msgid "The text displayed in search engines." +msgstr "Tekst wyświetlany w wyszukiwarkach." + +msgid "redirect" +msgstr "przekierowanie" + +msgid "The template used to render the content." +msgstr "Szablon, który będzie wykorzystany do wyświetlenia treści na stronie." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "domyślny" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Unikalny identyfikator używany przez templatetag page_url do tworzenia odnośnika do tej strony" +msgstr "" +"Unikalny identyfikator używany przez templatetag page_url do tworzenia " +"odnośnika do tej strony" msgid "pages" msgstr "strony" -msgid "default" -msgstr "domyślny" - msgid "slug" msgstr "skrót" @@ -665,35 +749,44 @@ msgstr "na poziomie strony" msgid "frontend view restriction" msgstr "Ograniczenia dostępu" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Proszę wybrać grupę lub użytkownika" msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Użytkownicy bez uprawnień do wprowadzania zmian nie mogą publikować stron. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy bez uprawnień do wprowadzania zmian nie mogą publikować stron. " +"Wymagana zmiana uprawnień." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Użytkownicy bez uprawnień do wprowadzania zmian nie mogą zmieniać zaawansowanych ustawień strony.Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy bez uprawnień do wprowadzania zmian nie mogą zmieniać " +"zaawansowanych ustawień strony.Wymagana zmiana uprawnień." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Użytkownicy bez uprawnień do wprowadzania zmian nie mogą zmieniać uprawnień dla strony. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy bez uprawnień do wprowadzania zmian nie mogą zmieniać uprawnień " +"dla strony. Wymagana zmiana uprawnień." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Użytkownicy bez uprawnień do wprowadzania zmian nie mogą przenosić stron. Wymagana zmiana uprawnień." +msgstr "" +"Użytkownicy bez uprawnień do wprowadzania zmian nie mogą przenosić stron. " +"Wymagana zmiana uprawnień." msgid "can recover any deleted page" msgstr "może odzyskać każdą usuniętą stronę" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Jeśli niczego nie zaznaczono użytkownicy mają uprawnienia do wszystkich witryn." +msgstr "" +"Jeśli niczego nie zaznaczono użytkownicy mają uprawnienia do wszystkich " +"witryn." msgid "Page global permission" msgstr "Globalne prawo dostępu do stron" @@ -707,7 +800,9 @@ msgstr "Prawo dostępu do stron" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Dodanie praw do strony wymaga dostępu do ich dzieci lub potomków, inaczej dodana strona nie może zostać zmieniona przez jego twórcę." +msgstr "" +"Dodanie praw do strony wymaga dostępu do ich dzieci lub potomków, inaczej " +"dodana strona nie może zostać zmieniona przez jego twórcę." msgid "User (page)" msgstr "Użytkownik (strona)" @@ -751,7 +846,9 @@ msgstr "nazwa statycznego placeholder'a" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nadaj nazwę dla identyfikacji tego statycznego placeholdera. Nie zostanie wyświetlone użytkownikom." +msgstr "" +"Nadaj nazwę dla identyfikacji tego statycznego placeholdera. Nie zostanie " +"wyświetlone użytkownikom." msgid "placeholder code" msgstr "zastępczy kod" @@ -774,45 +871,6 @@ msgstr "statyczne placeholder'y" msgid "A static placeholder with the same site and code already exists" msgstr "Statyczny placeholder z tą samą stroną i kodem już istnieje." -msgid "for logged in users only" -msgstr "tylko dla zalogowanych" - -msgid "for anonymous users only" -msgstr "tylko dla niezalogowanych" - -msgid "Inherit from parent page" -msgstr "Dziedzicz ze strony nadrzędnej" - -msgid "Deny" -msgstr "Odmów" - -msgid "Only this website" -msgstr "Tylko na tym serwisie" - -msgid "Allow" -msgstr "Pozwalaj" - -msgid "title" -msgstr "tytuł" - -msgid "overwrite the title (html title tag)" -msgstr "nadpisz tytuł (znacznik title w HTML)" - -msgid "overwrite the title in the menu" -msgstr "nadpisz tytuł z menu" - -msgid "description" -msgstr "Opis" - -msgid "The text displayed in search engines." -msgstr "Tekst wyświetlany w wyszukiwarkach." - -msgid "redirect" -msgstr "przekierowanie" - -msgid "The template used to render the content." -msgstr "Szablon, który będzie wykorzystany do wyświetlenia treści na stronie." - msgid "Advanced options" msgstr "Ustawienia zaawansowane" @@ -820,78 +878,68 @@ msgid "Generic" msgstr "Ogólne" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s „%(obj)s” został pomyślnie zmieniony." msgid "There are no further settings for this plugin. Please press save." -msgstr "Dla tej wtyczki nie istnieją dodatkowe ustawienia. Proszę wcisnąć zapisz." +msgstr "" +"Dla tej wtyczki nie istnieją dodatkowe ustawienia. Proszę wcisnąć zapisz." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Zmienione" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Zapisz" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "zaloguj się do panelu administracyjnego tutaj." +msgstr "" +"zaloguj się do panelu administracyjnego tutaj." #, python-format msgid "Login url: %(login_url)s" @@ -903,9 +951,8 @@ msgstr "Użytkownik:" msgid "Password:" msgstr "Hasło:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Dodaj stronę" +msgstr "" msgid "Change a page" msgstr "Zmień stronę" @@ -986,16 +1033,21 @@ msgstr "Wytnij" msgid "Paste" msgstr "Wklej" -#| msgid "Save as new" msgid "Set as home" msgstr "Ustaw jak stronę główną" +msgid "Permissions" +msgstr "Uprawnienia" + msgid "is restricted" msgstr "jest ograniczone" msgid "last change by" msgstr "ostatnio zmienione przez" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -1005,7 +1057,6 @@ msgstr "Lista stron" msgid "Search" msgstr "Szukaj" -#| msgid "Page Title" msgid "Page Tree" msgstr "Drzewo stron" @@ -1017,19 +1068,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Przywróć usunięte %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Przywróć usunięte %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Nawigacja główna" -#| msgid "Actions" msgid "Options" msgstr "Opcje" @@ -1045,7 +1091,10 @@ msgstr "Błąd:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Ta strona nie może zostać skopiowana, ponieważ jest do niej przypięta aplikacja. Zobacz Zaawansowane ustawienia strony, by zarządzać przypiętymi aplikacjami." +msgstr "" +"Ta strona nie może zostać skopiowana, ponieważ jest do niej przypięta " +"aplikacja. Zobacz Zaawansowane ustawienia strony, by zarządzać przypiętymi " +"aplikacjami." msgid "Are you sure you want to § this page?" msgstr "Czy na pewno chcesz § tę stronę?" @@ -1053,7 +1102,6 @@ msgstr "Czy na pewno chcesz § tę stronę?" msgid "Reload" msgstr "Przeładuj" -#| msgid "New Page" msgid "New node" msgstr "Nowy węzeł" @@ -1067,17 +1115,15 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nNie ma jeszcze żadnych %(object)s.
    Dodaj %(object)s teraz." +msgstr "" +"\n" +"Nie ma jeszcze żadnych %(object)s.
    Dodaj %(object)s teraz." msgid "Copy options" msgstr "Opcje kopiowania" @@ -1091,30 +1137,15 @@ msgstr "Zamknij" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Opublikowane" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Nieopublikowane" - -msgid "Empty" -msgstr "Pusty" - -#| msgid "in menu" msgid "In menu" msgstr "W menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Poza menu" -#| msgid "New page" msgid "View page" msgstr "Zobacz stronę" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1131,12 +1162,19 @@ msgstr "w menu" msgid "not in menu" msgstr "brak w menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" -msgstr "Ustawienia strony (przytrzymaj SHIT, aby otworzyć ustawienia zaawansowane)" +msgstr "" +"Ustawienia strony (przytrzymaj SHIT, aby otworzyć ustawienia zaawansowane)" -msgid "Permissions" -msgstr "Uprawnienia" +msgid "This page has no preview!" +msgstr "Ta strona nie posiada podglądu!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Przekierowywanie na:" msgid "Clipboard" msgstr "Schowek" @@ -1169,7 +1207,8 @@ msgid "You cannot add plugins to this plugin." msgstr "Nie można dodać wtyczek do tej wtyczki." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Ta wtyczka nie może być przenoszona lub edytowana spoza swojego rodzica" +msgstr "" +"Ta wtyczka nie może być przenoszona lub edytowana spoza swojego rodzica" msgid "Clipboard is empty." msgstr "Schowek jest pusty." @@ -1186,7 +1225,6 @@ msgstr "Wyróżnienie" msgid "Available plugins" msgstr "Dostępne wtyczki" -#| msgid "Structure" msgid "Toggle structure" msgstr "Przełącz strukturę" @@ -1200,11 +1238,12 @@ msgid "More" msgstr "Więcej" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Wersja deweloperska używa djangoCMS %(cms_version)s, Django %(django_version)s, Pythona %(python_version)s" +msgstr "" +"Wersja deweloperska używa djangoCMS %(cms_version)s, Django " +"%(django_version)s, Pythona %(python_version)s" msgid "Cancel" msgstr "Anuluj" @@ -1212,7 +1251,6 @@ msgstr "Anuluj" msgid "The following error occured:" msgstr "Wystąpił następujący błąd:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Akcja wykonana pomyślnie." @@ -1225,24 +1263,22 @@ msgstr "Czy na pewno chesz opublikować tę stronę?" msgid "Plugin will be added here" msgstr "Wtyczka zostanie dodana tutaj" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Masz niezapisane zmiany." -#| msgid "Loading..." msgid "Loading" msgstr "Ładowanie" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Czy na pewno chcesz porzucić te zmiany?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Formularz nie mógł zostać wczytany. Prosimy sprawdź, czy serwer działa poprawnie." +msgstr "" +"Formularz nie mógł zostać wczytany. Prosimy sprawdź, czy serwer działa " +"poprawnie." -#| msgid "Notify user" msgid "Most used" msgstr "Najczęściej używane" @@ -1252,10 +1288,12 @@ msgstr "Skróty" msgid "The page was changed in the meantime, reloading..." msgstr "Strona została w międzyczasie zmieniona, przeładowanie…" +msgid "CMS-wide Shortcuts" +msgstr "Skróty CMS-a" + msgid "Bring up this help dialog" msgstr "Wyświetl okno pomocy" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Zamknij/Anuluj" @@ -1271,32 +1309,29 @@ msgstr "Otwór okno \"Utwórz\"" msgid "Focus on Toolbar" msgstr "Zaznacz pasek narzędzi" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Zaznacz placeholder" msgid "Move to next/previous element" msgstr "Przejdź do następnego/poprzedniego elementu" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Zaznacz wtyczki placeholder-a" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Edytuj wtyczkę" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Otwórz menu akcji" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Zwiń/Rozwiń" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Logowanie zakończone niepowodzeniem Proszę sprawdź swoje dane logowania i spróbuj ponownie." +msgstr "" +"Logowanie zakończone niepowodzeniem Proszę sprawdź swoje " +"dane logowania i spróbuj ponownie." msgid "Double-click to edit" msgstr "Kliknij dwukrotnie aby edytować" @@ -1319,12 +1354,6 @@ msgstr "Maksymalizuj" msgid "Drop a plugin here" msgstr "Upuść tutaj wtyczkę." -msgid "This page has no preview!" -msgstr "Ta strona nie posiada podglądu!" - -msgid "It is being redirected to:" -msgstr "Przekierowywanie na:" - msgid "Installation successful!" msgstr "Instalacja zakończona pomyślnie!" @@ -1339,14 +1368,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Witamy w django CMS wersji %(cms_version)s.\n " +msgstr "" +"\n" +" Witamy w django CMS wersji %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Dodaj pierwszą stronę do systemu by kontynuować.\n " +msgstr "" +"\n" +" Dodaj pierwszą stronę do systemu by kontynuować.\n" +" " #, python-format msgid "" @@ -1354,7 +1389,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript wydaje się być zablokowany, więc\n dodaj stronę manualnie.\n " +msgstr "" +"\n" +" JavaScript wydaje się być zablokowany, więc\n" +" dodaj stronę manualnie.\n" +" " msgid "Installation Notes" msgstr "Wskazówki Instalacyjne" @@ -1365,32 +1404,16 @@ msgstr "Wsparcie" msgid "Documentation" msgstr "Dokumentacja" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Jeśli nie widzisz loga django CMS na górze, upewnij się, że połączyłeś katalog static/cms do swoich plików statycznych." - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Jeśli nie widzisz loga django CMS na górze, upewnij się, że połączyłeś katalog static/cms do swoich plików statycznych." + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1398,7 +1421,9 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Widzisz tę wiadomość, ponieważ masz DEBUG = True w pliku ustawień Django i nie dodałeś jeszcze żadnych stron." +msgstr "" +"\n" +"

    Widzisz tę wiadomość, ponieważ masz DEBUG = True w pliku ustawień Django i nie dodałeś jeszcze żadnych stron." msgid "Welcome to django CMS" msgstr "Witamy w django CMS" @@ -1415,11 +1440,7 @@ msgstr "Wybierz jedną z poniższych opcji by przejść do kolejnego kroku." msgid "Next" msgstr "Dalej" -msgid "no content" -msgstr "brak treści" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1430,7 +1451,10 @@ msgstr "Strona nie została odnaleziona na %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Nie udało się odnaleźć podstrony za pośrednictwem tagu w szablonie do którego przekazano następujące argumenty: `%(page_lookup)s`. Adres URL zapytania to: http://%(host)s%(path)s" +msgstr "" +"Nie udało się odnaleźć podstrony za pośrednictwem tagu w szablonie do " +"którego przekazano następujące argumenty: `%(page_lookup)s`. Adres URL " +"zapytania to: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dwie kolumny" @@ -1455,7 +1479,8 @@ msgid "staff status" msgstr "status personelu" msgid "Designates whether the user can log into this admin site." -msgstr "Określa czy dany użytkownik może zalogować się na tą stronę administracji." +msgstr "" +"Określa czy dany użytkownik może zalogować się na tą stronę administracji." msgid "active" msgstr "aktywny" @@ -1463,7 +1488,9 @@ msgstr "aktywny" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Określa czy dany użytkownik ma być traktowany jako aktywny. Odznacz tą opcję zamiast usuwać konta." +msgstr "" +"Określa czy dany użytkownik ma być traktowany jako aktywny. Odznacz tą opcję" +" zamiast usuwać konta." msgid "users" msgstr "użytkownicy" @@ -1498,7 +1525,6 @@ msgstr "Artykuły" msgid "Sample App" msgstr "Przykładowa aplikacja" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Przykładowa aplikacja z konfiguracją" @@ -1508,9 +1534,8 @@ msgstr "Prosta aplikacja z wykluczonymi uprawnieniami" msgid "Sample App 2" msgstr "Przykład Aplikacji 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Przykład Aplikacji 3" +msgstr "Przykład Aplikacji 2" msgid "Namespaced App" msgstr "Aplikacja z przestrzenią nazw" @@ -1545,9 +1570,8 @@ msgstr "Menu statyczne2" msgid "Static Menu3" msgstr "Menu statyczne3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statyczne Menu4" +msgstr "Menu statyczne" msgid "Category" msgstr "Kategoria" @@ -1574,12 +1598,10 @@ msgid "UserSettings" msgstr "UserSettings" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Dodaj wtyczkę do placeholdera \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Dodaj wtyczkę do %(plugin_name)s" @@ -1597,17 +1619,22 @@ msgstr "Ten magazyn osiągnął maksymalną ilość wtyczek (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Ten magazyn osiągnął maksymalną ilość (%(limit)s) z dozwolonych %(plugin_name)s wtyczek." +msgstr "" +"Ten magazyn osiągnął maksymalną ilość (%(limit)s) z dozwolonych " +"%(plugin_name)s wtyczek." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "Nie udało się odnaleźć wskazanego modułu CMS_REQUEST_IP_RESOLVER: „{0}”." +msgstr "" +"Nie udało się odnaleźć wskazanego modułu CMS_REQUEST_IP_RESOLVER: „{0}”." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Nie udało się odnaleźć wskazanej funkcji CMS_REQUEST_IP_RESOLVER: „{0}” w module „{1}”." +msgstr "" +"Nie udało się odnaleźć wskazanej funkcji CMS_REQUEST_IP_RESOLVER: „{0}” w " +"module „{1}”." #, python-format msgid "Create a new %s instance." @@ -1616,396 +1643,3 @@ msgstr "Stwórz nowy egzemplarz %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Kreator już został zarejestrowany dla modelu: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/pl/LC_MESSAGES/djangojs.mo b/cms/locale/pl/LC_MESSAGES/djangojs.mo index a104fc9f58039859666d194b4f394c0a393924ec..e0672db7e7f6cbf46494c00f7b760b4cbbee48b2 100644 GIT binary patch delta 95 zcmaFO`i6Ca4lfTA1H)7X1_n, 2016 +# Maciej Olko , 2016 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Polish (http://www.transifex.com/divio/django-cms/language/pl/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Maciej Olko , 2016\n" +"Language-Team: Polish (http://app.transifex.com/divio/django-cms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Czy na pewno chcesz zmienić zakładkę nie zapisując wcześniej strony?" diff --git a/cms/locale/pt/LC_MESSAGES/django.mo b/cms/locale/pt/LC_MESSAGES/django.mo index ae4d12dd95aa6787b3781ed10a5cb80af32c2205..54e85c36ff88750d62964b02cde2d73d5dbc8e64 100644 GIT binary patch delta 8785 zcmYk>2Y6Q19mnyLkPwnE5&{VU0&jqXgzUu*VU{3-EhEeqGKgf6B}-ovFls@?Kq)PX zSQQ6QB+95FwOB481NzoEuhlq%0h{4f^uu3qB>F}glY-+g372CQ*5h)# zf|K#yF2=OR!`Q?akNJj7AQj&t&o-B_1>V9|*rKa3OE3Zha0BZ4a~OgSp3jB;k$4O1yk z#CWX5ID8GG@ic0{eiXEFZBYa4gg!jqB$Elp45V)}##)71;td#zn^7yU2i4I5>xZZT zern5KV^hivsQWIV?rYZFxi18Dy(4-w^R8qx!Zh^5L70pqP!sdx4#?4R*sE?1O!<7W46K)CzR( z!9HRy)XL?c?wf|{xE!@&%TfKV#{k@jdfpb)fa*PDv_yYHe>{j`cnk}%0n>3j(;JDk zs2O~W&G0yCh0fUWMGT;P12r%oPNW9Z8g=NR&<}f|?)PMo(Ezeh4M(E};zo^pK6b)# z^v1_=06vN8=qT!K_!9YJF7reEbWU*UQ>`OWZ%-cTt@0oP@R(g>_+$3-Lo@pkTi{jH z1H2QR83kZp%56~t9*cVLB-DLnsDam@wrCk@hEJd-vH`U+Puu#J8td8ron&<5Zj8XU zQ5}DUE%7?4BflhPse@4E2y3*hPeMJYKWe20VIU4gE&W*38JT0t_u?qM|BsN-Og}@- z{1kS_^Ee#a@Gh$3>8Js@Q8Ot=4Sb0$uS8AY3DkqOqrNK#FbGd#6kb4m7uuw-{`%&} zk!gk5sD@Lp0~VnMv=aGa>iD4t{vEXihfyo_DQZ9$kiN|g)E@Upb=td8?dPK=vH-O* zHL2{sG7nNQ5FbN5@Gxp%Cs70X1vQhvG-suvkl!aJ0ksulP&1l>jb{NzQLe$}cmOrP zBes0P`h6Pf-;E2`sL;sT^R8*>I-?$#jvC--RL8j(f^KWIz5WPlW!9k{xCu4mt*Cx? zqE>h}s=xP8?LPL{%xUY7sE&TY*65Sr%s32nV`o%-9ID*_)a#gyy|5O8aX)GWkK$Oo zfZCcY_C*seM;6t1){)^&GY64HF#pCF>_KljEEBAYa1iB9sE)rzt#Mf{zM)YyEb~b8dN|6=um?|=~F)NTa&Fn+%`FYfge?={!KQDhfY>BGxj+$v2 zYDI>j&dwCn$`qg;RE}Ee8Z5@;Sb!HXkLR1o47ZAkH*q?q^w$LrBNpKm%*7d*1nxmM zhO+J&*h16;?n6EJQPc$1q6YXpw#D73Uq**88joTRz5mzAu-&F>mh+lTL6sjxt;l}V z-d(_W>^#tM6zcjSWY^4#7>i$F5A@zU?Dg5G`{xbuIGGwMH1ZYL z5?7;^Y@;n7L=EV3)SiEb>i9frV3$#Qe-qVlv!Tvw7K)uI_e0$`4Rzma)O`gWGCC|3 zs1M6>dtp6lK!38=w_+R0`)vI&RQnUCE%*u5Pt##eyD;>j9FKZniY@oD_D2oaGl+~% z??}{ZGzG(OJ~j>rHIVh_i_f4segSpgE7-VYsCMt7FCIp%*r&F97GLt>?}W%$&AQ=@ z?LFqWlQCyddv_l7x?RP59Fy&w_ScaY#e9PgVdMy7rs9jJmGQpInNb+(!I7v5q+kae zhHB@=m$3$e^!`VVbY`B4E;U4*fdW)V)z}_aqB?vAwL-69AbyCx_yzJYG^bDx3LWLF zNF4Iwm~_D{8Cu+UrMAhx~-~!dTW{d*?OI`7-&TW*&|y*d60=D(XQi zQSH~FX7~rx7VN-a+=Cj}2dH+(Q4>0i)9@PVEQ}lP{LZQKkkJRC*#xJ<7}SFXpw2{& ztuL@HMXkV-sDW;d z#PiKbGFqYw_QKDoj(zyNslE;Bff1-1yI>F|p;lrbs^ghB9jj6I9YghV0yU6xI08d* zor%prkM=sBjP`OdhTv+{12&_6Z|_7s;4rqwZ&54a#gW$Q8HQ>%0Hbgk>iPqy`_^M5 zZpSb@f_x;+_tRK^jWC^IYs5oQ--8^~p)1A|T!N!<8|w7`7qw+gW;iqPM}5G8Z8-vq zC`X|N@Hi&m3%2|Tx+tHU!TM_e&1X7G)DgABLopo3q4sh<=3tGz{toI89Yx*$mGvi# zp?nK9(3n}yp-sXLl(SJQn}?ckwTDaunfp->+=zNTcA-x1anu05LCyF_)LFQK+N$fQ zm1;iQ>9~V69#x--I<%uuTRaKXZxQOP@GKys5iLhuSc{ps5qsis)LsU=otbpU`IHAD zf7vlxQSC2c1}4sN&O{z+$$yLbg6_pgJc~LbesdfDUEnbZWORtiQ4Q83+iUjXFbvIe z9yA^GJ$MGw@DOSXyz-raw?ZA}FwDYuOvYl=%%4JS?GDt6?!!pE{|CwF#s<_@+(H*d z6ga1S0BWhHqBHT(w^8u@3~1y5oWngz~l7md*r<865YdQ+Z?>To*h!Fi~TD{Z|8 z^;*}WR&q0HARnR5+$lBiA#=rg9d%lNMa?v*!a01MP%}=&PBxm$d4q7oT7P5!8}g45_uKMAqS@S3TApP92s5X(yq#>Tbf9I=wkc9mv0g z&9&@*C({St#z;abiL%bdXdFi@CO)9t8I`UQ6UgTfe6`IN#Dm0I;&Vc&jBA_mO(Kc- zo=7EDQvU!kn7k*D%QbHsTfo$#m8SJ(yjqLL5Ml^96fFhbu6{i^LlC@rCG zHgRWaM6cjVjR?KFu@E)hm#5$*1{){OkqI%#*NS$7nECI5yk55>obYHnI>>(*Gq zY^T4qT8K)TfU7Cb-gKEAv`e@UL@mvycWGs@yQ-|BuWL|gUd4fzTth0V7rXjb=|WLK{=$KC-E)dc^ApP|3J1iy zQj=5DxU;md+Fh8RFfrd<($_V%tfH#AusXjo-xV{js;a!QZ&H%Gygc#$T_nzJQ&y6c zS5#9}mQ=+pl}Q=Bd-hDPdwckbVQKwb<;B$%?&8dtQdefCE7`SlsjD%U66?yM*q2hI z>Z7B{MKOcM0fb>9C2;!*t5 delta 9094 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, 2018 -# Joel Fernandes , 2014 -# jumpifzero , 2011 -# Mike C. , 2012 -# Mike C. , 2012 -# Rui , 2014 -# Vítor Figueiró , 2012 -# Vítor Figueiró , 2012-2015 +# Fabian Braun , 2023 +# André Cruz , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Portuguese (http://www.transifex.com/divio/django-cms/language/pt/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: André Cruz , 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/divio/teams/58664/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Todos" @@ -55,16 +49,16 @@ msgstr "Título da página" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobrescreva o que será exibido no topo do seu navegador ou nos favoritos" +msgstr "" +"Sobrescreva o que será exibido no topo do seu navegador ou nos favoritos" msgid "Description meta tag" msgstr "Meta tag descrição" msgid "A description of the page used by search engines." -msgstr "Uma lista de palavras-chave (separadas por vírgulas). Normalmente usadas por mecanismos de pesquisa." - -msgid "Slug must not be empty." -msgstr "O slug não pode ficar em branco." +msgstr "" +"Uma lista de palavras-chave (separadas por vírgulas). Normalmente usadas por" +" mecanismos de pesquisa." msgid "Page type" msgstr "Tipo de página" @@ -78,7 +72,6 @@ msgstr "Sobrescreva URL" msgid "Keep this field empty if standard path should be used." msgstr "Deixe este campo em branco para usar o caminho padrão" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -100,11 +93,9 @@ msgstr "visibilidade no menu" msgid "limit when this page is visible in the menu" msgstr "limitar a visibilidade desta página no menu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -120,7 +111,6 @@ msgstr "Configurações da aplicação" msgid "A page with this reverse URL id exists already." msgstr "Já existe uma página com esta URL reversa." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -157,32 +147,44 @@ msgstr "Excluir" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Os utilizadores não podem criar uma página sem permissões para alterar a página criada. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem criar uma página sem permissões para alterar a " +"página criada. É necessária a permissão de edição." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Os utilizadores não podem apagar a página sem permissões para a alterar. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem apagar a página sem permissões para a alterar. É " +"necessária a permissão de edição." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Os utilizadores não podem definir as permissões da página sem permissões para alterar a página. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem definir as permissões da página sem permissões " +"para alterar a página. É necessária a permissão de edição." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Os utilizadores não podem apagar as permissões da página sem permissões para alterar a página. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem apagar as permissões da página sem permissões para" +" alterar a página. É necessária a permissão de edição." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Os utilizadores não podem criar permissões de página sem permissões para alterar as permissões criadas. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem criar permissões de página sem permissões para " +"alterar as permissões criadas. É necessária a permissão de edição." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Os utilizadores não podem apagar as permissões da página sem permissões para alterar permissões. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem apagar as permissões da página sem permissões para" +" alterar permissões. É necessária a permissão de edição." #, python-format msgid "Invalid plugin type '%s'" @@ -194,9 +196,9 @@ msgstr "A Língua deve ser definida para uma língua suportada pelo sistema!" msgid "Parent plugin language must be same as language!" msgstr "O idioma do plugin ascendente tem de ser o mesmo!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "O espaço reservado do plugin antecessor tem de ser o mesmo espaço reservado!" +msgstr "" +"O espaço reservado do plugin antecessor tem de ser o mesmo espaço reservado!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -209,7 +211,6 @@ msgid "The page is not eligible to be home." msgstr "Esta página não é elegível para ser a página de entrada." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -226,16 +227,19 @@ msgstr "Não existe nenhum objecto de '%(name)s' com chave primária %(key)s" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Erro! Não tem permissões para mover esta página. Por favor atualize a página." +msgstr "" +"Erro! Não tem permissões para mover esta página. Por favor atualize a " +"página." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Erro! Não tem permissões para copiar esta página." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Erro! A página que está a colar não está traduzida em nenhuma das linguagens configuradas pelo site de destino." +msgstr "" +"Erro! A página que está a colar não está traduzida em nenhuma das linguagens" +" configuradas pelo site de destino." msgid "You do not have permission to edit this page" msgstr "Não tem permissão para editar esta página" @@ -261,7 +265,6 @@ msgstr "O modelo foi alterado com sucesso" msgid "You do not have permission to copy these plugins." msgstr "Não tem permissão para copiar estes plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "Não tem permissões para apagar esta página" @@ -269,8 +272,20 @@ msgstr "Não tem permissões para apagar esta página" msgid "Title and plugins with language %(language)s was deleted" msgstr "Foram excluídos título e plugins com a língua '%(language)s'" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Você não tem permissão para modificar o status de navegação desta página" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Vazio" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Restrição de visualização" @@ -288,7 +303,6 @@ msgstr "Não tem permissão para editar este item" msgid "You do not have permission to add a plugin" msgstr "Não tem permissão para adicionar um plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Não tem permissões para copiar este espaço reservado." @@ -298,18 +312,15 @@ msgstr "Plugin não encontrado" msgid "You do not have permission to edit this plugin" msgstr "Não tem permissão para editar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Não tem permissões para colar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Não tem permissões para colar este espaço reservado" msgid "You have no permission to move this plugin" msgstr "Não tem permissão para mover este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Não tem permissões para cortar este plugin" @@ -339,6 +350,47 @@ msgstr "Permissões de utilizador e grupo" msgid "Page permissions management" msgstr "Gestão de permissões de página" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Pré-visualizar" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -367,9 +419,6 @@ msgstr "Criar" msgid "Edit" msgstr "Editar" -msgid "Preview" -msgstr "Pré-visualizar" - msgid "Structure" msgstr "Estrutura" @@ -413,15 +462,12 @@ msgstr "Sair" msgid "Language" msgstr "Língua" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Adicionar Tradução" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Apagar Tradução" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Copiar todos os plugins" @@ -430,7 +476,6 @@ msgid "from %s" msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Tem a certeza que pretende copiar todos os plugins de %s?" @@ -440,7 +485,6 @@ msgstr "Páginas" msgid "Page" msgstr "Página" -#| msgid "Create" msgid "Create Page" msgstr "Criar Página" @@ -487,26 +531,20 @@ msgid "Select a valid page" msgstr "Selecione uma página válida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Opcional. Se fornecido vai ser automaticamente adicionado dentro de um novo plugin de texto." +msgstr "" +"Opcional. Se fornecido vai ser automaticamente adicionado dentro de um novo " +"plugin de texto." msgid "Provide a title for the new page." msgstr "Fornecer um titlo para a nóva página." @@ -514,7 +552,12 @@ msgstr "Fornecer um titlo para a nóva página." msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Não tem as permissões necessárias para adicionar uma página." @@ -611,17 +654,67 @@ msgstr "Garantir a" msgid "page" msgstr "página" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "apenas para utilizadores autenticados" + +msgid "for anonymous users only" +msgstr "apenas para utilizadores anónimos" + +msgid "Inherit from parent page" +msgstr "Herdar da página ascendente" + +msgid "Deny" +msgstr "Negar" + +msgid "Only this website" +msgstr "Apenas este site" + +msgid "Allow" +msgstr "Permitir" + +msgid "title" +msgstr "título" + +msgid "overwrite the title (html title tag)" +msgstr "sobrescrever o título (tag html 'title')" + +msgid "overwrite the title in the menu" +msgstr "sobrescrever o título no menu" + +msgid "description" +msgstr "descrição" + +msgid "The text displayed in search engines." +msgstr "O texto mostrado em motores de busca." + +msgid "redirect" +msgstr "redirecionar" + +msgid "The template used to render the content." +msgstr "O template usado para carregar o conteúdo." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "padrão" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Um identificador único que é usado com o templatetag page_url para ligar a esta página" +msgstr "" +"Um identificador único que é usado com o templatetag page_url para ligar a " +"esta página" msgid "pages" msgstr "páginas" -msgid "default" -msgstr "padrão" - msgid "slug" msgstr "slug" @@ -649,35 +742,44 @@ msgstr "a nível de página" msgid "frontend view restriction" msgstr "restrição de visualização pública" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Por favor, seleccione um utilizador ou grupo." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Os utilizadores não podem publicar uma página sem permissões para alterar a página. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem publicar uma página sem permissões para alterar a " +"página. É necessária a permissão de edição." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Os utilizadores não podem alterar as configurações de página avançadas sem permissões para alterar a página. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem alterar as configurações de página avançadas sem " +"permissões para alterar a página. É necessária a permissão de edição." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Os utilizadores não podem alterar as configurações de página sem permissões para alterar a página. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem alterar as configurações de página sem permissões " +"para alterar a página. É necessária a permissão de edição." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Os utilizadores não podem mover a página sem permissões para a alterar. É necessária a permissão de edição." +msgstr "" +"Os utilizadores não podem mover a página sem permissões para a alterar. É " +"necessária a permissão de edição." msgid "can recover any deleted page" msgstr "pode recuperar qualquer página excluída" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Se nenhum for selecionado, utilizador terá permissões dadas a todos os sites." +msgstr "" +"Se nenhum for selecionado, utilizador terá permissões dadas a todos os " +"sites." msgid "Page global permission" msgstr "Permissão global de página" @@ -691,7 +793,10 @@ msgstr "Permissão de página" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "A permissão para adicionar páginas requer também acesso aos filhos, ou descendentes, caso contrário a página adicionada não poderá ser modificada pelo seu criador." +msgstr "" +"A permissão para adicionar páginas requer também acesso aos filhos, ou " +"descendentes, caso contrário a página adicionada não poderá ser modificada " +"pelo seu criador." msgid "User (page)" msgstr "Utilizador (página)" @@ -735,7 +840,9 @@ msgstr "nome do espaço estático" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nome descritivo para identificar este espaço estático. Não é mostrado aos utilizadores." +msgstr "" +"Nome descritivo para identificar este espaço estático. Não é mostrado aos " +"utilizadores." msgid "placeholder code" msgstr "código do espaço" @@ -758,45 +865,6 @@ msgstr "espaços estáticos" msgid "A static placeholder with the same site and code already exists" msgstr "Um placeholder estático com o mesmo site e código já existe" -msgid "for logged in users only" -msgstr "apenas para utilizadores autenticados" - -msgid "for anonymous users only" -msgstr "apenas para utilizadores anónimos" - -msgid "Inherit from parent page" -msgstr "Herdar da página ascendente" - -msgid "Deny" -msgstr "Negar" - -msgid "Only this website" -msgstr "Apenas este site" - -msgid "Allow" -msgstr "Permitir" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "sobrescrever o título (tag html 'title')" - -msgid "overwrite the title in the menu" -msgstr "sobrescrever o título no menu" - -msgid "description" -msgstr "descrição" - -msgid "The text displayed in search engines." -msgstr "O texto mostrado em motores de busca." - -msgid "redirect" -msgstr "redirecionar" - -msgid "The template used to render the content." -msgstr "O template usado para carregar o conteúdo." - msgid "Advanced options" msgstr "Opções avançadas" @@ -804,7 +872,6 @@ msgid "Generic" msgstr "Genérico" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -814,65 +881,54 @@ msgstr "Não existem mais definições para este plugin. Clique em gravar." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Alterada" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Gravar" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Entre na interface de administração aqui" @@ -887,9 +943,8 @@ msgstr "Nome de utilizador:" msgid "Password:" msgstr "Senha:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Adicionar como página" +msgstr "" msgid "Change a page" msgstr "Modificar uma página" @@ -904,6 +959,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "Por favor, corrija o erro abaixo." msgstr[1] "Por favor, corrija os erros abaixo." +msgstr[2] "Por favor, corrija os erros abaixo." msgid "All permissions" msgstr "Todas as permissões" @@ -968,16 +1024,21 @@ msgstr "Colar" msgid "Paste" msgstr "Colar" -#| msgid "Save as new" msgid "Set as home" msgstr "Seleccionar como página de entrada" +msgid "Permissions" +msgstr "Permissões" + msgid "is restricted" msgstr "é restrita" msgid "last change by" msgstr "última modificação por" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -987,7 +1048,6 @@ msgstr "Lista de páginas" msgid "Search" msgstr "Pesquisa" -#| msgid "Page Title" msgid "Page Tree" msgstr "Árvore de páginas" @@ -1001,17 +1061,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navegação Principal" -#| msgid "Actions" msgid "Options" msgstr "Opções" @@ -1035,7 +1087,6 @@ msgstr "Confirma que pretende § esta página?" msgid "Reload" msgstr "Recarregar" -#| msgid "New Page" msgid "New node" msgstr "Novo nó" @@ -1049,10 +1100,6 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1073,30 +1120,15 @@ msgstr "Fechar" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Publicada" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Não publicada" - -msgid "Empty" -msgstr "Vazio" - -#| msgid "in menu" msgid "In menu" msgstr "No menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Não no menu" -#| msgid "New page" msgid "View page" msgstr "Ver página" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1113,12 +1145,18 @@ msgstr "no menu" msgid "not in menu" msgstr "não está no menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Configurações de página (SHIFT e clique para configurações avançadas)" -msgid "Permissions" -msgstr "Permissões" +msgid "This page has no preview!" +msgstr "Esta página não tem antevisão!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Está a ser redireccionada para:" msgid "Clipboard" msgstr "Área de transferência" @@ -1168,7 +1206,6 @@ msgstr "Realçar" msgid "Available plugins" msgstr "Plugins disponíveis" -#| msgid "Structure" msgid "Toggle structure" msgstr "Alternar estrutura" @@ -1182,7 +1219,6 @@ msgid "More" msgstr "Mais" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1194,7 +1230,6 @@ msgstr "Cancelar" msgid "The following error occured:" msgstr "Ocorreu o seguinte erro:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Acção com sucesso." @@ -1207,24 +1242,22 @@ msgstr "Confirma que pretende publicar esta página?" msgid "Plugin will be added here" msgstr "O plugin vai ser adicionado aqui" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Tem alterações por gravar." -#| msgid "Loading..." msgid "Loading" msgstr "Carregando" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Tem a certeza que pretende abandonar estas alterações?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "O formulário não pode ser carregado. Por favor, verifique que o serviço está a funcionar correctamente." +msgstr "" +"O formulário não pode ser carregado. Por favor, verifique que o serviço está" +" a funcionar correctamente." -#| msgid "Notify user" msgid "Most used" msgstr "Mais usado" @@ -1234,10 +1267,12 @@ msgstr "Atalhos" msgid "The page was changed in the meantime, reloading..." msgstr "Esta página foi alterada entretanto, recarregando..." +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "Mostrar este menu de ajuda" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Fechar/cancelar" @@ -1253,32 +1288,29 @@ msgstr "Abrir diálogo de \"Criação\"" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "Mover para o elemento anterior/próximo" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Editar plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Abrir menu de acções" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "O login falhou,Por favor verifique as suas credenciais e tente novamente." +msgstr "" +"O login falhou,Por favor verifique as suas credenciais e " +"tente novamente." msgid "Double-click to edit" msgstr "Duplo-clique para editar" @@ -1301,12 +1333,6 @@ msgstr "Maximizar" msgid "Drop a plugin here" msgstr "Largue aqui um plugin" -msgid "This page has no preview!" -msgstr "Esta página não tem antevisão!" - -msgid "It is being redirected to:" -msgstr "Está a ser redireccionada para:" - msgid "Installation successful!" msgstr "Instalação com sucesso" @@ -1347,15 +1373,6 @@ msgstr "Suporte" msgid "Documentation" msgstr "Documentação" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1364,15 +1381,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1397,11 +1405,7 @@ msgstr "" msgid "Next" msgstr "Próximo" -msgid "no content" -msgstr "sem conteúdo" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1412,7 +1416,9 @@ msgstr "Página não encontrada em %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Uma 'templatetag' não conseguiu encontrar a página com os argumentos `%(page_lookup)s`. O URL do pedido foi: http://%(host)s%(path)s" +msgstr "" +"Uma 'templatetag' não conseguiu encontrar a página com os argumentos " +"`%(page_lookup)s`. O URL do pedido foi: http://%(host)s%(path)s" msgid "Two columns" msgstr "Duas colunas" @@ -1425,7 +1431,8 @@ msgstr "nome de utilizador" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Obrigatório. Até 300 caracteres. Letras, números e os caracteres @/./+/-/_" +msgstr "" +"Obrigatório. Até 300 caracteres. Letras, números e os caracteres @/./+/-/_" msgid "Enter a valid username." msgstr "Introduza um nome de utilizador válido." @@ -1445,7 +1452,9 @@ msgstr "activo" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Determina se este utilizador deve ser tratado como estando activo. Desmarque esta opção em vez de eliminar contas." +msgstr "" +"Determina se este utilizador deve ser tratado como estando activo. Desmarque" +" esta opção em vez de eliminar contas." msgid "users" msgstr "utilizadores" @@ -1480,7 +1489,6 @@ msgstr "Artigos" msgid "Sample App" msgstr "App - exemplo" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1490,9 +1498,8 @@ msgstr "App de exemplo com permissões exluídas" msgid "Sample App 2" msgstr "App - exemplo 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "App - exemplo 2" msgid "Namespaced App" msgstr "Aplicação com escopo" @@ -1527,9 +1534,8 @@ msgstr "Menu estático 2" msgid "Static Menu3" msgstr "Menu estático 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Menu estático" msgid "Category" msgstr "Categoria" @@ -1556,12 +1562,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1579,7 +1583,9 @@ msgstr "Já foi atingido o número máximo de plugins para este espaço (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Já foi atingido o número máximo de plugins %(plugin_name)s para este espaço (%(limit)s)." +msgstr "" +"Já foi atingido o número máximo de plugins %(plugin_name)s para este espaço " +"(%(limit)s)." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1598,394 +1604,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/pt/LC_MESSAGES/djangojs.mo b/cms/locale/pt/LC_MESSAGES/djangojs.mo index 15e5da0eacf4ade7fc8d8b9c39d8361fa31caee8..abe738bcb832a4f8ecd18e9df35ae25065967243 100644 GIT binary patch delta 171 zcmcb^GMROP4(}F528O8&3=AGX>^0GHIj@1Pp`os^fr5dVm5JrVx8gcshu479HNKU{jU`Vdp!f=O$+6=q2ap+UY1585kN()?rj;PAn*x9K^WB)!160Ag8n_ zF~?RTPr=q!!9by=Mghz+)Kstsa;<\n" -"Language-Team: Portuguese (http://www.transifex.com/divio/django-cms/language/pt/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Vítor Figueiró , 2012\n" +"Language-Team: Portuguese (http://app.transifex.com/divio/django-cms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Tem a certeza que quer mudar de separador sem gravar a página primeiro?" diff --git a/cms/locale/pt_BR/LC_MESSAGES/django.mo b/cms/locale/pt_BR/LC_MESSAGES/django.mo index 843300608a292ec0b6e801d3753ad782f2ef3449..146beb57dd2e8bcbd12e2af05335223873800867 100644 GIT binary patch delta 10488 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 delta 9779 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, 2014 -# Cleber de Souza Corrêa , 2014 -# Diefferson Môro , 2018 -# Diego Ponci , 2016 -# Fábio C. Barrionuevo da Luz , 2011 -# Fábio C. Barrionuevo da Luz , 2011 -# Felipe Bessa Coelho , 2014 -# felipemocruha , 2013 -# felipemocruha , 2013 -# Guilherme Vierno , 2015 -# Henrique Bastos , 2013 -# João Luiz Lorencetti , 2015 -# Juliano Fischer Naves <>, 2012 -# Julio Lucchese , 2019 -# Livio Ribeiro , 2013 -# Marcelo J. Both , 2012 -# Marcelo Soares , 2015 -# Massa , 2015 -# Rafaela Santos , 2019 -# Rafael Duarte Trevisan , 2013 -# Rodrigo de Almeida Sottomaior Macedo , 2015 -# Rodrigo , 2014-2015 -# Welligton Miguel , 2020 +# Julio Lucchese , 2023 +# Welligton Miguel , 2023 +# Diego Ponci , 2023 +# Rafaela Santos , 2023 +# Fabian Braun , 2023 +# Diefferson Môro , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/divio/django-cms/language/pt_BR/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Diefferson Môro , 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/divio/teams/58664/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Todos" @@ -70,7 +53,8 @@ msgstr "Título da página" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Sobrescreve o que será exibido no topo do seu navegador ou nos favoritos" +msgstr "" +"Sobrescreve o que será exibido no topo do seu navegador ou nos favoritos" msgid "Description meta tag" msgstr "Descrição da tag meta" @@ -78,9 +62,6 @@ msgstr "Descrição da tag meta" msgid "A description of the page used by search engines." msgstr "Uma descrição da página as vezes utilizada por sites de busca." -msgid "Slug must not be empty." -msgstr "Slug não pode ser vazio." - msgid "Page type" msgstr "Tipo de página" @@ -93,7 +74,6 @@ msgstr "Sobrescreva a URL" msgid "Keep this field empty if standard path should be used." msgstr "Se o caminho padrão deve ser utilizado, deixe este campo em branco." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -115,11 +95,9 @@ msgstr "visibilidade do menu" msgid "limit when this page is visible in the menu" msgstr "limite quando esta página é visível no menu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -135,7 +113,6 @@ msgstr "Configurações da aplicação" msgid "A page with this reverse URL id exists already." msgstr "Já existe uma página com esta URL reversa." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Valor inválido da configuração da aplicação" @@ -172,32 +149,44 @@ msgstr "Excluir" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Usuários não podem criar uma página sem permissão para mudar a página criada. São necessárias permissões de edição." +msgstr "" +"Usuários não podem criar uma página sem permissão para mudar a página " +"criada. São necessárias permissões de edição." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Usuários não podem deletar uma página sem permissões para mudar a página. São necessárias permissões de edição." +msgstr "" +"Usuários não podem deletar uma página sem permissões para mudar a página. " +"São necessárias permissões de edição." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Usuários não podem definir as permissões da página sem permissões para alterar uma página. São necessárias permissões de edição." +msgstr "" +"Usuários não podem definir as permissões da página sem permissões para " +"alterar uma página. São necessárias permissões de edição." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Usuários não podem deletar as permissões da página sem permissões para alterar uma página. São necessárias permissões de edição." +msgstr "" +"Usuários não podem deletar as permissões da página sem permissões para " +"alterar uma página. São necessárias permissões de edição." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Os usuários não podem excluir permissões de página sem permissões para alterar as permissões. Edite as permissões necessárias." +msgstr "" +"Os usuários não podem excluir permissões de página sem permissões para " +"alterar as permissões. Edite as permissões necessárias." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Os usuários não podem excluir permissões de página sem permissões para alterar as permissões. Edite as permissões necessárias." +msgstr "" +"Os usuários não podem excluir permissões de página sem permissões para " +"alterar as permissões. Edite as permissões necessárias." #, python-format msgid "Invalid plugin type '%s'" @@ -209,7 +198,6 @@ msgstr "O idioma deve ser definido para um idioma suportado pelo sistema!" msgid "Parent plugin language must be same as language!" msgstr "O idioma do plugin pai deve ser o mesmo idioma!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "O placeholder do plugin pai deve ser o mesmo placeholder!" @@ -224,7 +212,6 @@ msgid "The page is not eligible to be home." msgstr "A página não é elegível para ser o início." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -241,16 +228,19 @@ msgstr "Não existe nenhum objeto de '%(name)s' com chave primária '%(key)r'" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Erro! Você não tem permissão para mover esta página. Por favor, recarregue a página" +msgstr "" +"Erro! Você não tem permissão para mover esta página. Por favor, recarregue a" +" página" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Erro! Você não tem permissão para copiar essa página." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Erro! A página que você está colando não está traduzida em nenhum dos idiomas configurados pelo site de destino." +msgstr "" +"Erro! A página que você está colando não está traduzida em nenhum dos " +"idiomas configurados pelo site de destino." msgid "You do not have permission to edit this page" msgstr "Você não tem permissão para editar essa página" @@ -276,16 +266,27 @@ msgstr "O template foi alterado com sucesso." msgid "You do not have permission to copy these plugins." msgstr "Você não tem permissão para copiar esses plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Você não tem permissão para excluir essa página." +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Foram excluídos título e plugins com a língua '%(language)s'" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Você não tem permissão para modificar o status de navegação desta página" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Vazio" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Ver restrição" @@ -303,7 +304,6 @@ msgstr "Você não possui permissão para editar este item." msgid "You do not have permission to add a plugin" msgstr "Você não tem permissão para adicionar um plugin." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Você não tem permissão para copiar este espaço reservado." @@ -313,18 +313,15 @@ msgstr "Plugin não encontrado" msgid "You do not have permission to edit this plugin" msgstr "Você não tem permissão para editar esse plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Você não tem permissão para colar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Você não tem permissão para colar este espaço reservado." msgid "You have no permission to move this plugin" msgstr "Você não tem permissão para mover esse plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Você não tem permissão para cortar este plugin" @@ -354,6 +351,47 @@ msgstr "Permissões de usuário e grupo" msgid "Page permissions management" msgstr "Gerenciament de permissões de página" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Pré-visualizar" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Nenhum apphook \"%r\" registrado foi encontrado" @@ -374,7 +412,9 @@ msgstr "Criar Pseudônimo" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Esta é uma referência do pseudônimo, você pode editar o conteúdo apenas na página %(page_title)s" +msgstr "" +"Esta é uma referência do pseudônimo, você pode editar o conteúdo apenas na " +"página %(page_title)s" msgid "Create" msgstr "Criar" @@ -382,9 +422,6 @@ msgstr "Criar" msgid "Edit" msgstr "Editar" -msgid "Preview" -msgstr "Pré-visualizar" - msgid "Structure" msgstr "Estrutura" @@ -428,15 +465,12 @@ msgstr "Logout" msgid "Language" msgstr "Idioma" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Adicionar Tradução" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Excluir Tradução" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Copiar todos os plugins" @@ -445,7 +479,6 @@ msgid "from %s" msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Tem certeza de que deseja copiar todos os plugins%s?" @@ -455,7 +488,6 @@ msgstr "Páginas" msgid "Page" msgstr "Página" -#| msgid "Create" msgid "Create Page" msgstr "Criar Página" @@ -502,26 +534,23 @@ msgid "Select a valid page" msgstr "Selecione uma página válida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "A página %(conflict_page)s tem a mesma URL '%(url)s' como a página atual \"%(instance)s\"." +msgstr "" +"A página %(conflict_page)s tem a mesma URL '%(url)s' como a página atual " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "A página %(conflict_page)s tem a mesma URL '%(url)s' como a página atual." +msgstr "" +"A página %(conflict_page)s tem a mesma URL '%(url)s' como a página atual." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Opcional. Se fornecido, será adicionado automaticamente em um novo plugin de texto." +msgstr "" +"Opcional. Se fornecido, será adicionado automaticamente em um novo plugin de" +" texto." msgid "Provide a title for the new page." msgstr "Forneça um título para a nova página" @@ -529,7 +558,12 @@ msgstr "Forneça um título para a nova página" msgid "Leave empty for automatic slug, or override as required." msgstr "Deixe em branco para slug automático, ou sobrescreva se necessário." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Você não tem as permissões necessárias para adicionar uma página." @@ -626,17 +660,67 @@ msgstr "Garantir a" msgid "page" msgstr "página" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "somente para usuários logados" + +msgid "for anonymous users only" +msgstr "apenas para usuários anônimos" + +msgid "Inherit from parent page" +msgstr "Herdar da página pai" + +msgid "Deny" +msgstr "Negar" + +msgid "Only this website" +msgstr "Somente este website" + +msgid "Allow" +msgstr "Permitir" + +msgid "title" +msgstr "título" + +msgid "overwrite the title (html title tag)" +msgstr "sobrescrever o título (tag html 'title')" + +msgid "overwrite the title in the menu" +msgstr "sobrescrever o título no menu" + +msgid "description" +msgstr "descrição" + +msgid "The text displayed in search engines." +msgstr "O texto exibido nos mecanismos de busca." + +msgid "redirect" +msgstr "redirecionar" + +msgid "The template used to render the content." +msgstr "O template usado para carregar o conteúdo." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "padrão" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Um identificador único que é utilizado no template para linkar para esta página." +msgstr "" +"Um identificador único que é utilizado no template para linkar para esta " +"página." msgid "pages" msgstr "páginas" -msgid "default" -msgstr "padrão" - msgid "slug" msgstr "slug" @@ -664,35 +748,43 @@ msgstr "a nível de página" msgid "frontend view restriction" msgstr "frontend view restriction" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Por favor, selecione um usuário ou grupo." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Os usuários não podem publicar uma página sem permissões para alterar a página. Edite as permissões necessárias." +msgstr "" +"Os usuários não podem publicar uma página sem permissões para alterar a " +"página. Edite as permissões necessárias." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Os usuários não podem alterar as configurações avançadas da página sem permissão para alterar a página. Edite as permissões necessárias." +msgstr "" +"Os usuários não podem alterar as configurações avançadas da página sem " +"permissão para alterar a página. Edite as permissões necessárias." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Os usuários não podem alterar as permissões da página sem permissão para alterar a página. Edite as permissões necessárias." +msgstr "" +"Os usuários não podem alterar as permissões da página sem permissão para " +"alterar a página. Edite as permissões necessárias." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Usuários não podem mover uma página sem permissões para alterar a página. Permissões de edição necessárias." +msgstr "" +"Usuários não podem mover uma página sem permissões para alterar a página. " +"Permissões de edição necessárias." msgid "can recover any deleted page" msgstr "pode recuperar qualquer página excluída" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Se nenhum for selecionado, usuário terá permissões dadas a todos os sites." +msgstr "" +"Se nenhum for selecionado, usuário terá permissões dadas a todos os sites." msgid "Page global permission" msgstr "Permissão global de página" @@ -706,7 +798,10 @@ msgstr "Permissão de página" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "A permissão para adicionar páginas requer também acesso aos filhos, ou descendentes, caso contrário, a página adicionada não poderá ser modificada pelo seu criador." +msgstr "" +"A permissão para adicionar páginas requer também acesso aos filhos, ou " +"descendentes, caso contrário, a página adicionada não poderá ser modificada " +"pelo seu criador." msgid "User (page)" msgstr "Usuário (página)" @@ -750,7 +845,9 @@ msgstr "nome do placeholder" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Nome descritivo para identificar este placeholder. Não é exibido aos usuários." +msgstr "" +"Nome descritivo para identificar este placeholder. Não é exibido aos " +"usuários." msgid "placeholder code" msgstr "código do placeholder" @@ -773,45 +870,6 @@ msgstr "placeholders estáticos" msgid "A static placeholder with the same site and code already exists" msgstr "Um placeholder estático com o mesmo site e código já existe" -msgid "for logged in users only" -msgstr "somente para usuários logados" - -msgid "for anonymous users only" -msgstr "apenas para usuários anônimos" - -msgid "Inherit from parent page" -msgstr "Herdar da página pai" - -msgid "Deny" -msgstr "Negar" - -msgid "Only this website" -msgstr "Somente este website" - -msgid "Allow" -msgstr "Permitir" - -msgid "title" -msgstr "título" - -msgid "overwrite the title (html title tag)" -msgstr "sobrescrever o título (tag html 'title')" - -msgid "overwrite the title in the menu" -msgstr "sobrescrever o título no menu" - -msgid "description" -msgstr "descrição" - -msgid "The text displayed in search engines." -msgstr "O texto exibido nos mecanismos de busca." - -msgid "redirect" -msgstr "redirecionar" - -msgid "The template used to render the content." -msgstr "O template usado para carregar o conteúdo." - msgid "Advanced options" msgstr "Opções avançadas" @@ -819,75 +877,65 @@ msgid "Generic" msgstr "Genérico" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "O %(name)s \"%(obj)s\" foi alterado com sucesso." msgid "There are no further settings for this plugin. Please press save." -msgstr "Não há mais nenhuma configuração para este plugin. Por favor pressione salvar." +msgstr "" +"Não há mais nenhuma configuração para este plugin. Por favor pressione " +"salvar." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Alterado" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Salvar" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Entre na interface de administração aqui" @@ -902,9 +950,8 @@ msgstr "Nome de usuário:" msgid "Password:" msgstr "Senha:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Adicionar uma página" +msgstr "" msgid "Change a page" msgstr "Modificar uma página" @@ -919,6 +966,7 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "Por favor, corrija o erro abaixo." msgstr[1] "Por favor, corrija os erros abaixo." +msgstr[2] "Por favor, corrija os erros abaixo." msgid "All permissions" msgstr "Todas as permissões" @@ -978,21 +1026,26 @@ msgid "Copy" msgstr "Copiar" msgid "Cut" -msgstr "Colar" +msgstr "Recortar" msgid "Paste" msgstr "Colar" -#| msgid "Save as new" msgid "Set as home" msgstr "Definir como início" +msgid "Permissions" +msgstr "Permissões" + msgid "is restricted" msgstr "é restrita" msgid "last change by" msgstr "última alteração por" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -1002,7 +1055,6 @@ msgstr "Lista de páginas" msgid "Search" msgstr "Buscar" -#| msgid "Page Title" msgid "Page Tree" msgstr "Árvore de Páginas" @@ -1014,19 +1066,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Restaurar remoção de %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Restaurar remoção de %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Navegação Principal" -#| msgid "Actions" msgid "Options" msgstr "Opções" @@ -1042,7 +1089,9 @@ msgstr "Erro:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Esta página não pode ser copiada porque uma aplicação está atrelada à ela. Veja as Configurações avançadas da Página para gerenciar apphooks." +msgstr "" +"Esta página não pode ser copiada porque uma aplicação está atrelada à ela. " +"Veja as Configurações avançadas da Página para gerenciar apphooks." msgid "Are you sure you want to § this page?" msgstr "Você tem certeza que deseja § essa página?" @@ -1050,7 +1099,6 @@ msgstr "Você tem certeza que deseja § essa página?" msgid "Reload" msgstr "Recarregar" -#| msgid "New Page" msgid "New node" msgstr "Novo nó" @@ -1064,17 +1112,17 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\nAinda não há %(object)sao redor ainda\n
    \nAdicionar %(object)sagora." +msgstr "" +"\n" +"Ainda não há %(object)sao redor ainda\n" +"
    \n" +"Adicionar %(object)sagora." msgid "Copy options" msgstr "Opções de cópia" @@ -1088,30 +1136,15 @@ msgstr "Fechar" msgid "Legend" msgstr "Legenda" -#| msgid "published" -msgid "Published" -msgstr "Publicado" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Não publicado" - -msgid "Empty" -msgstr "Vazio" - -#| msgid "in menu" msgid "In menu" msgstr "No menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Fora do menu" -#| msgid "New page" msgid "View page" msgstr "Visualizar página" -#| msgid "softroot" msgid "Softroot" msgstr "Raiz leve" @@ -1128,12 +1161,18 @@ msgstr "no menu" msgid "not in menu" msgstr "não está no menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Configurações da página (SHIT-click para configurações avançadas)" -msgid "Permissions" -msgstr "Permissões" +msgid "This page has no preview!" +msgstr "A página não possui pré-visualização!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "será redirecionado para:" msgid "Clipboard" msgstr "Área de transferência" @@ -1183,7 +1222,6 @@ msgstr "Realçar" msgid "Available plugins" msgstr "Plugins disponíveis" -#| msgid "Structure" msgid "Toggle structure" msgstr "Alternar estrutura" @@ -1197,11 +1235,12 @@ msgid "More" msgstr "Mais" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Versão de desenvolvimento utilizando django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Versão de desenvolvimento utilizando django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Cancelar" @@ -1209,7 +1248,6 @@ msgstr "Cancelar" msgid "The following error occured:" msgstr "Ocorreu o seguinte erro:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Ação bem sucedida." @@ -1222,24 +1260,22 @@ msgstr "Você tem certeza que deseja publicar está página?" msgid "Plugin will be added here" msgstr "Plugin será adicionado aqui" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Você tem alterações não salvas." -#| msgid "Loading..." msgid "Loading" msgstr "Carregando" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Tem certeza que deseja descartar estas alterações?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "O formulário não foi carregado. Por favor verifique que o servidor está em execução." +msgstr "" +"O formulário não foi carregado. Por favor verifique que o servidor está em " +"execução." -#| msgid "Notify user" msgid "Most used" msgstr "Mais usado" @@ -1249,10 +1285,12 @@ msgstr "Atalhos" msgid "The page was changed in the meantime, reloading..." msgstr "A página foi alterada enquanto isso, recarregando .." +msgid "CMS-wide Shortcuts" +msgstr "CMS-wide atalhos" + msgid "Bring up this help dialog" msgstr "Abra este diálogo de ajuda" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Fechar/cancelar" @@ -1268,32 +1306,29 @@ msgstr "Abra a caixa de diálogo \"Criar\"" msgid "Focus on Toolbar" msgstr "Foco na barra de ferramentas" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Concentre-se em espaço reservado" msgid "Move to next/previous element" msgstr "Mover para o elemento seguinte/anterior" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Concentre-se em plugins de espaço reservado" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Editar plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Abrir menu de ações" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Expandir/recolher" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Login falhou. Por favor, verifique suas credenciais e tente novamente." +msgstr "" +"Login falhou. Por favor, verifique suas credenciais e tente" +" novamente." msgid "Double-click to edit" msgstr "Clique duas vezes para editar" @@ -1316,12 +1351,6 @@ msgstr "Maximizar" msgid "Drop a plugin here" msgstr "Solte um plugin aqui" -msgid "This page has no preview!" -msgstr "A página não possui pré-visualização!" - -msgid "It is being redirected to:" -msgstr "será redirecionado para:" - msgid "Installation successful!" msgstr "Instalação finalizada com sucesso!" @@ -1336,14 +1365,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nSeja bem vindo ao Django CMS %(cms_version)s." +msgstr "" +"\n" +"Seja bem vindo ao Django CMS %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nAdicione a primeira página para continuar." +msgstr "" +"\n" +"Adicione a primeira página para continuar." #, python-format msgid "" @@ -1351,7 +1384,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavaScript parece que está desabilitado, por favor\nadicione uma página manualmente." +msgstr "" +"\n" +"JavaScript parece que está desabilitado, por favor\n" +"adicione uma página manualmente." msgid "Installation Notes" msgstr "Notas de instalação" @@ -1362,15 +1398,6 @@ msgstr "Suporte" msgid "Documentation" msgstr "Documentação" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1378,16 +1405,12 @@ msgid "" " static files.

    \n" " " msgstr "" +"\n" +"

    Se não vê o logotipo do django CMS no topo, certifique-se\n" +" que fez link da pasta static/cms para os seus\n" +" ficheiros estáticos.

    \n" +" " -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1396,6 +1419,12 @@ msgid "" "

    \n" " " msgstr "" +"\n" +"

    Está a ver esta mensagem porque tem \n" +" DEBUG = True no seu ficheiro de configurações django e\n" +" ainda não adicionou nenhuma página.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Seja bem vindo ao Django CMS" @@ -1407,16 +1436,13 @@ msgid "Back" msgstr "Voltar" msgid "Please choose an option from below to proceed to the next step." -msgstr "Por favor, escolha uma opção abaixo para prosseguir para o próximo passo." +msgstr "" +"Por favor, escolha uma opção abaixo para prosseguir para o próximo passo." msgid "Next" msgstr "Próximo" -msgid "no content" -msgstr "sem conteúdo" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1427,7 +1453,9 @@ msgstr "Página não encontrada em %(domain)s " msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "A marca de modelo (template tag) não conseguiu encontrar a página com os argumentos de pesquisa ` %(page_lookup)s\n`. A URL do requisitada foi: http://%(host)s%(path)s" +msgstr "" +"A marca de modelo (template tag) não conseguiu encontrar a página com os argumentos de pesquisa ` %(page_lookup)s\n" +"`. A URL do requisitada foi: http://%(host)s%(path)s" msgid "Two columns" msgstr "Duas colunas" @@ -1440,7 +1468,8 @@ msgstr "usuário" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Obrigatório. 300 caracteres ou menos. Letras, números e caracteres @/./+/-/_" +msgstr "" +"Obrigatório. 300 caracteres ou menos. Letras, números e caracteres @/./+/-/_" msgid "Enter a valid username." msgstr "Digite um usuário válido" @@ -1460,7 +1489,9 @@ msgstr "ativo" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Indica que o usuário será tratado como ativo. Ao invés de excluir contas de usuário, desmarque isso." +msgstr "" +"Indica que o usuário será tratado como ativo. Ao invés de excluir contas de " +"usuário, desmarque isso." msgid "users" msgstr "usuario" @@ -1495,9 +1526,8 @@ msgstr "Artigos" msgid "Sample App" msgstr "Aplicação de exemplo" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" -msgstr "" +msgstr "Aplicação de exemplo configurável" msgid "Sample App with excluded permissions" msgstr "Aplicativo de exemplo com permissões excluidas" @@ -1505,9 +1535,8 @@ msgstr "Aplicativo de exemplo com permissões excluidas" msgid "Sample App 2" msgstr "Aplicativo modelo 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Exemplo de aplicação 3" +msgstr "Aplicativo modelo 2" msgid "Namespaced App" msgstr "Aplicativo com namespace" @@ -1542,9 +1571,8 @@ msgstr "Menu Estático 2" msgid "Static Menu3" msgstr "Menu Estático 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Menu Estático4" +msgstr "Menu Estático" msgid "Category" msgstr "Categoria" @@ -1571,12 +1599,10 @@ msgid "UserSettings" msgstr "Configurações de usuário" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "" +msgstr "Adicionar plugin ao espaço de conteúdo \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Adicionar plugin para %(plugin_name)s" @@ -1594,7 +1620,9 @@ msgstr "Este espaço reservado já tem o número máximo de plugins (%s)" msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Este espaço reservado já tem o número máximo (%(limit)s) de plugins permitidos %(plugin_name)s." +msgstr "" +"Este espaço reservado já tem o número máximo (%(limit)s) de plugins " +"permitidos %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1604,7 +1632,9 @@ msgstr "Não foi possível encontrar o módulo CMS_REQUEST_IP_RESOLVER: \"{0}\". msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Não foi possível encontrar a função CMS_REQUEST_IP_RESOLVER: \"{0}\" no módulo \"{1}\"." +msgstr "" +"Não foi possível encontrar a função CMS_REQUEST_IP_RESOLVER: \"{0}\" no " +"módulo \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1613,394 +1643,3 @@ msgstr "Criar uma nova instância de %s." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Um assistente já foi registrado para o modelo: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo b/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo index cb49344362415b3d3d032edd07e7d603439b006c..92b51ada20b6668ec37f5e64499060d7b954a9b4 100644 GIT binary patch delta 169 zcmey#vYvH<4(~xm28O8&3=H8QJkfGFuYsG^sEAZB7-zC(I$VrGtBa(=Fzj)IYaq1j{|MjhtFf`ZA>jGJ7ItrZG#N{bS6 zY&G%}Y;6?`6l!V|z$`;e1$!XZ3dmCgiL0prS*i+#24DbDYp-AkRA4k&jwu=d#RM#K delta 115 zcmZ3_`jcgX4sSOj1H)7X28M7TR-9\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/divio/django-cms/language/pt_BR/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Diego Ponci , 2016\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/divio/django-cms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Você tem certeza que deseja trocar as abas sem salvar o conteúdo da página primeiro?" diff --git a/cms/locale/pt_PT/LC_MESSAGES/django.mo b/cms/locale/pt_PT/LC_MESSAGES/django.mo index d9e7d40496c92e67e65a03a1ac9e1adab9c00209..7626af15750a4293caea391a7be8b70e9f859bda 100644 GIT binary patch literal 25682 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 aGxp@Z`tZ1kk>fF$n416>Z3la<67%1HU&4<7 diff --git a/cms/locale/pt_PT/LC_MESSAGES/django.po b/cms/locale/pt_PT/LC_MESSAGES/django.po index f6d4f9a873e..297d44f43e3 100644 --- a/cms/locale/pt_PT/LC_MESSAGES/django.po +++ b/cms/locale/pt_PT/LC_MESSAGES/django.po @@ -3,31 +3,30 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Francisco Cunha , 2020 -# Mike C. , 2014 +# Francisco Jesus , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/divio/django-cms/language/pt_PT/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Francisco Jesus , 2023\n" +"Language-Team: Portuguese (Portugal) (https://app.transifex.com/divio/teams/58664/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" msgid "All" msgstr "Todos" msgid "Copy permissions" -msgstr "Copiar permissões" +msgstr "" msgid "Title" -msgstr "Título" +msgstr "" msgid "The default title" msgstr "O título predefinido" @@ -39,13 +38,13 @@ msgid "The part of the title that is used in the URL" msgstr "A parte do título que é utilizada no URL" msgid "Menu Title" -msgstr "Título do Menu" +msgstr "" msgid "Overwrite what is displayed in the menu" msgstr "Alterar o que é mostrado no menu" msgid "Page Title" -msgstr "Título da Página" +msgstr "" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" @@ -57,56 +56,53 @@ msgstr "Meta Tag de descrição" msgid "A description of the page used by search engines." msgstr "Uma descrição da página para ser usada por motores de busca." -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "Tipo de página" msgid "Page Types" -msgstr "Tipos de Página" +msgstr "" msgid "Overwrite URL" msgstr "Alterar URL" msgid "Keep this field empty if standard path should be used." -msgstr "Manter este campo vazio para o caminho predefinido ser intencionalmente usado." +msgstr "" +"Manter este campo vazio para o caminho predefinido ser intencionalmente " +"usado." -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" msgstr "" +"Todas as páginas hierarquicamente acima não serão mostradas na navegação" msgid "Redirect" -msgstr "Reencaminhamento" +msgstr "" msgid "Redirects to this URL." -msgstr "Reencaminha para este URL." +msgstr "" msgid "Start typing..." -msgstr "Começar a escrever" +msgstr "" msgid "menu visibility" -msgstr "" +msgstr "visibilidade de menu" msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "limitar quando esta página é visível no menu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" msgid "Application" -msgstr "Aplicação" +msgstr "" msgid "Hook application to this page." -msgstr "" +msgstr "Aplicação Hook para esta página" msgid "Application configurations" msgstr "Configurações da Aplicação" @@ -114,7 +110,6 @@ msgstr "Configurações da Aplicação" msgid "A page with this reverse URL id exists already." msgstr "Uma página com este id de Reverse URL já existe." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Valor inválido para configuração de aplicação" @@ -122,339 +117,395 @@ msgid "An application instance using this configuration already exists." msgstr "Uma aplicação a utilizar esta configuração já existe." msgid "An application instance with this name already exists." -msgstr "" +msgstr "Já existe uma aplicação com este nome." msgid "You can't move the home page inside another page" -msgstr "" +msgstr "Não pode mover a página home para dentro de uma outra página." msgid "Yes" -msgstr "" +msgstr "Sim" msgid "No" -msgstr "" +msgstr "Não" msgid "user" -msgstr "utilizador" +msgstr "" msgid "can_view" -msgstr "" +msgstr "can_view" msgid "Add" -msgstr "Adicionar" +msgstr "" msgid "Change" -msgstr "Modificar" +msgstr "" msgid "Delete" -msgstr "Remover" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." msgstr "" +"Os utilizadores não podem criar uma página sem permissões para alterar as " +"paginas criadas. Alterar as permissões necessárias." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Os utilizadores não podem apagar uma página sem permissões para alterar a " +"mesma. Alterar as permissões necessárias." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." msgstr "" +"Os utilizadores não podem alterar uma página sem permissões para alterar a " +"mesma. Alterar as permissões necessárias." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." msgstr "" +"Os utilizadores não podem apagar permissões de página sem permissões para " +"alterar a mesma página. Alterar as permissões necessárias." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." msgstr "" +"Os utilizadores não podem criar permissões sem permissões para alterar as " +"permissões criadas. Alterar as permissões necessárias." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." msgstr "" +"Os utilizadores não podem apagar permissões sem permissões para alterar " +"permissões. Alterar as permissões necessárias." #, python-format msgid "Invalid plugin type '%s'" -msgstr "" +msgstr "Tipo inválido de plugin '%s'" msgid "Language must be set to a supported language!" msgstr "" msgid "Parent plugin language must be same as language!" -msgstr "" +msgstr "O idioma do plugin deve ser o mesmo da linguagem global!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "" +msgstr "O espaço reservado do plugin dependente deve ser o mesmo do anterior!" #, python-format msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "Definições Avançadas" +msgstr "" msgid "The page is not eligible to be home." -msgstr "" +msgstr "Esta página não pode ser página inicial." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" #, python-format msgid "Cannot delete %(name)s" -msgstr "Não é possível eliminar %(name)s" +msgstr "" msgid "Are you sure?" msgstr "" #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" +msgstr "%(name)s objeto com chave primária %(key)r não existe." msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" +"Erro! Não tem permissões para mover esta página. Por favor recarregue a " +"página" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." -msgstr "" +msgstr "Erro! Não tem permissão para copiar esta página." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." msgstr "" +"Erro! A página que está a colar não está traduzida em quaisquer dos idiomas " +"configurados no site." msgid "You do not have permission to edit this page" -msgstr "Não tem permissões para editar esta página" +msgstr "" msgid "Add Page Copy" -msgstr "Adicionar Cópia de Página" +msgstr "" msgid "New sub page" -msgstr "" +msgstr "Nova sub página" msgid "New page" -msgstr "" +msgstr "Nova página" msgid "Database error" -msgstr "Erro de Base de Dados" +msgstr "" msgid "Template not valid" -msgstr "" +msgstr "Template não válido" msgid "The template was successfully changed" -msgstr "" +msgstr "O template foi alterado com sucesso" msgid "You do not have permission to copy these plugins." -msgstr "" +msgstr "Não tem permissão para copiar estes plugins." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "" +msgstr "Não tem permissão para apagar esta página" #, python-format msgid "Title and plugins with language %(language)s was deleted" +msgstr "Títulos e plugins com o idioma %(language)s foram apagados" + +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "Create Content" msgstr "" msgid "View restriction" -msgstr "Ver restrição" +msgstr "" msgid "View restrictions" -msgstr "Ver restrições" +msgstr "" #, python-format msgid "Field %s not found" -msgstr "Campo %s não encontrado" +msgstr "" msgid "You do not have permission to edit this item" -msgstr "Não tem permissões para editar este item" +msgstr "" msgid "You do not have permission to add a plugin" -msgstr "Não tem permissões para adicionar plugins" +msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." -msgstr "" +msgstr "Não tem permissão para copiar este espaço de conteúdo." msgid "Plugin not found" -msgstr "" +msgstr "Plugin não encontrado" msgid "You do not have permission to edit this plugin" -msgstr "" +msgstr "Não tem permissão para editar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" -msgstr "" +msgstr "Não tem permissão para colar este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" -msgstr "" +msgstr "Não tem permissão para colar este espaço de conteúdo" msgid "You have no permission to move this plugin" -msgstr "" +msgstr "Não tem permissão para mover este plugin" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" -msgstr "" +msgstr "Não tem permissão para cortar este plugin" msgid "You do not have permission to delete this plugin" -msgstr "" +msgstr "Não tem permissão para apagar este plugin" #, python-format msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "O plugin %(name)s \"%(obj)s\" foi eliminado com sucesso." msgid "You do not have permission to clear this placeholder" -msgstr "" +msgstr "Não tem permissão para limpar este espaço de conteúdo" #, python-format msgid "The placeholder \"%(obj)s\" was cleared successfully." -msgstr "" +msgstr "O espaço de conteúdo \"%(obj)s\" foi limpo com sucesso." msgid "placeholder" -msgstr "" +msgstr "espaço de conteúdo" msgid "Page permissions" -msgstr "Permissões da página" +msgstr "" msgid "User & Group permissions" -msgstr "Permissões de Utilizadores & Grupos" +msgstr "" msgid "Page permissions management" -msgstr "Gestão de permissões de páginas" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" #, python-format -msgid "No registered apphook \"%r\" found" +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Pré-visualizar" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" msgstr "" +#, python-format +msgid "No registered apphook \"%r\" found" +msgstr "Nenhum apphook \"%r\" encontrado" + msgid "django CMS" -msgstr "django CMS" +msgstr "" msgid "Placeholder" -msgstr "" +msgstr "espaço de conteúdo" msgid "Alias" -msgstr "" +msgstr "Pseudónimo" msgid "Create Alias" -msgstr "" +msgstr "Criar Pseudónimo" #, python-format msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." msgstr "" +"Isto é uma referência do pseudónimo. O seu conteúdo pode ser alterado apenas" +" na página %(page_title)s" msgid "Create" -msgstr "" +msgstr "Criar" msgid "Edit" -msgstr "Editar" - -msgid "Preview" msgstr "" msgid "Structure" -msgstr "Estrutura" +msgstr "" msgid "Content" -msgstr "Contéudo" +msgstr "" msgid "Sites" -msgstr "Sites" +msgstr "" msgid "Admin Sites" -msgstr "Sites de Administração" +msgstr "" msgid "Administration" -msgstr "Administração" +msgstr "" msgid "User settings" -msgstr "Definições de Utilizador" +msgstr "" msgid "Clipboard..." -msgstr "" +msgstr "Área de Transferência..." msgid "Clear clipboard" -msgstr "" +msgstr "Limpar Área de Transferência" msgid "Disable toolbar" -msgstr "" +msgstr "Desativar barra de ferramentas" msgid "Shortcuts..." -msgstr "" +msgstr "Atalhos..." msgid "Users" -msgstr "Utilizadores" +msgstr "" #, python-format msgid "Logout %s" -msgstr "Terminar %s" +msgstr "" msgid "Logout" -msgstr "Sair" +msgstr "" msgid "Language" -msgstr "Idioma" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" -msgstr "" +msgstr "Adicionar tradução" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" -msgstr "" +msgstr "Apagar Tradução" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" #, python-format msgid "from %s" -msgstr "" +msgstr "de %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" msgid "Pages" -msgstr "Páginas" +msgstr "" msgid "Page" -msgstr "Página" +msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" msgid "New Page" -msgstr "Nova Página" +msgstr "" msgid "New Sub Page" -msgstr "Nova Sub Página" +msgstr "" msgid "Duplicate this Page" -msgstr "Duplicar esta Página" +msgstr "" msgid "Edit this Page" -msgstr "Editar esta Página" +msgstr "" msgid "Page settings" -msgstr "Definições da página" +msgstr "" msgid "Advanced settings" -msgstr "Definições Avançadas" +msgstr "" msgid "Templates" msgstr "" @@ -469,152 +520,204 @@ msgid "Delete page" msgstr "" msgid "Create a new page next to the current page." -msgstr "" +msgstr "Criar uma nova página a seguir á página atual." msgid "Create a page below the current page." -msgstr "" +msgstr "Criar uma página por baixo da página atual." msgid "Select a valid site" -msgstr "" +msgstr "Escolha um site válido" msgid "Select a valid page" -msgstr "" +msgstr "Escolha uma página válida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" +"A página %(conflict_page)s tem o mesmo URL '%(url)s\" que a página atual " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" +"A página %(conflict_page)s tem o mesmo url '%(url)s' que a página atual." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." msgstr "" +"Opcional. Se fornecido, será automaticamente adicionado a um novo plugin de " +"texto." msgid "Provide a title for the new page." -msgstr "" +msgstr "Forneça um titulo para a sua nova página." msgid "Leave empty for automatic slug, or override as required." +msgstr "Deixe em branco para slug automático ou preencha conforme necessário." + +msgid "Cannot automatically create slug. Please provide one manually." msgstr "" -#| msgid "You do not have permission to add a plugin" -msgid "You don't have the permissions required to add a page." +msgid "Please provide a valid slug." msgstr "" +msgid "You don't have the permissions required to add a page." +msgstr "Não tem permissões para adicionar uma página." + msgid "ID" -msgstr "" +msgstr "ID" msgid "position" -msgstr "posição" +msgstr "" msgid "language" -msgstr "idioma" +msgstr "" msgid "plugin_name" -msgstr "" +msgstr "plugin_name" msgid "creation date" -msgstr "data de criação" +msgstr "" msgid "can edit" -msgstr "pode editar" +msgstr "" msgid "can add" -msgstr "pode adicionar" +msgstr "" msgid "can delete" -msgstr "pode eliminar" +msgstr "" msgid "can change advanced settings" -msgstr "pode alterar definições avançadas" +msgstr "" msgid "can publish" -msgstr "pode publicar" +msgstr "" msgid "can change permissions" -msgstr "pode alterar permissões" +msgstr "" msgid "can move" -msgstr "pode mover" +msgstr "" msgid "view restricted" -msgstr "vista restrita" +msgstr "" msgid "can recover pages" -msgstr "pode recuperar páginas" +msgstr "" msgid "group" -msgstr "grupo" +msgstr "" msgid "sites" -msgstr "sites" +msgstr "" msgid "created by" -msgstr "criado por" +msgstr "" msgid "changed by" -msgstr "modificado por" +msgstr "" msgid "publication date" -msgstr "data de publicação" +msgstr "" msgid "publication end date" -msgstr "data de fim de publicação" +msgstr "" msgid "in navigation" msgstr "" msgid "soft root" -msgstr "" +msgstr "soft root" msgid "id" msgstr "" msgid "attached menu" -msgstr "" +msgstr "attached menu" msgid "template" msgstr "" msgid "login required" -msgstr "obrigatorio iniciar sessão" +msgstr "" msgid "application" msgstr "" msgid "application instance name" -msgstr "" +msgstr "nome de instancia de aplicação" msgid "site" -msgstr "site" +msgstr "" msgid "Grant on" -msgstr "" +msgstr "Aplicar a" msgid "page" -msgstr "página" +msgstr "" + +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "apenas utilizadores com sessão ativa agora" + +msgid "for anonymous users only" +msgstr "apenas utilizadores anónimos" + +msgid "Inherit from parent page" +msgstr "herdar a partir de página hierarquicamente acima" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "Apenas este site" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "descrição" + +msgid "The text displayed in search engines." +msgstr "O texto mostrado em motores de busca." + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "O template usado para mostrar o conteúdo." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" msgstr "" +"Um identificador único que é usado com templatetag page_url para direcionar " +"a esta página" msgid "pages" -msgstr "páginas" - -msgid "default" -msgstr "pré-definido" +msgstr "" msgid "slug" msgstr "" @@ -623,7 +726,7 @@ msgid "Path" msgstr "" msgid "Current page" -msgstr "Página Atual" +msgstr "" msgid "Page children (immediate)" msgstr "" @@ -638,12 +741,11 @@ msgid "Page and descendants" msgstr "" msgid "on page level" -msgstr "" +msgstr "no nível de página" msgid "frontend view restriction" -msgstr "" +msgstr "restrição frontend de visualização" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -651,21 +753,29 @@ msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Os utilizadores não podem publicar uma página sem permissões para alterar a " +"página. É necessária a permissão de edição." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." msgstr "" +"Os utilizadores não podem alterar as configurações de página avançadas sem " +"permissões para alterar a página. É necessária a permissão de edição." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." msgstr "" +"Os utilizadores não podem alterar as configurações de página sem permissões " +"para alterar a página. É necessária a permissão de edição." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." msgstr "" +"Os utilizadores não podem mover a página sem permissões para a alterar. É " +"necessária a permissão de edição." msgid "can recover any deleted page" msgstr "" @@ -686,6 +796,9 @@ msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." msgstr "" +"A permissão de adicionar página requer também acesso a descendentes " +"hierárquicos, caso contrário a página não poderá ser alterada pelo seu " +"criador." msgid "User (page)" msgstr "" @@ -703,16 +816,16 @@ msgid "slot" msgstr "" msgid "width" -msgstr "" +msgstr "largura" msgid "" -msgstr "" +msgstr "" msgid "The language for the admin interface and toolbar" -msgstr "" +msgstr "O idioma para a interface de administração e barra de ferramentas" msgid "user setting" -msgstr "" +msgstr "definições do utilizador" msgid "user settings" msgstr "" @@ -721,167 +834,117 @@ msgid "by template" msgstr "" msgid "by code" -msgstr "" +msgstr "por código" msgid "static placeholder name" -msgstr "" +msgstr "nome do espaço de conteúdo estático" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." msgstr "" +"Nome descritivo para identificar este espaço de conteúdo estático. Não " +"visível aos utilizadores." msgid "placeholder code" -msgstr "" +msgstr "código de espaço de conteúdo" msgid "To render the static placeholder in templates." -msgstr "" +msgstr "Para apresentar o espaço estático nos templates." msgid "placeholder content" -msgstr "" +msgstr "conteúdo do espaço" msgid "creation_method" -msgstr "" +msgstr "creation_method" msgid "static placeholder" -msgstr "" +msgstr "espaço estático" msgid "static placeholders" -msgstr "" +msgstr "espaços estáticos" msgid "A static placeholder with the same site and code already exists" -msgstr "" +msgstr "Um placeholder estático com o mesmo site e código já existe" -msgid "for logged in users only" +msgid "Advanced options" msgstr "" -msgid "for anonymous users only" -msgstr "" +msgid "Generic" +msgstr "Genérico" -msgid "Inherit from parent page" -msgstr "" +#, python-format +msgid "The %(name)s \"%(obj)s\" was changed successfully." +msgstr "O %(name)s \"%(obj)s\" foi alterado com sucesso." -msgid "Deny" -msgstr "Negar" +msgid "There are no further settings for this plugin. Please press save." +msgstr "Não existem mais definições para este plugin. Clique em gravar." -msgid "Only this website" +msgid "Moved" msgstr "" -msgid "Allow" -msgstr "Permitir" +msgid "Changed" +msgstr "Alterado" -msgid "title" -msgstr "título" +msgid "Deleted" +msgstr "" -msgid "overwrite the title (html title tag)" +msgid "Added Page Translation" msgstr "" -msgid "overwrite the title in the menu" +msgid "Changed Page Translation" msgstr "" -msgid "description" +msgid "Deleted Page Translation" msgstr "" -msgid "The text displayed in search engines." +msgid "Added Plugin" msgstr "" -msgid "redirect" +msgid "Changed Plugin" msgstr "" -msgid "The template used to render the content." -msgstr "" - -msgid "Advanced options" -msgstr "" - -msgid "Generic" -msgstr "" - -#, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" - -msgid "There are no further settings for this plugin. Please press save." -msgstr "" - -msgid "Moved" -msgstr "" - -#| msgid "Change" -msgid "Changed" -msgstr "" - -#| msgid "Delete" -msgid "Deleted" -msgstr "" - -#| msgid "Add %(language)s Translation" -msgid "Added Page Translation" -msgstr "" - -#| msgid "Delete %(language)s Translation" -msgid "Changed Page Translation" -msgstr "" - -#| msgid "Delete %(language)s Translation" -msgid "Deleted Page Translation" -msgstr "" - -#| msgid "Add plugin" -msgid "Added Plugin" -msgstr "" - -#| msgid "Change" -msgid "Changed Plugin" -msgstr "" - -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." -msgstr "" +msgstr "Inicie sessão como administrador aqui." #, python-format msgid "Login url: %(login_url)s" -msgstr "" +msgstr "Url para Inicio de Sessão: %(login_url)s" msgid "Username:" -msgstr "Utilizador:" +msgstr "" msgid "Password:" -msgstr "Password:" +msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -898,54 +961,55 @@ msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "" msgstr[1] "" +msgstr[2] "" msgid "All permissions" msgstr "" msgid "Loading..." -msgstr "" +msgstr "Espere por favor..." msgid "Save and continue editing" msgstr "" msgid "User" -msgstr "Utilizador" +msgstr "" msgid "Group" -msgstr "Grupo" +msgstr "" msgid "Can edit" -msgstr "Pode editar" +msgstr "" msgid "Can add" -msgstr "Pode adicionar" +msgstr "" msgid "Can delete" -msgstr "Pode eliminar" +msgstr "" msgid "Can publish" -msgstr "Pode plublicar" +msgstr "" msgid "Can change permissions" -msgstr "Pode modificar permissões" +msgstr "" msgid "Can move" -msgstr "Pode mover" +msgstr "" msgid "Can view" -msgstr "Pode ver" +msgstr "" msgid "(global)" msgstr "" msgid "(current)" -msgstr "" +msgstr "(atual)" msgid "Page doesn't inherit any permissions." -msgstr "" +msgstr "Página não herda nenhuma permissão." msgid "Edit model" -msgstr "" +msgstr "Editar modelo" msgid "Save as new" msgstr "" @@ -954,24 +1018,29 @@ msgid "Save and add another" msgstr "" msgid "Copy" -msgstr "Copiar" +msgstr "" msgid "Cut" -msgstr "Cortar" +msgstr "" msgid "Paste" -msgstr "" +msgstr "Colar" -#| msgid "Save as new" msgid "Set as home" +msgstr "Definir como página inicial" + +msgid "Permissions" msgstr "" msgid "is restricted" -msgstr "" +msgstr "é restrita" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,14 +1048,13 @@ msgid "List of pages" msgstr "" msgid "Search" -msgstr "Pesquisa" +msgstr "" -#| msgid "Page Title" msgid "Page Tree" -msgstr "" +msgstr "Estrutura de páginas" msgid "Reset filter" -msgstr "" +msgstr "Repor filtro" #, python-format msgid "" @@ -994,59 +1062,52 @@ msgid "" " Restore deleted %(name)s\n" " " msgstr "" - -msgid "" "\n" -" New Page\n" -" " -msgstr "" +" Restaurar %(name)s apagado\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" -msgstr "" +msgstr "Opções" msgid "Successfully moved" msgstr "" msgid "Changes within the tree might require a refresh." msgstr "" +"Alterações à estrutura de páginas pode necessitar de um posterior refresh." msgid "Error:" -msgstr "" +msgstr "Erro:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." msgstr "" +"Esta página não pode ser copiada uma vez que possui uma aplicação associada." +" Verifique os apphooks presentes nas configurações avançadas da página." msgid "Are you sure you want to § this page?" msgstr "" msgid "Reload" -msgstr "" +msgstr "Recarregar" -#| msgid "New Page" msgid "New node" -msgstr "" +msgstr "Novo nó" msgid "nodes" -msgstr "" +msgstr "nós" msgid "View" -msgstr "" +msgstr "Ver" msgid "Menu" -msgstr "" +msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1054,6 +1115,10 @@ msgid "" " Add %(object)s now.\n" " " msgstr "" +"\n" +"Não existe nenhum %(object)spor aqui ainda.\n" +"
    \n" +"Adicionar %(object)sagora." msgid "Copy options" msgstr "" @@ -1062,135 +1127,127 @@ msgid "Choose copy options" msgstr "" msgid "Close" -msgstr "Fechar" - -msgid "Legend" -msgstr "" - -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" msgstr "" -msgid "Empty" -msgstr "Vazio" +msgid "Legend" +msgstr "Descrição" -#| msgid "in menu" msgid "In menu" -msgstr "" +msgstr "No menu" -#| msgid "not in menu" msgid "Not in menu" -msgstr "" +msgstr "Não no menu" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" -msgstr "" +msgstr "Softroot" msgid "Apphook" -msgstr "" +msgstr "Apphook" #, python-format msgid "Application: %(apphook)s" -msgstr "" +msgstr "Aplicação: %(apphook)s" msgid "in menu" -msgstr "no menu" +msgstr "" msgid "not in menu" -msgstr "fora do men" +msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" +msgstr "Configurações de página (SHIFT e clique para configurações avançadas)" + +msgid "This page has no preview!" +msgstr "Esta página não possui pré-visualização!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." msgstr "" -msgid "Permissions" -msgstr "Permissões" +msgid "It is being redirected to:" +msgstr "Está a ser redirecionado para:" msgid "Clipboard" -msgstr "" +msgstr "Área de transferência" msgid "Add plugin" msgstr "" msgid "Copy all" -msgstr "Copiar tudo" +msgstr "" msgid "Copy from" -msgstr "Copiar de" +msgstr "" msgid "Empty all" -msgstr "Esvaziar tudo" +msgstr "" msgid "Filter plugins..." -msgstr "" +msgstr "Filtrar plugins..." msgid "This is a static placeholder" -msgstr "" +msgstr "Isto é um espaço estático" msgid "Expand all" -msgstr "" +msgstr "Expandir todos" msgid "Collapse all" -msgstr "" +msgstr "Colapsar todos" msgid "You cannot add plugins to this plugin." -msgstr "" +msgstr "Não pode adicionar plugins a este plugin." msgid "This plugin cannot be moved or edited outside of its parent" msgstr "" +"Este plugin não pode ser movido ou editado fora do seu antecessor " +"hierárquico." msgid "Clipboard is empty." -msgstr "" +msgstr "A área de transferência está vazia." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "" +msgstr "Este plugin não permite conter plugins deste tipo." msgid "This plugin cannot have nested plugins." -msgstr "" +msgstr "Este plugin não pode conter outros plugins." msgid "Highlight" -msgstr "" +msgstr "Destaque" msgid "Available plugins" -msgstr "" +msgstr "Plugins disponíveis" -#| msgid "Structure" msgid "Toggle structure" -msgstr "" +msgstr "Alternar estrutura" msgid "Login" -msgstr "" +msgstr "Inicio de Sessão" msgid "Add plugin to" msgstr "" msgid "More" -msgstr "" +msgstr "Mais" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" +"Versão de desenvolvimento com recurso a django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" -msgstr "Cancelar" +msgstr "" msgid "The following error occured:" -msgstr "" +msgstr "Ocorreu o seguinte erro:" -#| msgid "Action successfull... reloading." msgid "Action successful." -msgstr "" +msgstr "Concluido com Sucesso." msgid "Are you sure you want to delete this plugin?" msgstr "" @@ -1199,17 +1256,14 @@ msgid "Are you sure you want to publish this page?" msgstr "" msgid "Plugin will be added here" -msgstr "" +msgstr "O plugin vai ser adicionado aqui" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." -msgstr "" +msgstr "Tem alterações por gravar." -#| msgid "Loading..." msgid "Loading" -msgstr "" +msgstr "Espere por favor..." -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,98 +1271,92 @@ msgid "" "The form could not be loaded. Please check that the server is running " "correctly." msgstr "" +"Falha ao carregar o formulário. Por favor verifique se o servidor está em " +"execução normal." -#| msgid "Notify user" msgid "Most used" -msgstr "" +msgstr "Mais usado" msgid "Shortcuts" -msgstr "" +msgstr "Atalhos" msgid "The page was changed in the meantime, reloading..." -msgstr "" +msgstr "Esta página foi alterada entretanto, a recarregar..." + +msgid "CMS-wide Shortcuts" +msgstr "Atalhos abrangentes em CMS" msgid "Bring up this help dialog" -msgstr "" +msgstr "Mostrar este menu de ajuda" -#| msgid "Cancel" msgid "Close/cancel" -msgstr "" +msgstr "Fechar/cancelar" msgid "Toggle structure mode" -msgstr "" +msgstr "Alternar modo de estrutura" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "" +msgstr "Alternar estrutura e destacar plugins por baixo do rato" msgid "Open \"Create\" dialog" -msgstr "" +msgstr "Abrir diálogo de \"Criação\"" msgid "Focus on Toolbar" -msgstr "" +msgstr "Foco na barra de ferramentas" -#| msgid "static placeholders" msgid "Focus on placeholders" -msgstr "" +msgstr "Foco em espaços de conteúdo" msgid "Move to next/previous element" -msgstr "" +msgstr "Mover para o elemento seguinte/anterior" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" -msgstr "" +msgstr "Foco em plugins do espaço de conteúdo" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" -msgstr "" +msgstr "Abrir menu de acções" -#| msgid "Expand all" msgid "Expand/collapse" -msgstr "" +msgstr "Expandir/colapsar" msgid "" "Login failed. Please check your credentials and try again." msgstr "" +"O login falhou,Por favor verifique as suas credenciais e " +"tente novamente." msgid "Double-click to edit" -msgstr "" +msgstr "Duplo-clique para editar" msgid "Tap to edit" -msgstr "" +msgstr "Clique para editar" msgid "Click to go back" -msgstr "" +msgstr "Clique para recuar" msgid "Click to go forward" -msgstr "" +msgstr "Clique para avançar" msgid "Minimize" -msgstr "" +msgstr "Minimizar" msgid "Maximize" -msgstr "" +msgstr "Maximizar" msgid "Drop a plugin here" -msgstr "" - -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" +msgstr "Largue aqui um plugin" msgid "Installation successful!" -msgstr "" +msgstr "Instalação com sucesso!" msgid "Add your first page" -msgstr "" +msgstr "Adicionar a sua primeira página" msgid "Please log in" -msgstr "" +msgstr "Por favor, faça login" #, python-format msgid "" @@ -1316,6 +1364,8 @@ msgid "" " Welcome to django CMS version %(cms_version)s.\n" " " msgstr "" +"\n" +"Seja bem vindo ao Django CMS versão %(cms_version)s." #, python-format msgid "" @@ -1323,6 +1373,8 @@ msgid "" " Add the first page to the system to continue.\n" " " msgstr "" +"\n" +"Adicione a primeira página para continuar." #, python-format msgid "" @@ -1331,25 +1383,19 @@ msgid "" " add a page manually.\n" " " msgstr "" +"\n" +"O JavaScript parece que está desativado, por favor\n" +"adicione uma página manualmente." msgid "Installation Notes" -msgstr "" +msgstr "Notas de Instalação" msgid "Support" -msgstr "" +msgstr "Suporte" msgid "Documentation" -msgstr "" +msgstr "Documentação" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,16 +1403,12 @@ msgid "" " static files.

    \n" " " msgstr "" +"\n" +"

    Se não vê o logotipo do django CMS no topo, certifique-se\n" +" que fez link da pasta static/cms para os seus\n" +" ficheiros estáticos.

    \n" +" " -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1375,44 +1417,49 @@ msgid "" "

    \n" " " msgstr "" +"\n" +"

    Está a ver esta mensagem porque tem \n" +" DEBUG = True no seu ficheiro de configurações django e\n" +" ainda não adicionou nenhuma página.\n" +"

    \n" +" " msgid "Welcome to django CMS" -msgstr "" +msgstr "Benvindo ao django CMS" msgid "Add Another" -msgstr "" +msgstr "Adicionar outro" msgid "Back" -msgstr "" +msgstr "Retroceder" msgid "Please choose an option from below to proceed to the next step." msgstr "" +"Por favor, escolha uma opção abaixo para prosseguir para o próximo passo." msgid "Next" -msgstr "" +msgstr "Próximo" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Página não encontrada em %(domain)s" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" msgstr "" +"Uma 'templatetag' não conseguiu encontrar a página com os argumentos " +"`%(page_lookup)s`. O URL do pedido foi: http://%(host)s%(path)s" msgid "Two columns" -msgstr "" +msgstr "Duas colunas" msgid "Three columns" -msgstr "" +msgstr "Três colunas" msgid "username" msgstr "" @@ -1420,144 +1467,142 @@ msgstr "" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" msgstr "" +"Obrigatório. Até 300 caracteres. Letras, números e os caracteres @/./+/-/_" msgid "Enter a valid username." -msgstr "" +msgstr "Introduza um nome de utilizador válido." msgid "email address" -msgstr "endereço de email" +msgstr "" msgid "staff status" msgstr "" msgid "Designates whether the user can log into this admin site." -msgstr "" +msgstr "Determina se o utilizador pode aceder ao site de administração." msgid "active" -msgstr "" +msgstr "ativo" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." msgstr "" +"Determina se este utilizador deve ser tratado como estando activo. Desmarque" +" esta opção em vez de eliminar contas." msgid "users" msgstr "" msgid "Title Extension" -msgstr "" +msgstr "Extensão de Título" msgid "Page Extension" msgstr "" msgid "object ID" -msgstr "" +msgstr "ID do objecto" msgid "Example1 App" -msgstr "" +msgstr "Aplicação Example1" msgid "MultilingualExample1 App" -msgstr "" +msgstr "Aplicação Multi_IdiomaExample1" msgid "Example1" -msgstr "Exemplo 1" +msgstr "" msgid "Examples" -msgstr "Exemplos" +msgstr "" msgid "Extra Context" -msgstr "Conteúdo Exra" +msgstr "" msgid "Articles" -msgstr "Artigos" +msgstr "" msgid "Sample App" -msgstr "Exemplo de Aplicação" +msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" -msgstr "" +msgstr "Aplicação de exemplo configurável" msgid "Sample App with excluded permissions" -msgstr "Exemplo de Aplicação com permissões excluídas" +msgstr "" msgid "Sample App 2" -msgstr "Exemplo de Aplicação 2" +msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" msgid "Namespaced App" -msgstr "" +msgstr "Aplicativo com namespace" msgid "Parent app" -msgstr "" +msgstr "App superior hierárquica" msgid "Child app" -msgstr "" +msgstr "App descendente hierárquica" msgid "Variable urls-menus App" -msgstr "" +msgstr "Aplicação de urls-menus variavel" msgid "sample root page" -msgstr "exemplo de página raiz" +msgstr "" msgid "sample settings page" -msgstr "exemplo de página de definições" +msgstr "" msgid "sample account page" -msgstr "exemplo de página de conta de utilizador" +msgstr "" msgid "sample my profile page" -msgstr "exemplo de página de 'meu perfil'" +msgstr "" msgid "Static Menu" -msgstr "Menu Estático" +msgstr "" msgid "Static Menu2" -msgstr "Menu Estático 2" +msgstr "" msgid "Static Menu3" -msgstr "" +msgstr "Menu3 estático" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" msgid "Category" -msgstr "Categoria" +msgstr "" msgid "Categories" -msgstr "Categorias" +msgstr "" msgid "Add Category" -msgstr "Adicionar Categoria" +msgstr "" msgid "^account/$" -msgstr "^conta/$" +msgstr "" msgid "Change Category" -msgstr "Modificar Categorias" +msgstr "" msgid "Thanks for spending some quality time with the Web site today." -msgstr "" +msgstr "Obrigado por passar algum tempo de qualidade com o site hoje." msgid "Inherit the template of the nearest ancestor" -msgstr "" +msgstr "Herdar o template do superior hierárquico mais próximo" msgid "UserSettings" -msgstr "" +msgstr "Configurações de utilizador" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" -msgstr "" +msgstr "Adicionar plugin ao espaço de conteúdo \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" -msgstr "" +msgstr "Adicionar plugin a %(plugin_name)s" msgid "CMS - your user account was created." msgstr "" @@ -1567,419 +1612,32 @@ msgstr "" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "" +msgstr "Já foi atingido o número máximo de plugins para este espaço (%s)." #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." msgstr "" +"Já foi atingido o número máximo de plugins %(plugin_name)s para este espaço " +"(%(limit)s)." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." -msgstr "" +msgstr "Não foi possível encontrar o módulo CMS_REQUEST_IP_RESOLVER: \"{0}\"." #, python-brace-format msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." msgstr "" +"Não foi possível encontrar a função CMS_REQUEST_IP_RESOLVER: \"{0}\" no " +"módulo \"{1}\"." #, python-format msgid "Create a new %s instance." -msgstr "" +msgstr "Criar uma nova instância de %s." #, python-format msgid "A wizard has already been registered for model: %s" -msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" +msgstr "Um assistente já foi registado para o modelo: %s" diff --git a/cms/locale/pt_PT/LC_MESSAGES/djangojs.mo b/cms/locale/pt_PT/LC_MESSAGES/djangojs.mo index d6a2308d2a07579e7416bdf18315eb7468f0ab1b..7c82b4c5fecc83ca4be097f5101061b5828a64c6 100644 GIT binary patch delta 165 zcmaFIGM{yV4)1 y)yPw@wN)@ssHsr^vkWyA?15Y>AWsn_uBHZLsVW#6fB{6Uy@DZ7fzf0|CSL%k1S*37 delta 116 zcmbQw`i^CS4sRbL1H)7X1_n\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/divio/django-cms/language/pt_PT/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Mike C. , 2014\n" +"Language-Team: Portuguese (Portugal) (http://app.transifex.com/divio/django-cms/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Tem a certeza que quer mudar de separador sem guardar a página primeiro?" diff --git a/cms/locale/ro/LC_MESSAGES/django.mo b/cms/locale/ro/LC_MESSAGES/django.mo index 25f683d76869901e2a18c76da74aa3db526501c8..357e78eb893c067d2c758ad72105751e5c5e01a7 100644 GIT binary patch delta 4334 zcmZYB2~bs40LJkHg2?8s5hk%IiY)H|BH#iprMZQon57a45dtCtmXSU+mr`;g7c8x? z)J#i5u~I8qX39#dDV>_MM#eUmYQ`C6GOPc`J_=Vj9d^c_k$bi?K0slZva5yJxAa|ojGnhd^OL{-DO6Eb-2p3}*E=4WbP7J|QsHJT|T_4J_#A6g{ zucx3^C=WAm9%|q(p`M`w_WP#ZtiNv1OoL{A3ROR6>p!4wcok#t29Cw3Tbu!wpgLNB zJWQqrnWU-5Tk%!Y%6^3X@Ehb7<{#9v(mRCp*9rZZRv#RK>M#d2(tOm)lpz011s^V4 zi~9aJYNb9zE%_aJo>UHsyznvEO^`$w0EOXOH_d)aT}_`Z!itN zM|B*+GBGLB7d5a{)Qv`=I+%u9!6H;g)u{V;Py<|r1-Kcj^!~R}m_V3VbFEA+F`5_8LnoK5Y3-VAmDnMN~54AFtsAp#-s=Xd{ego?Ky|#YP`Z{{FN5?4W zf@ai-r%)Guj(W(xMzvqU-TZC1jDx9fh;**|(0Uqm-Z|9PoyQo=jB-|{2sN>Cn_194Y z*7S8=FlvSSpnjsGQP-t;C}<0E&<|&$mb?(PMAfJjSZCXJpbz!^sJ(s-{qO@+N1vir z=3DC(R7ZcKR_@jT#_;23VsQd`Mp4j>)}tTp#!mPOs-q*Q5xerC-JSLWxSbO9~E!`N@OtMiUo@49fsF^K6t;hyc z2fHu_KS534_Ce0~F{rmD6*a(I)azW1TG?7mq<_;uK^=XGnrVx*6?v{qAibzV7Y1S` zYK9X~OFI=4u?#!mPV~h+wtfJ0-BHZOX5=@|bdTp(l>SWu1r1;#YN=*pIF_M5u1C#a zJL<38Vbu9&P#yk&!T1Ym0<9Q?feB7~2&៯rY&j|GB#*-;%Mn$M4o{tRDEJL=} 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 L2mJdFPmcXRp^NB` diff --git a/cms/locale/ro/LC_MESSAGES/django.po b/cms/locale/ro/LC_MESSAGES/django.po index e5b0fc13b52..be3c1acb76a 100644 --- a/cms/locale/ro/LC_MESSAGES/django.po +++ b/cms/locale/ro/LC_MESSAGES/django.po @@ -3,26 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Andrei Meliș , 2017 -# Catalin Dragomirescu , 2014 -# costel , 2014 -# costel , 2014 -# Denis Darii , 2011 -# Denis Darii , 2011 -# IlieLipan , 2012 -# IlieLipan , 2012 -# Julian C , 2014 -# vially , 2014 -# vially , 2014 +# Fabian Braun , 2023 +# Andrei Meliș , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Romanian (http://www.transifex.com/divio/django-cms/language/ro/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Andrei Meliș , 2023\n" +"Language-Team: Romanian (https://app.transifex.com/divio/teams/58664/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -58,16 +49,17 @@ msgstr "Titlul paginii" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Înlocuește ceea ce este afişat în partea de sus a browser-ului sau în etichete" +msgstr "" +"Înlocuește ceea ce este afişat în partea de sus a browser-ului sau în " +"etichete" msgid "Description meta tag" msgstr "Decriere meta tag" msgid "A description of the page used by search engines." -msgstr "O listă de cuvinte cheie separate prin virgula uneori utilizate de către motoarele de căutare." - -msgid "Slug must not be empty." -msgstr "Câmp descriere URL nu trebuie sa fie gol" +msgstr "" +"O listă de cuvinte cheie separate prin virgula uneori utilizate de către " +"motoarele de căutare." msgid "Page type" msgstr "Tip pagină" @@ -79,9 +71,9 @@ msgid "Overwrite URL" msgstr "Suprascrie URL" msgid "Keep this field empty if standard path should be used." -msgstr "Păstraţi acest câmp gol dacă percursul standard ar trebui să fie utilizat." +msgstr "" +"Păstraţi acest câmp gol dacă percursul standard ar trebui să fie utilizat." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -103,11 +95,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -123,12 +113,12 @@ msgstr "Configurații aplicație" msgid "A page with this reverse URL id exists already." msgstr "O pagină cu acest URL id există deja." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" msgid "An application instance using this configuration already exists." -msgstr "Deja există o instanță de aplicație care folosește această configurație. " +msgstr "" +"Deja există o instanță de aplicație care folosește această configurație. " msgid "An application instance with this name already exists." msgstr "Există deja o instanță de aplicație cu același nume." @@ -160,32 +150,44 @@ msgstr "Şterge" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de creare." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"creare." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de ștergere." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"ștergere." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de acordare drepturi." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"acordare drepturi." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de ștergere drepturi." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"ștergere drepturi." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de adăugare permisiuni." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"adăugare permisiuni." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Permisiunea de modificare este necesară pentru acordarea permisiunii de ștergere permisiuni." +msgstr "" +"Permisiunea de modificare este necesară pentru acordarea permisiunii de " +"ștergere permisiuni." #, python-format msgid "Invalid plugin type '%s'" @@ -197,7 +199,6 @@ msgstr "Limba trebuie setată din limbile acceptate!" msgid "Parent plugin language must be same as language!" msgstr "Limba plugin părinte trebuie să fie aceeași." -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -212,7 +213,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -229,9 +229,9 @@ msgstr "%(name)s obiect cu cheia primară %(key)r nu există." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Eroare!Nu ai premisiunea de schimbare a acestui șablon.Reîncarcă pagina." +msgstr "" +"Eroare!Nu ai premisiunea de schimbare a acestui șablon.Reîncarcă pagina." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -264,7 +264,6 @@ msgstr "Acest șablon a fost schimbat cu succes." msgid "You do not have permission to copy these plugins." msgstr "Nu aveți permisiunea de a copia aceste plugin-uri." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -272,8 +271,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Titlu şi plugin-urile cu limba %(language)s au fost şterse" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nu aveți permisiunile necesare să schimbați statusul in_navigation al acestei pagini" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Restricţii de vizualizare" @@ -291,7 +302,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "Nu aveți permisiunea de a adăuga plugin." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -301,18 +311,15 @@ msgstr "Nu a fost găsit plugin-ul." msgid "You do not have permission to edit this plugin" msgstr "Nu aveți permisiunea de a modifica acest plugin." -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -342,6 +349,47 @@ msgstr "Utilizator & Permisii de grup" msgid "Page permissions management" msgstr "Managementul permisiunilor paginilor" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Previzualizează" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -370,9 +418,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "Previzualizează" - msgid "Structure" msgstr "Structură" @@ -416,15 +461,12 @@ msgstr "Logout" msgid "Language" msgstr "Limbă" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -433,7 +475,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -443,7 +484,6 @@ msgstr "Pagini" msgid "Page" msgstr "Pagină" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -490,20 +530,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -517,7 +549,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -614,6 +651,57 @@ msgstr "De acord" msgid "page" msgstr "pagină" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "titlu" + +msgid "overwrite the title (html title tag)" +msgstr "Rescrie titlul (tagul html al titlului)" + +msgid "overwrite the title in the menu" +msgstr "Rescrie titlul in meniu" + +msgid "description" +msgstr "descriere" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "redirecţionare" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "predefinit" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -622,9 +710,6 @@ msgstr "" msgid "pages" msgstr "pagini" -msgid "default" -msgstr "predefinit" - msgid "slug" msgstr "slug" @@ -652,7 +737,6 @@ msgstr "la nivel de pagina" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -694,7 +778,10 @@ msgstr "Permisii de pagină" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Pentru a adauga permisie de pagină are nevoie să ai acces, de asemenea, la copiii sau descendenţii ei, altfel paginile adăugate nu vor putea fi schimbate de către creatorii lor." +msgstr "" +"Pentru a adauga permisie de pagină are nevoie să ai acces, de asemenea, la " +"copiii sau descendenţii ei, altfel paginile adăugate nu vor putea fi " +"schimbate de către creatorii lor." msgid "User (page)" msgstr "Utilizator (pagina)" @@ -761,45 +848,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "titlu" - -msgid "overwrite the title (html title tag)" -msgstr "Rescrie titlul (tagul html al titlului)" - -msgid "overwrite the title in the menu" -msgstr "Rescrie titlul in meniu" - -msgid "description" -msgstr "descriere" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "redirecţionare" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "Opţiuni avansate" @@ -807,7 +855,6 @@ msgid "Generic" msgstr "Generic" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -817,65 +864,54 @@ msgstr "Nu mai sunt si alte setari pentru acest plugin.Va rugam salvați." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Salvează" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Login pentru administrare aici." @@ -890,7 +926,6 @@ msgstr "Nume de utilizator:" msgid "Password:" msgstr "Parolă:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -972,16 +1007,21 @@ msgstr "Taie" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Permisii" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -991,7 +1031,6 @@ msgstr "Lista cu pagini" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1005,17 +1044,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1039,7 +1070,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1053,10 +1083,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1077,30 +1103,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1117,12 +1128,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Permisii" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1172,7 +1189,6 @@ msgstr "" msgid "Available plugins" msgstr "Plugin-uri disponibile" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1186,7 +1202,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1198,7 +1213,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1211,15 +1225,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "Plugin-ul va fi adăugat aici" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1228,7 +1239,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1238,10 +1248,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1257,26 +1269,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Editează plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1305,12 +1312,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1351,15 +1352,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1368,15 +1360,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1401,11 +1384,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1484,7 +1463,6 @@ msgstr "Articole" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1494,7 +1472,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1531,9 +1508,8 @@ msgstr "Meniu2 Static" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Meniu Static" msgid "Category" msgstr "" @@ -1560,12 +1536,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Adaugă plugin la placeholder \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Adaugă plugin la %(plugin_name)s" @@ -1602,395 +1576,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ro/LC_MESSAGES/djangojs.mo b/cms/locale/ro/LC_MESSAGES/djangojs.mo index 49d042de94522b25b2a08f5d6a1c978ce20a42b0..c7825561da164e778e4f13ecfa003193281a4ccc 100644 GIT binary patch delta 95 zcmeBT?Pi^z!@HD`fnh2G1A{*hTTirH&TF7+XsBy!pkQETWnww;t+=L3YF=isf=gmi tW~PEo3W%eZ0^&HN=O$+6=q2ap+UY1585kN))?rj+PAn+c9KdMB2mrBu8gT#s delta 94 zcmeBX?P8sv!@Go$fnh2G1A{*hTTQfF&TFA-V5n\n" -"Language-Team: Romanian (http://www.transifex.com/divio/django-cms/language/ro/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Denis Darii , 2011\n" +"Language-Team: Romanian (http://app.transifex.com/divio/django-cms/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Sunteți sigur că doriţi să schimbaţi filele fără a salva pagina întîi?" diff --git a/cms/locale/ro_RO/LC_MESSAGES/django.mo b/cms/locale/ro_RO/LC_MESSAGES/django.mo index 53b3ce98b2498e336b1f340e89fc506ad0b992e6..7fb92a43bb8d4b1cfbcd28b94298380a9bccdb70 100644 GIT binary patch delta 68 zcmcc5yq0-_3S;p^RXrBnn9czOnfiO UU6PuZTdZ$tVPV!Z delta 134 zcmZ3>e4lxO3ggm=s(LI6&c4AD!*y*9bPWx3jVu)mO|6WLwGDuP%O|n8L^q@;F|Rl$ zu_V99O2IKRyVBS|!6p$*J5(lS, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/divio/django-cms/language/ro_RO/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Romanian (Romania) (https://app.transifex.com/divio/teams/58664/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +982,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1006,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1188,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1511,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,395 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ro_RO/LC_MESSAGES/djangojs.mo b/cms/locale/ro_RO/LC_MESSAGES/djangojs.mo index ab6db880183c0039c9e18456ac96ccc723159e13..4cc4118fce4bc6b1038af7fe9a177b7edee5571d 100644 GIT binary patch delta 68 zcmaFI{DgUe3gfDYs`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Yr50pl<|OK6mP|aa!<<-9F!A390QNZ;l>h($ delta 78 zcmaFD{Em5o3gecEs`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQzkC1y>^mGd diff --git a/cms/locale/ro_RO/LC_MESSAGES/djangojs.po b/cms/locale/ro_RO/LC_MESSAGES/djangojs.po index 7fd992fcebb..0a9b229657a 100644 --- a/cms/locale/ro_RO/LC_MESSAGES/djangojs.po +++ b/cms/locale/ro_RO/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/divio/django-cms/language/ro_RO/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Romanian (Romania) (http://app.transifex.com/divio/django-cms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ru/LC_MESSAGES/django.mo b/cms/locale/ru/LC_MESSAGES/django.mo index 29d93b61e7f314064e54722a9822786f607d0b6a..417f8884d6dea53d820897e7b4caa1a749f375ea 100644 GIT binary patch delta 12855 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�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 diff --git a/cms/locale/ru/LC_MESSAGES/django.po b/cms/locale/ru/LC_MESSAGES/django.po index 8ec04e4a865..9d10256cf7f 100644 --- a/cms/locale/ru/LC_MESSAGES/django.po +++ b/cms/locale/ru/LC_MESSAGES/django.po @@ -3,45 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Alex , 2013 -# Alexander Paramonov , 2018 -# Andrew Koltsov , 2014 -# Andrew Koltsov , 2014 -# andrey_shipilov , 2011 -# SAG , 2019 -# Denis Darii , 2011 -# Denis Darii , 2011 -# Dimmus , 2011 -# eXtractor , 2019 -# Gleb Chipiga , 2011 -# ha7y , 2014 -# koodjo , 2012 -# koodjo , 2012 -# Leonid Dworzanski , 2015 -# Leonid Kurbatov , 2013-2014 -# slam , 2013 -# ha7y , 2014 -# Oleg Fish , 2017 -# Oleg Fish , 2014-2017 -# panasoft , 2016 -# Pylyp Dukhlii , 2014 -# 7487b6215e92d40054962de25e14af3c_618443c <3e689a7dfaae20c8c957db20acac1f93_108356>, 2013 -# 7487b6215e92d40054962de25e14af3c_618443c <3e689a7dfaae20c8c957db20acac1f93_108356>, 2013 -# Sergey Komarov , 2013 -# Sergey Komarov , 2013 -# slam , 2013 -# andrey_shipilov , 2011 -# Vadim Sikora , 2016 -# Мальцев Артём , 2016 +# Мальцев Артём , 2022 +# Panasoft, 2022 +# Dmitrii Kurskov, 2023 +# SAG , 2023 +# Vadim Sikora , 2023 +# Oleg Fish , 2023 +# Fabian Braun , 2023 +# Kirill Artemenko <4322221@gmail.com>, 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Russian (http://www.transifex.com/divio/django-cms/language/ru/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Kirill Artemenko <4322221@gmail.com>, 2023\n" +"Language-Team: Russian (https://app.transifex.com/divio/teams/58664/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -77,7 +55,8 @@ msgstr "Заголовок страницы" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Переписать то, что будет изображено в заголовке браузера или закладках." +msgstr "" +"Переписать то, что будет изображено в заголовке браузера или закладках." msgid "Description meta tag" msgstr "Мета тег \"description\"" @@ -85,9 +64,6 @@ msgstr "Мета тег \"description\"" msgid "A description of the page used by search engines." msgstr "Описание страницы, иногда используемое поисковыми роботами." -msgid "Slug must not be empty." -msgstr "Путь slug не должен быть пустым" - msgid "Page type" msgstr "Тип страницы" @@ -100,9 +76,8 @@ msgstr "Переписать URL" msgid "Keep this field empty if standard path should be used." msgstr "Оставьте это поле пустым для использования стандартного пути" -#| msgid "softroot" msgid "Soft root" -msgstr "" +msgstr "Мягкий корень" msgid "All ancestors will not be displayed in the navigation" msgstr "Все предки не будут показаны в навигации" @@ -122,13 +97,11 @@ msgstr "отображение меню" msgid "limit when this page is visible in the menu" msgstr "ограничивает отображение страницы в меню" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "Параметры URL" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "Параметры меню" msgid "Application" msgstr "Приложение" @@ -142,7 +115,6 @@ msgstr "Конфигурации приложения" msgid "A page with this reverse URL id exists already." msgstr "Страница с таким reverse URL уже существует." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Неверное значение в конфигурации" @@ -179,32 +151,44 @@ msgstr "Удалить" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Пользователи не могут создавать страницы без разрешения изменять созданные страницы. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут создавать страницы без разрешения изменять созданные " +"страницы. Требуется отредактировать разрешения." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Пользователи не могут удалять страницы без разрешения изменять страницу. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут удалять страницы без разрешения изменять страницу. " +"Требуется отредактировать разрешения." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Пользователи не могут устанавливать разрешения на страницу без разрешения изменять ее. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут устанавливать разрешения на страницу без разрешения " +"изменять ее. Требуется отредактировать разрешения." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Пользователи не могут удалять разрешения для страницы, не имея доступа для ее изменения. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут удалять разрешения для страницы, не имея доступа для " +"ее изменения. Требуется отредактировать разрешения." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Пользователи не могут создавать разрешения для страницы без разрешения изменять созданные. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут создавать разрешения для страницы без разрешения " +"изменять созданные. Требуется отредактировать разрешения." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Пользователи не могут удалять разрешения страницы без допуска для изменения созданных разрешений. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут удалять разрешения страницы без допуска для изменения" +" созданных разрешений. Требуется отредактировать разрешения." #, python-format msgid "Invalid plugin type '%s'" @@ -216,13 +200,12 @@ msgstr "Язык должен быть установлен из списка п msgid "Parent plugin language must be same as language!" msgstr "Язык должен совпадать с языком родительского плагина" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Плейсхолдер родительского плагина должен быть таким же!" #, python-format msgid "Plugin position must be greater than %(position)d" -msgstr "" +msgstr "Позиция плагина должна быть больше %(position)d" msgid "Advanced Settings" msgstr "Расширенные настройки" @@ -231,9 +214,8 @@ msgid "The page is not eligible to be home." msgstr "Эта страница не может быть домашней." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" +msgstr "Объекты %(name)s \"%(obj)s\" были успешно удалены." #, python-format msgid "Cannot delete %(name)s" @@ -248,16 +230,19 @@ msgstr "объект %(name)s с первичным ключом %(key)r не msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Ошибка! Вам не достаточно прав для перемещения этой страницы. Пожалуйста, перезагрузите страницу" +msgstr "" +"Ошибка! Вам не достаточно прав для перемещения этой страницы. Пожалуйста, " +"перезагрузите страницу" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Ошибка! У вас недостаточно прав, чтобы копировать эту страницу." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Ошибка! Страница, которую вы пытаетесь вставить, не имеет переводов ни для одного из языков сайта." +msgstr "" +"Ошибка! Страница, которую вы пытаетесь вставить, не имеет переводов ни для " +"одного из языков сайта." msgid "You do not have permission to edit this page" msgstr "У вас нет прав для редактирования данной страницы" @@ -283,16 +268,27 @@ msgstr "Шаблон был успешно изменен" msgid "You do not have permission to copy these plugins." msgstr "У вас нет прав на копирование этих плагинов." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "У вас нет прав, чтобы удалить эту страницу" +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Заголовок и плагин на %(language)s удалён" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "У вас нет прав для изменения статуса \"в навигации\" для данной страницы" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Пусто" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Ограничене просмотра" @@ -310,7 +306,6 @@ msgstr "У вас нет прав на редактирование данног msgid "You do not have permission to add a plugin" msgstr "У вас нет прав на добавление плагинов" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "У вас нет прав на копирование этого плейсхолдера." @@ -320,18 +315,15 @@ msgstr "Плагин не найден" msgid "You do not have permission to edit this plugin" msgstr "У вас нет прав на редактирование данного плагина" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "У вас нет прав на вставку данного плагина" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "У вас нет прав на вставку данного плейсхолдера" msgid "You have no permission to move this plugin" msgstr "У вас нет прав на перемещение данного плагина" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "У вас нет прав, чтобы вырезать этот плагин" @@ -361,6 +353,47 @@ msgstr "Права доступа пользователя и группы" msgid "Page permissions management" msgstr "Управление правами доступа к странице" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Предпросмотр" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Не найдено зарегистрированных приложений \"%r\"" @@ -381,7 +414,10 @@ msgstr "Добавить псевдоним" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Это ссылка-синоним, вы можете отредактировать содержимое только на родительской странице %(page_title)s." +msgstr "" +"Это ссылка-синоним, вы можете отредактировать содержимое только на " +"родительской странице %(page_title)s." msgid "Create" msgstr "Создать" @@ -389,9 +425,6 @@ msgstr "Создать" msgid "Edit" msgstr "Изменить" -msgid "Preview" -msgstr "Предпросмотр" - msgid "Structure" msgstr "Структура" @@ -435,15 +468,12 @@ msgstr "Выход" msgid "Language" msgstr "Язык" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Добавить перевод" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Удалить перевод" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Скопировать все плагины" @@ -452,7 +482,6 @@ msgid "from %s" msgstr "из %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Вы уверены, что хотите скопировать все плагины из %s?" @@ -462,7 +491,6 @@ msgstr "Страницы" msgid "Page" msgstr "Страница" -#| msgid "Create" msgid "Create Page" msgstr "Создать страницу" @@ -509,37 +537,41 @@ msgid "Select a valid page" msgstr "Выбрать правильную страницу" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "У страницы %(conflict_page)s такой же путь URL ''%(url)s, как и у текущей страницы \"%(instance)s\"." +msgstr "" +"У страницы %(conflict_page)s такой же путь URL ''%(url)s, как и у текущей " +"страницы \"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" +"Страница %(conflict_page)s имеет такой же адрес '%(url)s' как и текущая " +"страница." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Опционально. Если представлено, будет автоматически добавлено в новом текстовом расширении" +msgstr "" +"Опционально. Если представлено, будет автоматически добавлено в новом " +"текстовом расширении" msgid "Provide a title for the new page." msgstr "Задать заголовок новой странице" msgid "Leave empty for automatic slug, or override as required." -msgstr "Оставьте пустым для автоматической генерации или перепешите, как требуется." +msgstr "" +"Оставьте пустым для автоматической генерации или перепешите, как требуется." -#| msgid "You do not have permission to add a plugin" -msgid "You don't have the permissions required to add a page." +msgid "Cannot automatically create slug. Please provide one manually." msgstr "" +msgid "Please provide a valid slug." +msgstr "" + +msgid "You don't have the permissions required to add a page." +msgstr "У вас нет необходимых прав для добавления страницы." + msgid "ID" msgstr "ИД" @@ -633,17 +665,67 @@ msgstr "Назначить права на" msgid "page" msgstr "страница" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "Только для зарегистрированных пользователей" + +msgid "for anonymous users only" +msgstr "Только для анонимных пользователей" + +msgid "Inherit from parent page" +msgstr "Наследовать от родительской страницы" + +msgid "Deny" +msgstr "Запретить" + +msgid "Only this website" +msgstr "Только этот сайт" + +msgid "Allow" +msgstr "Разрешить" + +msgid "title" +msgstr "заголовок" + +msgid "overwrite the title (html title tag)" +msgstr "переписать заголовок (html тег title)" + +msgid "overwrite the title in the menu" +msgstr "переписать заголовок в меню" + +msgid "description" +msgstr "описание" + +msgid "The text displayed in search engines." +msgstr "Текст, отображаемый в поисковых системах." + +msgid "redirect" +msgstr "перенаправление" + +msgid "The template used to render the content." +msgstr "Шаблон, используемый для отображения." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "по умолчанию" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Уникальный идентификатор, который используется с тегом page_url для связи с данной страницей" +msgstr "" +"Уникальный идентификатор, который используется с тегом page_url для связи с " +"данной страницей" msgid "pages" msgstr "страницы" -msgid "default" -msgstr "по умолчанию" - msgid "slug" msgstr "путь" @@ -671,29 +753,36 @@ msgstr "на уровне страницы" msgid "frontend view restriction" msgstr "ограничение просмотра в интерфейс" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Пожалуйста, выберите пользователя или группу." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Пользователи не могут публиковать страницы без разрешения изменять страницу. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут публиковать страницы без разрешения изменять " +"страницу. Требуется отредактировать разрешения." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Пользователи не могут править расширенные настройки страницы без разрешения изменять страницу. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут править расширенные настройки страницы без разрешения" +" изменять страницу. Требуется отредактировать разрешения." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Пользователи не могут изменять права доступа к странице без разрешения изменять страницу. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут изменять права доступа к странице без разрешения " +"изменять страницу. Требуется отредактировать разрешения." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Пользователи не могут перемещать страницы без разрешения изменять страницу. Требуется отредактировать разрешения." +msgstr "" +"Пользователи не могут перемещать страницы без разрешения изменять страницу." +" Требуется отредактировать разрешения." msgid "can recover any deleted page" msgstr "может восстанавливать любые удаленные страницы" @@ -713,7 +802,9 @@ msgstr "Права доступа к странице" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Права на добавление страницы требуют также доступ к потомкам, иначе созданная страница не сможет быть изменена создателем." +msgstr "" +"Права на добавление страницы требуют также доступ к потомкам, иначе " +"созданная страница не сможет быть изменена создателем." msgid "User (page)" msgstr "Пользователь (страница)" @@ -757,7 +848,9 @@ msgstr "название статического плейсхолдера" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Описательное название для идентификации плейсхолдера. Невидимо для пользователей." +msgstr "" +"Описательное название для идентификации плейсхолдера. Невидимо для " +"пользователей." msgid "placeholder code" msgstr "Код плейсхолдера" @@ -780,45 +873,6 @@ msgstr "статические плейсхолдеры" msgid "A static placeholder with the same site and code already exists" msgstr "Статический плейсхолдер с таким сайтом и кодом уже есть." -msgid "for logged in users only" -msgstr "Только для зарегистрированных пользователей" - -msgid "for anonymous users only" -msgstr "Только для анонимных пользователей" - -msgid "Inherit from parent page" -msgstr "Наследовать от родительской страницы" - -msgid "Deny" -msgstr "Запретить" - -msgid "Only this website" -msgstr "Только этот сайт" - -msgid "Allow" -msgstr "Разрешить" - -msgid "title" -msgstr "заголовок" - -msgid "overwrite the title (html title tag)" -msgstr "переписать заголовок (html тег title)" - -msgid "overwrite the title in the menu" -msgstr "переписать заголовок в меню" - -msgid "description" -msgstr "описание" - -msgid "The text displayed in search engines." -msgstr "Текст, отображаемый в поисковых системах." - -msgid "redirect" -msgstr "перенаправление" - -msgid "The template used to render the content." -msgstr "Шаблон, используемый для отображения." - msgid "Advanced options" msgstr "Расширенные настройки" @@ -826,7 +880,6 @@ msgid "Generic" msgstr "Общий" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" успешно изменен." @@ -834,67 +887,56 @@ msgid "There are no further settings for this plugin. Please press save." msgstr "Для плагина настроек больше нет. Пожалуйста, сохраните изменения." msgid "Moved" -msgstr "" +msgstr "Перемещен" -#| msgid "Change" msgid "Changed" msgstr "Изменена" -#| msgid "Delete" msgid "Deleted" -msgstr "" +msgstr "Удален" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" -msgstr "" +msgstr "Перевод страницы добавлен" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" -msgstr "" +msgstr "Перевод страницы изменен" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" -msgstr "" +msgstr "Перевод страницы удален" -#| msgid "Add plugin" msgid "Added Plugin" -msgstr "" +msgstr "Плагин добавлен" -#| msgid "Change" msgid "Changed Plugin" -msgstr "" +msgstr "Плагин изменен" -#| msgid "Add plugin" msgid "Moved Plugin" -msgstr "" +msgstr "Плагин перемещен" -#| msgid "Delete page" msgid "Deleted Plugin" -msgstr "" +msgstr "Плагин удален" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" -msgstr "" +msgstr "Вставить плагин" -#| msgid "static placeholder" msgid "Paste to Placeholder" -msgstr "" +msgstr "Вставить в плейсхолдер" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" -msgstr "" +msgstr "Добавленные плагины в плейсхолдер из буфера обмена" -#| msgid "Placeholder" msgid "Cleared Placeholder" -msgstr "" +msgstr "Очищенный плейсхолдер" msgid "Save" msgstr "Сохранить" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Войти в панель администратора здесь." @@ -909,9 +951,8 @@ msgstr "Имя пользователя:" msgid "Password:" msgstr "Пароль:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Добавить страницу" +msgstr "" msgid "Change a page" msgstr "Изменить страницу" @@ -992,9 +1033,11 @@ msgstr "Вырезать" msgid "Paste" msgstr "Вставить" -#| msgid "Save as new" msgid "Set as home" -msgstr "" +msgstr "Установить как домашнюю" + +msgid "Permissions" +msgstr "Права" msgid "is restricted" msgstr "не для всех" @@ -1002,6 +1045,9 @@ msgstr "не для всех" msgid "last change by" msgstr "последнее изменение сделано" +msgid "last change on" +msgstr "последнее изменение" + msgid "meta" msgstr "Мета" @@ -1011,7 +1057,6 @@ msgstr "Список страниц" msgid "Search" msgstr "Поиск" -#| msgid "Page Title" msgid "Page Tree" msgstr "Дерево страниц" @@ -1023,19 +1068,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Восстановить удаленную %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Восстановить удаленную %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Основная навигация" -#| msgid "Actions" msgid "Options" msgstr "Настройки" @@ -1043,7 +1083,8 @@ msgid "Successfully moved" msgstr "Перенесена удачно" msgid "Changes within the tree might require a refresh." -msgstr "Возможно, потребуется обновить дерево, чтобы увидеть изменения внутри него." +msgstr "" +"Возможно, потребуется обновить дерево, чтобы увидеть изменения внутри него." msgid "Error:" msgstr "Ошибка:" @@ -1051,7 +1092,9 @@ msgstr "Ошибка:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Эта страница не может быть скопирована из-за прикрепленного к ней приложения. Вы можете проверить это, открыв расширенные настройки страницы." +msgstr "" +"Эта страница не может быть скопирована из-за прикрепленного к ней " +"приложения. Вы можете проверить это, открыв расширенные настройки страницы." msgid "Are you sure you want to § this page?" msgstr "Вы уверены, что хотите § эту страницу?" @@ -1059,7 +1102,6 @@ msgstr "Вы уверены, что хотите § эту страницу?" msgid "Reload" msgstr "Перезагрузить" -#| msgid "New Page" msgid "New node" msgstr "Новый узел" @@ -1073,10 +1115,6 @@ msgid "Menu" msgstr "Меню" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1084,6 +1122,11 @@ msgid "" " Add %(object)s now.\n" " " msgstr "" +"\n" +" There is no %(object)s around yet.\n" +"
    \n" +" Add %(object)s now.\n" +" " msgid "Copy options" msgstr "Параметры копирования" @@ -1097,30 +1140,15 @@ msgstr "Закрыть" msgid "Legend" msgstr "Легенда" -#| msgid "published" -msgid "Published" -msgstr "Опубликована" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Неопубликована" - -msgid "Empty" -msgstr "Пусто" - -#| msgid "in menu" msgid "In menu" msgstr "В меню" -#| msgid "not in menu" msgid "Not in menu" msgstr "Не в меню" -#| msgid "New page" msgid "View page" msgstr "Посмотреть страницу" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1137,12 +1165,18 @@ msgstr "в меню" msgid "not in menu" msgstr "нет в меню" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Настройки страницы (SHIFT-клик для расширенных настроек)" -msgid "Permissions" -msgstr "Права" +msgid "This page has no preview!" +msgstr "У этой страницы нет предпросмотра!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Было перенаправлено на:" msgid "Clipboard" msgstr "Буфер обмена" @@ -1175,7 +1209,9 @@ msgid "You cannot add plugins to this plugin." msgstr "Вы не можете добавлять дочерние плагины в этот плагин." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Эта подключаемая программа не может перемещаться или редактироваться за пределами своих родителей" +msgstr "" +"Эта подключаемая программа не может перемещаться или редактироваться за " +"пределами своих родителей" msgid "Clipboard is empty." msgstr "Буфер обмена пустой" @@ -1187,14 +1223,13 @@ msgid "This plugin cannot have nested plugins." msgstr "Это расширение не может иметь вложенные расширения" msgid "Highlight" -msgstr "" +msgstr "Подсветка" msgid "Available plugins" msgstr "Доступные плагины" -#| msgid "Structure" msgid "Toggle structure" -msgstr "" +msgstr "Структура страницы" msgid "Login" msgstr "Войти" @@ -1206,11 +1241,12 @@ msgid "More" msgstr "Больше" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Девелоперская версия django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Девелоперская версия django CMS %(cms_version)s, Django %(django_version)s, " +"Python %(python_version)s" msgid "Cancel" msgstr "Отменить" @@ -1218,9 +1254,8 @@ msgstr "Отменить" msgid "The following error occured:" msgstr "Произошли следующие ошибки:" -#| msgid "Action successfull... reloading." msgid "Action successful." -msgstr "" +msgstr "Действие выполнено успешно." msgid "Are you sure you want to delete this plugin?" msgstr "Вы уверены, что хотите удалить данный плагин?" @@ -1231,37 +1266,37 @@ msgstr "Вы уверены, что хотите опубликовать эту msgid "Plugin will be added here" msgstr "Плагин будет добавлен здесь" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "У вас есть несохраненные изменения." -#| msgid "Loading..." msgid "Loading" -msgstr "" +msgstr "Загрузка" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Вы уверены, что хотите отменить эти изменения?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Невозможно загрузить форму. Пожалуйста, проверьте, что сервер работает корректно." +msgstr "" +"Невозможно загрузить форму. Пожалуйста, проверьте, что сервер работает " +"корректно." -#| msgid "Notify user" msgid "Most used" -msgstr "" +msgstr "Наиболее используемые" msgid "Shortcuts" msgstr "Ярлыки" msgid "The page was changed in the meantime, reloading..." +msgstr "Содержимое страницы изменилось, перезагрузка..." + +msgid "CMS-wide Shortcuts" msgstr "" msgid "Bring up this help dialog" msgstr "Показать эту справку" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Закрыть/отменить" @@ -1277,32 +1312,29 @@ msgstr "Открыть окно \"Создать\"" msgid "Focus on Toolbar" msgstr "Сфокусировать на Панели инструментов" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Сфокусировать на плейсхолдерах" msgid "Move to next/previous element" msgstr "Переместиться на следующий/предыдущий элемент" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Сфокусировать на плагинах плейсхолдера" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Редактировать плагин" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Открыть меню действий" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Свернуть/развернуть" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Вход не удался. Проверьте ваш логин и пароль и попробуйте снова." +msgstr "" +"Вход не удался. Проверьте ваш логин и пароль и попробуйте " +"снова." msgid "Double-click to edit" msgstr "Двойной клик для редактирования" @@ -1325,12 +1357,6 @@ msgstr "Развернуть" msgid "Drop a plugin here" msgstr "Поместите плагин сюда" -msgid "This page has no preview!" -msgstr "У этой страницы нет предпросмотра!" - -msgid "It is being redirected to:" -msgstr "Было перенаправлено на:" - msgid "Installation successful!" msgstr "Установка успешно завершена!" @@ -1345,14 +1371,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\nДобро пожаловать в django CMS версии %(cms_version)s." +msgstr "" +"\n" +"Добро пожаловать в django CMS версии %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\nДобавьте первую страницу в систему для продолжения." +msgstr "" +"\n" +"Добавьте первую страницу в систему для продолжения." #, python-format msgid "" @@ -1360,7 +1390,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nПохоже, что JavaScript отключен, так что\nдобавьте страницу вручную." +msgstr "" +"\n" +"Похоже, что JavaScript отключен, так что\n" +"добавьте страницу вручную." msgid "Installation Notes" msgstr "Рекомендации по установке" @@ -1371,15 +1404,6 @@ msgstr "Поддержка" msgid "Documentation" msgstr "Документация" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1387,16 +1411,12 @@ msgid "" " static files.

    \n" " " msgstr "" +"\n" +"

    Если вы не видите логотип Django CMS в верху страницы, \n" +" убедитесь, что вы связали директорию static/cms с \n" +" вашими статичными файлами.

    \n" +" " -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1405,6 +1425,12 @@ msgid "" "

    \n" " " msgstr "" +"\n" +"

    Вы видите это сообщение поскольку у вас установлен\n" +" DEBUG = True в settings файле вашего проекта и\n" +" пока нет ни одной добавленной страницы.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Добро пожаловать в django CMS" @@ -1421,11 +1447,7 @@ msgstr "Пожалуйста, выберите опцию ниже, чтобы msgid "Next" msgstr "Далее" -msgid "no content" -msgstr "нет содержимого" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1436,7 +1458,9 @@ msgstr "Страница не найдена на %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Тег шаблона не может найти страницу с параметрами поиска `%(page_lookup)s\n`. URL запроса: http://%(host)s%(path)s" +msgstr "" +"Тег шаблона не может найти страницу с параметрами поиска `%(page_lookup)s\n" +"`. URL запроса: http://%(host)s%(path)s" msgid "Two columns" msgstr "Две колонки" @@ -1449,7 +1473,9 @@ msgstr "Имя пользователя" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Обязательное. 300 символов или меньше. Допустимы буквы, цифры и символы @/./+/-/_" +msgstr "" +"Обязательное. 300 символов или меньше. Допустимы буквы, цифры и символы " +"@/./+/-/_" msgid "Enter a valid username." msgstr "Введите действующее имя пользователя." @@ -1469,7 +1495,9 @@ msgstr "активен" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Обозначает, что пользователь должен рассматриваться как активный. Отмените выбор вместо удаления учетной записи." +msgstr "" +"Обозначает, что пользователь должен рассматриваться как активный. Отмените " +"выбор вместо удаления учетной записи." msgid "users" msgstr "пользователи" @@ -1504,9 +1532,8 @@ msgstr "Статьи" msgid "Sample App" msgstr "Пример приложения" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" -msgstr "" +msgstr "Пример приложения с конфигурацией" msgid "Sample App with excluded permissions" msgstr "Пример приложения с исключенными разрешениями" @@ -1514,9 +1541,8 @@ msgstr "Пример приложения с исключенными разре msgid "Sample App 2" msgstr "Пример приложения 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Пример приложения 3" +msgstr "Пример приложения 2" msgid "Namespaced App" msgstr "Приложение в именованной области" @@ -1551,9 +1577,8 @@ msgstr "Статическое Меню2" msgid "Static Menu3" msgstr "Статическое Меню3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Статическое Меню4" +msgstr "Статическое Меню" msgid "Category" msgstr "Категория" @@ -1580,12 +1605,10 @@ msgid "UserSettings" msgstr "Настройки пользователя" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Добавить плагин в плейсхолдер \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Добавить плагин в %(plugin_name)s" @@ -1603,7 +1626,9 @@ msgstr "Этот плейсхолдер уже имеет максимально msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Этот плейсхолдер уже имеет максимальное количество (%(limit)s) плагинов типа %(plugin_name)s." +msgstr "" +"Этот плейсхолдер уже имеет максимальное количество (%(limit)s) плагинов типа" +" %(plugin_name)s." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1613,7 +1638,9 @@ msgstr "Невозможно найти указанный в CMS_REQUEST_IP_RES msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Невозможно найти указанную в CMS_REQUEST_IP_RESOLVER функцию: \"{0}\" в модуле \"{1}\"." +msgstr "" +"Невозможно найти указанную в CMS_REQUEST_IP_RESOLVER функцию: \"{0}\" в " +"модуле \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1622,396 +1649,3 @@ msgstr "Создать новый %s экземпляр." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Мастер уже зарегистрирован для модели: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ru/LC_MESSAGES/djangojs.mo b/cms/locale/ru/LC_MESSAGES/djangojs.mo index 2d173dbca100a580330e94a66a71e38243e86e12..33dc19bcc26685d9aace1c001626defac280b7e1 100644 GIT binary patch delta 88 zcmbQp*3C9ShxZ>N1H)7X28J>qo-)yLIj@1Pp`os^fr5dVm5JrVx8h3vIjQLiZkfdy p3O4!KX+YYcGBGbDwL-6`)J{ji$iUEavJRsHb7DckW`D**i~uxO8EgOm delta 94 zcmeBXo5(gnhnIzkfnh2G149`Q&zfktoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Russian (http://www.transifex.com/divio/django-cms/language/ru/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Oleg Fish , 2015\n" +"Language-Team: Russian (http://app.transifex.com/divio/django-cms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Вы уверены, что хотите изменить вкладки без сохранения страницы?" diff --git a/cms/locale/ru_RU/LC_MESSAGES/django.mo b/cms/locale/ru_RU/LC_MESSAGES/django.mo index f3cb0245d966ad069348de3ccfeee5b366467505..f4c5dc45c7b59fbb15417a1f8e717949ab064a36 100644 GIT binary patch delta 87 zcmdnT(!(-Ah3OLGL^WL&-Q?WjiQ&3JM!JR|q+n=ZWo)Ev00a{cs;L)S>FXyJ6zG){ nCFT`prlnTsCFkerr(~98=IfWFCgv9Fn_8HenQRti)MNwzT7enV delta 136 zcmeBS*~c^iwj+ dGV}FQvJ&&s^L3MRi}iDWtkT5v)Qyid83BolE8hSB diff --git a/cms/locale/ru_RU/LC_MESSAGES/django.po b/cms/locale/ru_RU/LC_MESSAGES/django.po index 3ba91a933b4..3186ab9aa37 100644 --- a/cms/locale/ru_RU/LC_MESSAGES/django.po +++ b/cms/locale/ru_RU/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/divio/django-cms/language/ru_RU/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Russian (Russia) (https://app.transifex.com/divio/teams/58664/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ru_RU/LC_MESSAGES/djangojs.mo b/cms/locale/ru_RU/LC_MESSAGES/djangojs.mo index 456881e3e1f34d380da96a13d67a7246911641e7..3d9c6d8aed4996bf10930ce975bb1b3c25a732e6 100644 GIT binary patch delta 69 zcmX@ha+qa;3M1!4)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!!Q;^78VHp8^>H#?%_s diff --git a/cms/locale/ru_RU/LC_MESSAGES/djangojs.po b/cms/locale/ru_RU/LC_MESSAGES/djangojs.po index 0ef26cb6134..4ae2ce7c4a6 100644 --- a/cms/locale/ru_RU/LC_MESSAGES/djangojs.po +++ b/cms/locale/ru_RU/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/divio/django-cms/language/ru_RU/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Russian (Russia) (http://app.transifex.com/divio/django-cms/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/sk/LC_MESSAGES/django.mo b/cms/locale/sk/LC_MESSAGES/django.mo index 5a2e46ee9b8f29595a7666b83068e5888a7c24a9..1ca9c6b3a5e85c82a78382aaacf390797cc8f1db 100644 GIT binary patch delta 6511 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 Wvc~D7?g?&8x%FH?W9NydUH=0)vf;%5 delta 6651 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 diff --git a/cms/locale/sk/LC_MESSAGES/django.po b/cms/locale/sk/LC_MESSAGES/django.po index e3fc93a77d3..3044c47d1e1 100644 --- a/cms/locale/sk/LC_MESSAGES/django.po +++ b/cms/locale/sk/LC_MESSAGES/django.po @@ -3,19 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# 18f25ad6fa9930fc67cb11aca9d16a27, 2013 -# Juraj Hudak , 2013 -# Martin Kilian , 2019 -# Thomas Thomas , 2016 +# Thomas Thomas , 2022 +# Fabian Braun , 2023 +# Martin Kilian , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Slovak (http://www.transifex.com/divio/django-cms/language/sk/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Martin Kilian , 2023\n" +"Language-Team: Slovak (https://app.transifex.com/divio/teams/58664/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -51,16 +50,16 @@ msgstr "Názov stránky" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Prepísať to, čo je zobrazené v hornej časti vášho prehliadača alebo v záložkách." +msgstr "" +"Prepísať to, čo je zobrazené v hornej časti vášho prehliadača alebo v " +"záložkách." msgid "Description meta tag" msgstr "Popisný meta tag" msgid "A description of the page used by search engines." -msgstr "Zoznam kľúčových slov oddelených čiarkou, ktoré môžu indexovať vyhľadávače." - -msgid "Slug must not be empty." -msgstr "Slug nesmie byť prázdny." +msgstr "" +"Zoznam kľúčových slov oddelených čiarkou, ktoré môžu indexovať vyhľadávače." msgid "Page type" msgstr "Typ stránky" @@ -72,9 +71,9 @@ msgid "Overwrite URL" msgstr "Prepísať URL" msgid "Keep this field empty if standard path should be used." -msgstr "Ponechajte toto pole prázdne, ak chcete, aby sa použila štandardná cesta." +msgstr "" +"Ponechajte toto pole prázdne, ak chcete, aby sa použila štandardná cesta." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +95,9 @@ msgstr "viditeľnosť menu" msgid "limit when this page is visible in the menu" msgstr "obmedzuje zobrazenie tejto stránky v menu" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +113,6 @@ msgstr "Konfigurácia aplikácie" msgid "A page with this reverse URL id exists already." msgstr "Stránka s takouto hodnotou reverse URL id už existuje." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Zlá hodnota aplikačného konfigu" @@ -153,22 +149,30 @@ msgstr "Vymazať" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Uživatelia nemôžu vytvoriť stránku bez oprávnenia, ktoré by im túto akciu umožňovalo. Je vyžadované oprávnenia editovať stránku." +msgstr "" +"Uživatelia nemôžu vytvoriť stránku bez oprávnenia, ktoré by im túto akciu " +"umožňovalo. Je vyžadované oprávnenia editovať stránku." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Uživatelia nemôžu smazať stránku bez oprávnenia, ktoré by im túto akciu umožňovalo. Je vyžadované oprávnenie editovať stránku." +msgstr "" +"Uživatelia nemôžu smazať stránku bez oprávnenia, ktoré by im túto akciu " +"umožňovalo. Je vyžadované oprávnenie editovať stránku." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Uživatelia nemôžu nastaviť oprávnenia stránky bez oprávnenia, ktoré by im túto akciu umožňovalo. Je vyžadované oprávnenie editovať stránku." +msgstr "" +"Uživatelia nemôžu nastaviť oprávnenia stránky bez oprávnenia, ktoré by im " +"túto akciu umožňovalo. Je vyžadované oprávnenie editovať stránku." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Uživatelia nemôžu vymazať oprávnenia ku stránke bez oprávnenia, ktoré by im túto akciu umožňovalo. Je vyžadované oprávnenie editovať stránku." +msgstr "" +"Uživatelia nemôžu vymazať oprávnenia ku stránke bez oprávnenia, ktoré by im " +"túto akciu umožňovalo. Je vyžadované oprávnenie editovať stránku." msgid "" "Users can't create page permissions without permissions to change the " @@ -190,7 +194,6 @@ msgstr "Jazyk musí byť medzi podporovanými jazykmi" msgid "Parent plugin language must be same as language!" msgstr "Jazyk zásuvného nadradeného modulu musí byť rovnaký ako hlavný jazyk!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +208,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,9 +224,9 @@ msgstr "Objekt %(name)s s primárnym kľúčom %(key)r neexistuje." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Chyba! Nemáte právo presunúť túto stránku. Prosím znovu načítajte stránku." +msgstr "" +"Chyba! Nemáte právo presunúť túto stránku. Prosím znovu načítajte stránku." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +259,6 @@ msgstr "Šablóna bola úspešne zmenená" msgid "You do not have permission to copy these plugins." msgstr "Nemáte právo kopírovať tieto zásuvné moduly." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,8 +266,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "Názov a zásuvné moduly pre jazyk %(language)s boli vymazané" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nemáte právo meniť status (zobrazenie v navigácii) tejto stránky" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Prázdne" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Obmedzenie náhľadu" @@ -284,7 +297,6 @@ msgstr "Nemáte právo upraviť túto položku" msgid "You do not have permission to add a plugin" msgstr "Nemáte právo pridať zásuvný modul" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +306,15 @@ msgstr "Zásuvný modul nebol nájdený" msgid "You do not have permission to edit this plugin" msgstr "Nemáte právo na úpravu tohto zásuvného modulu" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "Nemáte žiadne práva na premiestnenie tohto zásuvného modulu" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +344,47 @@ msgstr "Práva užívateľov a skupín" msgid "Page permissions management" msgstr "Správa práv k stránkam" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Náhľad" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +413,6 @@ msgstr "Vytvoriť" msgid "Edit" msgstr "Upraviť" -msgid "Preview" -msgstr "Náhľad" - msgid "Structure" msgstr "Štruktúra" @@ -409,15 +456,12 @@ msgstr "Odhlásenie" msgid "Language" msgstr "Jazyk" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +470,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +479,6 @@ msgstr "Stránky" msgid "Page" msgstr "Stránka" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -483,26 +525,20 @@ msgid "Select a valid page" msgstr "Vyberte platnú stránku" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Voliteľné. Pokiaľ uvediete, text bude automaticky pridaný do nového textového modulu." +msgstr "" +"Voliteľné. Pokiaľ uvediete, text bude automaticky pridaný do nového " +"textového modulu." msgid "Provide a title for the new page." msgstr "Uveďte názov pre novú stránku." @@ -510,7 +546,12 @@ msgstr "Uveďte názov pre novú stránku." msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,17 +648,67 @@ msgstr "Prideliť právo na" msgid "page" msgstr "stránka" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "len pre prihlásených užívateľov" + +msgid "for anonymous users only" +msgstr "len pre anonymných užívateľov" + +msgid "Inherit from parent page" +msgstr "Prevziať z nadradenej stránky" + +msgid "Deny" +msgstr "Odmietnuť" + +msgid "Only this website" +msgstr "Len tento web" + +msgid "Allow" +msgstr "Povoliť" + +msgid "title" +msgstr "názov" + +msgid "overwrite the title (html title tag)" +msgstr "Prepísať titulok (html title tag)" + +msgid "overwrite the title in the menu" +msgstr "prepísať názov v menu" + +msgid "description" +msgstr "popis" + +msgid "The text displayed in search engines." +msgstr "Text zobrazený vo vyhľadávačoch" + +msgid "redirect" +msgstr "presmerovanie" + +msgid "The template used to render the content." +msgstr "Šablóna, ktora sa použije na zobrazenie obsahu." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "predvolené" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Jedinečný identifikátor, ktorý je použitý s page_url templatetag pre odkazovanie do tejto stránky" +msgstr "" +"Jedinečný identifikátor, ktorý je použitý s page_url templatetag pre " +"odkazovanie do tejto stránky" msgid "pages" msgstr "stránky" -msgid "default" -msgstr "predvolené" - msgid "slug" msgstr "identifikátor" @@ -645,7 +736,6 @@ msgstr "na úrovni stránky" msgid "frontend view restriction" msgstr "obmedzenie frontend view" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -687,7 +777,9 @@ msgstr "Nastavenia práv stránky" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Právo na pridanie stránky vyžaduje taktiež prístup k vnoreným stránkam (potomkom). Inak nebude môcť takéto stránky editovať ich autor." +msgstr "" +"Právo na pridanie stránky vyžaduje taktiež prístup k vnoreným stránkam " +"(potomkom). Inak nebude môcť takéto stránky editovať ich autor." msgid "User (page)" msgstr "Užívateľ stránok" @@ -731,7 +823,8 @@ msgstr "názov statického umiestňovača" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Popisný názov identifikujúci tento umiestňovač. Nie je zobrazený užívateľom." +msgstr "" +"Popisný názov identifikujúci tento umiestňovač. Nie je zobrazený užívateľom." msgid "placeholder code" msgstr "kód umiestňovača" @@ -754,45 +847,6 @@ msgstr "statické umiestňovače" msgid "A static placeholder with the same site and code already exists" msgstr "Statický umiestňovač s rovnakým kódom pre tento web už existuje" -msgid "for logged in users only" -msgstr "len pre prihlásených užívateľov" - -msgid "for anonymous users only" -msgstr "len pre anonymných užívateľov" - -msgid "Inherit from parent page" -msgstr "Prevziať z nadradenej stránky" - -msgid "Deny" -msgstr "Odmietnuť" - -msgid "Only this website" -msgstr "Len tento web" - -msgid "Allow" -msgstr "Povoliť" - -msgid "title" -msgstr "názov" - -msgid "overwrite the title (html title tag)" -msgstr "Prepísať titulok (html title tag)" - -msgid "overwrite the title in the menu" -msgstr "prepísať názov v menu" - -msgid "description" -msgstr "popis" - -msgid "The text displayed in search engines." -msgstr "Text zobrazený vo vyhľadávačoch" - -msgid "redirect" -msgstr "presmerovanie" - -msgid "The template used to render the content." -msgstr "Šablóna, ktora sa použije na zobrazenie obsahu." - msgid "Advanced options" msgstr "Pokročilé nastavenia" @@ -800,75 +854,65 @@ msgid "Generic" msgstr "Generic" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" msgid "There are no further settings for this plugin. Please press save." -msgstr "Nie sú k dispozícii žiadne ďalšie nastavenia pre tento zásuvný modul. Prosím, stlačte tlačidlo Uložiť." +msgstr "" +"Nie sú k dispozícii žiadne ďalšie nastavenia pre tento zásuvný modul. " +"Prosím, stlačte tlačidlo Uložiť." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Uložiť" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Prihlásiť sa do administrácie." @@ -883,7 +927,6 @@ msgstr "Užívateľské meno:" msgid "Password:" msgstr "Heslo:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -966,16 +1009,21 @@ msgstr "Vystrihnúť" msgid "Paste" msgstr "Prilepiť" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Oprávnenia" + msgid "is restricted" msgstr "je obmedzené" msgid "last change by" msgstr "naposledy upravil" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -985,7 +1033,6 @@ msgstr "Zoznam stránok" msgid "Search" msgstr "Hľadať" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -999,17 +1046,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1033,7 +1072,6 @@ msgstr "Naozaj chcete § túto stránku?" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1047,10 +1085,6 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1071,30 +1105,15 @@ msgstr "Zavrieť" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "Prázdne" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1111,12 +1130,18 @@ msgstr "v menu" msgid "not in menu" msgstr "nie je v menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Oprávnenia" +msgid "This page has no preview!" +msgstr "Táto stránka nemá náhľad!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Presmerováva na:" msgid "Clipboard" msgstr "Schránka" @@ -1166,7 +1191,6 @@ msgstr "" msgid "Available plugins" msgstr "Dostupné pluginy" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1180,7 +1204,6 @@ msgid "More" msgstr "Viac" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1192,7 +1215,6 @@ msgstr "Zrušiť" msgid "The following error occured:" msgstr "Došlo k nasledujúcej chybe:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1205,15 +1227,12 @@ msgstr "Ste si istý, že chcete publikovať túto stránku?" msgid "Plugin will be added here" msgstr "Plugin bude pridaný sem" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1222,7 +1241,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1232,10 +1250,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1251,32 +1271,29 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Prihlásenie bolo neúspešné. Prosím skontrolujte vaše meno a heslo a skúste to znovu." +msgstr "" +"Prihlásenie bolo neúspešné. Prosím skontrolujte vaše meno a" +" heslo a skúste to znovu." msgid "Double-click to edit" msgstr "Dvoj-klik pre úpravu" @@ -1299,12 +1316,6 @@ msgstr "Maximalizovať" msgid "Drop a plugin here" msgstr "Presuňte plugin sem" -msgid "This page has no preview!" -msgstr "Táto stránka nemá náhľad!" - -msgid "It is being redirected to:" -msgstr "Presmerováva na:" - msgid "Installation successful!" msgstr "Inštalácia prebehla úspešne!" @@ -1319,14 +1330,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Vitajte v django CMS verzii %(cms_version)s.\n " +msgstr "" +"\n" +" Vitajte v django CMS verzii %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Pridajte prvú stránku aby ste pokračovali ďalej.\n " +msgstr "" +"\n" +" Pridajte prvú stránku aby ste pokračovali ďalej.\n" +" " #, python-format msgid "" @@ -1334,7 +1351,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n Zdá sa, že máte zakázany JavaScript. Prosím\n pridajte stránku ručne.\n " +msgstr "" +"\n" +" Zdá sa, že máte zakázany JavaScript. Prosím\n" +" pridajte stránku ručne.\n" +" " msgid "Installation Notes" msgstr "" @@ -1345,15 +1366,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1362,15 +1374,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1395,11 +1398,7 @@ msgstr "" msgid "Next" msgstr "Ďalej" -msgid "no content" -msgstr "žiadny obsah" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1478,7 +1477,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1488,7 +1486,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1525,9 +1522,8 @@ msgstr "Statické Menu2" msgid "Static Menu3" msgstr "Statické Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Statické Menu4" +msgstr "Statické Menu" msgid "Category" msgstr "Kategória" @@ -1554,12 +1550,10 @@ msgid "UserSettings" msgstr "Uživateľské nastavenie" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Pridať plugin na miesto \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Pridať plugin do %(plugin_name)s" @@ -1577,7 +1571,9 @@ msgstr "Toto miesto už obsahuje maximálny počet pluginov (%s)" msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Toto miesto už obsahuje maximálny počet (%(limit)s) z %(plugin_name)spovolených pluginov." +msgstr "" +"Toto miesto už obsahuje maximálny počet (%(limit)s) z " +"%(plugin_name)spovolených pluginov." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1587,7 +1583,9 @@ msgstr "Nepodarilo sa nájsť špecifikovaný CMS_REQUEST_IP_RESOLVER modul: \"{ msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Nepodarilo sa nájsť špecifikovanu CMS_REQUEST_IP_RESOLVER funkciu: \"{0}\" v module \"{1}\"." +msgstr "" +"Nepodarilo sa nájsť špecifikovanu CMS_REQUEST_IP_RESOLVER funkciu: \"{0}\" v" +" module \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1596,396 +1594,3 @@ msgstr "Vytvoriť novú %sinštanciu." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Sprievodca už bol registrovaný pre model: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sk/LC_MESSAGES/djangojs.mo b/cms/locale/sk/LC_MESSAGES/djangojs.mo index 00a5af4b4c7846f4d281084420bc052b86427447..87cefa52dcf0793324a329cc89f48b1f44cc03bb 100644 GIT binary patch delta 83 zcmdnYx{`H*4(~2T28O8&3=9!K95B&xIj@1Pp`os^fr5dVm5JrVx8kyuiP_ne3O1Q~ m#RZ8uIjJQjnGSiW1sRz+iF%nOleHNYm=g;MHv2KAG6Dd&pcr`o delta 93 zcmZ3\n" -"Language-Team: Slovak (http://www.transifex.com/divio/django-cms/language/sk/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Slovak (http://app.transifex.com/divio/django-cms/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Ste si istý, že chcete zmeniť záložku bez toho, aby ste najskôr uložili stránku?" diff --git a/cms/locale/sk_SK/LC_MESSAGES/django.mo b/cms/locale/sk_SK/LC_MESSAGES/django.mo index d1a9f82241f984c4e5b1122c1e82f0609d2f44f0..ffb4eb2cf6e2de2d73324dda7eebd9d83268e83b 100644 GIT binary patch delta 320 zcmbQuw}@}To%*wk3=C_S85r0Z7#ONpA#@Xvb_MdgfV2^iz5t}TfHX53M4k^wiv#&$ zP`)0J76kImfHW_V_5jjABN@VgG)P|*kmd){sZjY+Ak72hH?uL=fi+A33P=G3<^gG8 zAiWbv3jyh~Kw1+>KLFA|#J~k~B@2)i1k&6#=syB zr1^m~h_4Q$1%b3akmd!_jzAh{B!fSY2I&h1()>U=4l17qqN2q?IQs@qKE, 2018 +# Erik Pribula , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/divio/django-cms/language/sk_SK/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Erik Pribula , 2022\n" +"Language-Team: Slovak (Slovakia) (https://app.transifex.com/divio/teams/58664/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +56,6 @@ msgstr "Popisný meta tag" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "Typ stránky" @@ -71,7 +68,6 @@ msgstr "Prepis URL" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -187,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -202,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -406,15 +441,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +464,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +631,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +690,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -797,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -963,16 +985,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -982,7 +1009,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -996,17 +1022,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1030,7 +1048,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1044,10 +1061,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1068,30 +1081,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1108,11 +1106,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1163,7 +1167,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1177,7 +1180,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1189,7 +1191,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1202,15 +1203,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1219,7 +1217,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1229,10 +1226,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1248,26 +1247,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1296,12 +1290,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1342,15 +1330,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1359,15 +1338,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,11 +1362,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1475,7 +1441,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1485,7 +1450,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1522,7 +1486,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1551,12 +1514,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1593,396 +1554,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sk_SK/LC_MESSAGES/djangojs.mo b/cms/locale/sk_SK/LC_MESSAGES/djangojs.mo index 49b7e1b95a012927f876638eccf4767f32aac626..03214fc8fe4d2da776bb1c7402e7655f3c28f679 100644 GIT binary patch delta 69 zcmeBYX=Rz9!gzY3YCNxjuA!l>v4MhtnU#s<#EIgvm5JHel?pbQdc_5aIXS5%C7BL+ ZsRbFCIf;6iB@@qUGba`lZ2T+42ms@g7drp| delta 79 zcmZo=>1Uas!gzI}YCNxnu7RPhp`n7InU%4{#EIhS0g0tK`3jCXWr;\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/divio/django-cms/language/sk_SK/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Slovak (Slovakia) (http://app.transifex.com/divio/django-cms/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/sl/LC_MESSAGES/django.mo b/cms/locale/sl/LC_MESSAGES/django.mo index 6e8ece53249b3c30220e67d4d0a35f00faee3384..c53420e4c5fa4d664843d8dfa634950e659f04ff 100644 GIT binary patch delta 85 zcmcc3ypnl>3S<66RXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*-e3ji=c8XN!s delta 134 zcmZ3, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Slovenian (http://www.transifex.com/divio/django-cms/language/sl/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Slovenian (https://app.transifex.com/divio/teams/58664/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sl/LC_MESSAGES/djangojs.mo b/cms/locale/sl/LC_MESSAGES/djangojs.mo index a58777f2b50cdb0275567362067729eb4f08483a..469b77d8b4e450edf4f406535bca3a61752e07c1 100644 GIT binary patch delta 68 zcmaFG{D66a3gfbgs`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Yr50pl<|OK6mP|aa%$!(IF!AeG0P@%vd;kCd delta 78 zcmaFB{EB&k3gd=}s`0!Qx(0^2hK34;W>&@)6DNwR2PBr}loQUw;Jv=wcin diff --git a/cms/locale/sl/LC_MESSAGES/djangojs.po b/cms/locale/sl/LC_MESSAGES/djangojs.po index 9f19bc26bf8..3f8ceb91e6b 100644 --- a/cms/locale/sl/LC_MESSAGES/djangojs.po +++ b/cms/locale/sl/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Slovenian (http://www.transifex.com/divio/django-cms/language/sl/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Slovenian (http://app.transifex.com/divio/django-cms/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/sl_SI/LC_MESSAGES/django.mo b/cms/locale/sl_SI/LC_MESSAGES/django.mo index 8b6b4330b83206b15b98a3c97039fb1c8d2d51d5..15ef8b2844bb6ba3032355ef4248aaaea52f0f24 100644 GIT binary patch delta 147 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

    cnSG%2l;z_m0QRlinh6fQicy^mnju8#!}F z%zon_-LkClrZaX0ipa+``GV9j!{3;L?eT;XGp_g$G|vl<40`jX9aR%5zk;UK55{%kvW>w zwOQ$B92&EvmpA#_zK_HN6`z8, 2013 -# simonv , 2011 -# simonv , 2011 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/divio/django-cms/language/sl_SI/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Slovenian (Slovenia) (https://app.transifex.com/divio/teams/58664/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,43 +18,40 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" msgid "All" -msgstr "Vse" +msgstr "" msgid "Copy permissions" -msgstr "Prekopiraj dovoljenaja" +msgstr "" msgid "Title" -msgstr "Naslov" +msgstr "" msgid "The default title" -msgstr "Privzeti naslov" +msgstr "" msgid "Slug" -msgstr "Kratek opis" +msgstr "" msgid "The part of the title that is used in the URL" -msgstr "Del naslova, ki se uporabi v URL-ju" +msgstr "" msgid "Menu Title" -msgstr "Naslov menija" +msgstr "" msgid "Overwrite what is displayed in the menu" -msgstr "Prepiši besedilo, ki je prikazano v meniju" +msgstr "" msgid "Page Title" -msgstr "Naslov strani" +msgstr "" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Prepiši besedilo, ki je prikazano na vrhu brskalnika ali v zaznamkih" +msgstr "" msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Seznam ključnih besed, ki ga včasih uporabljajo iskalniki." - -msgid "Slug must not be empty." msgstr "" msgid "Page type" @@ -68,54 +61,50 @@ msgid "Page Types" msgstr "" msgid "Overwrite URL" -msgstr "Prepiši URL" +msgstr "" msgid "Keep this field empty if standard path should be used." -msgstr "Če želite ohraniti običajno pot, pustite to polje prazno" +msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Nasledniki ne bodo prikazani pri navigaciji" +msgstr "" msgid "Redirect" -msgstr "Preusmeri" +msgstr "" msgid "Redirects to this URL." -msgstr "Preusmeri na ta URL." +msgstr "" msgid "Start typing..." msgstr "" msgid "menu visibility" -msgstr "Vidnost menija" +msgstr "" msgid "limit when this page is visible in the menu" -msgstr "Omeji kdaj bo ta stran prkazana v meniju" +msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" msgid "Application" -msgstr "Aplikacija" +msgstr "" msgid "Hook application to this page." -msgstr "Pripni aplikacijo tej strani." +msgstr "" msgid "Application configurations" msgstr "" msgid "A page with this reverse URL id exists already." -msgstr "Stran, ki uporablja ta vzvratni URL, že obstaja." +msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -135,19 +124,19 @@ msgid "No" msgstr "" msgid "user" -msgstr "Uporabnik" +msgstr "" msgid "can_view" -msgstr "lahko_vidi" +msgstr "" msgid "Add" -msgstr "Dodaj" +msgstr "" msgid "Change" -msgstr "Spremeni" +msgstr "" msgid "Delete" -msgstr "Izbriši" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " @@ -184,12 +173,11 @@ msgid "Invalid plugin type '%s'" msgstr "" msgid "Language must be set to a supported language!" -msgstr "Jezik mora biti nastavljen na podprt jezik!" +msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -198,13 +186,12 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "Napredne nastavitve" +msgstr "" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -213,17 +200,16 @@ msgid "Cannot delete %(name)s" msgstr "" msgid "Are you sure?" -msgstr "Ali ste prepričani?" +msgstr "" #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "predmet %(name)s s primarnim ključem %(key)r ne obstaja." +msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Napaka! Nimate pravic za premakniti to stran. Prosimo " +msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -245,7 +231,7 @@ msgid "New page" msgstr "" msgid "Database error" -msgstr "Napaka podatkovne baze" +msgstr "" msgid "Template not valid" msgstr "" @@ -256,22 +242,33 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Naslov in vtičniki z jezikom %(language)s so bili pobrisani" +msgstr "" + +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nimate dovoljenja za spreminjanje strani v statusu in_navigation" +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" -msgstr "Poglej omejitev" +msgstr "" msgid "View restrictions" -msgstr "Poglej omejitve" +msgstr "" #, python-format msgid "Field %s not found" @@ -283,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -293,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -326,20 +319,61 @@ msgid "placeholder" msgstr "" msgid "Page permissions" -msgstr "Dovoljenja na strani" +msgstr "" msgid "User & Group permissions" -msgstr "Dovoljenja za uporabnike in skupine" +msgstr "" msgid "Page permissions management" -msgstr "Upravljanje pravic na strani" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" #, python-format msgid "No registered apphook \"%r\" found" msgstr "" msgid "django CMS" -msgstr "django CMS" +msgstr "" msgid "Placeholder" msgstr "" @@ -362,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "Predogled" - msgid "Structure" msgstr "" @@ -403,20 +434,17 @@ msgid "Logout %s" msgstr "" msgid "Logout" -msgstr "Odjavi" +msgstr "" msgid "Language" -msgstr "Jezik" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -425,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,9 +460,8 @@ msgid "Pages" msgstr "" msgid "Page" -msgstr "Stran" +msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -467,7 +493,7 @@ msgid "Display in navigation" msgstr "" msgid "Delete page" -msgstr "Zbriši stran" +msgstr "" msgid "Create a new page next to the current page." msgstr "" @@ -476,26 +502,18 @@ msgid "Create a page below the current page." msgstr "" msgid "Select a valid site" -msgstr "Izberite veljavno spletno stran" +msgstr "" msgid "Select a valid page" -msgstr "Izberite veljavno stran" +msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -509,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -517,94 +540,145 @@ msgid "ID" msgstr "" msgid "position" -msgstr "pozicija" +msgstr "" msgid "language" -msgstr "jezik" +msgstr "" msgid "plugin_name" msgstr "" msgid "creation date" -msgstr "datum izdelave" +msgstr "" msgid "can edit" -msgstr "lahko ureja" +msgstr "" msgid "can add" -msgstr "sme dodati" +msgstr "" msgid "can delete" -msgstr "sme izbrisati" +msgstr "" msgid "can change advanced settings" -msgstr "lahko spremnija napredne nastavitve" +msgstr "" msgid "can publish" -msgstr "lahko objavlja" +msgstr "" msgid "can change permissions" -msgstr "lahko spreminja dovoljenja" +msgstr "" msgid "can move" -msgstr "lahko premika" +msgstr "" msgid "view restricted" -msgstr "omejeni pogled" +msgstr "" msgid "can recover pages" -msgstr "lahko povrne" +msgstr "" msgid "group" -msgstr "skupina" +msgstr "" msgid "sites" -msgstr "spletišča" +msgstr "" msgid "created by" -msgstr "izdelal" +msgstr "" msgid "changed by" -msgstr "spremenil" +msgstr "" msgid "publication date" -msgstr "datum objave" +msgstr "" msgid "publication end date" -msgstr "končni datum objave" +msgstr "" msgid "in navigation" -msgstr "v navigaciji" +msgstr "" msgid "soft root" -msgstr "'soft root'" +msgstr "" msgid "id" -msgstr "oznaka" +msgstr "" msgid "attached menu" -msgstr "Povezani meni" +msgstr "" msgid "template" -msgstr "predloga" +msgstr "" msgid "login required" -msgstr "potrebna je prijava" +msgstr "" msgid "application" -msgstr "aplikacija" +msgstr "" msgid "application instance name" msgstr "" msgid "site" -msgstr "spletno mesto" +msgstr "" msgid "Grant on" -msgstr "Dovoli na" +msgstr "" msgid "page" -msgstr "stran" +msgstr "" + +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" msgid "" "A unique identifier that is used with the page_url templatetag for linking " @@ -612,39 +686,35 @@ msgid "" msgstr "" msgid "pages" -msgstr "strani" - -msgid "default" -msgstr "privzeto" +msgstr "" msgid "slug" -msgstr "kratek opis" +msgstr "" msgid "Path" -msgstr "Pot" +msgstr "" msgid "Current page" -msgstr "Trenutna stran" +msgstr "" msgid "Page children (immediate)" -msgstr "(Neposredni) nasledniki strani" +msgstr "" msgid "Page and children (immediate)" -msgstr "Stran in (neposredni) nasledniki" +msgstr "" msgid "Page descendants" -msgstr "Potomci strani" +msgstr "" msgid "Page and descendants" -msgstr "Stran in njeni potomci" +msgstr "" msgid "on page level" -msgstr "na nivoju strani" +msgstr "" msgid "frontend view restriction" -msgstr "omejitve pogleda prikazovalnika" +msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -669,45 +739,45 @@ msgid "" msgstr "" msgid "can recover any deleted page" -msgstr "lahko povrne vsako izbrisano stram" +msgstr "" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Če ni izbrano nič, ima uporabnik pravico do vseh spletišč" +msgstr "" msgid "Page global permission" -msgstr "Globalne pravice strani" +msgstr "" msgid "Pages global permissions" -msgstr "Globalne pravice za vse strani" +msgstr "" msgid "Page permission" -msgstr "Dovoljenja na strani" +msgstr "" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Pravica \"dodaj stran\" zahteva tudi dostop do otrok, ali potomcev, sicer dodana strani ne more spremeniti njen ustvarjalec." +msgstr "" msgid "User (page)" -msgstr "Uporabnik (stran)" +msgstr "" msgid "Users (page)" -msgstr "Uporabniki (stran)" +msgstr "" msgid "User group (page)" -msgstr "Skupina uporabnikov (stran)" +msgstr "" msgid "User groups (page)" -msgstr "Skupine uporabnikov (stran)" +msgstr "" msgid "slot" -msgstr "slot" +msgstr "" msgid "width" -msgstr "širina" +msgstr "" msgid "" -msgstr "" +msgstr "" msgid "The language for the admin interface and toolbar" msgstr "" @@ -753,53 +823,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "Samo za prijavljene uporabnike" - -msgid "for anonymous users only" -msgstr "Samo za anonimne uporabnike" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "naslov" - -msgid "overwrite the title (html title tag)" -msgstr "Prepiši naslov (html tag \"title\")" - -msgid "overwrite the title in the menu" -msgstr "prepiši naslov na meniju" - -msgid "description" -msgstr "opis" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "preusmeri" - -msgid "The template used to render the content." -msgstr "Predloga za prikaz vsebine" - msgid "Advanced options" -msgstr "Napredne nastavitve" +msgstr "" msgid "Generic" -msgstr "Generično" +msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -809,182 +839,174 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" -msgstr "Shrani" +msgstr "" + +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" #, python-format msgid "Log in to administration here." -msgstr "Tukaj se prijavite v upravljanje ." +msgstr "" #, python-format msgid "Login url: %(login_url)s" msgstr "" msgid "Username:" -msgstr "Uporabnik:" +msgstr "" msgid "Password:" -msgstr "Geslo:" +msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" msgid "Change a page" -msgstr "Spremeni stran" +msgstr "" msgid "Home" -msgstr "Domov" +msgstr "" msgid "View on site" -msgstr "Poglej na spletišču" +msgstr "" msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "Popravite spodnjo napako" -msgstr[1] "Popravite spodnji napaki" -msgstr[2] "Popravite spodnje napake" -msgstr[3] "Popravite spodnje napake" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" msgid "All permissions" -msgstr "Vse pravice" +msgstr "" msgid "Loading..." -msgstr "Nalagam..." +msgstr "" msgid "Save and continue editing" -msgstr "Shrani in nadaljuj urejanje" +msgstr "" msgid "User" -msgstr "Uporabnik" +msgstr "" msgid "Group" -msgstr "Skupina" +msgstr "" msgid "Can edit" -msgstr "Lahko ureja" +msgstr "" msgid "Can add" -msgstr "Lahko dodaja" +msgstr "" msgid "Can delete" -msgstr "Lahko briše" +msgstr "" msgid "Can publish" -msgstr "Lahko objavi" +msgstr "" msgid "Can change permissions" -msgstr "Lahko spreminja pravice" +msgstr "" msgid "Can move" -msgstr "Lahko premika" +msgstr "" msgid "Can view" -msgstr "Lahko vidi" +msgstr "" msgid "(global)" -msgstr "(Globalno)" +msgstr "" msgid "(current)" -msgstr "(Trenutno)" +msgstr "" msgid "Page doesn't inherit any permissions." -msgstr "Stran ne deduje pravic." +msgstr "" msgid "Edit model" msgstr "" msgid "Save as new" -msgstr "Shrani kot novega" +msgstr "" msgid "Save and add another" -msgstr "Shrani in dodaj novega" +msgstr "" msgid "Copy" -msgstr "Kopiraj" +msgstr "" msgid "Cut" -msgstr "Izreži" +msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" msgid "List of pages" -msgstr "Seznam strani" +msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -998,22 +1020,14 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" msgid "Successfully moved" -msgstr "Uspešno prestavljen" +msgstr "" msgid "Changes within the tree might require a refresh." msgstr "" @@ -1032,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1046,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1059,10 +1068,10 @@ msgid "" msgstr "" msgid "Copy options" -msgstr "Možnosti kopiranja" +msgstr "" msgid "Choose copy options" -msgstr "Izberi možnosti kopiranja" +msgstr "" msgid "Close" msgstr "" @@ -1070,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1110,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1163,14 +1163,13 @@ msgid "Highlight" msgstr "" msgid "Available plugins" -msgstr "Razpoložljivi vtičniki" +msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" msgid "Login" -msgstr "Prijava" +msgstr "" msgid "Add plugin to" msgstr "" @@ -1179,24 +1178,22 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" msgid "Cancel" -msgstr "Prekliči" +msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" msgid "Are you sure you want to delete this plugin?" -msgstr "Ali resnično želite zbrisati ta vtičnik?" +msgstr "" msgid "Are you sure you want to publish this page?" msgstr "" @@ -1204,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1221,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1231,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1250,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1298,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1344,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1361,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1383,7 +1349,7 @@ msgid "Welcome to django CMS" msgstr "" msgid "Add Another" -msgstr "Dodaj še enega" +msgstr "" msgid "Back" msgstr "" @@ -1394,22 +1360,18 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "Strani ni mogoče najti v %(domain)s " +msgstr "" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Oznaka predloge ni našla strani z iskalnimi pogoji `%(page_lookup)s \n`. URL zahtevka: http://%(host)s%(path)s" +msgstr "" msgid "Two columns" msgstr "" @@ -1428,7 +1390,7 @@ msgid "Enter a valid username." msgstr "" msgid "email address" -msgstr "pošlji" +msgstr "" msgid "staff status" msgstr "" @@ -1477,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1487,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1524,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1547,26 +1506,24 @@ msgid "Thanks for spending some quality time with the Web site today." msgstr "" msgid "Inherit the template of the nearest ancestor" -msgstr "Deduj predlogo najbližjega prednika" +msgstr "" msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" msgid "CMS - your user account was created." -msgstr "CMS - vaš uporabniški račun je ustvarjen." +msgstr "" msgid "CMS - your user account was changed." -msgstr "CMS - vaš uporabniški račun je spremenjen." +msgstr "" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." @@ -1595,396 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo b/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo index d57da52125c655b6380d3b954d98e5f1196792b1..d950ac458f818c32c90a17b45dd7b76462107c23 100644 GIT binary patch delta 91 zcmZ3;I*)aN4(~oj28O8&3=Ez?95T^zIj@1Pp`os^fr5dVm5JrVx8kbBnYsCSWePTB qnJKx6MS5VaLwasvW{zHRey*L4f{}rt;ba{~UFO7sg3U3Eu8aV91R4_n delta 94 zcmbQox{!5(4(~xm28O8&3=Ez?96r%\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/divio/django-cms/language/sl_SI/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: simonv , 2011\n" +"Language-Team: Slovenian (Slovenia) (http://app.transifex.com/divio/django-cms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Ste prepričani, da želite spremeniti tabulatorje preden shranite stran?" diff --git a/cms/locale/sq/LC_MESSAGES/django.mo b/cms/locale/sq/LC_MESSAGES/django.mo index 9f727368b21689187fd13ba8104d8790774514e5..ad206120f79a4e57f10339f5d5fafffde900f5a5 100644 GIT binary patch delta 11688 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, 2020 +# Fabian Braun , 2022 +# Besnik Bleta , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Besnik Bleta \n" -"Language-Team: Albanian (http://www.transifex.com/divio/django-cms/language/sq/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Besnik Bleta , 2023\n" +"Language-Team: Albanian (https://app.transifex.com/divio/teams/58664/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +57,6 @@ msgstr "Etiketë meta përshkrimi" msgid "A description of the page used by search engines." msgstr "Përshkrim i faqes i përdorur nga motorë kërkimesh." -msgid "Slug must not be empty." -msgstr "Identifikuesi s’duhet të jetë i zbrazët." - msgid "Page type" msgstr "Lloj faqeje" @@ -71,7 +69,6 @@ msgstr "Mbishkruaje URL-në" msgid "Keep this field empty if standard path should be used." msgstr "Mbajeni të zbrazët këtë fushë, nëse duhet përdorur shtegu standard." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +90,9 @@ msgstr "dukshmëri menush" msgid "limit when this page is visible in the menu" msgstr "kufizo kur kjo faqe është e dukshme te menuja" -#| msgid "Copy options" msgid "URL options" msgstr "Mundësi URL-sh" -#| msgid "Copy options" msgid "Menu options" msgstr "Mundësi menuje" @@ -113,7 +108,6 @@ msgstr "Formësime aplikacioni" msgid "A page with this reverse URL id exists already." msgstr "Ka tashmë një faqe me këtë URL të përmbysur." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Vlerë e pavlefshme formësimi aplikacioni" @@ -150,32 +144,44 @@ msgstr "Fshije" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Përdoruesit s’mund të krijojnë një faqe pa leje për ndryshim të faqes së krijuar. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të krijojnë një faqe pa leje për ndryshim të faqes së " +"krijuar. Lypsen leje përpunimi." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Përdoruesit s’mund të fshijnë një faqe pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të fshijnë një faqe pa leje për ndryshim të faqes. Lypsen" +" leje përpunimi." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Përdoruesit s’mund të caktojnë leje faqeje pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të caktojnë leje faqeje pa leje për ndryshim të faqes. " +"Lypsen leje përpunimi." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Përdoruesit s’mund të fshijnë leje faqeje pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të fshijnë leje faqeje pa leje për ndryshim të faqes. " +"Lypsen leje përpunimi." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Përdoruesit s’mund të krijojnë leje faqeje pa leje për ndryshim të lejes së krijuar. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të krijojnë leje faqeje pa leje për ndryshim të lejes së " +"krijuar. Lypsen leje përpunimi." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Përdoruesit s’mund të fshijnë leje faqeje pa leje për ndryshim lejesh. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të fshijnë leje faqeje pa leje për ndryshim lejesh. " +"Lypsen leje përpunimi." #, python-format msgid "Invalid plugin type '%s'" @@ -187,9 +193,9 @@ msgstr "Si gjuhë duhet caktuar një nga gjuhët që mbulohet!" msgid "Parent plugin language must be same as language!" msgstr "Gjuha e shtojcës mëmë duhet të jetë e njëjtë me gjuhën!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Vendmbajtësja e shtojcës mëmë duhet të jetë e njëjtë me vendmbajtësen!" +msgstr "" +"Vendmbajtësja e shtojcës mëmë duhet të jetë e njëjtë me vendmbajtësen!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -202,7 +208,6 @@ msgid "The page is not eligible to be home." msgstr "Faqja s’kualifikohet për të qenë faqe kreu." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "%(name)s \"%(obj)s\" u fshi me sukses." @@ -219,16 +224,18 @@ msgstr "Objekti %(name)s me kyç parësor %(key)r s’ekziston." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Gabim! S’keni leje për lëvizjen e kësaj faqeje. Ju lutemi, ringarkoni faqen" +msgstr "" +"Gabim! S’keni leje për lëvizjen e kësaj faqeje. Ju lutemi, ringarkoni faqen" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Gabim! S’keni leje të kopjoni këtë faqe." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Gabim! Faqja që po ngjitni s’është e përkthyer në ndonjë nga gjuhët e formësuara nga sajti i synuar." +msgstr "" +"Gabim! Faqja që po ngjitni s’është e përkthyer në ndonjë nga gjuhët e " +"formësuara nga sajti i synuar." msgid "You do not have permission to edit this page" msgstr "S’keni leje për të përpunuar këtë faqe" @@ -254,7 +261,6 @@ msgstr "Gjedhja u ndryshua me sukses" msgid "You do not have permission to copy these plugins." msgstr "S’keni leje të kopjoni këto shtojca." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "S’keni leje për fshirje të kësaj faqeje" @@ -262,8 +268,20 @@ msgstr "S’keni leje për fshirje të kësaj faqeje" msgid "Title and plugins with language %(language)s was deleted" msgstr "Titulli dhe shtojcat me gjuhën %(language)s u fshinë" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "S’keni leje të ndryshoni gjendje lëvizjeje të kësaj faqeje" +msgid "You do not have permission to change a page's navigation status" +msgstr "S’keni leje të ndryshoni gjendjen për lëvizjet në një faqe" + +msgid "You cannot change this page's navigation status" +msgstr "S’mund të ndryshoni gjendjen për lëvizjet në këtë faqe" + +msgid "Public content" +msgstr "Lëndë publike" + +msgid "Empty" +msgstr "E zbrazët" + +msgid "Create Content" +msgstr "Krijoni Lëndë" msgid "View restriction" msgstr "Shihni kufizim" @@ -281,7 +299,6 @@ msgstr "S’keni leje të përpunoni këtë objekt" msgid "You do not have permission to add a plugin" msgstr "S’keni leje të shtoni një shtojcë" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "S’keni leje të kopjoni këtë vendmbajtëse." @@ -291,18 +308,15 @@ msgstr "S’u gjet shtojcë" msgid "You do not have permission to edit this plugin" msgstr "S’keni leje të përpunoni këtë shtojcë" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "S’keni leje ta ngjitni këtë shtojcë" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "S’keni leje ta ngjitni këtë vendmbajtëse" msgid "You have no permission to move this plugin" msgstr "S’keni leje të lëvizni këtë shtojcë" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "S’keni leje ta prisni këtë shtojcash" @@ -332,6 +346,52 @@ msgstr "Leje Përdoruessih & Grupesh" msgid "Page permissions management" msgstr "Administrim leje faqesh" +msgid "Actions" +msgstr "Veprime" + +msgid "Empty content" +msgstr "Lëndë e zbrazët" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "Veti %(object_name)s" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "Shtoni %(object_name)s të ri" + +msgid "Add content" +msgstr "Shtoni lëndë" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" +"Lënda për gjuhën e tanishme është ndryshuar. Klikoni mbi “Anuloje”, që të " +"riktheheni te formulari dhe ruani ndryshimet. Klikoni mbi “OK” për të hedhur" +" tej ndryshimet." + +#, python-format +msgid "Add %(language)s content" +msgstr "Shtoni lëndë në %(language)s" + +msgid "Preview" +msgstr "Paraparje" + +msgid "Settings" +msgstr "Rregullime" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" +"%(value)s e pavlefshme gjuhe. Ky formular s’mund të përpunohet. Provoni të " +"ndryshoni gjuhë." + +msgid "" +msgstr "%(page_title)s page." -msgstr "Kjo është një referencë aliasi, lëndën mund ta përpunoni vetëm te faqja %(page_title)s." +msgstr "" +"Kjo është një referencë aliasi, lëndën mund ta përpunoni vetëm te faqja %(page_title)s." msgid "Create" msgstr "Krijoje" @@ -360,9 +422,6 @@ msgstr "Krijoje" msgid "Edit" msgstr "Përpunim" -msgid "Preview" -msgstr "Paraparje" - msgid "Structure" msgstr "Strukturë" @@ -406,15 +465,12 @@ msgstr "Dalje" msgid "Language" msgstr "Gjuhë" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Shtoni Përkthim" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Fshije Përkthimin" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopjo krejt shtojcat" @@ -423,7 +479,6 @@ msgid "from %s" msgstr "nga %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Jeni i sigurt se doni të kopjohen krejt shtojcat prej %s?" @@ -433,7 +488,6 @@ msgstr "Faqe" msgid "Page" msgstr "Faqe" -#| msgid "Create" msgid "Create Page" msgstr "Krijoni Faqe" @@ -480,34 +534,39 @@ msgid "Select a valid page" msgstr "Përzgjidhni faqe të vlefshme" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Faqja %(conflict_page)s ka të njëjtën URL '%(url)s' me faqen e tanishme \"%(instance)s\"." +msgstr "" +"Faqja %(conflict_page)s ka të njëjtën URL '%(url)s' me faqen e tanishme " +"\"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Faqja %(conflict_page)s ka të njëjtën URL '%(url)s' me faqen e tanishme." +msgstr "" +"Faqja %(conflict_page)s ka të njëjtën URL '%(url)s' me faqen e tanishme." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Në dëshirë. Në u dhëntë, do të shtohet automatikisht brenda një shtojce të re tekst." +msgstr "" +"Në dëshirë. Në u dhëntë, do të shtohet automatikisht brenda një shtojce të " +"re tekst." msgid "Provide a title for the new page." msgstr "Jepni një titull për faqen e re." msgid "Leave empty for automatic slug, or override as required." -msgstr "Lëreni të zbrazët për identifikues të automatizuar, ose anashkalojeni siç kërkohet." +msgstr "" +"Lëreni të zbrazët për identifikues të automatizuar, ose anashkalojeni siç " +"kërkohet." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" +"S’mund të krijohet identifikues automatikisht. Ju lutemi, jepni një dorazi." + +msgid "Please provide a valid slug." +msgstr "Ju lutemi, jepni një identifikues të vlefshëm." -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." msgstr "S’keni lejet e domosdoshme për të krijuar një faqe." @@ -604,17 +663,67 @@ msgstr "Akordo gjatë" msgid "page" msgstr "faqe" +msgid "no limit set" +msgstr "pa kufi të caktuar" + +msgid "for logged in users only" +msgstr "vetëm për përdorues të futur" + +msgid "for anonymous users only" +msgstr "vetëm për përdorues anonimë" + +msgid "Inherit from parent page" +msgstr "Trashëgoje prej faqeje mëmë" + +msgid "Deny" +msgstr "Mohojei" + +msgid "Only this website" +msgstr "Vetëm këtë sajt" + +msgid "Allow" +msgstr "Lejoje" + +msgid "title" +msgstr "titull" + +msgid "overwrite the title (html title tag)" +msgstr "mbishkruaje titullin (etiketë titulli html)" + +msgid "overwrite the title in the menu" +msgstr "mbishkruaje titullin te menuja" + +msgid "description" +msgstr "përshkrim" + +msgid "The text displayed in search engines." +msgstr "Teksti i shfaqur në motorë kërkimesh." + +msgid "redirect" +msgstr "ridrejtim" + +msgid "The template used to render the content." +msgstr "Gjedhja e përdorur për vizatimin e lëndës." + +msgid "page content" +msgstr "lëndë faqeje" + +msgid "page contents" +msgstr "lëndë faqeje" + +msgid "default" +msgstr "parazgjedhje" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Një identifikues unik që përdoret me etiketën e gjedhes page_url për të lidhur këtë faqe" +msgstr "" +"Një identifikues unik që përdoret me etiketën e gjedhes page_url për të " +"lidhur këtë faqe" msgid "pages" msgstr "faqe" -msgid "default" -msgstr "parazgjedhje" - msgid "slug" msgstr "identifikues" @@ -642,29 +751,36 @@ msgstr "në nivelin e faqes" msgid "frontend view restriction" msgstr "kufizim parjeje pjese të dukshme" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Ju lutemi, përzgjidhni përdorues ose grup." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Përdoruesit s’mund të botojnë një faqe pa leje për ndryshim të faqe. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të botojnë një faqe pa leje për ndryshim të faqe. Lypsen " +"leje përpunimi." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Përdoruesit s’mund të ndryshojnë rregullime të thelluara të faqes pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të ndryshojnë rregullime të thelluara të faqes pa leje " +"për ndryshim të faqes. Lypsen leje përpunimi." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Përdoruesit s’mund të ndryshojnë leje faqesh pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të ndryshojnë leje faqesh pa leje për ndryshim të faqes. " +"Lypsen leje përpunimi." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Përdoruesit s’mund të lëvizin një faqe pa leje për ndryshim të faqes. Lypsen leje përpunimi." +msgstr "" +"Përdoruesit s’mund të lëvizin një faqe pa leje për ndryshim të faqes. Lypsen" +" leje përpunimi." msgid "can recover any deleted page" msgstr "mund të rikthejë çfarëdo faqeje të fshirë" @@ -684,7 +800,9 @@ msgstr "Leje faqesh" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Leja për shtim faqesh lyp gjithashtu hyrje te pjella, ose pasardhës, përndryshe faqja e shtuar s’mund të ndryshohet nga krijuesi i saj." +msgstr "" +"Leja për shtim faqesh lyp gjithashtu hyrje te pjella, ose pasardhës, " +"përndryshe faqja e shtuar s’mund të ndryshohet nga krijuesi i saj." msgid "User (page)" msgstr "Përdorues (faqe)" @@ -728,7 +846,9 @@ msgstr "emër vendmbajtëseje statike" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Emër përshkrues për identifikim të kësaj vendmbajtëse statike. S’u shfaqet përdoruesve." +msgstr "" +"Emër përshkrues për identifikim të kësaj vendmbajtëse statike. S’u shfaqet " +"përdoruesve." msgid "placeholder code" msgstr "kod vendmbajtëseje" @@ -751,45 +871,6 @@ msgstr "vendmbajtëse statike" msgid "A static placeholder with the same site and code already exists" msgstr "Ka tashmë një vendmbajtëse statike me të njëjtin sajt dhe kod" -msgid "for logged in users only" -msgstr "vetëm për përdorues të futur" - -msgid "for anonymous users only" -msgstr "vetëm për përdorues anonimë" - -msgid "Inherit from parent page" -msgstr "Trashëgoje prej faqeje mëmë" - -msgid "Deny" -msgstr "Mohojei" - -msgid "Only this website" -msgstr "Vetëm këtë sajt" - -msgid "Allow" -msgstr "Lejoje" - -msgid "title" -msgstr "titull" - -msgid "overwrite the title (html title tag)" -msgstr "mbishkruaje titullin (etiketë titulli html)" - -msgid "overwrite the title in the menu" -msgstr "mbishkruaje titullin te menuja" - -msgid "description" -msgstr "përshkrim" - -msgid "The text displayed in search engines." -msgstr "Teksti i shfaqur në motorë kërkimesh." - -msgid "redirect" -msgstr "ridrejtim" - -msgid "The template used to render the content." -msgstr "Gjedhja e përdorur për vizatimin e lëndës." - msgid "Advanced options" msgstr "Mundësi të mëtejshme" @@ -797,75 +878,64 @@ msgid "Generic" msgstr "Elementare" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" u ndryshua me sukses." msgid "There are no further settings for this plugin. Please press save." -msgstr "S’ka rregullime të tjera për këtë shtojcë. Ju lutemi, shtypni “Ruaje”." +msgstr "" +"S’ka rregullime të tjera për këtë shtojcë. Ju lutemi, shtypni “Ruaje”." msgid "Moved" msgstr "E lëvizur" -#| msgid "Change" msgid "Changed" msgstr "E ndryshuar" -#| msgid "Delete" msgid "Deleted" msgstr "E fshirë" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "Shtoi Përkthim Faqeje" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "U ndryshua Përkthim Faqeje" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "U fshi Përkthim Faqeje" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "U shtua Shtojcë" -#| msgid "Change" msgid "Changed Plugin" msgstr "U ndryshua Shtojcë" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "U zhvendos shtojcë" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "U fshi Shtojcë" -#| msgid "Add plugin" msgid "Cut Plugin" -msgstr "Prije Shtojcën" +msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "Ngjite Shtojcën" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "Ngjite te Vendmbajtëse" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "U shtuan shtojca nga e papastra te vendmbajtësja" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "U spastrua Vendmbajtësja" msgid "Save" msgstr "Ruaje" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "Disa fusha s’mund të ndryshohen, ngaqë janë lëndë vetëm-për-lexim." + #, python-format msgid "Log in to administration here." msgstr "Hyni te pjesa e administrimit që këtu." @@ -880,7 +950,6 @@ msgstr "Emër përdoruesi:" msgid "Password:" msgstr "Fjalëkalim:" -#| msgid "Add Page" msgid "Add a page" msgstr "Shtoni një faqe" @@ -961,16 +1030,21 @@ msgstr "Prije" msgid "Paste" msgstr "Ngjite" -#| msgid "Save as new" msgid "Set as home" msgstr "Vëre si krye" +msgid "Permissions" +msgstr "Lleje" + msgid "is restricted" msgstr "është e kufizuar" msgid "last change by" msgstr "ndryshimi i fundit nga" +msgid "last change on" +msgstr "ndryshimi i fundit më" + msgid "meta" msgstr "meta" @@ -980,7 +1054,6 @@ msgstr "Listë e faqeve" msgid "Search" msgstr "Kërko" -#| msgid "Page Title" msgid "Page Tree" msgstr "Pemë Faqesh" @@ -992,19 +1065,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Riktheni %(name)s e fshirë\n " - -msgid "" +msgstr "" "\n" -" New Page\n" -" " -msgstr "\n Faqe e Re\n " +" Riktheni %(name)s e fshirë\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Lëvizjet Kryesore" -#| msgid "Actions" msgid "Options" msgstr "Mundësi" @@ -1020,7 +1088,9 @@ msgstr "Gabim:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Kjo faqe s’mund të kopjohet, ngaqë i është bashkëngjitur një aplikacion. Se si të administroni apphook-e, shihni Rregullime të Thelluara Faqesh." +msgstr "" +"Kjo faqe s’mund të kopjohet, ngaqë i është bashkëngjitur një aplikacion. Se " +"si të administroni apphook-e, shihni Rregullime të Thelluara Faqesh." msgid "Are you sure you want to § this page?" msgstr "Jeni i sigurt se doni të § kjo faqe?" @@ -1028,7 +1098,6 @@ msgstr "Jeni i sigurt se doni të § kjo faqe?" msgid "Reload" msgstr "Ringarkoje" -#| msgid "New Page" msgid "New node" msgstr "Nyjë e re" @@ -1042,17 +1111,18 @@ msgid "Menu" msgstr "Menu" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Ende s’ka %(object)s përqark.\n
    \n Shtoni %(object)s tani.\n " +msgstr "" +"\n" +" Ende s’ka %(object)s përqark.\n" +"
    \n" +" Shtoni %(object)s tani.\n" +" " msgid "Copy options" msgstr "Mundësi kopjimi" @@ -1066,30 +1136,15 @@ msgstr "Mbylle" msgid "Legend" msgstr "Legjendë" -#| msgid "published" -msgid "Published" -msgstr "Të botuara" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Të pabotuara" - -msgid "Empty" -msgstr "E zbrazët" - -#| msgid "in menu" msgid "In menu" msgstr "Në menu" -#| msgid "not in menu" msgid "Not in menu" msgstr "Jo në menu" -#| msgid "New page" msgid "View page" msgstr "Shihni faqen" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,12 +1161,19 @@ msgstr "në menu" msgid "not in menu" msgstr "jo në menu" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" -msgstr "Rregullime faqeje (për rregullime të thelluara, shtypni SHIFT dhe klikoni)" +msgstr "" +"Rregullime faqeje (për rregullime të thelluara, shtypni SHIFT dhe klikoni)" -msgid "Permissions" -msgstr "Lleje" +msgid "This page has no preview!" +msgstr "Kjo faqe s’ka paraparje!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Po ridrejtohet te:" msgid "Clipboard" msgstr "E papastër" @@ -1150,7 +1212,9 @@ msgid "Clipboard is empty." msgstr "E papastra është e zbrazët." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "Kjo shtojcë nuk lejon shtojca të këtij lloji si shtojca futur brenda njëra-tjetrës." +msgstr "" +"Kjo shtojcë nuk lejon shtojca të këtij lloji si shtojca futur brenda njëra-" +"tjetrës." msgid "This plugin cannot have nested plugins." msgstr "Kjo shtojcë s’mund të ketë shtojca futur brenda njëra-tjetrës." @@ -1161,7 +1225,6 @@ msgstr "Theksoje" msgid "Available plugins" msgstr "Shtojca të gatshme" -#| msgid "Structure" msgid "Toggle structure" msgstr "Shfaq/Fshih strukturë" @@ -1175,11 +1238,12 @@ msgid "More" msgstr "Më tepër" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Version zhvillim që përdor django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Version zhvillim që përdor django CMS %(cms_version)s, Django " +"%(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Anuloje" @@ -1187,7 +1251,6 @@ msgstr "Anuloje" msgid "The following error occured:" msgstr "Ndodhi gabimi vijues:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Veprim i suksesshëm." @@ -1200,24 +1263,22 @@ msgstr "Jeni i sigurt se doni të botohet kjo faqe?" msgid "Plugin will be added here" msgstr "Shtojca do të shtohet këtu" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Keni ndryshime të paruajtura." -#| msgid "Loading..." msgid "Loading" msgstr "Po ngarkohet" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Jeni i sigurt se doni të braktisen këto ndryshime?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Formulari s’u ngarkua dot. Ju lutemi, kontrolloni se shërbyesi po xhiron si duhet." +msgstr "" +"Formulari s’u ngarkua dot. Ju lutemi, kontrolloni se shërbyesi po xhiron si " +"duhet." -#| msgid "Notify user" msgid "Most used" msgstr "Më të përdorurit" @@ -1227,10 +1288,12 @@ msgstr "Shkurtore" msgid "The page was changed in the meantime, reloading..." msgstr "Ndërkohë faqja qe ndryshuar, po ringarkohet…" +msgid "CMS-wide Shortcuts" +msgstr "Shkurtore për krejt CMS-në" + msgid "Bring up this help dialog" msgstr "Shfaq këtë dialog ndihme" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Mbylle/anuloje" @@ -1238,7 +1301,8 @@ msgid "Toggle structure mode" msgstr "Këmbe mënyrë strukture" msgid "Toggle structure mode and highlight hovered-over plugin" -msgstr "Këmbe mënyrë strukture dhe nxirr në pah shtojcën që ka kursorin përsipër" +msgstr "" +"Këmbe mënyrë strukture dhe nxirr në pah shtojcën që ka kursorin përsipër" msgid "Open \"Create\" dialog" msgstr "Hap dialogun “Krijoni”" @@ -1246,32 +1310,29 @@ msgstr "Hap dialogun “Krijoni”" msgid "Focus on Toolbar" msgstr "Fokusi te Paneli" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Fokusi te vendmbajtëset" msgid "Move to next/previous element" msgstr "Kalo te elementi pasues/i mëparshëm" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Fokus te shtojcat e vendmbajtëse" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Përpunoni shtojcë" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Hap menu veprimesh" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Zgjeroje/tkurre" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Hyrja dështoi. Ju lutemi, kontrolloni kredencialet tuaja dhe riprovoni." +msgstr "" +"Hyrja dështoi. Ju lutemi, kontrolloni kredencialet tuaja " +"dhe riprovoni." msgid "Double-click to edit" msgstr "Dyklikojeni që ta përpunoni" @@ -1294,12 +1355,6 @@ msgstr "Maksimizoje" msgid "Drop a plugin here" msgstr "Hidhni këtu një shtojcë" -msgid "This page has no preview!" -msgstr "Kjo faqe s’ka paraparje!" - -msgid "It is being redirected to:" -msgstr "Po ridrejtohet te:" - msgid "Installation successful!" msgstr "Instalim i suksesshëm!" @@ -1314,14 +1369,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Mirë se vini te django CMS version %(cms_version)s.\n " +msgstr "" +"\n" +" Mirë se vini te django CMS version %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Që sistemi të vazhdojë, shtoni faqen e parë.\n " +msgstr "" +"\n" +" Që sistemi të vazhdojë, shtoni faqen e parë.\n" +" " #, python-format msgid "" @@ -1329,7 +1390,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript-i duket të jetë i çaktivizuar, ndaj, ju lutemi\n shtoni një faqe dorazi.\n " +msgstr "" +"\n" +" JavaScript-i duket të jetë i çaktivizuar, ndaj, ju lutemi\n" +" shtoni një faqe dorazi.\n" +" " msgid "Installation Notes" msgstr "Shënime Instalimi" @@ -1340,32 +1405,19 @@ msgstr "Asistencë" msgid "Documentation" msgstr "Dokumentim" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Nëse s’e shihni stemën e django CMS -s në krye, sigurohuni\n se e keni lidhur dosjen tuaj static/cms me\n kartelat tuaja statike.

    \n " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Nëse s’e shihni stemën e django CMS -s në krye, sigurohuni\n" +" se e keni lidhur dosjen tuaj static/cms me\n" +" kartelat tuaja statike.

    \n" +" " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1373,7 +1425,13 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Këtë mesazh po e shihni ngaqë keni\n caktuar DEBUG = True te kartela e rregullimeve tuaja për django-n\n dhe s’keni shtuar ende ndonjë faqe.\n

    \n " +msgstr "" +"\n" +"

    Këtë mesazh po e shihni ngaqë keni\n" +" caktuar DEBUG = True te kartela e rregullimeve tuaja për django-n\n" +" dhe s’keni shtuar ende ndonjë faqe.\n" +"

    \n" +" " msgid "Welcome to django CMS" msgstr "Mirë se vini te django- CMS" @@ -1385,17 +1443,14 @@ msgid "Back" msgstr "Mbrapsht" msgid "Please choose an option from below to proceed to the next step." -msgstr "Ju lutemi, që të vazhdohet te hapi pasues, zgjidhni një mundësi më poshtë." +msgstr "" +"Ju lutemi, që të vazhdohet te hapi pasues, zgjidhni një mundësi më poshtë." msgid "Next" msgstr "Pasuesi" -msgid "no content" -msgstr "pa lëndë" - -#| msgid "no content" -msgid "has contents" -msgstr "ka lëndë" +msgid "Unknown" +msgstr "E panjohur" #, python-format msgid "Page not found on %(domain)s" @@ -1405,7 +1460,9 @@ msgstr "Faqe që s’u gjet te %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Një etiketë gjedheje s’gjeti dot faqen me argumente kërkimi `%(page_lookup)s\n`. URL-ja e kërkesës qe: http://%(host)s%(path)s" +msgstr "" +"Një etiketë gjedheje s’gjeti dot faqen me argumente kërkimi `%(page_lookup)s\n" +"`. URL-ja e kërkesës qe: http://%(host)s%(path)s" msgid "Two columns" msgstr "Dy shtylla" @@ -1418,7 +1475,8 @@ msgstr "emër përdoruesi" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "E domosdoshme. 300 ose më pak shenja. Shkronja, numra dhe shenjat @/./+/-/_" +msgstr "" +"E domosdoshme. 300 ose më pak shenja. Shkronja, numra dhe shenjat @/./+/-/_" msgid "Enter a valid username." msgstr "Jepni një emër përdoruesi të vlefshëm." @@ -1430,7 +1488,8 @@ msgid "staff status" msgstr "" msgid "Designates whether the user can log into this admin site." -msgstr "Përcakton nëse mund të hyjë ose jo përdoruesi te ky sajt administrimi." +msgstr "" +"Përcakton nëse mund të hyjë ose jo përdoruesi te ky sajt administrimi." msgid "active" msgstr "aktiv" @@ -1438,7 +1497,9 @@ msgstr "aktiv" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Përcakton nëse ky përdorues do të duhej trajtuar si aktiv. Në vend se të fshini llogari, shpërzgjidhni këtë." +msgstr "" +"Përcakton nëse ky përdorues do të duhej trajtuar si aktiv. Në vend se të " +"fshini llogari, shpërzgjidhni këtë." msgid "users" msgstr "përdorues" @@ -1473,7 +1534,6 @@ msgstr "Artikuj" msgid "Sample App" msgstr "Aplikacion Shembull" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Aplikacion Shembull me formësim" @@ -1483,9 +1543,8 @@ msgstr "Aplikacion Shembull me leje të përjashtuara" msgid "Sample App 2" msgstr "Aplikacion Shembull 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Aplikacion Shembull 3" +msgstr "Aplikacion Shembull 2" msgid "Namespaced App" msgstr "" @@ -1520,9 +1579,8 @@ msgstr "Menu Statike 2" msgid "Static Menu3" msgstr "Menu Statike 3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Menu Statike 4" +msgstr "Menu Statike" msgid "Category" msgstr "Kategori" @@ -1549,12 +1607,10 @@ msgid "UserSettings" msgstr "RregullimePërdoruesi" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Shtoje shtojcën te vendmbajtësja \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Shtoje shtojcën te %(plugin_name)s" @@ -1572,7 +1628,9 @@ msgstr "Kjo vendmbajtëse ka tashmë numrin maksimum të shtojcave (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Kjo vendmbajtëse ka tashmë numrin maksimum (%(limit)s) të shtojcave %(plugin_name)s të lejuara." +msgstr "" +"Kjo vendmbajtëse ka tashmë numrin maksimum (%(limit)s) të shtojcave " +"%(plugin_name)s të lejuara." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1582,7 +1640,9 @@ msgstr "S’arrihet të gjendet moduli specifik CMS_REQUEST_IP_RESOLVER: \"{0}\" msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "S’arrihet të gjendet funksioni specifik CMS_REQUEST_IP_RESOLVER: \"{0}\" te moduli \"{1}\"." +msgstr "" +"S’arrihet të gjendet funksioni specifik CMS_REQUEST_IP_RESOLVER: \"{0}\" te " +"moduli \"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1591,394 +1651,3 @@ msgstr "Krijo një instancë %s të re." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Është regjistruar tashmë një ndihmës për modelin: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sq/LC_MESSAGES/djangojs.mo b/cms/locale/sq/LC_MESSAGES/djangojs.mo index 4431b71dd46cb8088e3ae14d747865ceee6f5b32..64900c70eac549fbfdc124733937640238f6d09d 100644 GIT binary patch delta 156 zcmcb{(#RTmPl#nI0}wC+u?!HK05K~N`v5TrBml895GMjL2M{j>;s!PQsVNhuc=H(==o%X88XG7Wm|2-vPJC;}rlVkF gU}Q8|n^BQDv7lhHKO;LMPpU#uY86mVX<`ur09G>^^Z)<= delta 112 zcmZo3a|M diff --git a/cms/locale/sq/LC_MESSAGES/djangojs.po b/cms/locale/sq/LC_MESSAGES/djangojs.po index 3415c02dd05..4e145841d60 100644 --- a/cms/locale/sq/LC_MESSAGES/djangojs.po +++ b/cms/locale/sq/LC_MESSAGES/djangojs.po @@ -4,19 +4,29 @@ # # Translators: # Translators: +# Besnik Bleta , 2022 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-04-19 19:28+0000\n" -"Last-Translator: Besnik Bleta \n" -"Language-Team: Albanian (http://www.transifex.com/divio/django-cms/language/sq/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Besnik Bleta , 2022\n" +"Language-Team: Albanian (http://app.transifex.com/divio/django-cms/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "e rezervuar" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Jeni i sigurt se doni të ndryshohen skeda pa ruajtur faqen së pari?" diff --git a/cms/locale/sq_AL/LC_MESSAGES/django.mo b/cms/locale/sq_AL/LC_MESSAGES/django.mo index 1646535f5438592a0347daece46d8e5b742eb09a..3960090ecad4e29bbac26a3bee972b43f15eeaf3 100644 GIT binary patch delta 68 zcmdnS+`>FTh0$xGsve7Oa&Ga&a9trIT|*F3Ff_0-Hqtf#f{6z;*o&?7^%DyUCcYQt UE=f(yE!H=+Ff%imEY3I|0DK-3DF6Tf delta 134 zcmZo+-o`vZg|TL$sve7ivv2Uka9vviT|)z1BTEHCQ!8U*Z37_S@<}W%(G4j|%qz}G zEXgmjQgF=7t~54Kut@~d4wZ=+`T2Uu`MGuzr)lU}>Fbx5m+O^))MuupR)8e*Q!>jk c^Yv4*67$mYb(3?8^>cu%(!})CiBIPP0F2Nqn*aa+ diff --git a/cms/locale/sq_AL/LC_MESSAGES/django.po b/cms/locale/sq_AL/LC_MESSAGES/django.po index 98a9af298f9..a33944b1e23 100644 --- a/cms/locale/sq_AL/LC_MESSAGES/django.po +++ b/cms/locale/sq_AL/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Albanian (Albania) (http://www.transifex.com/divio/django-cms/language/sq_AL/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Albanian (Albania) (https://app.transifex.com/divio/teams/58664/sq_AL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sq_AL/LC_MESSAGES/djangojs.mo b/cms/locale/sq_AL/LC_MESSAGES/djangojs.mo index 614d7c561fbed9543f068e951d15ab87e7e1ce40..47bf1b13e28d5eb757de227a4c72fdc8dab99845 100644 GIT binary patch delta 68 zcmX@gyqkG~3S;9$)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!z#u^78VDUycI+$O#*i diff --git a/cms/locale/sq_AL/LC_MESSAGES/djangojs.po b/cms/locale/sq_AL/LC_MESSAGES/djangojs.po index 3cfc370e1d2..141f6904ba4 100644 --- a/cms/locale/sq_AL/LC_MESSAGES/djangojs.po +++ b/cms/locale/sq_AL/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Albanian (Albania) (http://www.transifex.com/divio/django-cms/language/sq_AL/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Albanian (Albania) (http://app.transifex.com/divio/django-cms/language/sq_AL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sq_AL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/sr/LC_MESSAGES/django.mo b/cms/locale/sr/LC_MESSAGES/django.mo index e42884f589277d9509c9860dbcfbec02e2b671bb..444c97c3cf2a7e1371e7d434a7a643545eb88928 100644 GIT binary patch delta 85 zcmaFQyq9@`3S;v`RXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*&H3;;te8fpLl delta 160 zcmdnX{GNG&3ggy^s(LI6&c4AD!*%NobPWx3jVu)mO|6WLwGDuP%O|n8L^q@;F|Rl$ zu_V99O2IKRyVBS|!6p$*J5(lSFbx5m+O^)49ZMPtpMrJPsuFH%-2uJ0_w}xP0lUm)X#w$G4a-80L}?ERR910 diff --git a/cms/locale/sr/LC_MESSAGES/django.po b/cms/locale/sr/LC_MESSAGES/django.po index 22e60b02843..30a372d33ee 100644 --- a/cms/locale/sr/LC_MESSAGES/django.po +++ b/cms/locale/sr/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Serbian (http://www.transifex.com/divio/django-cms/language/sr/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Serbian (https://app.transifex.com/divio/teams/58664/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -961,16 +982,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -980,7 +1006,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -994,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1028,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1042,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1066,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1106,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1161,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1175,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1187,7 +1188,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1200,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1217,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1227,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1246,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1294,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1340,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1357,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1390,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1473,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1483,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1520,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1549,12 +1511,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1591,395 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sr/LC_MESSAGES/djangojs.mo b/cms/locale/sr/LC_MESSAGES/djangojs.mo index b3df838706cb38d12df7e7ab84aac94af90ce74b..c229aa183f2945fe55dd5a77e82b5c72f0f2b521 100644 GIT binary patch delta 69 zcmeyz{Dpaf3gfPcs`0!Ax`u|j#s&%oW>zMa6DNwxRwia=S1QJ=9x=H#T7lw>;O Zr50pl<|OK6mP|aa$edVEu<&@)6DNwR2PBr}loYUve`702K8bjsO4v diff --git a/cms/locale/sr/LC_MESSAGES/djangojs.po b/cms/locale/sr/LC_MESSAGES/djangojs.po index 5404fb4be41..707e859459b 100644 --- a/cms/locale/sr/LC_MESSAGES/djangojs.po +++ b/cms/locale/sr/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Serbian (http://www.transifex.com/divio/django-cms/language/sr/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Serbian (http://app.transifex.com/divio/django-cms/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/sr@latin/LC_MESSAGES/django.mo b/cms/locale/sr@latin/LC_MESSAGES/django.mo index 149fddbfb6db22ed7cb55f7b7fa66d58b9a3a72d..0b1086b1cd95874bcfbe311e76b1ec30e0ed8e3a 100644 GIT binary patch delta 125 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 diff --git a/cms/locale/sr@latin/LC_MESSAGES/django.po b/cms/locale/sr@latin/LC_MESSAGES/django.po index 28c042a7434..86ff5b8de8c 100644 --- a/cms/locale/sr@latin/LC_MESSAGES/django.po +++ b/cms/locale/sr@latin/LC_MESSAGES/django.po @@ -3,16 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Milorad Pop-Tosic , 2012 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/divio/django-cms/language/sr@latin/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/divio/teams/58664/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,43 +18,40 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" msgid "All" -msgstr "Sve" +msgstr "" msgid "Copy permissions" -msgstr "Iskopiraj privilegije" +msgstr "" msgid "Title" -msgstr "Naslov" +msgstr "" msgid "The default title" -msgstr "Podrazumevani naslov" +msgstr "" msgid "Slug" -msgstr "Slag" +msgstr "" msgid "The part of the title that is used in the URL" -msgstr "Deo naslova koji se koristi u URL-u" +msgstr "" msgid "Menu Title" -msgstr "Naslov u meniju" +msgstr "" msgid "Overwrite what is displayed in the menu" -msgstr "Pregazi ono što je prikazano u meniju." +msgstr "" msgid "Page Title" -msgstr "Naslov stranice" +msgstr "" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Pregaziće ono što je prikazano u vrhu pregledača i markerima." +msgstr "" msgid "Description meta tag" msgstr "" msgid "A description of the page used by search engines." -msgstr "Spisak ključnih reči, zadvojenih zapetama, koji koriste pretraživači." - -msgid "Slug must not be empty." msgstr "" msgid "Page type" @@ -66,54 +61,50 @@ msgid "Page Types" msgstr "" msgid "Overwrite URL" -msgstr "Pregazi URL" +msgstr "" msgid "Keep this field empty if standard path should be used." -msgstr "Ostavite ovo polje prazno ako treba koristiti standardnu putanju." +msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" msgid "All ancestors will not be displayed in the navigation" -msgstr "Neće svi pretci biti prikazani u navigaciji" +msgstr "" msgid "Redirect" -msgstr "Redirekcija" +msgstr "" msgid "Redirects to this URL." -msgstr "Vrši redirekciju na ovaj URL." +msgstr "" msgid "Start typing..." msgstr "" msgid "menu visibility" -msgstr "vidljivost u meniju" +msgstr "" msgid "limit when this page is visible in the menu" -msgstr "ograniči kada je ova strana vidljiva u meniju" +msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" msgid "Application" -msgstr "Applikacija" +msgstr "" msgid "Hook application to this page." -msgstr "Veži aplikaciju za ovu stranu." +msgstr "" msgid "Application configurations" msgstr "" msgid "A page with this reverse URL id exists already." -msgstr "Stranica sa zadatim inverznim URL-om već postoji." +msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -133,19 +124,19 @@ msgid "No" msgstr "" msgid "user" -msgstr "korisnik" +msgstr "" msgid "can_view" -msgstr "can_view" +msgstr "" msgid "Add" -msgstr "Dodaj" +msgstr "" msgid "Change" -msgstr "Izmeni" +msgstr "" msgid "Delete" -msgstr "Izbriši" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " @@ -182,12 +173,11 @@ msgid "Invalid plugin type '%s'" msgstr "" msgid "Language must be set to a supported language!" -msgstr "Jezik mora biti postaljen na jedan od podržanih!" +msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -196,13 +186,12 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "Napredna podešavanja" +msgstr "" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -211,17 +200,16 @@ msgid "Cannot delete %(name)s" msgstr "" msgid "Are you sure?" -msgstr "Da li ste sigurni?" +msgstr "" #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "objekat %(name)s sa primarnim ključem %(key)r ne postoji." +msgstr "" msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -243,7 +231,7 @@ msgid "New page" msgstr "" msgid "Database error" -msgstr "Greška baze podataka" +msgstr "" msgid "Template not valid" msgstr "" @@ -254,22 +242,33 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Naslov i plagin na jeziku %(language)s je obrisan" +msgstr "" + +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Nemate privilegije da izmenite status ove strane \"u navigaciji\"" +msgid "Create Content" +msgstr "" msgid "View restriction" -msgstr "Prikaži ograničenja" +msgstr "" msgid "View restrictions" -msgstr "Prikaži ograničenja" +msgstr "" #, python-format msgid "Field %s not found" @@ -281,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -324,20 +319,61 @@ msgid "placeholder" msgstr "" msgid "Page permissions" -msgstr "Privilegije strane" +msgstr "" msgid "User & Group permissions" -msgstr "Privilegije korisnika i grupe" +msgstr "" msgid "Page permissions management" -msgstr "Upravljanje privilegijama strane" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" #, python-format msgid "No registered apphook \"%r\" found" msgstr "" msgid "django CMS" -msgstr "django CMS" +msgstr "" msgid "Placeholder" msgstr "" @@ -360,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "Pregled" - msgid "Structure" msgstr "" @@ -401,20 +434,17 @@ msgid "Logout %s" msgstr "" msgid "Logout" -msgstr "Odjavi se" +msgstr "" msgid "Language" -msgstr "Jezik" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -431,9 +460,8 @@ msgid "Pages" msgstr "" msgid "Page" -msgstr "Strana" +msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -465,7 +493,7 @@ msgid "Display in navigation" msgstr "" msgid "Delete page" -msgstr "brisanje" +msgstr "" msgid "Create a new page next to the current page." msgstr "" @@ -474,26 +502,18 @@ msgid "Create a page below the current page." msgstr "" msgid "Select a valid site" -msgstr "Izaberite važeći sajt" +msgstr "" msgid "Select a valid page" -msgstr "Izaberite važeću stranicu" +msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -515,94 +540,145 @@ msgid "ID" msgstr "" msgid "position" -msgstr "pozicija" +msgstr "" msgid "language" -msgstr "jezik" +msgstr "" msgid "plugin_name" msgstr "" msgid "creation date" -msgstr "datum kreiranja" +msgstr "" msgid "can edit" -msgstr "može da menja" +msgstr "" msgid "can add" -msgstr "može da doda" +msgstr "" msgid "can delete" -msgstr "može da izbriše" +msgstr "" msgid "can change advanced settings" -msgstr "može da menja napredna podešavanja" +msgstr "" msgid "can publish" -msgstr "može da objavljuje" +msgstr "" msgid "can change permissions" -msgstr "može da menja dozvole" +msgstr "" msgid "can move" -msgstr "može da premešta" +msgstr "" msgid "view restricted" -msgstr "pregled nije dozvoljen" +msgstr "" msgid "can recover pages" -msgstr "može da povrati stranu" +msgstr "" msgid "group" -msgstr "grupa" +msgstr "" msgid "sites" -msgstr "sajtovi" +msgstr "" msgid "created by" -msgstr "kreirao" +msgstr "" msgid "changed by" -msgstr "izmenio" +msgstr "" msgid "publication date" -msgstr "datum objavljivanja" +msgstr "" msgid "publication end date" -msgstr "datum okončanja objave" +msgstr "" msgid "in navigation" -msgstr "u navigaciji" +msgstr "" msgid "soft root" -msgstr "soft root" +msgstr "" msgid "id" -msgstr "id" +msgstr "" msgid "attached menu" -msgstr "povezani meni" +msgstr "" msgid "template" -msgstr "šablon" +msgstr "" msgid "login required" -msgstr "potrebno prijavljivanje" +msgstr "" msgid "application" -msgstr "aplikacija" +msgstr "" msgid "application instance name" msgstr "" msgid "site" -msgstr "sajt" +msgstr "" msgid "Grant on" -msgstr "Postavi prava za" +msgstr "" msgid "page" -msgstr "strana" +msgstr "" + +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" msgid "" "A unique identifier that is used with the page_url templatetag for linking " @@ -610,39 +686,35 @@ msgid "" msgstr "" msgid "pages" -msgstr "strane" - -msgid "default" -msgstr "podrazumevano" +msgstr "" msgid "slug" -msgstr "slag" +msgstr "" msgid "Path" -msgstr "Putanja" +msgstr "" msgid "Current page" -msgstr "Trenutna strana" +msgstr "" msgid "Page children (immediate)" -msgstr "Potomci strane (neposredni)" +msgstr "" msgid "Page and children (immediate)" -msgstr "Strana i potomci (neposredni)" +msgstr "" msgid "Page descendants" -msgstr "Potomci strane" +msgstr "" msgid "Page and descendants" -msgstr "Strana i potomci" +msgstr "" msgid "on page level" -msgstr "na nivou strane" +msgstr "" msgid "frontend view restriction" -msgstr "zabrana prikaza na frontendu" +msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -667,45 +739,45 @@ msgid "" msgstr "" msgid "can recover any deleted page" -msgstr "može da povrati bilo koju sačuvanu stranu" +msgstr "" msgid "If none selected, user haves granted permissions to all sites." -msgstr "Ako ništa nije selektovano, korisnik je da privilegije za sve sajtove." +msgstr "" msgid "Page global permission" -msgstr "Globalna prava pristupa za stranicu" +msgstr "" msgid "Pages global permissions" -msgstr "Globalna prava pristupa za stranice" +msgstr "" msgid "Page permission" -msgstr "Prava pristupa strane" +msgstr "" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Privilegije za dodavanje strane takođe zahteva pravo pristupa deci ili potomcima. U suprotnom, strana se neće moći menjati od strane njenog tvorca." +msgstr "" msgid "User (page)" -msgstr "Korisnik (strana)" +msgstr "" msgid "Users (page)" -msgstr "Korisnici (strana)" +msgstr "" msgid "User group (page)" -msgstr "Grupa korisnika (strana)" +msgstr "" msgid "User groups (page)" -msgstr "Grupe korisnika (strana)" +msgstr "" msgid "slot" -msgstr "slot" +msgstr "" msgid "width" -msgstr "širina" +msgstr "" msgid "" -msgstr "" +msgstr "" msgid "The language for the admin interface and toolbar" msgstr "" @@ -751,53 +823,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "samo za prijavljene korisnike" - -msgid "for anonymous users only" -msgstr "samo za anonimne korisnike" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "naslov" - -msgid "overwrite the title (html title tag)" -msgstr "pregazi naslov (html tag title)" - -msgid "overwrite the title in the menu" -msgstr "pregazi naslov u meniju" - -msgid "description" -msgstr "opis" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "redirekcija" - -msgid "The template used to render the content." -msgstr "Šablon koji se koristi za prikaz sadržaja." - msgid "Advanced options" -msgstr "Napredna podešavanja" +msgstr "" msgid "Generic" -msgstr "Opšte" +msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,181 +839,173 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" -msgstr "Sačuvaj" +msgstr "" + +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" #, python-format msgid "Log in to administration here." -msgstr "Prijavite se u administraciju ovde." +msgstr "" #, python-format msgid "Login url: %(login_url)s" msgstr "" msgid "Username:" -msgstr "Korisničko ime:" +msgstr "" msgid "Password:" -msgstr "Lozinka:" +msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" msgid "Change a page" -msgstr "Izmeni stranu" +msgstr "" msgid "Home" -msgstr "Početna" +msgstr "" msgid "View on site" -msgstr "Prikaži na sajtu" +msgstr "" msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "Molimo ispravite navedene greške." -msgstr[1] "Molimo ispravite navedene greške." -msgstr[2] "Molimo ispravite navedene greške." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" msgid "All permissions" -msgstr "Sva prava" +msgstr "" msgid "Loading..." -msgstr "Učitavanje..." +msgstr "" msgid "Save and continue editing" -msgstr "Sačuvaj i nastavi izmenjivanje" +msgstr "" msgid "User" -msgstr "Korisnik" +msgstr "" msgid "Group" -msgstr "Grupa" +msgstr "" msgid "Can edit" -msgstr "Može da izmeni" +msgstr "" msgid "Can add" -msgstr "Može da doda" +msgstr "" msgid "Can delete" -msgstr "Može da izbriše" +msgstr "" msgid "Can publish" -msgstr "Može da objavi" +msgstr "" msgid "Can change permissions" -msgstr "Može da izmeni privilegije" +msgstr "" msgid "Can move" -msgstr "Može da premesti" +msgstr "" msgid "Can view" -msgstr "Može da gleda" +msgstr "" msgid "(global)" -msgstr "(globalni)" +msgstr "" msgid "(current)" -msgstr "(tekući)" +msgstr "" msgid "Page doesn't inherit any permissions." -msgstr "Strana ne nasleđuje nijedno pravo pristupa" +msgstr "" msgid "Edit model" msgstr "" msgid "Save as new" -msgstr "Sačuvaj kao novi" +msgstr "" msgid "Save and add another" -msgstr "Sačuvaj i dodaj još" +msgstr "" msgid "Copy" -msgstr "Kopiraj" +msgstr "" msgid "Cut" -msgstr "Iseci" +msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" msgid "List of pages" -msgstr "Spisak strana" +msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,22 +1019,14 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" msgid "Successfully moved" -msgstr "Uspešno premešteno" +msgstr "" msgid "Changes within the tree might require a refresh." msgstr "" @@ -1029,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1056,10 +1067,10 @@ msgid "" msgstr "" msgid "Copy options" -msgstr "Opcija kopiranja" +msgstr "" msgid "Choose copy options" -msgstr "Izaberite opcije kopiranja" +msgstr "" msgid "Close" msgstr "" @@ -1067,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1103,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,14 +1162,13 @@ msgid "Highlight" msgstr "" msgid "Available plugins" -msgstr "Dostupni plagini" +msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" msgid "Login" -msgstr "Prijavljivanje" +msgstr "" msgid "Add plugin to" msgstr "" @@ -1176,24 +1177,22 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" msgstr "" msgid "Cancel" -msgstr "Odustani" +msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" msgid "Are you sure you want to delete this plugin?" -msgstr "Da li ste sigurni da želite da izbrišete ovaj plagin?" +msgstr "" msgid "Are you sure you want to publish this page?" msgstr "" @@ -1201,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1380,7 +1348,7 @@ msgid "Welcome to django CMS" msgstr "" msgid "Add Another" -msgstr "Dodaj još" +msgstr "" msgid "Back" msgstr "" @@ -1391,22 +1359,18 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format msgid "Page not found on %(domain)s" -msgstr "Strana nije pronađena na %(domain)s" +msgstr "" #, python-format msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Template tag ne može pronaći stranu sa parametrima `%(page_lookup)s\n`. URL je bio: http://%(host)s%(path)s" +msgstr "" msgid "Two columns" msgstr "" @@ -1425,7 +1389,7 @@ msgid "Enter a valid username." msgstr "" msgid "email address" -msgstr "mailto" +msgstr "" msgid "staff status" msgstr "" @@ -1474,7 +1438,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1447,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1483,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1544,26 +1505,24 @@ msgid "Thanks for spending some quality time with the Web site today." msgstr "" msgid "Inherit the template of the nearest ancestor" -msgstr "Nasledi šablon najbližeg pretka" +msgstr "" msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" msgid "CMS - your user account was created." -msgstr "CMS - Vaš nalog je kreiran." +msgstr "" msgid "CMS - your user account was changed." -msgstr "CMS - Vaš nalog je izmenjen." +msgstr "" #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." @@ -1592,395 +1551,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo b/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo index 21194afbf701be93a6f7a9e050d4375c05489bff..89c84b385c92fa23ad197cc4c7225c9d1d0ee469 100644 GIT binary patch delta 83 zcmdnPx`}my4(~Ze28O8&3=F\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/divio/django-cms/language/sr@latin/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Serbian (Latin) (http://app.transifex.com/divio/django-cms/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Da li ste sigurni da želite da promenite tab pre nego što sačuvate stranu?" diff --git a/cms/locale/sv/LC_MESSAGES/django.mo b/cms/locale/sv/LC_MESSAGES/django.mo index 22d7411f9564fcebd04b0cbb2742625229701d80..106419a771f3b59f7a285069e310494280d458eb 100644 GIT binary patch delta 8454 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, 2013 -# Björn Sandberg , 2013 -# Björn Sandberg , 2013 -# Christofer Huynh , 2018 -# hula , 2014 -# hannseman , 2011 -# hannseman , 2011 -# hula , 2014 -# jakob.hedman , 2014 -# jakob.hedman , 2014 -# jakob.hedman , 2014 -# joelbitar , 2014 -# joelbitar , 2014,2017 -# Mattias Lindvall , 2013 -# osterberg , 2015 -# ooskar , 2014 -# ooskar , 2014 -# osterberg , 2015 -# Patrik Gärdeman , 2011 -# Simon Hedberg , 2011 -# tapetersen , 2011 -# Mattias Lindvall , 2013 +# Fabian Braun , 2023 +# Christofer Huynh , 2023 +# joelbitar , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Swedish (http://www.transifex.com/divio/django-cms/language/sv/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: joelbitar , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/divio/teams/58664/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -77,9 +58,6 @@ msgstr "Beskrivning metatagg" msgid "A description of the page used by search engines." msgstr "En beskrivning av sidan som används av sökmotorer." -msgid "Slug must not be empty." -msgstr "URL-rubrik kan inte vara tom" - msgid "Page type" msgstr "Sidtyp" @@ -92,7 +70,6 @@ msgstr "Ändra URL" msgid "Keep this field empty if standard path should be used." msgstr "Lämna tomt om den vanliga sökvägen ska användas." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -114,11 +91,9 @@ msgstr "menysynlighet" msgid "limit when this page is visible in the menu" msgstr "begränsa när denna sida ska vara synlig i menyn" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -134,12 +109,12 @@ msgstr "Applikationskonfiguration" msgid "A page with this reverse URL id exists already." msgstr "En sida med detta URL-id finns redan." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" msgid "An application instance using this configuration already exists." -msgstr "En instans av applikationen som använder denna konfiguration finns redan." +msgstr "" +"En instans av applikationen som använder denna konfiguration finns redan." msgid "An application instance with this name already exists." msgstr "En instans av applikationen med detta namn finns redan." @@ -171,32 +146,44 @@ msgstr "Radera" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Anvädnare kan inte skapa en sida utan rättigheter att redigera sidan. Redigeringsrättighet behövs." +msgstr "" +"Anvädnare kan inte skapa en sida utan rättigheter att redigera sidan. " +"Redigeringsrättighet behövs." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Användare kan inte ta bort en sida utan att ha rättighet att redigera sidan. Redigeringsrättighet behövs." +msgstr "" +"Användare kan inte ta bort en sida utan att ha rättighet att redigera sidan." +" Redigeringsrättighet behövs." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Användare kan inte ändra rättigheter på sidor utan att ha rättighet att ändra rättigheter på sidan. Möjlighet att ändra rättigheter behövs." +msgstr "" +"Användare kan inte ändra rättigheter på sidor utan att ha rättighet att " +"ändra rättigheter på sidan. Möjlighet att ändra rättigheter behövs." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Användare kan inte ta bort rättigheter för en sida utan att ha rättighet att ändra sidor. Redigeringsrättighet behövs." +msgstr "" +"Användare kan inte ta bort rättigheter för en sida utan att ha rättighet att" +" ändra sidor. Redigeringsrättighet behövs." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Användare kan inte lägga till rättigheter på sidor utan att ha rättighet att ändra rättigheter på sidan. Möjlighet att ändra rättigheter behövs." +msgstr "" +"Användare kan inte lägga till rättigheter på sidor utan att ha rättighet att" +" ändra rättigheter på sidan. Möjlighet att ändra rättigheter behövs." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Användare kan inte ta bort rättigheter för en sida utan att ha rättighet att ändra sidor. Möjlighet att ändra rättigheter behövs." +msgstr "" +"Användare kan inte ta bort rättigheter för en sida utan att ha rättighet att" +" ändra sidor. Möjlighet att ändra rättigheter behövs." #, python-format msgid "Invalid plugin type '%s'" @@ -208,7 +195,6 @@ msgstr "Språket måste vara ett av de som stödjs" msgid "Parent plugin language must be same as language!" msgstr "Parent plugin språket måste vara på samma språk!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Parent plugin platshållare måste vara samma som platshållare!" @@ -223,7 +209,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -240,9 +225,9 @@ msgstr "%(name)s objekt med primär nycket %(key)r existerar inte." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Fel: Du har inte rättighet att flytta denna sida. Var god ladda om sidan" +msgstr "" +"Fel: Du har inte rättighet att flytta denna sida. Var god ladda om sidan" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Fel! Du har inte rättighet att kopiera denna sida." @@ -275,16 +260,27 @@ msgstr "Mall ändrad" msgid "You do not have permission to copy these plugins." msgstr "Du har inte tillåtelse att kopiera dessa plugins" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Du har inte rättighet att ta bort denna sida" +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "Rubrik och plugins för språket %(language)s raderades" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Du har inte tillåtelse att ändra denna sidas 'i navigation'-status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Tomt" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Vy-restriktion" @@ -302,7 +298,6 @@ msgstr "Du har inte tillåtelse att ändra denna post" msgid "You do not have permission to add a plugin" msgstr "Du har inte rättighet att lägga till denna plugin" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Du har inte rättighet att kopiera denna placeholder" @@ -312,18 +307,15 @@ msgstr "Plugin ej funnet" msgid "You do not have permission to edit this plugin" msgstr "Du har inte behörighet att redigera detta plugin-objekt" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Du har inte behörighet att kopiera in detta plugin-objekt. " -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Du har inte rättighet att kopiera in denna placeholder" msgid "You have no permission to move this plugin" msgstr "Du har inte behörighet att flytta detta plugin-objekt. " -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Du har inte behörighet att klippa ut detta plugin-objekt. " @@ -353,6 +345,47 @@ msgstr "Användar- och grupprättigheter" msgid "Page permissions management" msgstr "Administrera rättigheter för sida" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Förhandsgranska" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -381,9 +414,6 @@ msgstr "Skapa" msgid "Edit" msgstr "Redigera" -msgid "Preview" -msgstr "Förhandsgranska" - msgid "Structure" msgstr "Struktur" @@ -427,15 +457,12 @@ msgstr "Logga ut" msgid "Language" msgstr "Språk" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Lägg till översättning" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Radera översättning" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Kopiera alla plugins" @@ -444,7 +471,6 @@ msgid "from %s" msgstr "från %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Är du säker på att du vill kopiera alla plugin från %s?" @@ -454,7 +480,6 @@ msgstr "Sidor" msgid "Page" msgstr "Sida" -#| msgid "Create" msgid "Create Page" msgstr "Skapa Sida" @@ -501,20 +526,12 @@ msgid "Select a valid page" msgstr "Välj en giltig sida" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -528,7 +545,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "Lämna tom för en automatisk URL-rubrik eller skriv en egen." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -625,17 +647,67 @@ msgstr "Tillåtelse gäller" msgid "page" msgstr "sida" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "endast för inloggade användare" + +msgid "for anonymous users only" +msgstr "endast för anonyma användare" + +msgid "Inherit from parent page" +msgstr "Ärv från förälder" + +msgid "Deny" +msgstr "Neka" + +msgid "Only this website" +msgstr "Bara denna webbsidan" + +msgid "Allow" +msgstr "Tillåt" + +msgid "title" +msgstr "rubrik" + +msgid "overwrite the title (html title tag)" +msgstr "ändra sidrubriken (title-taggen i html)" + +msgid "overwrite the title in the menu" +msgstr "ändra rubriken i menyn" + +msgid "description" +msgstr "beskrivning" + +msgid "The text displayed in search engines." +msgstr "Texten som visas i sökmotorer" + +msgid "redirect" +msgstr "omdirigera" + +msgid "The template used to render the content." +msgstr "Mallen som används för att visa innehållet." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "standard" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Ett unikt id som används med mallkommandot page_url för att länka till denna sida" +msgstr "" +"Ett unikt id som används med mallkommandot page_url för att länka till denna" +" sida" msgid "pages" msgstr "sidor" -msgid "default" -msgstr "standard" - msgid "slug" msgstr "slug" @@ -663,29 +735,36 @@ msgstr "på sidnivå" msgid "frontend view restriction" msgstr "frontend-vy begränsning" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Ange användare eller grupp." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Användare kan inte publicera en sida utan att ha rättighet att redigera sidan. Redigeringsrättighet behövs." +msgstr "" +"Användare kan inte publicera en sida utan att ha rättighet att redigera " +"sidan. Redigeringsrättighet behövs." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Användare kan inte ändra avancerade inställnignar på sidor utan att ha rättighet att ändra sidan. Redigeringsrättigheter behövs." +msgstr "" +"Användare kan inte ändra avancerade inställnignar på sidor utan att ha " +"rättighet att ändra sidan. Redigeringsrättigheter behövs." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Användare kan inte ändra rättigheter på sidor utan att ha rättighet att redigera sidan. Redigeringsrättigheter behövs." +msgstr "" +"Användare kan inte ändra rättigheter på sidor utan att ha rättighet att " +"redigera sidan. Redigeringsrättigheter behövs." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Användare kan inte flytta en sida utan att ha rättighet att redigera sidan. Redigeringsrättighet behövs." +msgstr "" +"Användare kan inte flytta en sida utan att ha rättighet att redigera sidan. " +"Redigeringsrättighet behövs." msgid "can recover any deleted page" msgstr "kan återskapa alla sidor" @@ -705,7 +784,9 @@ msgstr "Sidrättighet" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Tillåtelse att lägga till sida kräver också tillgång till barn eller efterkommande annars kan inte tillagd sida redigeras av den som skapat den." +msgstr "" +"Tillåtelse att lägga till sida kräver också tillgång till barn eller " +"efterkommande annars kan inte tillagd sida redigeras av den som skapat den." msgid "User (page)" msgstr "Användare (grupp)" @@ -749,7 +830,9 @@ msgstr "statiskt placeholder-namn" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Beskrivande namn för att identifiera denna statiska placeholder. Visas inte för besökare." +msgstr "" +"Beskrivande namn för att identifiera denna statiska placeholder. Visas inte " +"för besökare." msgid "placeholder code" msgstr "Placeholder-kod" @@ -772,45 +855,6 @@ msgstr "statiska placeholders" msgid "A static placeholder with the same site and code already exists" msgstr "En statisk placeholder med samam sajt och kod finns redan" -msgid "for logged in users only" -msgstr "endast för inloggade användare" - -msgid "for anonymous users only" -msgstr "endast för anonyma användare" - -msgid "Inherit from parent page" -msgstr "Ärv från förälder" - -msgid "Deny" -msgstr "Neka" - -msgid "Only this website" -msgstr "Bara denna webbsidan" - -msgid "Allow" -msgstr "Tillåt" - -msgid "title" -msgstr "rubrik" - -msgid "overwrite the title (html title tag)" -msgstr "ändra sidrubriken (title-taggen i html)" - -msgid "overwrite the title in the menu" -msgstr "ändra rubriken i menyn" - -msgid "description" -msgstr "beskrivning" - -msgid "The text displayed in search engines." -msgstr "Texten som visas i sökmotorer" - -msgid "redirect" -msgstr "omdirigera" - -msgid "The template used to render the content." -msgstr "Mallen som används för att visa innehållet." - msgid "Advanced options" msgstr "Avancerade inställningar" @@ -818,75 +862,65 @@ msgid "Generic" msgstr "Generisk" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" msgid "There are no further settings for this plugin. Please press save." -msgstr "Det finns inga ytterligare inställningar för detta plugin. Klicka OK för att spara." +msgstr "" +"Det finns inga ytterligare inställningar för detta plugin. Klicka OK för att" +" spara." msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Ändrad" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Spara" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Logga in på administrationssida här." @@ -901,7 +935,6 @@ msgstr "Användarnamn:" msgid "Password:" msgstr "Lösenord:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -982,16 +1015,21 @@ msgstr "Klipp" msgid "Paste" msgstr "Klistra in" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "Rättigheter" + msgid "is restricted" msgstr "är begränsad" msgid "last change by" msgstr "senast ändrad av" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "meta" @@ -1001,7 +1039,6 @@ msgstr "Lista över sidor" msgid "Search" msgstr "Sök" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1013,19 +1050,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Återställ borttagen %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Återställ borttagen %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Huvudnavigation" -#| msgid "Actions" msgid "Options" msgstr "Alternativ" @@ -1049,7 +1081,6 @@ msgstr "Är du säker på att du vill § denna sidan?" msgid "Reload" msgstr "Ladda om" -#| msgid "New Page" msgid "New node" msgstr "Ny nod" @@ -1063,10 +1094,6 @@ msgid "Menu" msgstr "Meny" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1087,30 +1114,15 @@ msgstr "Stäng" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "Publicerad" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Opublicerad" - -msgid "Empty" -msgstr "Tomt" - -#| msgid "in menu" msgid "In menu" msgstr "I menyn" -#| msgid "not in menu" msgid "Not in menu" msgstr "Ej i menyn" -#| msgid "New page" msgid "View page" msgstr "Visa sidan" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1127,12 +1139,18 @@ msgstr "i menyn" msgid "not in menu" msgstr "ej i menyn" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Inställningar för sida (SHIFT-klicka för avancerade inställningar)" -msgid "Permissions" -msgstr "Rättigheter" +msgid "This page has no preview!" +msgstr "Den här sidan har ingen förhandsvisning!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Denna vidarebefodras till:" msgid "Clipboard" msgstr "Urklipp" @@ -1165,13 +1183,15 @@ msgid "You cannot add plugins to this plugin." msgstr "Du kan inte lägga till plugins i detta plugin" msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Detta plugn kan inte flyttas eller redigeras utanför sitt förälder-plugin" +msgstr "" +"Detta plugn kan inte flyttas eller redigeras utanför sitt förälder-plugin" msgid "Clipboard is empty." msgstr "Urklippen är tom." msgid "This plugin does not allow plugins of this type as nested plugins." -msgstr "Detta plugin tillåter inte andra plugins av denna typ som underplugins" +msgstr "" +"Detta plugin tillåter inte andra plugins av denna typ som underplugins" msgid "This plugin cannot have nested plugins." msgstr "Detta plugin kan inte ha underplugins." @@ -1182,7 +1202,6 @@ msgstr "" msgid "Available plugins" msgstr "Tillgängliga plugins" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1196,7 +1215,6 @@ msgid "More" msgstr "Mer" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1208,7 +1226,6 @@ msgstr "Avbryt" msgid "The following error occured:" msgstr "Följande fel inträffade:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1221,15 +1238,12 @@ msgstr "Är du säker på att du vill publicera denna sidan?" msgid "Plugin will be added here" msgstr "Plugins kommer att läggas till här" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Du har icke sparade ändringar" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Är du säker på att du vill överge dessa ändringar?" @@ -1238,7 +1252,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1248,10 +1261,12 @@ msgstr "Genvägar" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "Visa denna hjälp-dialog" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Stäng/avbryt" @@ -1267,32 +1282,29 @@ msgstr "Visa \"Skapa\"-dialog" msgid "Focus on Toolbar" msgstr "Fokusera på Verktygsfält" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Fokusera på placeholders" msgid "Move to next/previous element" msgstr "Flytta till nästa/föregående element" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Fokusera på plugins i placeholder" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Redigera plugin" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Expandera/kollapsa" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Inloggning misslyckades. Var vänlig kontrollera uppgifterna och försök igen." +msgstr "" +"Inloggning misslyckades. Var vänlig kontrollera uppgifterna" +" och försök igen." msgid "Double-click to edit" msgstr "Dubbelklicka för att redigera" @@ -1315,12 +1327,6 @@ msgstr "Maximera" msgid "Drop a plugin here" msgstr "Släpp ett plugin-objekt här" -msgid "This page has no preview!" -msgstr "Den här sidan har ingen förhandsvisning!" - -msgid "It is being redirected to:" -msgstr "Denna vidarebefodras till:" - msgid "Installation successful!" msgstr "" @@ -1335,14 +1341,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Välkommen till django CMS version %(cms_version)s.\n " +msgstr "" +"\n" +" Välkommen till django CMS version %(cms_version)s.\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Skapa en sida i systemet för att fortsätta.\n " +msgstr "" +"\n" +" Skapa en sida i systemet för att fortsätta.\n" +" " #, python-format msgid "" @@ -1350,7 +1362,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n JavaScript verkar vara avstängt, för att fortsätta måste du \n skapa en sida manuellt\n " +msgstr "" +"\n" +" JavaScript verkar vara avstängt, för att fortsätta måste du \n" +" skapa en sida manuellt\n" +" " msgid "Installation Notes" msgstr "" @@ -1361,15 +1377,6 @@ msgstr "Support" msgid "Documentation" msgstr "Dokumentation" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1378,15 +1385,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1411,11 +1409,7 @@ msgstr "Välj ett alternativ från nedan för att gå vidare till nästa steg" msgid "Next" msgstr "Nästa" -msgid "no content" -msgstr "inget innehåll" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1426,7 +1420,9 @@ msgstr "Sidan hittades inte på %(domain)s " msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "En mall-tagg kunde inte hitta sidan med uppslags-argumenten `%(page_lookup)s\n`. Webbadressen för begäran var: http://%(host)s%(path)s" +msgstr "" +"En mall-tagg kunde inte hitta sidan med uppslags-argumenten `%(page_lookup)s\n" +"`. Webbadressen för begäran var: http://%(host)s%(path)s" msgid "Two columns" msgstr "Två kolumner" @@ -1459,7 +1455,9 @@ msgstr "aktiv" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Anger om en användare är aktiv. Avaktivera detta i ställer för att ta bort konton." +msgstr "" +"Anger om en användare är aktiv. Avaktivera detta i ställer för att ta bort " +"konton." msgid "users" msgstr "användare" @@ -1494,7 +1492,6 @@ msgstr "Artiklar" msgid "Sample App" msgstr "Exempel-app" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1504,9 +1501,8 @@ msgstr "" msgid "Sample App 2" msgstr "Exempel App 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "Exempel App 2" msgid "Namespaced App" msgstr "" @@ -1541,9 +1537,8 @@ msgstr "Statisk Meny2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "Statisk Meny" msgid "Category" msgstr "Kategori" @@ -1570,12 +1565,10 @@ msgid "UserSettings" msgstr "Användarinställningar" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Lägg till plugins till placeholder \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Lägg till plugins till %(plugin_name)s" @@ -1593,7 +1586,9 @@ msgstr "Denna platshållare har redan det maximala antalet plugins (%s)." msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Denna placeholder har redan det maximalt tillåtna antalet (%(limit)s) %(plugin_name)s plugin-objekt." +msgstr "" +"Denna placeholder har redan det maximalt tillåtna antalet (%(limit)s) " +"%(plugin_name)s plugin-objekt." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1612,394 +1607,3 @@ msgstr "Skapa en ny %s instans." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/sv/LC_MESSAGES/djangojs.mo b/cms/locale/sv/LC_MESSAGES/djangojs.mo index 309e9d8593b1c4b14c9a79afd3da551cc7a6f7e2..e8b4a6c791dc0969b913748e6aaff158a8ca5aac 100644 GIT binary patch delta 81 zcmcc3a*kz!4sR|a1H)7X1_m!6W}axdoYz3t&`{UdK*7Mw%EWTwTXE_9{Nn7yA_W^T gpF delta 94 zcmX@da+_s>4sR7B1H)7X1_m!67MN(coYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Swedish (http://www.transifex.com/divio/django-cms/language/sv/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: ooskar , 2014\n" +"Language-Team: Swedish (http://app.transifex.com/divio/django-cms/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Är du säker på att du vill ändra flikarna utan att spara sidan först?" diff --git a/cms/locale/ta/LC_MESSAGES/django.mo b/cms/locale/ta/LC_MESSAGES/django.mo index 83afd4351db0f00327a6f40e8ca05e2b66e08152..fa74c9c2be40ae7c21aedd27a289888e6baa0d61 100644 GIT binary patch delta 429 zcmXZWK}!Nb6bJC9tXWGSgh7EZ|I=%r)P z7l`}>eS(NOb*W3YZk>dP{zDD}znS5^|C{IJYw~_QGIS$E8Hp%OMAtE*CHM$e;TtT& z3CzIK3{erb;2yk#^YDG@7hJ=A0#%rb6D`1FxB}0h$iIXle-x)7rEqw_!yhKndkG(+gfe$G1zM&YLkpJhYG6p2@P#$kY zQ&CB&dBLb6DMLfi#b$cW%o~{;mVCm4P_eq)4_qF$yCys0RfqfRu*-Ws+iwI_aX4st z1GR3KvdqXCc{KUW9&g%;WpmGD7WW*NrO(5#6PTLDI~_F?iB7{FsI|7I)t$c6)1c(rN4ui%(7d delta 387 zcmXZWze~eV5C`yUdHrE12-;GmMS?h3!)p?Qzfu*84igSQ?XtnMx-&KX(GBv5RJimI00Ya z1{^>QR+2=E(18_r4KwgH@)J%XAHXskPZ5p4O;~{YP|gpaoPVC89u*PXppb(PQNst6 zAHJi;e41zh`8dF2f(64URQsiP zG0xQW?VYg3_=>?zgU>Fh=A3O=nt`Wm3BSX4+rssmqT{t~wc0r8T86qT{#@&dBhM?> nz1C`Y#|lYX*MlGk-&t<-;8?hh$LlR$Zz4Js&SC$D?InHzLp?u# diff --git a/cms/locale/ta/LC_MESSAGES/django.po b/cms/locale/ta/LC_MESSAGES/django.po index 920174e5df1..e0ac62a91cb 100644 --- a/cms/locale/ta/LC_MESSAGES/django.po +++ b/cms/locale/ta/LC_MESSAGES/django.po @@ -3,19 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# L.Desigan , 2014 -# Haridaykumar , 2014 -# L.Desigan , 2014 -# L.Desigan , 2014 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Tamil (http://www.transifex.com/divio/django-cms/language/ta/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Tamil (https://app.transifex.com/divio/teams/58664/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -59,9 +56,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -74,7 +68,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -96,11 +89,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -116,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -190,7 +180,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -205,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -224,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -257,7 +244,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -265,7 +251,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "காலி" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -284,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -294,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -335,6 +329,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -363,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "கட்டமைப்பு" @@ -409,15 +441,12 @@ msgstr "" msgid "Language" msgstr "மொழி" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -426,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -436,7 +464,6 @@ msgstr "பக்கங்கள்" msgid "Page" msgstr "பக்கம்" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -483,20 +510,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -510,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -607,6 +631,57 @@ msgstr "" msgid "page" msgstr "பக்கம்" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "தலைப்பு" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "விரித்துரைப்பு" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -615,9 +690,6 @@ msgstr "" msgid "pages" msgstr "பக்கங்கள்" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -645,7 +717,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -754,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "தலைப்பு" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "விரித்துரைப்பு" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -800,7 +832,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -810,65 +841,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -883,7 +903,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +983,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -983,7 +1007,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -997,17 +1020,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1031,7 +1046,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1059,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1079,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "காலி" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,11 +1104,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1164,7 +1165,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1178,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1190,7 +1189,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1201,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1215,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1224,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,26 +1245,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1297,12 +1288,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1343,15 +1328,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1336,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1360,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1476,7 +1439,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,7 +1448,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1523,7 +1484,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1552,12 +1512,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,394 +1552,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ta/LC_MESSAGES/djangojs.mo b/cms/locale/ta/LC_MESSAGES/djangojs.mo index cc3810e2c4b9fc7f5ce1e948ef16b512aba6b0b5..377d3dab42f0c0476c7d6d100158f197e3cf8093 100644 GIT binary patch delta 99 zcmZ3*x}J4{4sR_Z1H)7X28P){EIiS2Ij@1Pp`os^fr5dVm5JrVx8k}!dM>HOndymn x3N|SaMowl)az<``USgg@dTwH7j$U$puAPp8k%6JfWF1C1=EQ=6&AyDWi~v(Z9LxX! delta 94 zcmZ3_x{7sz4sQh`1H)7X28P){%s0_;Ij@DTfuXLUp@N~Am9fRdx8fQBiKRLD3XVBt piA9Mi`3g1#AiiEAl<$y|S(cfvmz-fY*^p6=xxBo5a}Z-JBLL0g93cPz diff --git a/cms/locale/ta/LC_MESSAGES/djangojs.po b/cms/locale/ta/LC_MESSAGES/djangojs.po index b5d509c1177..2726a71a436 100644 --- a/cms/locale/ta/LC_MESSAGES/djangojs.po +++ b/cms/locale/ta/LC_MESSAGES/djangojs.po @@ -10,15 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Tamil (http://www.transifex.com/divio/django-cms/language/ta/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: L.Desigan , 2014\n" +"Language-Team: Tamil (http://app.transifex.com/divio/django-cms/language/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "பக்கத்தை சேமிக்காமல் தத்தல்களை மாற்ற விரும்புகிறீர்களா?" diff --git a/cms/locale/th/LC_MESSAGES/django.mo b/cms/locale/th/LC_MESSAGES/django.mo index d30ed16e349a71d7a5e3244d490ec157ede6f372..6b271a1f9cd0b80ded7c0edd37bb7d3b4f526603 100644 GIT binary patch delta 68 zcmbQu{E}&c3Zwo+RXrBnn9czOnfNH UU6PuZTdZ$tVP!)OvW#;RrWC1nh>n7(G>*pl0LG(|&J_!KcAT&b& diff --git a/cms/locale/th/LC_MESSAGES/django.po b/cms/locale/th/LC_MESSAGES/django.po index a7facf27402..fab163c2cc5 100644 --- a/cms/locale/th/LC_MESSAGES/django.po +++ b/cms/locale/th/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Thai (http://www.transifex.com/divio/django-cms/language/th/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Thai (https://app.transifex.com/divio/teams/58664/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -959,16 +980,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -978,7 +1004,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -992,17 +1017,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1026,7 +1043,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1040,10 +1056,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1064,30 +1076,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1104,11 +1101,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1159,7 +1162,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1173,7 +1175,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1185,7 +1186,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1198,15 +1198,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1215,7 +1212,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1225,10 +1221,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1244,26 +1242,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1292,12 +1285,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1338,15 +1325,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1355,15 +1333,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1388,11 +1357,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1471,7 +1436,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1481,7 +1445,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1518,7 +1481,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1547,12 +1509,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1589,393 +1549,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/th/LC_MESSAGES/djangojs.mo b/cms/locale/th/LC_MESSAGES/djangojs.mo index c331c21926e4a52f9a13c6b0a10fc707c555b107..75534365127a3a6804ac8bb74b496f9a4d8eca44 100644 GIT binary patch delta 68 zcmZ3*ynuOv3S-(t)p%Y5T|+}%V*>>PGb|@i4(;=0uoDe@)aC&$`XqbQ}PvT3P60l zL@3`OC9^CuUoSbsj>{)8FTFG|Jyka(H8IypAtWO)Q$Zu6q@=(~U%$M(eB!fR0J-}k AWB>pF diff --git a/cms/locale/th/LC_MESSAGES/djangojs.po b/cms/locale/th/LC_MESSAGES/djangojs.po index d0d0c3bf62c..a149f8c668d 100644 --- a/cms/locale/th/LC_MESSAGES/djangojs.po +++ b/cms/locale/th/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Thai (http://www.transifex.com/divio/django-cms/language/th/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Thai (http://app.transifex.com/divio/django-cms/language/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/th_TH/LC_MESSAGES/django.mo b/cms/locale/th_TH/LC_MESSAGES/django.mo index dbbe784648eb2c3bd12b21cd9c6956da4e506a0a..9dae5a0476458ea0b151087ea5acba42d470c849 100644 GIT binary patch delta 163 zcmey%`im+2o)F7a1|VPrVi_P-0b*t#)&XJ=umEBQprj>`2C0FAfTH}Y)Z`Lf&lKIT z)S}|d{5&g#l&r+O^nBgq+~UcijJiTbx`rU6U}#`vY@}@f1e5C-Rn?2F^z{=93iL{f m67z~P(^4z+lJj%*Q!>jk^Yu$o6LX98O)bpKOeSAqoB;qyC?zid literal 765 zcmZ{g&ubGw6vs!cKUf8SfHx0wY?aAw5`?-jVoh5tG#J{|tBkwTWaDOM*_|YfClx^j zuRT;jR4Ah0K~bC>{2M%Ym$``-@#fXi_cFr?1o4)SX~-)aVlw}xo)kAM5c;0vvwG;EB$uHJn2%ab&aiwL73awB3Htt z6{q5`vcoDDX!*Qbt)6ob)+)~w^HLsX5mz#G=|XsWRCVY@Ug+f!??_qlW$zNKlZluo zc+aI?hlg}FUn3p|b9A<&RN~t9a5yZfykWQ@HuFk52nV6GCo?m@m)R&N-e#-LP4B8b zXEj%vOVihtOODl$u@W&x8zq=siA`lE5f9@U^*cPxgsNZnmf8H&m*2P{QnnQPGQbaZ z>HMuw?G23{`CV2k>Zd$n%QEd{E{&5S&FbYEoqX1vnnld`uF=np{%FRJjDAUs-ZJ{V z89z4qq0tYD-490J-`(6c`mNDpobFon>!Qbw(VvZeXY{@Qxbusi84cg3qU$T8x6uRn NQ^*UWam^d7, 2012 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/divio/django-cms/language/th_TH/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Thai (Thailand) (https://app.transifex.com/divio/teams/58664/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -71,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -93,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -113,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -139,13 +130,13 @@ msgid "can_view" msgstr "" msgid "Add" -msgstr "เพิ่ม" +msgstr "" msgid "Change" -msgstr "เปลี่ยน" +msgstr "" msgid "Delete" -msgstr "ลบ" +msgstr "" msgid "" "Users can't create a page without permissions to change the created page. " @@ -187,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -196,13 +186,12 @@ msgid "Plugin position must be greater than %(position)d" msgstr "" msgid "Advanced Settings" -msgstr "ตั้งค่าขั้นสูง" +msgstr "" msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -221,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -254,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -262,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -281,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -291,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -332,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -360,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -404,17 +437,14 @@ msgid "Logout" msgstr "" msgid "Language" -msgstr "ภาษา" +msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -423,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -433,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -480,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -507,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -604,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -612,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -642,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -751,53 +823,13 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" -msgstr "ตัวเลือกขั้นสูง" +msgstr "" msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -807,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -880,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +980,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1004,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1017,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1043,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1056,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1076,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1101,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1162,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1175,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1186,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1198,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1212,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1221,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1242,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1285,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1325,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1333,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1357,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1436,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1445,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1481,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1509,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,393 +1549,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/th_TH/LC_MESSAGES/djangojs.mo b/cms/locale/th_TH/LC_MESSAGES/djangojs.mo index dc7312e4898cdabdfa267d881b34210b38901877..06fc4d85186b2862faad7a558c399a0d69408f74 100644 GIT binary patch delta 68 zcmdnZypef=3S;?1)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!#cJ^78VD9}fTkzZx59 diff --git a/cms/locale/th_TH/LC_MESSAGES/djangojs.po b/cms/locale/th_TH/LC_MESSAGES/djangojs.po index 2a1a5b6321d..792ae6eeaaa 100644 --- a/cms/locale/th_TH/LC_MESSAGES/djangojs.po +++ b/cms/locale/th_TH/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/divio/django-cms/language/th_TH/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Thai (Thailand) (http://app.transifex.com/divio/django-cms/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/tlh/LC_MESSAGES/django.mo b/cms/locale/tlh/LC_MESSAGES/django.mo index f5af86d6a675b1562e31fe67909042ef27749568..4130f2c6ec39de683cae8d08a4491f5bc067c71f 100644 GIT binary patch delta 85 zcmZ3+{Don9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*&n1pp=O8N~nq delta 160 zcmeyuw2XOz3S-VhRXr93XW!t7;kxw(x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^K^!3Zj%k@e?24$wDR)BQqr(~98=If_q0rlnUCg&D&>gPa>n0RXz0GaJIz5oCK diff --git a/cms/locale/tlh/LC_MESSAGES/django.po b/cms/locale/tlh/LC_MESSAGES/django.po index 4844de5885a..4b6a9dbf709 100644 --- a/cms/locale/tlh/LC_MESSAGES/django.po +++ b/cms/locale/tlh/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Klingon (http://www.transifex.com/divio/django-cms/language/tlh/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Klingon (https://app.transifex.com/divio/teams/58664/tlh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/tlh/LC_MESSAGES/djangojs.mo b/cms/locale/tlh/LC_MESSAGES/djangojs.mo index f6279e42b140a5b58d57aff5cfda0b6df51181b3..6a258575892a6e95fe692b67247b69e1fccc0b39 100644 GIT binary patch delta 68 zcmdnWyqbA}3S;3!)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!#EB^78VDFAo6#xrQ4_ diff --git a/cms/locale/tlh/LC_MESSAGES/djangojs.po b/cms/locale/tlh/LC_MESSAGES/djangojs.po index 28d78ae3cdb..9cb471bda7e 100644 --- a/cms/locale/tlh/LC_MESSAGES/djangojs.po +++ b/cms/locale/tlh/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Klingon (http://www.transifex.com/divio/django-cms/language/tlh/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Klingon (http://app.transifex.com/divio/django-cms/language/tlh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tlh\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/tr/LC_MESSAGES/django.mo b/cms/locale/tr/LC_MESSAGES/django.mo index 5808c80fb4fc945c2b6472c9c53d73e4c7c68160..bf9cdc029da845afd2c6d49c2f1c053d57866abd 100644 GIT binary patch delta 8461 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 sQs%6hrw1Knh3;ZkRgGV6Ol_OFp1|, 2013 -# Cem Yıldız , 2015 -# Cem Yıldız , 2015 -# Cihad GÜNDOĞDU , 2013-2014 -# Cihad GÜNDOĞDU , 2013 -# Cumhur Korkut , 2013 -# Hamza SARI , 2019 -# İsmail Aslan , 2015 -# Mehmet Özgür Bayhan , 2013 -# Mehmet Özgür Bayhan , 2013 -# Mustafa Arıcı <>, 2012 -# mustafaimer , 2011 -# mustafaimer , 2011 -# Şeref R. Ayar , 2013 -# suleyman , 2011 -# Yasin YILMAZ , 2013 +# Fabian Braun , 2023 +# Hamza SARI , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Turkish (http://www.transifex.com/divio/django-cms/language/tr/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Hamza SARI , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/divio/teams/58664/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -69,10 +55,9 @@ msgid "Description meta tag" msgstr "Açıklama meta etiketi" msgid "A description of the page used by search engines." -msgstr "Virgül ile ayrılmış anahtar kelimeler, bazen arama motorları tarafından kullanılır." - -msgid "Slug must not be empty." -msgstr "Rumuz(slug) boş olmamalı" +msgstr "" +"Virgül ile ayrılmış anahtar kelimeler, bazen arama motorları tarafından " +"kullanılır." msgid "Page type" msgstr "Sayfa tipi" @@ -86,7 +71,6 @@ msgstr "URL'nin üzerine yaz" msgid "Keep this field empty if standard path should be used." msgstr "Standart yolu kullanmak için bu alanı boş bırakın." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -108,11 +92,9 @@ msgstr "menü görünürlüğü" msgid "limit when this page is visible in the menu" msgstr "Bu sayfanın menüde görünür olduğundaki sınırı" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -128,7 +110,6 @@ msgstr "Uygulama ayarları" msgid "A page with this reverse URL id exists already." msgstr "Bu ters URL id'si ile bir sayfa zaten var." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Geçersiz uygulama konfigürasyon değeri" @@ -165,32 +146,44 @@ msgstr "Sil" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Oluşturulmuş sayfayı düzenleme yetkisi olmayan kullanıcılar sayfa oluşturamazlar. Düzenleme yetkisi gereklidir." +msgstr "" +"Oluşturulmuş sayfayı düzenleme yetkisi olmayan kullanıcılar sayfa " +"oluşturamazlar. Düzenleme yetkisi gereklidir." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa silemezler. Düzenleme yetkisi gereklidir." +msgstr "" +"Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa silemezler. Düzenleme " +"yetkisi gereklidir." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa yetkilendirmesi yapamazlar. Düzenleme yetkisi gereklidir." +msgstr "" +"Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa yetkilendirmesi " +"yapamazlar. Düzenleme yetkisi gereklidir." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa yetkilendirmelerini silemezler. Düzenleme yetkisi gereklidir." +msgstr "" +"Sayfa düzenleme yetkisi olmayan kullanıcılar sayfa yetkilendirmelerini " +"silemezler. Düzenleme yetkisi gereklidir." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Oluşturulmuş sayfa yetkisini düzenleme yetkisi olmayan kullanıcılar sayfa yetkisi oluşturamazlar. Düzenleme yetkisi gereklidir." +msgstr "" +"Oluşturulmuş sayfa yetkisini düzenleme yetkisi olmayan kullanıcılar sayfa " +"yetkisi oluşturamazlar. Düzenleme yetkisi gereklidir." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Yetki düzenleme yetkisi olmayan kullanıcılar sayfa yetkisi silemezler. Düzenleme yetkisi gereklidir." +msgstr "" +"Yetki düzenleme yetkisi olmayan kullanıcılar sayfa yetkisi silemezler. " +"Düzenleme yetkisi gereklidir." #, python-format msgid "Invalid plugin type '%s'" @@ -202,7 +195,6 @@ msgstr "Dil, desteklenen bir dile ayarlanmalı!" msgid "Parent plugin language must be same as language!" msgstr "Ana eklentinin dili aynı olmalıdır." -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "Üst eklenti yer tutucusu, yer tutucu ile ile benzer olmalıdır." @@ -217,7 +209,6 @@ msgid "The page is not eligible to be home." msgstr "Bu sayfa ana sayfa olmak için uygun değil." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -234,9 +225,9 @@ msgstr "%(key)r birincil anahtarlı %(name)s nesnesi mevcut değil." msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Hata! Bu sayfayı taşımak için yetkiniz yok. Lütfen sayfayı yeniden yükleyin" +msgstr "" +"Hata! Bu sayfayı taşımak için yetkiniz yok. Lütfen sayfayı yeniden yükleyin" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Hata! Bu sayfayı kopyalama yetkiniz yok." @@ -269,16 +260,27 @@ msgstr "Şablon başarıyla değiştirildi." msgid "You do not have permission to copy these plugins." msgstr "Bu eklentileri kopyalamaya yetkiniz yok" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" -msgstr "Bu sayfayı silmeye yetkiniz yok." +msgstr "" #, python-format msgid "Title and plugins with language %(language)s was deleted" msgstr "%(language)s dilindeki başlık ve eklenti silindi" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "Bu sayfanın menüde görünürlüğünü düzenleme yetkiniz yok" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Boş" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Kısıta bak" @@ -296,7 +298,6 @@ msgstr "Bu elemanı düzenlemek için yetkiniz yok" msgid "You do not have permission to add a plugin" msgstr "Eklenti eklemeye yetkiniz yok." -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "Bu yer tutucuyu kopyalama yetkiniz yok." @@ -306,18 +307,15 @@ msgstr "Eklenti bulunamadı" msgid "You do not have permission to edit this plugin" msgstr "Bu eklentiyi düzenlemek için yetkiniz yok" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "Bu eklentiyi yapıştırma yetkiniz yok" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "Bu yer tutucuyu yapıştırma yetkiniz yok" msgid "You have no permission to move this plugin" msgstr "Bu eklentiyi taşımak için yetkiniz yok" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "Bu eklentiyi kesme yetkiniz yok." @@ -347,6 +345,47 @@ msgstr "Kullanıcı & Grup yetkileri" msgid "Page permissions management" msgstr "Sayfa yetki yönetimi" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Önizleme" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Kayıtlı apphook(uygulama kancası) \"%r\" bulunamadı" @@ -375,9 +414,6 @@ msgstr "Oluştur" msgid "Edit" msgstr "Düzenle" -msgid "Preview" -msgstr "Önizleme" - msgid "Structure" msgstr "Yapı" @@ -421,15 +457,12 @@ msgstr "Çıkış" msgid "Language" msgstr "Dil" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Çeviri Ekle" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Çeviri Sil" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Tüm eklentileri kopyala" @@ -438,9 +471,9 @@ msgid "from %s" msgstr "%s lokasyonundan" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" -msgstr "Tüm eklentileri %s lokasyonundan kopyalamak istediğinize emin misiniz?" +msgstr "" +"Tüm eklentileri %s lokasyonundan kopyalamak istediğinize emin misiniz?" msgid "Pages" msgstr "Sayfalar" @@ -448,7 +481,6 @@ msgstr "Sayfalar" msgid "Page" msgstr "Sayfa" -#| msgid "Create" msgid "Create Page" msgstr "Sayfa Oluştur" @@ -495,20 +527,12 @@ msgid "Select a valid page" msgstr "Geçerli bir sayfa seç" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -520,9 +544,15 @@ msgid "Provide a title for the new page." msgstr "Yeni sayfa için bir başlık gir" msgid "Leave empty for automatic slug, or override as required." -msgstr "Otomatik rumuz için boş bırakın veya gerekiyorsa varolanın üstüne yazın." +msgstr "" +"Otomatik rumuz için boş bırakın veya gerekiyorsa varolanın üstüne yazın." + +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" -#| msgid "You do not have permission to add a plugin" msgid "You don't have the permissions required to add a page." msgstr "Sayfa eklemek için gereken yetkiye sahip değilsiniz." @@ -619,6 +649,57 @@ msgstr "İzin ver" msgid "page" msgstr "sayfa" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "sadece giriş yapmış kullanıcılar için" + +msgid "for anonymous users only" +msgstr "sadece anonim kullanıcılar için" + +msgid "Inherit from parent page" +msgstr "Üst sayfadan al" + +msgid "Deny" +msgstr "Reddet" + +msgid "Only this website" +msgstr "Sadece bu web sitesi" + +msgid "Allow" +msgstr "İzin ver" + +msgid "title" +msgstr "başlık" + +msgid "overwrite the title (html title tag)" +msgstr "başlık etiketini belirle (html title etiketi)" + +msgid "overwrite the title in the menu" +msgstr "menüdeki başlığın üzerine yaz" + +msgid "description" +msgstr "açıklama" + +msgid "The text displayed in search engines." +msgstr "Arama motorlarında görüntülenen metin" + +msgid "redirect" +msgstr "yönlendirme" + +msgid "The template used to render the content." +msgstr "İçeriği göstermek için kullanılan şablon" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "öntanımlı" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -627,9 +708,6 @@ msgstr "" msgid "pages" msgstr "sayfalar" -msgid "default" -msgstr "öntanımlı" - msgid "slug" msgstr "rumuz " @@ -657,7 +735,6 @@ msgstr "sayfa seviyesinde" msgid "frontend view restriction" msgstr "Önyüz görünümü kısıtlamaları" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Lütfen kişi veya grup seçiniz." @@ -699,7 +776,9 @@ msgstr "Sayfa yetkileri" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Sayfa ekleme yetkisi aynı zamanda alt başlıkların yetkilerine de ihtiyaç duyar, yoksa sayfa ekleyen kişi içeriğini değiştiremez." +msgstr "" +"Sayfa ekleme yetkisi aynı zamanda alt başlıkların yetkilerine de ihtiyaç " +"duyar, yoksa sayfa ekleyen kişi içeriğini değiştiremez." msgid "User (page)" msgstr "Kullanıcı (sayfa)" @@ -766,45 +845,6 @@ msgstr "statik yer tutucular" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "sadece giriş yapmış kullanıcılar için" - -msgid "for anonymous users only" -msgstr "sadece anonim kullanıcılar için" - -msgid "Inherit from parent page" -msgstr "Üst sayfadan al" - -msgid "Deny" -msgstr "Reddet" - -msgid "Only this website" -msgstr "Sadece bu web sitesi" - -msgid "Allow" -msgstr "İzin ver" - -msgid "title" -msgstr "başlık" - -msgid "overwrite the title (html title tag)" -msgstr "başlık etiketini belirle (html title etiketi)" - -msgid "overwrite the title in the menu" -msgstr "menüdeki başlığın üzerine yaz" - -msgid "description" -msgstr "açıklama" - -msgid "The text displayed in search engines." -msgstr "Arama motorlarında görüntülenen metin" - -msgid "redirect" -msgstr "yönlendirme" - -msgid "The template used to render the content." -msgstr "İçeriği göstermek için kullanılan şablon" - msgid "Advanced options" msgstr "Gelişmiş seçenekler" @@ -812,7 +852,6 @@ msgid "Generic" msgstr "Jenerik" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -822,65 +861,54 @@ msgstr "Bu eklenti için başka ayar yok. Lütfen kaydete basın" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Değiştirildi" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Kaydet" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Yönetim için buraya giriş yapınız." @@ -895,9 +923,8 @@ msgstr "Kullanıcı adı:" msgid "Password:" msgstr "Parola:" -#| msgid "Add Page" msgid "Add a page" -msgstr "Sayfa ekle" +msgstr "" msgid "Change a page" msgstr "Bir sayfa düzenle" @@ -976,16 +1003,21 @@ msgstr "Kes" msgid "Paste" msgstr "Yapıştır" -#| msgid "Save as new" msgid "Set as home" msgstr "Ana sayfa olarak ayarla" +msgid "Permissions" +msgstr "Yetkiler" + msgid "is restricted" msgstr "sınırlandırılmış" msgid "last change by" msgstr "son değiştiren" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -995,7 +1027,6 @@ msgstr "Sayfa listesi" msgid "Search" msgstr "Ara" -#| msgid "Page Title" msgid "Page Tree" msgstr "Sayfa Ağacı" @@ -1009,17 +1040,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "Ana Navigasyon" -#| msgid "Actions" msgid "Options" msgstr "Seçenekler" @@ -1043,7 +1066,6 @@ msgstr "Bu sayfayı § etmek istediğinizden emin misiniz?" msgid "Reload" msgstr "Tekrar yükle" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1057,10 +1079,6 @@ msgid "Menu" msgstr "Menü" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1081,30 +1099,15 @@ msgstr "Kapat" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "Yayınlandı" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Yayınlanmadı" - -msgid "Empty" -msgstr "Boş" - -#| msgid "in menu" msgid "In menu" msgstr "Menüde" -#| msgid "not in menu" msgid "Not in menu" msgstr "Menüde değil" -#| msgid "New page" msgid "View page" msgstr "Sayfayı göster" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1121,12 +1124,18 @@ msgstr "Menüde" msgid "not in menu" msgstr "Menüde değil" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "Yetkiler" +msgid "This page has no preview!" +msgstr "Bu sayfanın önizlemesi yok!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Yöndendiriliyor:" msgid "Clipboard" msgstr "Pano" @@ -1159,7 +1168,9 @@ msgid "You cannot add plugins to this plugin." msgstr "Bu eklentiye başka eklentiler ekleyemezsiniz." msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Bu eklenti üst öğesinin dışına taşınamaz veya üst öğesinin dışında düzenlenemez" +msgstr "" +"Bu eklenti üst öğesinin dışına taşınamaz veya üst öğesinin dışında " +"düzenlenemez" msgid "Clipboard is empty." msgstr "Pano şu anda boş." @@ -1176,7 +1187,6 @@ msgstr "Vurgula" msgid "Available plugins" msgstr "Uygun eklentiler" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1190,7 +1200,6 @@ msgid "More" msgstr "Daha fazla" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1200,9 +1209,8 @@ msgid "Cancel" msgstr "İptal" msgid "The following error occured:" -msgstr "Şu hata ile karşılaşıldı:" +msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Aksiyon başarılı." @@ -1215,15 +1223,12 @@ msgstr "Bu sayfayı yayınlamak istediğinizde emin misiniz?" msgid "Plugin will be added here" msgstr "Eklenti buraya eklenecek" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "Kaydedilmemiş değişiklikleriniz bulunuyor." -#| msgid "Loading..." msgid "Loading" msgstr "Yükleniyor" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Yaptığınız değişikliklerden vazgeçmek istediğinize emin misiniz?" @@ -1232,7 +1237,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "En sık kullanılan" @@ -1242,10 +1246,12 @@ msgstr "Kısayollar" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "Bu yardım diyaloğunu getir" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Kapat/iptal" @@ -1261,32 +1267,29 @@ msgstr "\"Oluştur\" diyaloğunu aç" msgid "Focus on Toolbar" msgstr "Araç çubuğuna odaklan" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Yer tutuculara odaklan" msgid "Move to next/previous element" msgstr "Sonraki/önceki öğeye hareket et" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Yer tutucunun eklentilerine odaklan" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Eklentiyi düzenle" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Aksiyonlar menüsünü aç" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Genişlet/daralt" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Giriş başarısız. Lütfen bilgilerinizi kontrol edip tekrar deneyiniz." +msgstr "" +"Giriş başarısız. Lütfen bilgilerinizi kontrol edip tekrar " +"deneyiniz." msgid "Double-click to edit" msgstr "Düzenlemek için çift tıklayınız" @@ -1309,12 +1312,6 @@ msgstr "Büyüt" msgid "Drop a plugin here" msgstr "Eklentiyi buraya bırakın" -msgid "This page has no preview!" -msgstr "Bu sayfanın önizlemesi yok!" - -msgid "It is being redirected to:" -msgstr "Yöndendiriliyor:" - msgid "Installation successful!" msgstr "Kurulum başarılı!" @@ -1329,7 +1326,10 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n django CMS %(cms_version)s versiyonuna hoş geldiniz.\n " +msgstr "" +"\n" +" django CMS %(cms_version)s versiyonuna hoş geldiniz.\n" +" " #, python-format msgid "" @@ -1355,15 +1355,6 @@ msgstr "Destek" msgid "Documentation" msgstr "Dokümantasyon" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1372,15 +1363,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1400,16 +1382,13 @@ msgid "Back" msgstr "Geri" msgid "Please choose an option from below to proceed to the next step." -msgstr "Lütfen aşağıdaki seçeneklerden birini seçerek sonraki adıma ilerleyiniz." +msgstr "" +"Lütfen aşağıdaki seçeneklerden birini seçerek sonraki adıma ilerleyiniz." msgid "Next" msgstr "Sonraki" -msgid "no content" -msgstr "içerik yok" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1420,7 +1399,9 @@ msgstr "%(domain)s 'da sayfa bulunamadı" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Şablon etiketi `%(page_lookup)s\n` arama kriteri ile bir sayfa bulamadı. İstek yapılan URL: http://%(host)s%(path)s" +msgstr "" +"Şablon etiketi `%(page_lookup)s\n" +"` arama kriteri ile bir sayfa bulamadı. İstek yapılan URL: http://%(host)s%(path)s" msgid "Two columns" msgstr "İki sütun" @@ -1433,7 +1414,9 @@ msgstr "kullanıcı adı" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Zorunlu. 300 karakter veya daha azı. Harfler, rakamlar ve @/./+/-/_ karakterleri" +msgstr "" +"Zorunlu. 300 karakter veya daha azı. Harfler, rakamlar ve @/./+/-/_ " +"karakterleri" msgid "Enter a valid username." msgstr "Geçerli bir kullanıcı adı giriniz." @@ -1488,7 +1471,6 @@ msgstr "Makaleler" msgid "Sample App" msgstr "Örnek Uygulama" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Konfigürasyonlu örnek uygulama" @@ -1498,9 +1480,8 @@ msgstr "Dahil edilmeyen yetkilerle Örnek Uygulama" msgid "Sample App 2" msgstr "Örnek Uygulama 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Örnek Uygulama 3" +msgstr "Örnek Uygulama 2" msgid "Namespaced App" msgstr "" @@ -1535,9 +1516,8 @@ msgstr "Statik Menü2" msgid "Static Menu3" msgstr "Sabit Menu3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Sabit Menu4" +msgstr "Statik Menü" msgid "Category" msgstr "Kategori" @@ -1564,12 +1544,10 @@ msgid "UserSettings" msgstr "KullanıcıAyarları" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1581,13 +1559,16 @@ msgstr "CMS - kullanıcı hesabınız güncellendi." #, python-format msgid "This placeholder already has the maximum number of plugins (%s)." -msgstr "Bu yer tutucusu sahip olabileceği en fazla eklenti sayısına sahip: (%s)" +msgstr "" +"Bu yer tutucusu sahip olabileceği en fazla eklenti sayısına sahip: (%s)" #, python-format msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Bu yer tutucu sahip olabileceği (%(limit)s) adet %(plugin_name)s eklentisi limitine ulaştı" +msgstr "" +"Bu yer tutucu sahip olabileceği (%(limit)s) adet %(plugin_name)s eklentisi " +"limitine ulaştı" #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1606,394 +1587,3 @@ msgstr "Yeni bir %s oluşumu oluştur." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Şu model için zaten bir sihirbaz kayıtlıdır: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/tr/LC_MESSAGES/djangojs.mo b/cms/locale/tr/LC_MESSAGES/djangojs.mo index 344eedb8f31ad764a6931f90da6ce2360c6d0248..6324aa9cb5d99ccd6945ad9497dada73ad617c59 100644 GIT binary patch delta 98 zcmcb|@`z=E4sR_Z1H)7X1_nPM7M^IioYz3t&`{UdK*7Mw%EWTwTX7xd(%g*FA_edK uqU_QV1)F3rHyg}zNY72o%+X8E&$ZK0FfuSSo~*;Dz?@i6u-TuHpAi67C>)~z delta 94 zcmaFFa*t(#4sRtR1H)7X1_nPM=AUS}oYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Turkish (http://www.transifex.com/divio/django-cms/language/tr/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Cumhur Korkut , 2013\n" +"Language-Team: Turkish (http://app.transifex.com/divio/django-cms/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Önce sayfayı kaydetmeden sekmeleri değiştirmek istediğinize emin misiniz?" diff --git a/cms/locale/tr_TR/LC_MESSAGES/django.mo b/cms/locale/tr_TR/LC_MESSAGES/django.mo index 26ebfcb03533cd8acf97c55294d886552feb1bf5..daf1b546d29fc8b988304f2930b5d42accbad67c 100644 GIT binary patch delta 539 zcmXZXJ4?f06oBE>v|d{44Mn^RopjJNZPX$~L> zgfV=^A$-G8e8*n=!YF>@EJnH%C5IYHz1r~v`xK?7obwUp#|6qIu291}j9>$6Z1#cc zjCYwV^=p&^Z&21f;3U4HT(sG#f8q?|HtygQi)H>X#yMX(=RI zh1?@JTsoKN`6qbGp>eXC91JQ!hrymQltU#3NO}pH?&nfU?C~}<5%L>dyJ2mw==!Uw zwrOZ-c@pVVcEOlS5z#Hv^|bAZS#oXDb1K=yMrl7^Nvz}r&ncU>Q?RRRg`#QM$vvmI zI-f97hT-3+GqY}1*UfS{>B(~IAb%ti^nL5la&#|m7F~U5Ig?p@{8d{a|0k0B1FIQO Ai~s-t delta 617 zcmYk(zfaph6u|Mz51{3Dpokv=>BK+>u$?qwAOcjxP=+#5Mur1I8nAPSI88G}{0&iu zR;s#oU;t(A62V`OF=p@t6L^hXc!T|ThtDt>SLz9lVkb`Gb9C?(u0PCwe()+`#o{zOGc0K@SsW zD4n09yzmMK@dk(R7s`oJ?f2_*NIy}?7m>}R?s0T;L)rh}#8Gf2)j_6axX`HTC3#;I z@>&0d{1$0WqOW-v8;uRG`IUkWD&, 2017 -# Ender , 2020 +# Bilal Tonga , 2022 +# Ender , 2022 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/divio/django-cms/language/tr_TR/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Ender , 2022\n" +"Language-Team: Turkish (Turkey) (https://app.transifex.com/divio/teams/58664/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,7 +49,9 @@ msgstr "Sayfa Başlığı" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Tarayıcınızın üst kısmında veya yer işaretlerinde görüntülenenlerin üzerine yazar" +msgstr "" +"Tarayıcınızın üst kısmında veya yer işaretlerinde görüntülenenlerin üzerine " +"yazar" msgid "Description meta tag" msgstr "Meta etiketi açıklaması" @@ -57,9 +59,6 @@ msgstr "Meta etiketi açıklaması" msgid "A description of the page used by search engines." msgstr "Arama motorları tarafından kullanılan sayfanın açıklaması." -msgid "Slug must not be empty." -msgstr "Slug boş olmamalı" - msgid "Page type" msgstr "Sayfa Tipi" @@ -72,7 +71,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -94,11 +92,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -114,7 +110,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -188,7 +183,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -203,7 +197,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -222,7 +215,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -255,7 +247,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -263,7 +254,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -282,7 +285,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -292,18 +294,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -333,6 +332,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -361,9 +401,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -407,15 +444,12 @@ msgstr "" msgid "Language" msgstr "Dil" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -424,7 +458,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -434,7 +467,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -481,20 +513,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -508,7 +532,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -605,6 +634,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -613,9 +693,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -643,7 +720,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -752,45 +828,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -798,7 +835,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -808,65 +844,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -881,7 +906,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -962,16 +986,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -981,7 +1010,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -995,17 +1023,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1029,7 +1049,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1043,10 +1062,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1067,30 +1082,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1107,11 +1107,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1162,7 +1168,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1176,7 +1181,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,7 +1192,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1201,15 +1204,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1218,7 +1218,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1228,10 +1227,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1247,26 +1248,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1295,12 +1291,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1341,15 +1331,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1358,15 +1339,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1391,11 +1363,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1474,7 +1442,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1484,7 +1451,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1521,7 +1487,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1550,12 +1515,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1592,394 +1555,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/tr_TR/LC_MESSAGES/djangojs.mo b/cms/locale/tr_TR/LC_MESSAGES/djangojs.mo index da2ac17edeb42c461748dbe6b68423536c75c8e2..957bf0d673f7a6e03593c45a52b2321fb0ba1f86 100644 GIT binary patch delta 68 zcmX@ayn}gy3S-?w)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!!Q;^78VDpN;_l#ZeoE diff --git a/cms/locale/tr_TR/LC_MESSAGES/djangojs.po b/cms/locale/tr_TR/LC_MESSAGES/djangojs.po index d65c3ce2dc0..df0e5e2b148 100644 --- a/cms/locale/tr_TR/LC_MESSAGES/djangojs.po +++ b/cms/locale/tr_TR/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/divio/django-cms/language/tr_TR/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Turkish (Turkey) (http://app.transifex.com/divio/django-cms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/ug/LC_MESSAGES/django.mo b/cms/locale/ug/LC_MESSAGES/django.mo index 0a55214a28816874b6374ab02a5af856d569a3a0..274aa9b0b8ff77d918dcdb467a376cafcac4a334 100644 GIT binary patch delta 85 zcmZ3&{E2CT3ZunDRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*{s2>>I|8N2`h delta 159 zcmeyww1jzr3S-tpRXr93XW!t7;kxw(x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^K^~=l4^-4hIWTvH7fHdf*WR_*->!)M^wdLz3=N9X8, 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Uyghur (http://www.transifex.com/divio/django-cms/language/ug/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Uyghur (https://app.transifex.com/divio/teams/58664/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ug/LC_MESSAGES/djangojs.mo b/cms/locale/ug/LC_MESSAGES/djangojs.mo index 1f7f032948a0863cd283353f614afc141dab9d08..af3023550a8ad930140269e104099ed7aaca8823 100644 GIT binary patch delta 68 zcmdnYypnl>3S<66)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!y?W^78VDFAf3#x49cY diff --git a/cms/locale/ug/LC_MESSAGES/djangojs.po b/cms/locale/ug/LC_MESSAGES/djangojs.po index 17cf7779ba3..4ab201182a7 100644 --- a/cms/locale/ug/LC_MESSAGES/djangojs.po +++ b/cms/locale/ug/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Uyghur (http://www.transifex.com/divio/django-cms/language/ug/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Uyghur (http://app.transifex.com/divio/django-cms/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/uk/LC_MESSAGES/django.mo b/cms/locale/uk/LC_MESSAGES/django.mo index 460be3c1479a3fa2855a66fbfcb381539f459ad7..841d538707446d80196f8da256eebe222c259a92 100644 GIT binary patch delta 9523 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 L;QsLFE}#DbR-xFE delta 9867 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 diff --git a/cms/locale/uk/LC_MESSAGES/django.po b/cms/locale/uk/LC_MESSAGES/django.po index 9035bcd49d5..455d8d947c1 100644 --- a/cms/locale/uk/LC_MESSAGES/django.po +++ b/cms/locale/uk/LC_MESSAGES/django.po @@ -3,33 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# d89e266cdb3589c6cb4ff79f3d6c5a21_99f0368 <7b4e3d2be999b12dc043e4885915d37c_97387>, 2013 -# d89e266cdb3589c6cb4ff79f3d6c5a21_99f0368 <7b4e3d2be999b12dc043e4885915d37c_97387>, 2013 -# Anton Linevich , 2016 -# asteryx , 2015 -# asteryx , 2015 -# roman_grankin , 2014 -# yakky , 2015 -# Maxym Lynnyk , 2013 -# Alex Bolotov , 2013 -# panasoft , 2014-2016 -# Pylyp Dukhlii , 2014 -# roman_grankin , 2014 -# tarasyyyk , 2019 -# Volodymyr Vakulenko , 2017 -# Vusheslavov Eduard , 2014 -# yakky , 2015 -# Maxym Lynnyk , 2013 -# Петро Романчук , 2019 +# Panasoft, 2022 +# Andrii Vozniuk, 2023 +# Anton Linevich , 2023 +# tarasyyyk , 2023 +# Volodymyr Bergman , 2023 +# Fabian Braun , 2023 +# Петро Романчук , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Ukrainian (http://www.transifex.com/divio/django-cms/language/uk/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Петро Романчук , 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/divio/teams/58664/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -65,7 +54,8 @@ msgstr "Назва сторінки" msgid "" "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Переписати те, що буде показано в заголовку вашого браузера або в закладках" +msgstr "" +"Переписати те, що буде показано в заголовку вашого браузера або в закладках" msgid "Description meta tag" msgstr "Описання мета ключового слова" @@ -73,9 +63,6 @@ msgstr "Описання мета ключового слова" msgid "A description of the page used by search engines." msgstr "Описання сторінки, що використовується пошуковими системами." -msgid "Slug must not be empty." -msgstr "Скорочення не повинно бути пустим." - msgid "Page type" msgstr "Тип сторінки" @@ -88,7 +75,6 @@ msgstr "Перезаписати URL" msgid "Keep this field empty if standard path should be used." msgstr "Залиште це поле пустим, якщо використовується стандартний шлях." -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -110,11 +96,9 @@ msgstr "видимість меню" msgid "limit when this page is visible in the menu" msgstr "обмеження, коли ця сторінка є видимою у меню" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -130,7 +114,6 @@ msgstr "Конфігурації програми" msgid "A page with this reverse URL id exists already." msgstr "Сторінка із таким реверсивним URL id вже існує." -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "Неприпустиме значення конфігурації програми" @@ -167,32 +150,44 @@ msgstr "Видалити" msgid "" "Users can't create a page without permissions to change the created page. " "Edit permissions required." -msgstr "Користувачу не дозволено створювати сторінки без дозволу на зміну вже створених сторінок. Змініть відповідні дозволи." +msgstr "" +"Користувачу не дозволено створювати сторінки без дозволу на зміну вже " +"створених сторінок. Змініть відповідні дозволи." msgid "" "Users can't delete a page without permissions to change the page. Edit " "permissions required." -msgstr "Користувачу не дозволено видаляти сторінки без дозволу на зміну сторінок. Змініть відповідні дозволи." +msgstr "" +"Користувачу не дозволено видаляти сторінки без дозволу на зміну сторінок. " +"Змініть відповідні дозволи." msgid "" "Users can't set page permissions without permissions to change a page. Edit " "permissions required." -msgstr "Користувачу не дозволено змінювати дозволи сторінки без дозволу змінювати сторінку. Змініть відповідні дозволи." +msgstr "" +"Користувачу не дозволено змінювати дозволи сторінки без дозволу змінювати " +"сторінку. Змініть відповідні дозволи." msgid "" "Users can't delete page permissions without permissions to change a page. " "Edit permissions required." -msgstr "Користувачі не мають дозволу видаляти дозволи сторінок без дозволу змінювати сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не мають дозволу видаляти дозволи сторінок без дозволу змінювати" +" сторінки. Змініть відповідні дозволи." msgid "" "Users can't create page permissions without permissions to change the " "created permission. Edit permissions required." -msgstr "Користувачі не можуть створювати дозволи сторінки без дозволу змінювати дозволи, що вже існують. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть створювати дозволи сторінки без дозволу змінювати " +"дозволи, що вже існують. Змініть відповідні дозволи." msgid "" "Users can't delete page permissions without permissions to change " "permissions. Edit permissions required." -msgstr "Користувачі не можуть видаляти дозволи сторінки без дозволу змінювати дозволи сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть видаляти дозволи сторінки без дозволу змінювати " +"дозволи сторінки. Змініть відповідні дозволи." #, python-format msgid "Invalid plugin type '%s'" @@ -204,9 +199,9 @@ msgstr "Мова повинна бути в переліку мов, що під msgid "Parent plugin language must be same as language!" msgstr "Батьківка мова розширення повинна бути така сама!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" -msgstr "Заповнювач батьківського плагіна повинен бути таким же як сам заповнювач!" +msgstr "" +"Заповнювач батьківського плагіна повинен бути таким же як сам заповнювач!" #, python-format msgid "Plugin position must be greater than %(position)d" @@ -219,7 +214,6 @@ msgid "The page is not eligible to be home." msgstr "Сторінка не може бути домашньою." #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -236,16 +230,19 @@ msgstr "Об'єкта %(name)s з основним ключем %(key)r не і msgid "" "Error! You don't have permissions to move this page. Please reload the page" -msgstr "Помилка! Ви не маєте дозволу на переміщення цієї сторінки. Будь-ласка, перезавантажте сторінку." +msgstr "" +"Помилка! Ви не маєте дозволу на переміщення цієї сторінки. Будь-ласка, " +"перезавантажте сторінку." -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "Помилка! У Вас не достатньо прав щоб скопіювати цю сторінку." msgid "" "Error! The page you're pasting is not translated in any of the languages " "configured by the target site." -msgstr "Помилка! Сторінка, яку Ви намагаєтесь вставити не перекладена на жодну з мов, які налаштовано в цільовому сайті." +msgstr "" +"Помилка! Сторінка, яку Ви намагаєтесь вставити не перекладена на жодну з " +"мов, які налаштовано в цільовому сайті." msgid "You do not have permission to edit this page" msgstr "У Вас немає дозволу редагувати цю сторінку" @@ -271,7 +268,6 @@ msgstr "Шаблон було успішно змінено" msgid "You do not have permission to copy these plugins." msgstr "Ви не маєте дозволу для копіювання даних розширень." -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "У вас не достатньо прав щоб видалити цю сторінку" @@ -279,8 +275,20 @@ msgstr "У вас не достатньо прав щоб видалити цю msgid "Title and plugins with language %(language)s was deleted" msgstr "Заголовок та розширення мовами %(language)s видалені" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "У вас немає дозволу на зміну статусу \"в навігації\" для цієї сторінки" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "Очистити" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "Обмеження перегляду" @@ -298,7 +306,6 @@ msgstr "У Вас немає дозволу редагувати цю позиц msgid "You do not have permission to add a plugin" msgstr "У Вас немає дозволу додавати розширення" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "У Вас немає дозволу на копіювання цього заповнювача." @@ -308,18 +315,15 @@ msgstr "Плагін не знайдено" msgid "You do not have permission to edit this plugin" msgstr "У Вас немає прав для реданування цього розширення" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "У Вас немає дозволу на вставку цього плагіну" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "У Вас немає дозволу на вставку цього заповнювача" msgid "You have no permission to move this plugin" msgstr "У Вас немає дозволу на переміщення цього розширення" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "У Вас немає дозволу вірізати цей плагін" @@ -349,6 +353,47 @@ msgstr "Дозволи Користувача та Групи" msgid "Page permissions management" msgstr "Керування дозволами для сторінки" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "Попередній перегляд" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "Знайдено не зареєстрований apphook \"%r\"" @@ -369,7 +414,9 @@ msgstr "Створити псевдонім" msgid "" "This is an alias reference, you can edit the content only on the %(page_title)s page." -msgstr "Це альтернативне посилання, Ви можете редагувати лише на %(page_title)s сторінці." +msgstr "" +"Це альтернативне посилання, Ви можете редагувати лише на %(page_title)s сторінці." msgid "Create" msgstr "Створити" @@ -377,9 +424,6 @@ msgstr "Створити" msgid "Edit" msgstr "Редагувати" -msgid "Preview" -msgstr "Попередній перегляд" - msgid "Structure" msgstr "Структура" @@ -423,15 +467,12 @@ msgstr "Вийти" msgid "Language" msgstr "Мова" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "Додати Переклад" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "Видалити Переклад" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "Копіювати усі плагіни" @@ -440,7 +481,6 @@ msgid "from %s" msgstr "з %s" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "Ви впевнені, що бажаєте скопіювати усі плагіни з %s?" @@ -450,7 +490,6 @@ msgstr "Сторінки" msgid "Page" msgstr "Сторінка" -#| msgid "Create" msgid "Create Page" msgstr "Створити Сторінку" @@ -497,26 +536,24 @@ msgid "Select a valid page" msgstr "Виберіть чинну сторінку" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." -msgstr "Сторінка%(conflict_page)sмає таке ж посилання '%(url)s' як і поточна сторінка \"%(instance)s\"." +msgstr "" +"Сторінка%(conflict_page)sмає таке ж посилання '%(url)s' як і поточна " +"сторінка \"%(instance)s\"." #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." -msgstr "Сторінка %(conflict_page)sмає таке ж посилання '%(url)s' як і поточна сторінка." +msgstr "" +"Сторінка %(conflict_page)sмає таке ж посилання '%(url)s' як і поточна " +"сторінка." msgid "" "Optional. If supplied, will be automatically added within a new text plugin." -msgstr "Опційно. Якщо вказується, то буде автоматично додано до нового текстового плагіну." +msgstr "" +"Опційно. Якщо вказується, то буде автоматично додано до нового текстового " +"плагіну." msgid "Provide a title for the new page." msgstr "Вкажіть назву для нової сторінки" @@ -524,7 +561,12 @@ msgstr "Вкажіть назву для нової сторінки" msgid "Leave empty for automatic slug, or override as required." msgstr "Залиште порожнім для автоматичного слагу або вкажіть самостійно." -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "Ви не маєте достатньо прав щоб додати сторінку." @@ -621,17 +663,67 @@ msgstr "Призначити права на" msgid "page" msgstr "сторінка" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "тільки для авторизованих користувачів" + +msgid "for anonymous users only" +msgstr "тільки для неавторизованих користувачів" + +msgid "Inherit from parent page" +msgstr "Наслідувати від батьківської сторінки" + +msgid "Deny" +msgstr "Відмовити" + +msgid "Only this website" +msgstr "Тільки цей вебсайт" + +msgid "Allow" +msgstr "Дозволити" + +msgid "title" +msgstr "заголовок" + +msgid "overwrite the title (html title tag)" +msgstr "перезаписати заголовок (html тег title)" + +msgid "overwrite the title in the menu" +msgstr "перезаписати заголовок в меню" + +msgid "description" +msgstr "опис" + +msgid "The text displayed in search engines." +msgstr "Текст, що відображатиметься у пошукових системах." + +msgid "redirect" +msgstr "перенаправлення" + +msgid "The template used to render the content." +msgstr "Шаблон, що використовується для створення змісту." + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "типове" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "Унікальний ідентифікатор, що був використаний з адресою ключового слова шаблону сторінки для прив'язки до цієї сторінки" +msgstr "" +"Унікальний ідентифікатор, що був використаний з адресою ключового слова " +"шаблону сторінки для прив'язки до цієї сторінки" msgid "pages" msgstr "сторінки" -msgid "default" -msgstr "типове" - msgid "slug" msgstr "слаґ" @@ -659,29 +751,36 @@ msgstr "на рівні сторінки" msgid "frontend view restriction" msgstr "обмеження перегляду зовнішнього інтерфейсу" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "Будь-ласка, оберіть користувача або групу." msgid "" "Users can't publish a page without permissions to change the page. Edit " "permissions required." -msgstr "Користувачі не можуть публікувати сторінку без дозволу на зміну сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть публікувати сторінку без дозволу на зміну сторінки. " +"Змініть відповідні дозволи." msgid "" "Users can't change page advanced settings without permissions to change the " "page. Edit permissions required." -msgstr "Користувачі не можуть змінювати розширені налаштування сторінки без дозволу на зміну сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть змінювати розширені налаштування сторінки без дозволу " +"на зміну сторінки. Змініть відповідні дозволи." msgid "" "Users can't change page permissions without permissions to change the page. " "Edit permissions required." -msgstr "Користувачі не можуть змінювати дозволи сторінки без дозволу на зміну сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть змінювати дозволи сторінки без дозволу на зміну " +"сторінки. Змініть відповідні дозволи." msgid "" "Users can't move a page without permissions to change the page. Edit " "permissions required." -msgstr "Користувачі не можуть переміщувати сторінку без дозволу на зміну сторінки. Змініть відповідні дозволи." +msgstr "" +"Користувачі не можуть переміщувати сторінку без дозволу на зміну сторінки. " +"Змініть відповідні дозволи." msgid "can recover any deleted page" msgstr "може відновлювати будь-які видалені сторінки" @@ -701,7 +800,9 @@ msgstr "Дозвіл сторінки" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "Дозвіл на додавання сторінки вимагає також мати доступ до нащадків, інакше додана сторінка не може бути змінена тим, хто її створив." +msgstr "" +"Дозвіл на додавання сторінки вимагає також мати доступ до нащадків, інакше " +"додана сторінка не може бути змінена тим, хто її створив." msgid "User (page)" msgstr "Користувач (сторінка)" @@ -745,7 +846,9 @@ msgstr "назва статичного заповнювача" msgid "" "Descriptive name to identify this static placeholder. Not displayed to " "users." -msgstr "Образна назва для ідентифікації даного заповнювача. Не показується користувачам." +msgstr "" +"Образна назва для ідентифікації даного заповнювача. Не показується " +"користувачам." msgid "placeholder code" msgstr "код заповнювача" @@ -768,45 +871,6 @@ msgstr "статичні заповнювачі" msgid "A static placeholder with the same site and code already exists" msgstr "Статичний заповнювач з тим самим сайтом та кодом вже існує" -msgid "for logged in users only" -msgstr "тільки для авторизованих користувачів" - -msgid "for anonymous users only" -msgstr "тільки для неавторизованих користувачів" - -msgid "Inherit from parent page" -msgstr "Наслідувати від батьківської сторінки" - -msgid "Deny" -msgstr "Відмовити" - -msgid "Only this website" -msgstr "Тільки цей вебсайт" - -msgid "Allow" -msgstr "Дозволити" - -msgid "title" -msgstr "заголовок" - -msgid "overwrite the title (html title tag)" -msgstr "перезаписати заголовок (html тег title)" - -msgid "overwrite the title in the menu" -msgstr "перезаписати заголовок в меню" - -msgid "description" -msgstr "опис" - -msgid "The text displayed in search engines." -msgstr "Текст, що відображатиметься у пошукових системах." - -msgid "redirect" -msgstr "перенаправлення" - -msgid "The template used to render the content." -msgstr "Шаблон, що використовується для створення змісту." - msgid "Advanced options" msgstr "Розширені опції" @@ -814,75 +878,65 @@ msgid "Generic" msgstr "Типовий" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "%(name)s \"%(obj)s\" було змінено успішно." msgid "There are no further settings for this plugin. Please press save." -msgstr "Більше немає налаштувань для цього розширення. Будь-ласка, натисніть <Зберегти>" +msgstr "" +"Більше немає налаштувань для цього розширення. Будь-ласка, натисніть " +"<Зберегти>" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "Змінено" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "Зберегти" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "Авторизуйтесь як адміністратор тут." @@ -897,9 +951,8 @@ msgstr "Ім'я користувача:" msgid "Password:" msgstr "Пароль" -#| msgid "Add Page" msgid "Add a page" -msgstr "Додати сторінку" +msgstr "" msgid "Change a page" msgstr "Змінити сторінку" @@ -980,16 +1033,21 @@ msgstr "Вирізати" msgid "Paste" msgstr "Вставити" -#| msgid "Save as new" msgid "Set as home" msgstr "Зробити головною" +msgid "Permissions" +msgstr "Дозволи" + msgid "is restricted" msgstr "обмежено" msgid "last change by" msgstr "в останнє змінено" +msgid "last change on" +msgstr "в останнє змінено" + msgid "meta" msgstr "meta" @@ -999,7 +1057,6 @@ msgstr "Список сторінок" msgid "Search" msgstr "Пошук" -#| msgid "Page Title" msgid "Page Tree" msgstr "Дерево Сторінок" @@ -1011,19 +1068,14 @@ msgid "" "\n" " Restore deleted %(name)s\n" " " -msgstr "\n Відновити видалене: %(name)s\n " - -msgid "" -"\n" -" New Page\n" -" " msgstr "" +"\n" +" Відновити видалене: %(name)s\n" +" " -#| msgid "in navigation" msgid "Main Navigation" msgstr "Головне Меню" -#| msgid "Actions" msgid "Options" msgstr "Опції" @@ -1031,7 +1083,8 @@ msgid "Successfully moved" msgstr "Успішно переміщено" msgid "Changes within the tree might require a refresh." -msgstr "Зміни в межах дерева можуть потребувати поновлення зображення для перегляду." +msgstr "" +"Зміни в межах дерева можуть потребувати поновлення зображення для перегляду." msgid "Error:" msgstr "Помилка:" @@ -1039,7 +1092,10 @@ msgstr "Помилка:" msgid "" "This page cannot be copied because an application is attached to it. See the" " Page's Advanced settings to manage apphooks." -msgstr "Ця сторінка не може бути скопійована через наявність додатку, що прикріплений до неї. Дивіться розширені налаштування сторінки для управління цим додатком (apphook)." +msgstr "" +"Ця сторінка не може бути скопійована через наявність додатку, що " +"прикріплений до неї. Дивіться розширені налаштування сторінки для управління" +" цим додатком (apphook)." msgid "Are you sure you want to § this page?" msgstr "Ви впевнені, що хочете § цю сторінку?" @@ -1047,7 +1103,6 @@ msgstr "Ви впевнені, що хочете § цю сторінку?" msgid "Reload" msgstr "Перезавантажити" -#| msgid "New Page" msgid "New node" msgstr "Новий пункт" @@ -1061,17 +1116,18 @@ msgid "Menu" msgstr "Меню" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" "
    \n" " Add %(object)s now.\n" " " -msgstr "\n Поки що немає %(object)s\n
    \n Додати %(object)s.\n " +msgstr "" +"\n" +" Поки що немає %(object)s\n" +"
    \n" +" Додати %(object)s.\n" +" " msgid "Copy options" msgstr "Опції копіювання" @@ -1085,30 +1141,15 @@ msgstr "Закрити" msgid "Legend" msgstr "Легенда" -#| msgid "published" -msgid "Published" -msgstr "Опубліковано" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "Неопубліковано" - -msgid "Empty" -msgstr "Очистити" - -#| msgid "in menu" msgid "In menu" msgstr "В меню" -#| msgid "not in menu" msgid "Not in menu" msgstr "Не в меню" -#| msgid "New page" msgid "View page" msgstr "Перегляд сторінки" -#| msgid "softroot" msgid "Softroot" msgstr "Softroot" @@ -1125,12 +1166,18 @@ msgstr "у меню" msgid "not in menu" msgstr "не у меню" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "Налаштування сторінки (SHIFT для розширених налаштувань)" -msgid "Permissions" -msgstr "Дозволи" +msgid "This page has no preview!" +msgstr "Ця сторінка не має перегляду!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "Це було перенапрвлено на:" msgid "Clipboard" msgstr "Буфер обміну" @@ -1163,7 +1210,9 @@ msgid "You cannot add plugins to this plugin." msgstr "Ви не можете додавати плагіни до цього плагіну" msgid "This plugin cannot be moved or edited outside of its parent" -msgstr "Цей плагін не може переміщуватись або редагуватися за межами своїх порождувачів" +msgstr "" +"Цей плагін не може переміщуватись або редагуватися за межами своїх " +"порождувачів" msgid "Clipboard is empty." msgstr "Буфер обміну порожній." @@ -1180,7 +1229,6 @@ msgstr "Виділення" msgid "Available plugins" msgstr "Доступні плагіни" -#| msgid "Structure" msgid "Toggle structure" msgstr "Увімк./Вимк. структуру" @@ -1194,11 +1242,12 @@ msgid "More" msgstr "Більше" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" -msgstr "Версія, що знаходиться у розробці з використанням django CMS %(cms_version)s, Django %(django_version)s, Python %(python_version)s" +msgstr "" +"Версія, що знаходиться у розробці з використанням django CMS " +"%(cms_version)s, Django %(django_version)s, Python %(python_version)s" msgid "Cancel" msgstr "Скасувати" @@ -1206,7 +1255,6 @@ msgstr "Скасувати" msgid "The following error occured:" msgstr "Сталася помилка:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "Виконано успішно" @@ -1219,24 +1267,22 @@ msgstr "Ви впевнені, що ви хочете опублікувати msgid "Plugin will be added here" msgstr "Плагін буде додано сюди" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "У Вас є зміни, що не збережені." -#| msgid "Loading..." msgid "Loading" msgstr "Завантаження" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "Ви певні, що бажаєте знехтувати цими змінами?" msgid "" "The form could not be loaded. Please check that the server is running " "correctly." -msgstr "Форма не може бути завантажена. Будь ласка, перевірте, чи наразі запущений сервер." +msgstr "" +"Форма не може бути завантажена. Будь ласка, перевірте, чи наразі запущений " +"сервер." -#| msgid "Notify user" msgid "Most used" msgstr "Найбільш використовуване" @@ -1246,10 +1292,12 @@ msgstr "Гарячі клавіші" msgid "The page was changed in the meantime, reloading..." msgstr "Сторінку було змінено, перезавантаження..." +msgid "CMS-wide Shortcuts" +msgstr "Гарячі клавіші CMS" + msgid "Bring up this help dialog" msgstr "Достати цей діалог допомоги" -#| msgid "Cancel" msgid "Close/cancel" msgstr "Закрити/відмінити" @@ -1265,32 +1313,29 @@ msgstr "Відкрити діалог \"Створити\"" msgid "Focus on Toolbar" msgstr "Зфокусувати на Панелі" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "Зфоркусувати на заповнювачах" msgid "Move to next/previous element" msgstr "Перемістити до наступного/попереднього елемента" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "Зфокусувати на плагінах заповнювача" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "Редагувати плагін" -#| msgid "not in menu" msgid "Open actions menu" msgstr "Відкрити меню дій" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "Розгорнути/згорнути" msgid "" "Login failed. Please check your credentials and try again." -msgstr "Увійти не вдалося. Будь ласка, перевірте ваші облікові дані і повторіть спробу." +msgstr "" +"Увійти не вдалося. Будь ласка, перевірте ваші облікові дані" +" і повторіть спробу." msgid "Double-click to edit" msgstr "Двічі клацніть, щоб редагувати" @@ -1313,12 +1358,6 @@ msgstr "Розгорнути" msgid "Drop a plugin here" msgstr "Перетягніть сюди плагін" -msgid "This page has no preview!" -msgstr "Ця сторінка не має перегляду!" - -msgid "It is being redirected to:" -msgstr "Це було перенапрвлено на:" - msgid "Installation successful!" msgstr "Інсталяція відбулася успішно!" @@ -1333,14 +1372,20 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n Вітаємо у django CMS версії %(cms_version)s!\n " +msgstr "" +"\n" +" Вітаємо у django CMS версії %(cms_version)s!\n" +" " #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n Додайте першу сторінку в систему для продовження.\n " +msgstr "" +"\n" +" Додайте першу сторінку в систему для продовження.\n" +" " #, python-format msgid "" @@ -1348,7 +1393,11 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\n Виглядає як у Вас відключено JavaScript тож, будь ласка, \n додайте сторінку вручну.\n " +msgstr "" +"\n" +" Виглядає як у Вас відключено JavaScript тож, будь ласка, \n" +" додайте сторінку вручну.\n" +" " msgid "Installation Notes" msgstr "Нотатки з інсталяції" @@ -1359,32 +1408,17 @@ msgstr "Підтримка" msgid "Documentation" msgstr "Документація" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" " you linked the static/cms folder to your\n" " static files.

    \n" " " -msgstr "\n

    Якщо Ви не бачите вгорі логотип CMS django, переконайтесь,\nщо Ви посилаєтесь на статичні файли у своєму каталозі static/cms

    " - -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " +msgstr "" +"\n" +"

    Якщо Ви не бачите вгорі логотип CMS django, переконайтесь,\n" +"що Ви посилаєтесь на статичні файли у своєму каталозі static/cms

    " + msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1392,7 +1426,9 @@ msgid "" " haven't added any pages yet.\n" "

    \n" " " -msgstr "\n

    Ви бачите це повідомлення, оскільки у конфігурації django  наявна директива DEBUG = True і Ви ще не додали жодної сторінки

    " +msgstr "" +"\n" +"

    Ви бачите це повідомлення, оскільки у конфігурації django  наявна директива DEBUG = True і Ви ще не додали жодної сторінки

    " msgid "Welcome to django CMS" msgstr "Вітаємо у django CMS" @@ -1409,11 +1445,7 @@ msgstr "Будь ласка, оберіть опцію нижче для пер msgid "Next" msgstr "Далі" -msgid "no content" -msgstr "Матеріалів поки немає" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1424,7 +1456,9 @@ msgstr "Сторінка не знайдена на %(domain)s" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "Шаблонне ключове слово не може знайти сторінку з пошуковими аргументами `%(page_lookup)s\n`. URL запиту був такий: http://%(host)s%(path)s" +msgstr "" +"Шаблонне ключове слово не може знайти сторінку з пошуковими аргументами `%(page_lookup)s\n" +"`. URL запиту був такий: http://%(host)s%(path)s" msgid "Two columns" msgstr "Два стовпці" @@ -1437,7 +1471,8 @@ msgstr "ім'я користувача" msgid "" "Required. 300 characters or fewer. Letters, numbers and @/./+/-/_ characters" -msgstr "Обов'язково. 300 символів або менше. Літери, числа and @/./+/-/_ символи" +msgstr "" +"Обов'язково. 300 символів або менше. Літери, числа and @/./+/-/_ символи" msgid "Enter a valid username." msgstr "Введіть чинне ім'я користувача." @@ -1449,7 +1484,8 @@ msgid "staff status" msgstr "статус персоналу" msgid "Designates whether the user can log into this admin site." -msgstr "Показує чи може користувач авторизуватись на цьому адміністративному сайті." +msgstr "" +"Показує чи може користувач авторизуватись на цьому адміністративному сайті." msgid "active" msgstr "активний" @@ -1457,7 +1493,9 @@ msgstr "активний" msgid "" "Designates whether this user should be treated as active. Unselect this " "instead of deleting accounts." -msgstr "Показує чи повинен цей користувач вважатись активним. Зніміть відмітку замість видалення реєстраційного запису." +msgstr "" +"Показує чи повинен цей користувач вважатись активним. Зніміть відмітку " +"замість видалення реєстраційного запису." msgid "users" msgstr "користувачі" @@ -1492,7 +1530,6 @@ msgstr "Статті" msgid "Sample App" msgstr "Приклад Прграми" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "Демонстраційний додаток з конфігурацією" @@ -1502,9 +1539,8 @@ msgstr "Приклад Програми з видаленими дозволам msgid "Sample App 2" msgstr "Приклад Програми 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "Демонстраційний додаток 3" +msgstr "Приклад Програми 2" msgid "Namespaced App" msgstr "Простороіменна Прграма" @@ -1539,9 +1575,8 @@ msgstr "Статичне меню2" msgid "Static Menu3" msgstr "Статичне меню3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "Статичне Меню4" +msgstr "Статичне меню" msgid "Category" msgstr "Категорія" @@ -1568,12 +1603,10 @@ msgid "UserSettings" msgstr "Користувацькі Налаштування" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "Додати плагін до заповнювача \"%(placeholder_label)s\"" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "Додати плагін до %(plugin_name)s" @@ -1591,7 +1624,9 @@ msgstr "Заповнювач вже містить максимальну кіл msgid "" "This placeholder already has the maximum number (%(limit)s) of allowed " "%(plugin_name)s plugins." -msgstr "Це місце заповнення вже має максимальну кількість (%(limit)s) дозволеного %(plugin_name)s в плагіні." +msgstr "" +"Це місце заповнення вже має максимальну кількість (%(limit)s) дозволеного " +"%(plugin_name)s в плагіні." #, python-brace-format msgid "Unable to find the specified CMS_REQUEST_IP_RESOLVER module: \"{0}\"." @@ -1601,7 +1636,9 @@ msgstr "Не можу знайти вказаний CMS_REQUEST_IP_RESOLVER мо msgid "" "Unable to find the specified CMS_REQUEST_IP_RESOLVER function: \"{0}\" in " "module \"{1}\"." -msgstr "Не можу знайти вказану CMS_REQUEST_IP_RESOLVER функцію: \"{0}\" in module \"{1}\"." +msgstr "" +"Не можу знайти вказану CMS_REQUEST_IP_RESOLVER функцію: \"{0}\" in module " +"\"{1}\"." #, python-format msgid "Create a new %s instance." @@ -1610,396 +1647,3 @@ msgstr "Додати новий %s екземпляр." #, python-format msgid "A wizard has already been registered for model: %s" msgstr "Помічник вже було зареєстровано для моделі: %s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" -#~ msgstr[2] "a848884d0af974a125106fa2043a5716_pl_2" -#~ msgstr[3] "a848884d0af974a125106fa2043a5716_pl_3" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/uk/LC_MESSAGES/djangojs.mo b/cms/locale/uk/LC_MESSAGES/djangojs.mo index 79a5a78e8029fc9215e221783a30284fac395934..3064361e6d3e4e730361b3e0f5b7539e720ab333 100644 GIT binary patch delta 100 zcmeyz*1|qPhc|(Vfnh2G14Azmf17BzoYz3t&`{UdK*7Mw%EWTwTXDUx{G9xh%G}B# z1*g=a^xVWe1)K8x^6bQ%(&X$)2cSS^j$U$puAPp8k%6K4WF1B&=EQ=6&4G-%OaRuG B9#a4S delta 94 zcmZo+|Hn2#hc}9efnh2G14Azmf0$^woYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd=mZ9Nz!{ diff --git a/cms/locale/uk/LC_MESSAGES/djangojs.po b/cms/locale/uk/LC_MESSAGES/djangojs.po index 5d0eb391f3c..a49787fb6e6 100644 --- a/cms/locale/uk/LC_MESSAGES/djangojs.po +++ b/cms/locale/uk/LC_MESSAGES/djangojs.po @@ -7,20 +7,29 @@ # Pylyp Dukhlii , 2014 # Roman Kozlovskyi , 2012 # Roman Kozlovskyi , 2012 -# Volodymyr Vakulenko , 2017 +# Volodymyr Bergman , 2017 msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Ukrainian (http://www.transifex.com/divio/django-cms/language/uk/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: Volodymyr Bergman , 2017\n" +"Language-Team: Ukrainian (http://app.transifex.com/divio/django-cms/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: uk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "Ви впевнені, що хочете змінити вкладки без попереднього збереження сторінки?" diff --git a/cms/locale/ur/LC_MESSAGES/django.mo b/cms/locale/ur/LC_MESSAGES/django.mo index 5084664f91417c2c2983e34b3982e6d5953d1fad..0bff6aeb52ea7086895cca31434e306a785e8e78 100644 GIT binary patch delta 68 zcmZ3){DEnL3ZvOXRXrBnn9czOnfNH UU6PuZTdZ$tVP!)OvW#;RrWC1nh>n7(G>*pl0LG(|&J`(`&tu%Q6 diff --git a/cms/locale/ur/LC_MESSAGES/django.po b/cms/locale/ur/LC_MESSAGES/django.po index 83b39f4d36f..e0887d9340f 100644 --- a/cms/locale/ur/LC_MESSAGES/django.po +++ b/cms/locale/ur/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Urdu (http://www.transifex.com/divio/django-cms/language/ur/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Urdu (https://app.transifex.com/divio/teams/58664/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -960,16 +981,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -979,7 +1005,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -993,17 +1018,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1027,7 +1044,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1041,10 +1057,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1065,30 +1077,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1105,11 +1102,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1160,7 +1163,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1174,7 +1176,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1186,7 +1187,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1199,15 +1199,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1216,7 +1213,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1226,10 +1222,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1245,26 +1243,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1293,12 +1286,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1339,15 +1326,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1356,15 +1334,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1389,11 +1358,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1472,7 +1437,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1482,7 +1446,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1519,7 +1482,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1548,12 +1510,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1590,394 +1550,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" -#~ msgstr[1] "a848884d0af974a125106fa2043a5716_pl_1" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/ur/LC_MESSAGES/djangojs.mo b/cms/locale/ur/LC_MESSAGES/djangojs.mo index 7430dbe228fec89ea621cde770bc72f3a7e9e2a5..1550335c025585e99c831cd0ee37407e88ba46a9 100644 GIT binary patch delta 68 zcmdnUyqtN03S;g>)p%Y5T|+}%V*>>PGb|@i4(;=0uoDe@)aC&$`XqbQ}PvT3P60l zL@3`OC9^CuUoSbsj>{)8FTFG|Jyka(H8IypA+#u^R6!%7q@=(~U%$M(eB!f%0K^3& Ang9R* diff --git a/cms/locale/ur/LC_MESSAGES/djangojs.po b/cms/locale/ur/LC_MESSAGES/djangojs.po index 2e4b133d3b4..588a05016b1 100644 --- a/cms/locale/ur/LC_MESSAGES/djangojs.po +++ b/cms/locale/ur/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Urdu (http://www.transifex.com/divio/django-cms/language/ur/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Urdu (http://app.transifex.com/divio/django-cms/language/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/vi/LC_MESSAGES/django.mo b/cms/locale/vi/LC_MESSAGES/django.mo index 0f4cdc165a87e0a6b62c4c9959a6947ede1f3e91..e7026f7a3f0159805b202773953d7d320a429b59 100644 GIT binary patch delta 85 zcmZ3;{GMro3Zv;nRXrBnn9cz=#>;D l<`rkArB>)A=jZCDWR_*->zAY^<`(OlT9}!cOy*~t1OOqY8MFWZ delta 134 zcmaFQw2*m%3S;_2RXr93XW!t7;kvd4x`qb2MwSYOrdGzr+6F+t<&#)kq8n0_m{**W zSdw34rQn#EU1@BfV3P=@9V!zu^7HkQ^Kn7(G>*oMjrHSdO6Yov}0IgXpz5oCK diff --git a/cms/locale/vi/LC_MESSAGES/django.po b/cms/locale/vi/LC_MESSAGES/django.po index 4ec12558448..fd0415f8d74 100644 --- a/cms/locale/vi/LC_MESSAGES/django.po +++ b/cms/locale/vi/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Vietnamese (http://www.transifex.com/divio/django-cms/language/vi/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Vietnamese (https://app.transifex.com/divio/teams/58664/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -959,16 +980,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -978,7 +1004,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -992,17 +1017,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1026,7 +1043,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1040,10 +1056,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1064,30 +1076,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1104,11 +1101,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1159,7 +1162,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1173,7 +1175,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1185,7 +1186,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1198,15 +1198,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1215,7 +1212,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1225,10 +1221,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1244,26 +1242,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1292,12 +1285,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1338,15 +1325,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1355,15 +1333,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1388,11 +1357,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1471,7 +1436,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1481,7 +1445,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1518,7 +1481,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1547,12 +1509,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1589,393 +1549,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/vi/LC_MESSAGES/djangojs.mo b/cms/locale/vi/LC_MESSAGES/djangojs.mo index 3e839ce637ce15cce6ae9b281fe8fdf83aa3b5e7..8a0ebf511aa16d5e23d62389553b656cd6e5dfc0 100644 GIT binary patch delta 68 zcmdnMyo`B*3S-Vh)p%Y5T|+}%V*>>PGbh($ delta 78 zcmZ3+yn%Uw3S-$s)p%YDT?0d1Lqi2aGb>|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!zdm^78VDZ*~CywKp3$ diff --git a/cms/locale/vi/LC_MESSAGES/djangojs.po b/cms/locale/vi/LC_MESSAGES/djangojs.po index 8595513e7d3..89ee9d0b4e1 100644 --- a/cms/locale/vi/LC_MESSAGES/djangojs.po +++ b/cms/locale/vi/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Vietnamese (http://www.transifex.com/divio/django-cms/language/vi/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Vietnamese (http://app.transifex.com/divio/django-cms/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/vi_VN/LC_MESSAGES/django.mo b/cms/locale/vi_VN/LC_MESSAGES/django.mo index 059c87b57ad2ec681613715cdbffb41246ee72f4..fbd141a5442928b4d40ef47ae34a441c1ed39162 100644 GIT binary patch delta 85 zcmdnQ+`v3Rh0$%Isve7Oa&Ga&a9trIT|*F3Ff_0-Hqtf#f{6#U)r+n4^%DyU^h$~n l^NKUmQY-Y5^KFbx5m+O^))MuupR)8e*Q!>jk c^Yv4*67$mYb(3?8^>cu%(!})Ci7#dV0Ea{@jsO4v diff --git a/cms/locale/vi_VN/LC_MESSAGES/django.po b/cms/locale/vi_VN/LC_MESSAGES/django.po index 17344b706fe..a9377e9bdcf 100644 --- a/cms/locale/vi_VN/LC_MESSAGES/django.po +++ b/cms/locale/vi_VN/LC_MESSAGES/django.po @@ -3,15 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/divio/django-cms/language/vi_VN/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Language-Team: Vietnamese (Viet Nam) (https://app.transifex.com/divio/teams/58664/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,9 +54,6 @@ msgstr "" msgid "A description of the page used by search engines." msgstr "" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "" @@ -70,7 +66,6 @@ msgstr "" msgid "Keep this field empty if standard path should be used." msgstr "" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -92,11 +87,9 @@ msgstr "" msgid "limit when this page is visible in the menu" msgstr "" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -112,7 +105,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -186,7 +178,6 @@ msgstr "" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -201,7 +192,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -220,7 +210,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -253,7 +242,6 @@ msgstr "" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -261,7 +249,19 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "" -msgid "You do not have permission to change this page's in_navigation status" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" msgstr "" msgid "View restriction" @@ -280,7 +280,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -290,18 +289,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -331,6 +327,47 @@ msgstr "" msgid "Page permissions management" msgstr "" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -359,9 +396,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "" - msgid "Structure" msgstr "" @@ -405,15 +439,12 @@ msgstr "" msgid "Language" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -422,7 +453,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -432,7 +462,6 @@ msgstr "" msgid "Page" msgstr "" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -479,20 +508,12 @@ msgid "Select a valid page" msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -506,7 +527,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -603,6 +629,57 @@ msgstr "" msgid "page" msgstr "" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "" + +msgid "for anonymous users only" +msgstr "" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "" + +msgid "overwrite the title (html title tag)" +msgstr "" + +msgid "overwrite the title in the menu" +msgstr "" + +msgid "description" +msgstr "" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "" + +msgid "The template used to render the content." +msgstr "" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -611,9 +688,6 @@ msgstr "" msgid "pages" msgstr "" -msgid "default" -msgstr "" - msgid "slug" msgstr "" @@ -641,7 +715,6 @@ msgstr "" msgid "frontend view restriction" msgstr "" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -750,45 +823,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "" - -msgid "for anonymous users only" -msgstr "" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "" - -msgid "overwrite the title (html title tag)" -msgstr "" - -msgid "overwrite the title in the menu" -msgstr "" - -msgid "description" -msgstr "" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "" - -msgid "The template used to render the content." -msgstr "" - msgid "Advanced options" msgstr "" @@ -796,7 +830,6 @@ msgid "Generic" msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -806,65 +839,54 @@ msgstr "" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "" @@ -879,7 +901,6 @@ msgstr "" msgid "Password:" msgstr "" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -959,16 +980,21 @@ msgstr "" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -978,7 +1004,6 @@ msgstr "" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -992,17 +1017,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1026,7 +1043,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1040,10 +1056,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1064,30 +1076,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1104,11 +1101,17 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" msgstr "" msgid "Clipboard" @@ -1159,7 +1162,6 @@ msgstr "" msgid "Available plugins" msgstr "" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1173,7 +1175,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1185,7 +1186,6 @@ msgstr "" msgid "The following error occured:" msgstr "" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1198,15 +1198,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1215,7 +1212,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1225,10 +1221,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1244,26 +1242,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1292,12 +1285,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1338,15 +1325,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1355,15 +1333,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1388,11 +1357,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1471,7 +1436,6 @@ msgstr "" msgid "Sample App" msgstr "" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1481,7 +1445,6 @@ msgstr "" msgid "Sample App 2" msgstr "" -#| msgid "Sample App 2" msgid "Sample App 3" msgstr "" @@ -1518,7 +1481,6 @@ msgstr "" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" msgstr "" @@ -1547,12 +1509,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1589,393 +1549,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/vi_VN/LC_MESSAGES/djangojs.mo b/cms/locale/vi_VN/LC_MESSAGES/djangojs.mo index 11fcfd6a2857e1077eb87c3889ce30f0ab58410f..0c43d3595939d2972b86ba11bd7c4584d3a42832 100644 GIT binary patch delta 69 zcmX@eyq$T13S;d=)p%Y5T|+}%V*>>PGb|@i4(=u0}@Mf@)aC&$`XqbQ}PvT3P60l bL@3`OC9^CuUoSah;!%C(^78VD-wyx)#GD(4 diff --git a/cms/locale/vi_VN/LC_MESSAGES/djangojs.po b/cms/locale/vi_VN/LC_MESSAGES/djangojs.po index 428f3a48edd..bb4f9c56509 100644 --- a/cms/locale/vi_VN/LC_MESSAGES/djangojs.po +++ b/cms/locale/vi_VN/LC_MESSAGES/djangojs.po @@ -8,15 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: django CMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2018-01-11 16:38+0000\n" -"Last-Translator: Paulo Alvarado \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/divio/django-cms/language/vi_VN/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: yakky \n" +"Language-Team: Vietnamese (Viet Nam) (http://app.transifex.com/divio/django-cms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "" diff --git a/cms/locale/zh_CN/LC_MESSAGES/django.mo b/cms/locale/zh_CN/LC_MESSAGES/django.mo index 3c9153187c22d6a7c44c50bcb401168a4338b66b..87ad1f4c1dffdfaa1681f79d6ba941c44b5dfd4a 100644 GIT binary patch delta 8104 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 delta 7997 zcmYM&30#$RzQ^&0MFd2_1yLb5?h7J_ONt9QP&N)^6m!MCM z26-ZM!0FX~Z^!a6wB^0}ymEWl8F6t#fI+wuI>;VKH$(H2w(J5c477=}l! z`~+&HA7OL6h}zZk!~rg5ka60E$vm8YRP=z-eO5q5tnMv;Hm@30~T_kTHwc-(;Xu@c!D=P+vPPM}u)0crv@n1pQ z@+&b5-$t(n45K&AtO;u7T~R9;h&o(TkWX7@CTe1

    *aqYGvDS816w$@HR$aI3N6N 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 diff --git a/cms/locale/zh_CN/LC_MESSAGES/django.po b/cms/locale/zh_CN/LC_MESSAGES/django.po index 2c1a44ed90b..90d8558af0f 100644 --- a/cms/locale/zh_CN/LC_MESSAGES/django.po +++ b/cms/locale/zh_CN/LC_MESSAGES/django.po @@ -3,38 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# 1bi9 <1bi9@sina.cn>, 2014 -# 5thgfka <5thgfka@gmail.com>, 2014 -# 5thgfka <5thgfka@gmail.com>, 2014 -# aaffdd11 , 2011 -# aaron , 2015 -# Aosp T, 2017 -# Felix Lu , 2013 -# ofive , 2011 -# Guanting Liu , 2015 -# Jinku Hu , 2015 -# Joe Shen , 2013 -# libingchao , 2019 -# Aosp T, 2017 -# ofive , 2011 -# Ryan , 2013 -# Ryan , 2013 -# spaceoi , 2014 -# ufo , 2015 -# wenze , 2015 -# xyb , 2014 -# xyb , 2014 -# spaceoi , 2014 -# 华鹏 刘 , 2017 +# 华鹏 刘 , 2023 +# Scott Jiang, 2023 +# Aosp T, 2023 +# Florian Delizy , 2023 +# libingchao , 2023 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Chinese (China) (http://www.transifex.com/divio/django-cms/language/zh_CN/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/divio/teams/58664/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -78,9 +61,6 @@ msgstr "描述性的原标签" msgid "A description of the page used by search engines." msgstr "被搜索引擎收录的常见关键字列表" -msgid "Slug must not be empty." -msgstr "缩略名不能为空。" - msgid "Page type" msgstr "页面类型" @@ -93,9 +73,8 @@ msgstr "重写 URL" msgid "Keep this field empty if standard path should be used." msgstr "如果使用标准路径则本项目为空。" -#| msgid "softroot" msgid "Soft root" -msgstr "" +msgstr "伪根节点" msgid "All ancestors will not be displayed in the navigation" msgstr "所有的上级页面将不会在导航中显示" @@ -115,13 +94,11 @@ msgstr "菜单可见性" msgid "limit when this page is visible in the menu" msgstr "该页在菜单可见时限制" -#| msgid "Copy options" msgid "URL options" -msgstr "" +msgstr "URL选项" -#| msgid "Copy options" msgid "Menu options" -msgstr "" +msgstr "菜单选项" msgid "Application" msgstr "应用" @@ -135,9 +112,8 @@ msgstr "应用程序设置" msgid "A page with this reverse URL id exists already." msgstr "该URL id已经被使用。" -#| msgid "Application configurations" msgid "Invalid application config value" -msgstr "" +msgstr "无效的应用设置值" msgid "An application instance using this configuration already exists." msgstr "已经存在使用此设置的应用实例。" @@ -146,7 +122,7 @@ msgid "An application instance with this name already exists." msgstr "已经存在使用此名称的应用实例。" msgid "You can't move the home page inside another page" -msgstr "" +msgstr "你不能将主页移入到另一页面" msgid "Yes" msgstr "是" @@ -209,7 +185,6 @@ msgstr "语言项目必须被设置为支持的语言!" msgid "Parent plugin language must be same as language!" msgstr "父层插件语言必须与当前语言一致!" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "父层插件占位符必须与当前占位符一致!" @@ -224,7 +199,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -243,7 +217,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "错误!您没有权限移动页面。请刷新页面" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -276,7 +249,6 @@ msgstr "模板修改成功" msgid "You do not have permission to copy these plugins." msgstr "您没有复制插件的权限" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -284,8 +256,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "使用 %(language)s 译文的标题和插件被删除" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "您没有权限修改这个页面的浏览中状态" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "清空" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "视图限制" @@ -303,7 +287,6 @@ msgstr "您没有权限编辑当前项" msgid "You do not have permission to add a plugin" msgstr "您没有添加插件的权限" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "没有权限复制该占位符" @@ -313,18 +296,15 @@ msgstr "找不到该插件" msgid "You do not have permission to edit this plugin" msgstr "您没有编辑插件的权限" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "你没有权限粘贴这个插件" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "你没有权限粘贴这个占位符" msgid "You have no permission to move this plugin" msgstr "没有移动插件权限" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "你没有权限剪切这个插件" @@ -354,6 +334,47 @@ msgstr "用户/组权限" msgid "Page permissions management" msgstr "页面权限管理" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "预览" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "找不到与 \"%r\" 对应的已注册应用" @@ -382,9 +403,6 @@ msgstr "创建" msgid "Edit" msgstr "编辑" -msgid "Preview" -msgstr "预览" - msgid "Structure" msgstr "结构" @@ -428,15 +446,12 @@ msgstr "注销" msgid "Language" msgstr "语言" -#| msgid "Add %(language)s Translation" msgid "Add Translation" -msgstr "" +msgstr "加翻译" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "复制所有插件" @@ -445,7 +460,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -455,7 +469,6 @@ msgstr "页" msgid "Page" msgstr "页" -#| msgid "Create" msgid "Create Page" msgstr "创建页面" @@ -502,20 +515,12 @@ msgid "Select a valid page" msgstr "选择一个有效页面" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -529,7 +534,12 @@ msgstr "给新建页面标题" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -626,6 +636,57 @@ msgstr "授权给" msgid "page" msgstr "页面" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "登录用户专用" + +msgid "for anonymous users only" +msgstr "匿名用户专用" + +msgid "Inherit from parent page" +msgstr "继承于父页面" + +msgid "Deny" +msgstr "拒绝" + +msgid "Only this website" +msgstr "仅这个网站" + +msgid "Allow" +msgstr "允许" + +msgid "title" +msgstr "标题" + +msgid "overwrite the title (html title tag)" +msgstr "重写标题(使用 HTML 标题标签)" + +msgid "overwrite the title in the menu" +msgstr "代用的菜单标题" + +msgid "description" +msgstr "详细描述" + +msgid "The text displayed in search engines." +msgstr "搜索引擎中显示的文本" + +msgid "redirect" +msgstr "转向" + +msgid "The template used to render the content." +msgstr "用于生成页面内容的模板。" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "默认" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -634,9 +695,6 @@ msgstr "与 page_url 模板标签共同用来链接到当前页的唯一识别 msgid "pages" msgstr "页面" -msgid "default" -msgstr "默认" - msgid "slug" msgstr "缩略名" @@ -664,7 +722,6 @@ msgstr "在页面级别" msgid "frontend view restriction" msgstr "前端视图限制" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "请选择用户或组" @@ -773,45 +830,6 @@ msgstr "静态占位符" msgid "A static placeholder with the same site and code already exists" msgstr "已存在一个相同站点、相同编码的静态占位符。" -msgid "for logged in users only" -msgstr "登录用户专用" - -msgid "for anonymous users only" -msgstr "匿名用户专用" - -msgid "Inherit from parent page" -msgstr "继承于父页面" - -msgid "Deny" -msgstr "拒绝" - -msgid "Only this website" -msgstr "仅这个网站" - -msgid "Allow" -msgstr "允许" - -msgid "title" -msgstr "标题" - -msgid "overwrite the title (html title tag)" -msgstr "重写标题(使用 HTML 标题标签)" - -msgid "overwrite the title in the menu" -msgstr "代用的菜单标题" - -msgid "description" -msgstr "详细描述" - -msgid "The text displayed in search engines." -msgstr "搜索引擎中显示的文本" - -msgid "redirect" -msgstr "转向" - -msgid "The template used to render the content." -msgstr "用于生成页面内容的模板。" - msgid "Advanced options" msgstr "高级选项" @@ -819,7 +837,6 @@ msgid "Generic" msgstr "普通的" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -829,65 +846,54 @@ msgstr "当前插件没有更多设置选项。请点击保存。" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "保存" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "登录到管理界面 请点这里。" @@ -902,9 +908,8 @@ msgstr "用户名:" msgid "Password:" msgstr "密码:" -#| msgid "Add Page" msgid "Add a page" -msgstr "添加页面" +msgstr "" msgid "Change a page" msgstr "修改一个页面" @@ -982,16 +987,21 @@ msgstr "剪切" msgid "Paste" msgstr "粘贴" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "权限" + msgid "is restricted" msgstr "受限的" msgid "last change by" msgstr "最后修改者" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -1001,7 +1011,6 @@ msgstr "页面一览" msgid "Search" msgstr "搜索" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -1015,19 +1024,11 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" -msgstr "" +msgstr "选项" msgid "Successfully moved" msgstr "移动完成" @@ -1049,7 +1050,6 @@ msgstr "确定要 § 这个页面吗?" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1063,10 +1063,6 @@ msgid "Menu" msgstr "目录" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1087,32 +1083,17 @@ msgstr "关闭" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "已发布的" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "未发布的" - -msgid "Empty" -msgstr "清空" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" -msgstr "" +msgstr "伪根节点" msgid "Apphook" msgstr "" @@ -1127,12 +1108,18 @@ msgstr "目录中" msgid "not in menu" msgstr "不在目录中" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "权限" +msgid "This page has no preview!" +msgstr "当前页面没有预览!" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "它被重定向到:" msgid "Clipboard" msgstr "剪贴板" @@ -1182,7 +1169,6 @@ msgstr "" msgid "Available plugins" msgstr "可用的插件" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1196,7 +1182,6 @@ msgid "More" msgstr "更多" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1208,7 +1193,6 @@ msgstr "取消" msgid "The following error occured:" msgstr "发生了下述错误:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1221,15 +1205,12 @@ msgstr "您确定您要发布该页面吗?" msgid "Plugin will be added here" msgstr "插件将被添加到这里" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1238,7 +1219,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1248,10 +1228,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1267,26 +1249,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1315,12 +1292,6 @@ msgstr "最大化" msgid "Drop a plugin here" msgstr "拖放一个插件到这里" -msgid "This page has no preview!" -msgstr "当前页面没有预览!" - -msgid "It is being redirected to:" -msgstr "它被重定向到:" - msgid "Installation successful!" msgstr "安装成功!" @@ -1335,14 +1306,18 @@ msgid "" "\n" " Welcome to django CMS version %(cms_version)s.\n" " " -msgstr "\n欢迎来到django CMS版本 %(cms_version)s." +msgstr "" +"\n" +"欢迎来到django CMS版本 %(cms_version)s." #, python-format msgid "" "\n" " Add the first page to the system to continue.\n" " " -msgstr "\n添加第一页 到系统中以继续。" +msgstr "" +"\n" +"添加第一页 到系统中以继续。" #, python-format msgid "" @@ -1350,7 +1325,10 @@ msgid "" " JavaScript seems to be disabled so please\n" " add a page manually.\n" " " -msgstr "\nJavaScript好像被禁用所以请手动\n添加页面 ." +msgstr "" +"\n" +"JavaScript好像被禁用所以请手动\n" +"添加页面 ." msgid "Installation Notes" msgstr "安装备注" @@ -1361,15 +1339,6 @@ msgstr "支持" msgid "Documentation" msgstr "文档" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1378,15 +1347,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1411,11 +1371,7 @@ msgstr "请在下面选择一选项来继续下一步" msgid "Next" msgstr "下一个" -msgid "no content" -msgstr "无内容" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1494,7 +1450,6 @@ msgstr "文章" msgid "Sample App" msgstr "样板程序" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1504,9 +1459,8 @@ msgstr "排除权限的示例" msgid "Sample App 2" msgstr "样板程序2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "样板程序2" msgid "Namespaced App" msgstr "程序命名空间" @@ -1541,9 +1495,8 @@ msgstr "静态菜单2" msgid "Static Menu3" msgstr "静态菜单3" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "静态菜单" msgid "Category" msgstr "分类" @@ -1570,12 +1523,10 @@ msgid "UserSettings" msgstr "用户设置" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1612,393 +1563,3 @@ msgstr "创建一个新的%s实例" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "一向导程序已经注册在模型%s" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo b/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo index 5bf47b6b20ce4ccfd2b2d61bb8db3114def39b5c..ef78e99217599433e37f7555a1f2780b8b65f324 100644 GIT binary patch delta 92 zcmcc1a+_s>4sSgp1H)7X1_oCk7M*ChoYz3t&`{UdK*7Mw%EWTwTXD6-#I&@O6hlJ= uo8*ktyvowVJYypZhxFXU%pASs{9HR71tSAP!^t{~8qA3W1)IYe*%$$80T}%N delta 94 zcmcc3a+hU-4sRnP1H)7X1_oCk7N2OjoYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS p#G=HMd\n" -"Language-Team: Chinese (China) (http://www.transifex.com/divio/django-cms/language/zh_CN/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: aaffdd11 , 2011\n" +"Language-Team: Chinese (China) (http://app.transifex.com/divio/django-cms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "您确认将在没有保存本页面之前改变当前标签页吗?" diff --git a/cms/locale/zh_TW/LC_MESSAGES/django.mo b/cms/locale/zh_TW/LC_MESSAGES/django.mo index f800c4ecc996e9b048cc35a214bdb2b56a3a160d..81da53fbeda8b2e6fb128becb5a3db110e329638 100644 GIT binary patch delta 4530 zcmZA3d2m+M9merP!V&^WkR^c-%1Z(SA|WJ!fRTMs)7w~0JYMCr~!^( zH+&npSob-0!S7I88_DdwusbrR8;5$BXQ7^z#i-+Iuq$px&3mLX`>&OrqC;2mcjU)? z%rEs{M=j(B)Ghgs8OH1*X?H|z`ApQ6%|r|Wzm9#d z0kxHF*r!pLigU3HN8(x3f;w{c5R64#(F|mB+{37aJ&u}aDQY2WP+PtOwZH?&IG#I3 zMOW~a`9A7ieTo|38YbZ#)Ry+)LC^&0r~yZyZow4f5H}Nb3rbPP*Pw3AI&&-P{FgCK z-~U5YG|>lkz?Y~KubSVZCen9C6Gfs1h(;Y3kNP|rwFCE>4G!gjT!Js!2?Q&AVP%&f)1 zv^OKidF~@Be8b#%zr+22TEKr%Cx-D>(v@^V_4h$7C=K=X8;x4P6imlr)B<**&fkL? z{|(fIeu8@FuQh(o{dax+KME13iTWb9%?(8j5JXK_WS>7_{cFu_s0sJl=ZCO0?bFu( zfqBmQKf?f@f31GaAC}}#6oqLr&|9kYiFYtP=W!hK|K?DPz!hubt}HY zUtyPi{yi^8jsF^^VSPXDzdA0_p#iU>uDE5ge~&tuNvK;e!kmh&Y0pI+Uw~S0CAP)Y z=0?=Bu?xfTUF-kI{5+Zc*9qUyp#}Vi8mN7LzrUB6hMI7MwI`sSkq1%7S78`FgF0@5 z`66oky{HR4YMwyd>NB1l@CE8#UPmn?G{qk{4s~J*hG2&E-(&rgQ45)Yny3<^aD}-Z zyVKrc|7zST^#zpVb%OI`R-1Vtu+*JSvSvU*VIah`dNLh@OGzBtY^> z8W~QWAu77}BUI7JFA+VZPmrdfuZ_xFQcUX9pzI^N$P_iKtj5hvji0%M_HnX>@M!(N z^riMo;w|IX3nZ6hlQ+n#WE6RrG?npGW|3Iy&^=#C{zx9NzEdWDQW_uD`*5fAEyBe_ zU&Hz2G~vH4&uyZjGKMTC_o!iI0_w%0@)qI6<@S;i(p1W=QiW@X9=6eB7zl0Oi= z`Q{Oo=05!9H5CuPAy1LF$zh^0&ZqHTr9;$XtesldBdUX!W37oeiEJe`*0&xzTYac` z0NWG&DN-pUdSk3o!%8M@AT63Ya4E?mK{ALuM!IX?_?k5S9Rv3)8Az(hY!XKz$U&lV zjC5$M@oy;3wEF9KFF9lFCbm;~o^&OTTIUL^B_|r&o^yYul0w>${p3yZIQcbE*+w2D zQ`MkE`na(;hp_dop7bH5WDil9MvjodYEVMSNL47k$qw?ewyumM)K|2-8WvtyvLH7w zs-z^4UN@`D_V8eNL3UtDZc)X+y4zi{I_DKHSWvvEpeR3(TUuIN8Ys@rt|-mT$*dn6 zTM<(KQ(VW;=E>QGWpy!uK_nJFp3l9K-ArNN@Ig1p?y{@KNaDLDlT3yM?9bAyFt zDT9V&WDKnTB#_m*E+*+*+bdhQTw1aEO7+pNp5IsZP13NKHEX|KxBcR=l^2h$zI@`q Zm35mg@85s(_~!b=yGMl7Z%u9+`ae*9*_;3X delta 4502 zcmZA4c~F(t9mesapaOA0TyXcIYzkLE3L5GHQIc5H1fyx)y@~=szmPNJH2pr@pA)BNeD3F*^S2Ef?9YD_GW%pOC^Gi2GpH3n`clHyl3qXk8%v-1l?;?NP zfB4YAoqIYLiak-A*cWwU@zx$?PQ(!AcllJ<3O55aK>=#w66BAo@P|Jeo-`4YkrL)BtO6 zAXXzc>-J$^JdN7gYZ!;Ok)d1{R->0W7WJ;=pw7$3{655&=Av$3A@avn2Kdy#FQcCA z4)ZW-K`p2YFQe|{ebo7XLJj;mYN7W~&p4!C(B7#2VW@9GI_gp8Vj}ucI~J&?l0)S@ z&c{&pCmRb;3)q9B@lDi1K1FWY-9as+J^QQ)x}p}~L2Ye1Y5_T@aq>_L&Nt^Fk0jtq zsAzyyI2<=)E}lSb;kT%XB6tBbaBtL>$0CPZGHS~wq0V1`dK4vQ1?u|MsPn5)^X+Xr z&htM`MHikkub?LS2sP1Xr~$sP4OEY_D@OTlbU2d*2tL^wUa|fn!-flbo2lLO! z-0p9vdAi32f&<5}-x@d(6EMS^YyBHgZ}%2!?=g>NL8t}9nIp~d=48}>Gf^vFVC`jgyb?9Rdh=E5Z!nKxF2^q-zwRy~J~&>$Lq#i2 zu#Pm;1f#9}IP(6vCr|^Fp|-He+Sjln?E!3?wtOh+My8uS97Vefb>3d&3*-(3+W~i( ziWcwz>cShSJGo>1U!xY(F){cx?TuPM45s4*)WDUf>(`(rs6pN70n}T6){g%k`R#I_ zU=;74`-TdS#YGMa4v>MG@DbEPrdj`Db2)0lfE|AU!)b4~{x{49>pzShj-Rsr8>ofe z!oJM!{%#!+{QT*!$!OFB@u(jdFX~PnMJ;F!>JG}y8r1pwPy@e(`ree)|1O<085^7S|ikE5P#kL2L>c{q~xG;41_-M}W) zjqO1_iYD_?GW)NszDbAt62tMos0+fp!Ieg1XWGNfQK)xdB4*+ejKCdse81Ujo<}X@ zD(cSvV*Ouv*?$cjHX=B2FI0Ol>YYeNU67AqSb$n!sac6Se;sNEH=A2ge;3r-@uR3m zcmcJL>!@-68K9yIJER2vvgnLD&<)i;1htT1sEMXxH=J#j;9%M-QIDt&b=@)ZjM;*^ z{t9aR>(&l@ZXNef19av~+zk^^Cyqu9m}gEiXQBpNfI7d_`d6Fl%^Ewt#oD{D9p@h< zlz?Lc+MeBFe2B~=uaMVBds0V^ksU;jK;=#HGm@tUR_7 zm+SlgymfpJpR)Q=)C;Df?Hxz-JU5d~q=D#7R+&xot$2r=CKpH(=|n2YSfa9z=pP^| z%g99%#r$p#DJA#I!&Laub5(?&hPMA!{TQ=}%5O*yqVM?q@>43&*7%Y6sQGiuAv3JK z7f+BwB(R2$67mvJ86TwWd;ERs$H}wScLsk&CX*>-8yQVJMCI3HEm=+`5xpNOzaZ<$ z1U0No#9!+9kD)S^Y_J1+%vgNa>Z@^~)!#77kbkqfE!Gy#Jy73C{RwiG)RR}qIb@nj9eUq=M`wt4O%! zk0bZXTq@0ECCMilWIrh&UZT>0B$D|=*AF3s$Ri|~EFqDkkQ9?yM5U4JB5#o&k~9){ znUAeRr9bIPhLRtU5OSEP^djd-M^Z!doj*l}lTk$F^&rlNesZ3?NEVS?Qbg{T1ynZb z9e#{Ts`b8Yu4p_Ic{i+fci;NjDgCB49`CoTeeE{`1|=*i@|6`X_EZ!V`#sBig^LsX zp5n6kWxi*N3w;&E?&VTdHIM%<)!0ln>_IyvrkuOi^&hK^$mZoHX~_F%T~q5TCt45fzJ2t_ot^7$zqbDW)_uEXZR>`b#@~9og!~V`b=h_R diff --git a/cms/locale/zh_TW/LC_MESSAGES/django.po b/cms/locale/zh_TW/LC_MESSAGES/django.po index fc8b743d428..68621007cf0 100644 --- a/cms/locale/zh_TW/LC_MESSAGES/django.po +++ b/cms/locale/zh_TW/LC_MESSAGES/django.po @@ -3,20 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# bentengshan , 2012 -# kochin , 2013 -# kochin , 2013 -# Wei Ming Liao , 2014 -# bentengshan , 2012 +# Fabian Braun , 2023 +# Jonas Obrist , 2011 msgid "" msgstr "" -"Project-Id-Version: django CMS\n" +"Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-05 12:20+0000\n" -"PO-Revision-Date: 2020-10-29 15:33+0000\n" -"Last-Translator: Aiky30 \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/divio/django-cms/language/zh_TW/)\n" +"POT-Creation-Date: 2023-08-22 12:50+0200\n" +"PO-Revision-Date: 2022-12-12 10:32+0000\n" +"Last-Translator: Fabian Braun , 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/divio/teams/58664/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -60,9 +56,6 @@ msgstr "描述媒體標籤" msgid "A description of the page used by search engines." msgstr "用逗號分隔的關鍵字列表,有時會被搜索引擎使用。" -msgid "Slug must not be empty." -msgstr "" - msgid "Page type" msgstr "頁面型態" @@ -75,7 +68,6 @@ msgstr "取代 URL" msgid "Keep this field empty if standard path should be used." msgstr "如果標準路徑應該被使用,請將這一欄位保持空白。" -#| msgid "softroot" msgid "Soft root" msgstr "" @@ -97,11 +89,9 @@ msgstr "選單可視性" msgid "limit when this page is visible in the menu" msgstr "限制此頁於選單中的可視性" -#| msgid "Copy options" msgid "URL options" msgstr "" -#| msgid "Copy options" msgid "Menu options" msgstr "" @@ -117,7 +107,6 @@ msgstr "" msgid "A page with this reverse URL id exists already." msgstr "一個有相同的反向 URL id 的網頁已經存在。" -#| msgid "Application configurations" msgid "Invalid application config value" msgstr "" @@ -191,7 +180,6 @@ msgstr "語言必須設定為一種被支持的語言!" msgid "Parent plugin language must be same as language!" msgstr "" -#| msgid "Parent plugin language must be same as language!" msgid "Parent plugin placeholder must be same as placeholder!" msgstr "" @@ -206,7 +194,6 @@ msgid "The page is not eligible to be home." msgstr "" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was deleted successfully." msgstr "" @@ -225,7 +212,6 @@ msgid "" "Error! You don't have permissions to move this page. Please reload the page" msgstr "錯誤!你沒有權限搬移此網頁。請重新載入此網頁。" -#| msgid "You do not have permission to clear this placeholder" msgid "Error! You don't have permissions to copy this page." msgstr "" @@ -258,7 +244,6 @@ msgstr "模板被成功地改變。" msgid "You do not have permission to copy these plugins." msgstr "" -#| msgid "You do not have permission to delete this plugin" msgid "You do not have permission to delete this page" msgstr "" @@ -266,8 +251,20 @@ msgstr "" msgid "Title and plugins with language %(language)s was deleted" msgstr "標題和插件的 %(language)s 語言被刪除了" -msgid "You do not have permission to change this page's in_navigation status" -msgstr "你沒有權限更改此網頁的 in_navigation 狀態" +msgid "You do not have permission to change a page's navigation status" +msgstr "" + +msgid "You cannot change this page's navigation status" +msgstr "" + +msgid "Public content" +msgstr "" + +msgid "Empty" +msgstr "" + +msgid "Create Content" +msgstr "" msgid "View restriction" msgstr "查看限制" @@ -285,7 +282,6 @@ msgstr "" msgid "You do not have permission to add a plugin" msgstr "你沒有權限新增一個插件" -#| msgid "You do not have permission to clear this placeholder" msgid "You do not have permission to copy this placeholder." msgstr "" @@ -295,18 +291,15 @@ msgstr "" msgid "You do not have permission to edit this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to paste this placeholder" msgstr "" msgid "You have no permission to move this plugin" msgstr "" -#| msgid "You have no permission to move this plugin" msgid "You have no permission to cut this plugin" msgstr "" @@ -336,6 +329,47 @@ msgstr "用戶和組群的權限" msgid "Page permissions management" msgstr "網頁權限管理" +msgid "Actions" +msgstr "" + +msgid "Empty content" +msgstr "" + +#, python-format +msgid "%(object_name)s Properties" +msgstr "" + +#, python-format +msgid "Add new %(object_name)s" +msgstr "" + +msgid "Add content" +msgstr "" + +msgid "" +"Content for the current language has been changed. Click \"Cancel\" to " +"return to the form and save changes. Click \"OK\" to discard changes." +msgstr "" + +#, python-format +msgid "Add %(language)s content" +msgstr "" + +msgid "Preview" +msgstr "預覽" + +msgid "Settings" +msgstr "" + +#, python-format +msgid "" +"Invalid language %(value)s. This form cannot be processed. Try changing " +"languages." +msgstr "" + +msgid "" +msgstr "" + #, python-format msgid "No registered apphook \"%r\" found" msgstr "" @@ -364,9 +398,6 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Preview" -msgstr "預覽" - msgid "Structure" msgstr "結構" @@ -410,15 +441,12 @@ msgstr "登出" msgid "Language" msgstr "語言" -#| msgid "Add %(language)s Translation" msgid "Add Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Delete Translation" msgstr "" -#| msgid "Copy all plugins from %s" msgid "Copy all plugins" msgstr "" @@ -427,7 +455,6 @@ msgid "from %s" msgstr "" #, python-format -#| msgid "Are you sure you want copy all plugins from %s?" msgid "Are you sure you want to copy all plugins from %s?" msgstr "" @@ -437,7 +464,6 @@ msgstr "頁面" msgid "Page" msgstr "網頁" -#| msgid "Create" msgid "Create Page" msgstr "" @@ -484,20 +510,12 @@ msgid "Select a valid page" msgstr "選擇一頁有效的網頁" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "" "Page %(conflict_page)s has the same url '%(url)s' as current page " "\"%(instance)s\"." msgstr "" #, python-format -#| msgid "" -#| "(pages)s has the same url '%(url)s' as current page \"%(instance)s" -#| msgid_plural "" -#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s" msgid "Page %(conflict_page)s has the same url '%(url)s' as current page." msgstr "" @@ -511,7 +529,12 @@ msgstr "" msgid "Leave empty for automatic slug, or override as required." msgstr "" -#| msgid "You do not have permission to add a plugin" +msgid "Cannot automatically create slug. Please provide one manually." +msgstr "" + +msgid "Please provide a valid slug." +msgstr "" + msgid "You don't have the permissions required to add a page." msgstr "" @@ -608,6 +631,57 @@ msgstr "授權於" msgid "page" msgstr "網頁" +msgid "no limit set" +msgstr "" + +msgid "for logged in users only" +msgstr "只針對登入的用戶" + +msgid "for anonymous users only" +msgstr "只針對匿名用戶" + +msgid "Inherit from parent page" +msgstr "" + +msgid "Deny" +msgstr "" + +msgid "Only this website" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "title" +msgstr "標題" + +msgid "overwrite the title (html title tag)" +msgstr "取代標題(html title 標籤)" + +msgid "overwrite the title in the menu" +msgstr "取代在選單上的標題" + +msgid "description" +msgstr "說明" + +msgid "The text displayed in search engines." +msgstr "" + +msgid "redirect" +msgstr "重新導向" + +msgid "The template used to render the content." +msgstr "用於呈現內容的模板。" + +msgid "page content" +msgstr "" + +msgid "page contents" +msgstr "" + +msgid "default" +msgstr "預設" + msgid "" "A unique identifier that is used with the page_url templatetag for linking " "to this page" @@ -616,9 +690,6 @@ msgstr "" msgid "pages" msgstr "網頁" -msgid "default" -msgstr "預設" - msgid "slug" msgstr "簡略標題" @@ -646,7 +717,6 @@ msgstr "於網頁層級" msgid "frontend view restriction" msgstr "前台查看限制" -#| msgid "Please select user or group first." msgid "Please select user or group." msgstr "" @@ -755,45 +825,6 @@ msgstr "" msgid "A static placeholder with the same site and code already exists" msgstr "" -msgid "for logged in users only" -msgstr "只針對登入的用戶" - -msgid "for anonymous users only" -msgstr "只針對匿名用戶" - -msgid "Inherit from parent page" -msgstr "" - -msgid "Deny" -msgstr "" - -msgid "Only this website" -msgstr "" - -msgid "Allow" -msgstr "" - -msgid "title" -msgstr "標題" - -msgid "overwrite the title (html title tag)" -msgstr "取代標題(html title 標籤)" - -msgid "overwrite the title in the menu" -msgstr "取代在選單上的標題" - -msgid "description" -msgstr "說明" - -msgid "The text displayed in search engines." -msgstr "" - -msgid "redirect" -msgstr "重新導向" - -msgid "The template used to render the content." -msgstr "用於呈現內容的模板。" - msgid "Advanced options" msgstr "進階選項" @@ -801,7 +832,6 @@ msgid "Generic" msgstr "泛用" #, python-format -#| msgid "The %(name)s plugin \"%(obj)s\" was deleted successfully." msgid "The %(name)s \"%(obj)s\" was changed successfully." msgstr "" @@ -811,65 +841,54 @@ msgstr "沒有更進一步設定可使用,請按儲存。" msgid "Moved" msgstr "" -#| msgid "Change" msgid "Changed" msgstr "" -#| msgid "Delete" msgid "Deleted" msgstr "" -#| msgid "Add %(language)s Translation" msgid "Added Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Changed Page Translation" msgstr "" -#| msgid "Delete %(language)s Translation" msgid "Deleted Page Translation" msgstr "" -#| msgid "Add plugin" msgid "Added Plugin" msgstr "" -#| msgid "Change" msgid "Changed Plugin" msgstr "" -#| msgid "Add plugin" msgid "Moved Plugin" msgstr "" -#| msgid "Delete page" msgid "Deleted Plugin" msgstr "" -#| msgid "Add plugin" msgid "Cut Plugin" msgstr "" -#| msgid "Add plugin" msgid "Paste Plugin" msgstr "" -#| msgid "static placeholder" msgid "Paste to Placeholder" msgstr "" -#| msgid "Copied plugins to %(placeholder)s" msgid "Added plugins to placeholder from clipboard" msgstr "" -#| msgid "Placeholder" msgid "Cleared Placeholder" msgstr "" msgid "Save" msgstr "儲存" +msgid "Some fields cannot be changed since they are read-only content." +msgstr "" + #, python-format msgid "Log in to administration here." msgstr "由此處登入到管理。" @@ -884,7 +903,6 @@ msgstr "用戶名稱:" msgid "Password:" msgstr "密碼:" -#| msgid "Add Page" msgid "Add a page" msgstr "" @@ -964,16 +982,21 @@ msgstr "剪切" msgid "Paste" msgstr "" -#| msgid "Save as new" msgid "Set as home" msgstr "" +msgid "Permissions" +msgstr "權限" + msgid "is restricted" msgstr "" msgid "last change by" msgstr "" +msgid "last change on" +msgstr "" + msgid "meta" msgstr "" @@ -983,7 +1006,6 @@ msgstr "網頁列表" msgid "Search" msgstr "" -#| msgid "Page Title" msgid "Page Tree" msgstr "" @@ -997,17 +1019,9 @@ msgid "" " " msgstr "" -msgid "" -"\n" -" New Page\n" -" " -msgstr "" - -#| msgid "in navigation" msgid "Main Navigation" msgstr "" -#| msgid "Actions" msgid "Options" msgstr "" @@ -1031,7 +1045,6 @@ msgstr "" msgid "Reload" msgstr "" -#| msgid "New Page" msgid "New node" msgstr "" @@ -1045,10 +1058,6 @@ msgid "Menu" msgstr "" #, python-format -#| msgid "" -#| " JavaScript seems to be disabled so please\n" -#| " add a page manually.\n" -#| " " msgid "" "\n" " There is no %(object)s around yet.\n" @@ -1069,30 +1078,15 @@ msgstr "" msgid "Legend" msgstr "" -#| msgid "published" -msgid "Published" -msgstr "" - -#| msgid "unpublished" -msgid "Unpublished" -msgstr "" - -msgid "Empty" -msgstr "" - -#| msgid "in menu" msgid "In menu" msgstr "" -#| msgid "not in menu" msgid "Not in menu" msgstr "" -#| msgid "New page" msgid "View page" msgstr "" -#| msgid "softroot" msgid "Softroot" msgstr "" @@ -1109,12 +1103,18 @@ msgstr "" msgid "not in menu" msgstr "" -#| msgid "Page settings (SHIFT-click for advanced settings)" msgid "Page settings (SHIFT click for advanced settings)" msgstr "" -msgid "Permissions" -msgstr "權限" +msgid "This page has no preview!" +msgstr "" + +msgid "" +"Potentially the attached apphook does not provide content for its root." +msgstr "" + +msgid "It is being redirected to:" +msgstr "" msgid "Clipboard" msgstr "" @@ -1164,7 +1164,6 @@ msgstr "" msgid "Available plugins" msgstr "可用插件" -#| msgid "Structure" msgid "Toggle structure" msgstr "" @@ -1178,7 +1177,6 @@ msgid "More" msgstr "" #, python-format -#| msgid "Development version using django CMS %(cms_version)s" msgid "" "Development version using django CMS %(cms_version)s, Django " "%(django_version)s, Python %(python_version)s" @@ -1188,9 +1186,8 @@ msgid "Cancel" msgstr "取消" msgid "The following error occured:" -msgstr "" +msgstr "发生了下述错误:" -#| msgid "Action successfull... reloading." msgid "Action successful." msgstr "" @@ -1203,15 +1200,12 @@ msgstr "" msgid "Plugin will be added here" msgstr "" -#| msgid "This page has unpublished changes." msgid "You have unsaved changes." msgstr "" -#| msgid "Loading..." msgid "Loading" msgstr "" -#| msgid "Are you sure you want to § this page?" msgid "Are you sure you want to abandon these changes?" msgstr "" @@ -1220,7 +1214,6 @@ msgid "" "correctly." msgstr "" -#| msgid "Notify user" msgid "Most used" msgstr "" @@ -1230,10 +1223,12 @@ msgstr "" msgid "The page was changed in the meantime, reloading..." msgstr "" +msgid "CMS-wide Shortcuts" +msgstr "" + msgid "Bring up this help dialog" msgstr "" -#| msgid "Cancel" msgid "Close/cancel" msgstr "" @@ -1249,26 +1244,21 @@ msgstr "" msgid "Focus on Toolbar" msgstr "" -#| msgid "static placeholders" msgid "Focus on placeholders" msgstr "" msgid "Move to next/previous element" msgstr "" -#| msgid "Add plugin to placeholder" msgid "Focus on plugins of placeholder" msgstr "" -#| msgid "Add plugin" msgid "Edit plugin" msgstr "" -#| msgid "not in menu" msgid "Open actions menu" msgstr "" -#| msgid "Expand all" msgid "Expand/collapse" msgstr "" @@ -1297,12 +1287,6 @@ msgstr "" msgid "Drop a plugin here" msgstr "" -msgid "This page has no preview!" -msgstr "" - -msgid "It is being redirected to:" -msgstr "" - msgid "Installation successful!" msgstr "" @@ -1343,15 +1327,6 @@ msgstr "" msgid "Documentation" msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    If you don't see the django CMS logo at the top, make sure\n" @@ -1360,15 +1335,6 @@ msgid "" " " msgstr "" -#| msgid "" -#| "

    If you don't see the ngo CMS logo at the top, make sure\n" -#| " you linked the static/cms folder to r\n" -#| " static files.

    \n" -#| "

    You're seeing this message ause you have\n" -#| " DEBUG = True in your django settings e and\n" -#| " haven't added any pages yet.\n" -#| "

    \n" -#| " " msgid "" "\n" "

    You're seeing this message because you have\n" @@ -1393,11 +1359,7 @@ msgstr "" msgid "Next" msgstr "" -msgid "no content" -msgstr "" - -#| msgid "no content" -msgid "has contents" +msgid "Unknown" msgstr "" #, python-format @@ -1408,7 +1370,9 @@ msgstr "網頁無法於 %(domain)s 內找到" msgid "" "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "有一個模板標籤無法找到以查詢參數找到網頁 `%(page_lookup)s\n`。該請求的 URL 為:http://%(host)s%(path)s" +msgstr "" +"有一個模板標籤無法找到以查詢參數找到網頁 `%(page_lookup)s\n" +"`。該請求的 URL 為:http://%(host)s%(path)s" msgid "Two columns" msgstr "" @@ -1476,7 +1440,6 @@ msgstr "文章" msgid "Sample App" msgstr "樣品應用" -#| msgid "Sample App with excluded permissions" msgid "Sample App with config" msgstr "" @@ -1486,9 +1449,8 @@ msgstr "" msgid "Sample App 2" msgstr "樣品應用 2" -#| msgid "Sample App 2" msgid "Sample App 3" -msgstr "" +msgstr "樣品應用 2" msgid "Namespaced App" msgstr "名稱空間應用" @@ -1523,9 +1485,8 @@ msgstr "靜態選單2" msgid "Static Menu3" msgstr "" -#| msgid "Static Menu" msgid "Static Menu4" -msgstr "" +msgstr "靜態選單" msgid "Category" msgstr "" @@ -1552,12 +1513,10 @@ msgid "UserSettings" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to placeholder \"%(placeholder_label)s\"" msgstr "" #, python-format -#| msgid "Add plugin to placeholder" msgid "Add plugin to %(plugin_name)s" msgstr "" @@ -1594,393 +1553,3 @@ msgstr "" #, python-format msgid "A wizard has already been registered for model: %s" msgstr "" - -#~ msgid "X Frame Options" -#~ msgstr "X Frame Options" - -#~ msgid "Whether this page can be embedded in other pages or websites" -#~ msgstr "Whether this page can be embedded in other pages or websites" - -#~ msgid "Language independent options" -#~ msgstr "Language independent options" - -#~ msgid "Publishing dates" -#~ msgstr "Publishing dates" - -#~ msgid "Change Permissions" -#~ msgstr "Change Permissions" - -#~ msgid "You do not have permission to revert this page." -#~ msgstr "You do not have permission to edit this page" - -#~ msgid "You do not have permission to publish this page" -#~ msgstr "You do not have permission to publish this page" - -#~ msgid "Page not published! A parent page is not published yet." -#~ msgstr "Page not published! A parent page is not published yet." - -#~ msgid "The content was successfully published." -#~ msgstr "The content was successfully published." - -#~ msgid "There was a problem publishing your content" -#~ msgstr "There was a problem publishing your content" - -#~ msgid "You do not have permission to unpublish this page" -#~ msgstr "You do not have permission to unpublish this page" - -#~ msgid "This page was never published" -#~ msgstr "This page was never published" - -#~ msgid "The %(language)s page \"%(page)s\" was successfully unpublished" -#~ msgstr "The %(language)s page \"%(page)s\" was successfully unpublished" - -#~ msgid "You don't have permissions to see page \"%(title)s\"" -#~ msgstr "You do not have permission to change pages." - -#~ msgid "parent must be in the same placeholder" -#~ msgstr "parent must be in the same placeholder" - -#~ msgid "parent must be in the same language as plugin_language" -#~ msgstr "parent must be in the same language as plugin_language" - -#~ msgid "Publish page changes" -#~ msgstr "Publish changes" - -#~ msgid "Publish page now" -#~ msgstr "Publish page now" - -#~ msgid "Save as Page Type" -#~ msgstr "Save as Page Type" - -#~ msgid "Unpublish page" -#~ msgstr "Unpublish page" - -#~ msgid "Publish page" -#~ msgstr "Publish page" - -#~ msgid "Are you sure you want to revert to live?" -#~ msgstr "Are you sure you want to revert to live?" - -#~ msgid "Revert to live" -#~ msgstr "Revert to live" - -#~ msgid "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." -#~ msgstr "" -#~ "When the page should go live. Status must be \"Published\" for page to go " -#~ "live." - -#~ msgid "When to expire the page. Leave empty to never expire." -#~ msgstr "When to expire the page. Leave empty to never expire." - -#~ msgid "has url overwrite" -#~ msgstr "has url overwrite" - -#~ msgid "is published" -#~ msgstr "is published" - -#~ msgid "Basic Settings" -#~ msgstr "Basic Settings" - -#~ msgid "Preview this page in %(language)s " -#~ msgstr "Edit this page in %(language)s " - -#~ msgid "Publish" -#~ msgstr "Publish" - -#~ msgid "Unpublish" -#~ msgstr "Unpublish" - -#~ msgid "View published" -#~ msgstr "View published" - -#~ msgid "This page has unpublished changes." -#~ msgstr "This page has unpublished changes." - -#~ msgid "unpublished changes" -#~ msgstr "unpublished changes" - -#~ msgid "published" -#~ msgstr "published" - -#~ msgid "unpublished parent" -#~ msgstr "unpublished parent" - -#~ msgid "unpublished" -#~ msgstr "unpublished" - -#~ msgid "The current language of the content fields." -#~ msgstr "The current language of the content fields." - -#~ msgid "Another page with this slug already exists" -#~ msgstr "Another page with this slug already exists" - -#~ msgid "Add Page Type" -#~ msgstr "Add Page Type" - -#~ msgid "You do not have permission to change the template" -#~ msgstr "You do not have permission to change the template" - -#~ msgid "You do not have permission to change this page" -#~ msgstr "You do not have permission to change this page" - -#~ msgid "There only exists one translation for this page" -#~ msgstr "There only exists one translation for this page" - -#~ msgid "User does not have permission to add page." -#~ msgstr "User does not have permission to add page." - -#~ msgid "The site the page is accessible at." -#~ msgstr "The site the page is accessible at." - -#~ msgid "Edit page" -#~ msgstr "Edit this Page" - -#~ msgid "Toggle toolbar" -#~ msgstr "Toggle toolbar" - -#~ msgid "Invalid URL, use /my/url format." -#~ msgstr "Invalid URL, use /my/url format." - -#~ msgid "Add page permission also requires edit page permission." -#~ msgstr "Add page permission also requires edit page permission." - -#~ msgid "Recover (any) pages" -#~ msgstr "Recover (any) pages" - -#~ msgid "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." -#~ msgstr "" -#~ "Send email notification to user about username or password change. Requires " -#~ "user email." - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "New password confirmation" -#~ msgstr "New password confirmation" - -#~ msgid "Email notification requires valid email address." -#~ msgstr "Email notification requires valid email address." - -#~ msgid "" -#~ "The permission to add new pages requires the permission to change pages!" -#~ msgstr "" -#~ "The permission to add new pages requires the permission to change pages!" - -#~ msgid "" -#~ "The permission to add new users requires the permission to change users!" -#~ msgstr "" -#~ "The permission to add new users requires the permission to change users!" - -#~ msgid "To add permissions you also need to edit them!" -#~ msgstr "To add permissions you also need to edit them!" - -#~ msgid "%(plugin_name)s plugin added to %(placeholder)s" -#~ msgstr "%(plugin_name)s plugin added to %(placeholder)s" - -#~ msgid "Copied plugins to %(placeholder)s" -#~ msgstr "Copied plugins to %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -#~ msgstr "" -#~ "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" - -#~ msgid "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." -#~ msgstr "" -#~ "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " -#~ "deleted." - -#~ msgid "All plugins in the placeholder \"%(name)s\" were deleted." -#~ msgstr "All plugins in the placeholder \"%(name)s\" were deleted." - -#~ msgid "Page reverted but slug stays the same because of url collisions." -#~ msgstr "Page reverted but slug stays the same because of url collisions." - -#~ msgid "Template changed to %s" -#~ msgstr "Template changed to %s" - -#~ msgid "Page moved" -#~ msgstr "Page moved" - -#~ msgid "Copied plugins from %(source_language)s to %(target_language)s" -#~ msgstr "Copied plugins from %(source_language)s to %(target_language)s" - -#~ msgid "The page \"%s\" was successfully reverted." -#~ msgstr "The page \"%s\" was successfully reverted." - -#~ msgid "History" -#~ msgstr "History" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "View history" -#~ msgstr "View history" - -#~ msgid "" -#~ "\n" -#~ " Recover deleted %(verbose_name)s\n" -#~ " " -#~ msgstr "Recover deleted %(verbose_name)s" - -#~ msgid "Press the save button below to recover this version of the object." -#~ msgstr "Press the save button below to recover this version of the object." - -#~ msgid "Revert %(verbose_name)s" -#~ msgstr "Revert %(verbose_name)s" - -#~ msgid "Press the save button below to revert to this version of the object." -#~ msgstr "Press the save button below to revert to this version of the object." - -#~ msgid "home" -#~ msgstr "home" - -#~ msgid "softroot" -#~ msgstr "softroot" - -#~ msgid "({1}) plugin is empty. Remove it?" -#~ msgstr "({1}) plugin is empty. Remove it?" - -#~ msgid "sample second page" -#~ msgstr "sample account page" - -#~ msgid "Plugins were moved" -#~ msgstr "Plugins were moved" - -#~ msgid "Path Overflow from: '%s'" -#~ msgstr "Path Overflow from: '%s'" - -#~ msgid "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" -#~ msgstr "" -#~ "The new node is too deep in the tree, try increasing the path.max_length " -#~ "property and UPDATE your database" - -#~ msgid "An error occured. Please reload the page" -#~ msgstr "An error occured. Please reload the page" - -#~ msgid "Recover deleted %(name)s" -#~ msgstr "Recover deleted %(name)s" - -#~ msgid "Add %(name)s" -#~ msgstr "Add %(name)s" - -#~ msgid "Pages on:" -#~ msgstr "Pages on:" - -#~ msgid "%(counter)s result" -#~ msgid_plural "%(counter)s results" -#~ msgstr[0] "a848884d0af974a125106fa2043a5716_pl_0" - -#~ msgid "%(full_result_count)s total" -#~ msgstr "%(full_result_count)s total" - -#~ msgid "Show all" -#~ msgstr "Show all" - -#~ msgid "Filter:" -#~ msgstr "Filter:" - -#~ msgid "on" -#~ msgstr "on" - -#~ msgid "off" -#~ msgstr "off" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "" -#~ "There is no page around yet.
    Add page now." -#~ msgstr "" -#~ "There is no page around yet.
    Add page now." - -#~ msgid "insert above" -#~ msgstr "insert above" - -#~ msgid "insert below" -#~ msgstr "insert below" - -#~ msgid "insert inside" -#~ msgstr "insert inside" - -#~ msgid "Pick an action:" -#~ msgstr "Pick an action:" - -#~ msgid "page settings" -#~ msgstr "page settings" - -#~ msgid "copy" -#~ msgstr "copy" - -#~ msgid "Add Child" -#~ msgstr "Add Child" - -#~ msgid "add" -#~ msgstr "add" - -#~ msgid "cut" -#~ msgstr "cut" - -#~ msgid "delete" -#~ msgstr "delete" - -#~ msgid "info" -#~ msgstr "info" - -#~ msgid "Information" -#~ msgstr "Information" - -#~ msgid "%(icon)s" -#~ msgstr "%(icon)s" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Brazilian Portuguese" -#~ msgstr "Brazilian Portuguese" - -#~ msgid "Dutch" -#~ msgstr "Dutch" - -#~ msgid "two columns" -#~ msgstr "two columns" - -#~ msgid "three columns" -#~ msgstr "three columns" - -#~ msgid "navigation examples" -#~ msgstr "navigation examples" - -#~ msgid "sidebar column" -#~ msgstr "sidebar column" - -#~ msgid "left column" -#~ msgstr "left column" - -#~ msgid "Add a link" -#~ msgstr "Add a link" - -#~ msgid "right column" -#~ msgstr "right column" diff --git a/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo b/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo index 5c4f8ee1aaf0068e933f8d58ef57864f6a49a5db..6e529a3e3cb9e3a9aff2bcc46eac823a9e9c1d60 100644 GIT binary patch delta 87 zcmcc0a-L;^4sQ)31H)7X1_m1-7Mf_eoYz3t&`{UdK*7Mw%EWTwTXCiA{N#+xJOvvF lo$QcbT9T8WpRJdipKGV1U}RuuJXwcPlR2@VU~&ZGUjP6|8D0PY delta 93 zcmX@la+PI*4sR191H)7X1_m1-mY8U{oYz9vz);uFP{Gj5%GhG!TXBtm#L}F61;?DS o#G=HMd\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/divio/django-cms/language/zh_TW/)\n" +"POT-Creation-Date: 2022-12-30 16:56+0000\n" +"PO-Revision-Date: 2010-11-30 06:49+0000\n" +"Last-Translator: kochin , 2013\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/divio/django-cms/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "pathname" +msgstr "" + +msgid "urnpath" +msgstr "" + +msgid "reserved" +msgstr "" + msgid "Are you sure you want to change tabs without saving the page first?" msgstr "您確定您想要變換分頁而不先儲存該頁面嗎?" diff --git a/cms/static/cms/css/4.1.0rc3/cms.admin.css b/cms/static/cms/css/4.1.0rc3/cms.admin.css deleted file mode 100644 index 04ad6bed2ab..00000000000 --- a/cms/static/cms/css/4.1.0rc3/cms.admin.css +++ /dev/null @@ -1,3 +0,0 @@ -/*! - * @copyright: https://github.com/django-cms/django-cms - */@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc3/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc3/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-moon:before{content:"\E02A"}.cms-icon-paste:before{content:"\E02B"}.cms-icon-pencil:before{content:"\E02C"}.cms-icon-pin:before{content:"\E02D"}.cms-icon-plugins:before{content:"\E02E"}.cms-icon-plus-circle:before{content:"\E02F"}.cms-icon-plus-square-o:before{content:"\E030"}.cms-icon-plus:before{content:"\E031"}.cms-icon-publish:before{content:"\E032"}.cms-icon-puzzle:before{content:"\E033"}.cms-icon-redo:before{content:"\E034"}.cms-icon-rename:before{content:"\E035"}.cms-icon-scissors:before{content:"\E036"}.cms-icon-search:before{content:"\E037"}.cms-icon-settings:before{content:"\E038"}.cms-icon-sitemap:before{content:"\E039"}.cms-icon-squares:before{content:"\E03A"}.cms-icon-sun:before{content:"\E03B"}.cms-icon-undo:before{content:"\E03C"}.cms-icon-unlock:before{content:"\E03D"}.cms-icon-unpublish:before{content:"\E03E"}.cms-icon-view:before{content:"\E03F"}.cms-icon-window:before{content:"\E040"}a.btn.cms-action-btn{position:relative;display:-ms-inline-flexbox;display:inline-flex;padding:0!important;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:34px;margin-top:-12px!important;box-sizing:border-box;bottom:-6px;cursor:pointer;height:34px}span.cms-empty-action{width:38px;display:-ms-inline-flexbox;display:inline-flex;position:relative}a.btn.cms-action-btn span{font-family:django-cms-iconfont;font-size:120%}a.btn.cms-action-btn img{width:20px;height:20px}a.btn.cms-action-btn.inactive:link,a.btn.cms-action-btn.inactive:visited{color:var(--dca-gray-lighter,var(--border-color,#ccc))!important}.btn.cms-action-btn.inactive{pointer-events:none}.btn.cms-action-btn.inactive img{opacity:.5}a.btn.cms-action-btn img{width:20px;height:20px;margin-right:4px}.cms-actions-dropdown-menu{display:none;position:absolute;top:30px;right:-1px;z-index:1000;min-width:180px;margin:0;padding:0!important;border-radius:5px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.25);transform:translateZ(0)}.cms-actions-dropdown-menu::before{content:"";position:absolute;left:100%;z-index:-1;width:10px;height:10px;margin-left:-5px;background-color:var(--dca-white,var(--body-bg,#fff));box-shadow:0 0 10px rgba(0,0,0,.25);transform:rotate(45deg) translateZ(0)}.cms-actions-dropdown-menu.open{display:block;width:fit-content}.cms-actions-dropdown-menu.closed{display:none}.cms-actions-dropdown-menu-arrow-right-top::before{top:16px}a.btn.cms-action-btn.open,a.btn.cms-action-btn:hover{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}ul.cms-actions-dropdown-menu-inner{margin:0;padding:0!important;border-radius:5px;background-color:var(--dca-white,var(--body-bg,#fff));overflow:hidden}ul.cms-actions-dropdown-menu-inner li{border:0 solid transparent;padding:0;list-style-type:none}ul.cms-actions-dropdown-menu-inner li a,ul.cms-actions-dropdown-menu-inner li a:link,ul.cms-actions-dropdown-menu-inner li a:link:visited,ul.cms-actions-dropdown-menu-inner li a:visited{color:#555}ul.cms-actions-dropdown-menu-inner li a:hover,ul.cms-actions-dropdown-menu-inner li a:link:hover,ul.cms-actions-dropdown-menu-inner li a:link:visited:hover,ul.cms-actions-dropdown-menu-inner li a:visited:hover{color:#fff;border:0 solid #ddd;background-color:#0bf}a.cms-actions-dropdown-menu-item-anchor{display:block;line-height:1.5;text-align:left;text-decoration:none;padding:10px 15px;border-top-left-radius:5px;border-top-right-radius:5px}a.cms-actions-dropdown-menu-item-anchor span.cms-icon{width:20px;height:20px;margin-right:10px;vertical-align:middle}a.cms-actions-dropdown-menu-item-anchor.inactive{cursor:not-allowed;pointer-events:none;opacity:.3}.change-list table tbody td .cms-pagetree-dropdown-trigger,.change-list table tbody td .cms-pagetree-node-state{vertical-align:middle}.change-list table tbody .field-indicator,.change-list table thead .column-indicator{text-align:center}.change-list table tbody .field-list_actions,.change-list table thead .column-list_actions{width:1%;white-space:nowrap}.change-list table tbody .field-list_actions .cms-burger-menu,.change-list table thead .column-list_actions .cms-burger-menu{margin-left:auto}body:not(.djangocms-admin-style) #page_form_lang_tabs input[type=button].selected{background-color:var(--button-bg);color:var(--button-fg)}body:not(.djangocms-admin-style) #page_form_lang_tabs input[type=button]{background-color:var(--darkened-bg);border:1px solid var(--border-color);color:var(--body-fg)} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc3/cms.base.css b/cms/static/cms/css/4.1.0rc3/cms.base.css deleted file mode 100644 index 770f9bd7ae7..00000000000 --- a/cms/static/cms/css/4.1.0rc3/cms.base.css +++ /dev/null @@ -1,3 +0,0 @@ -/*! - * @copyright: https://github.com/divio/django-cms - */.cms-reset a,.cms-reset a:active,.cms-reset a:focus,.cms-reset a:hover,.cms-reset div,.cms-reset fieldset,.cms-reset form,.cms-reset h1,.cms-reset h2,.cms-reset h3,.cms-reset input,.cms-reset kbd,.cms-reset label,.cms-reset li,.cms-reset p,.cms-reset textarea,.cms-reset ul{color:#222;font:normal 14px/20px Helvetica,Arial,sans-serif;text-align:left;text-decoration:none;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;outline:0;list-style-type:none;list-style-image:none;background:0 0;transition:none}.cms-reset table,.cms-reset td,.cms-reset th,.cms-reset tr{border:none;background:0 0;padding:0;margin:0}.cms{position:absolute;top:0;left:0;z-index:9999999;width:100%}.cms-prevent-scrolling{overflow:hidden!important}.cms-prevent-scrolling body{overflow:hidden!important}@keyframes cms-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc3/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc3/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon,div.cms .cms-structure .cms-dragitem-collapsable:before,div.cms .cms-submenu-btn:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon]:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-rel]:before,div.cms .cms-toolbar-item-logo a,div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before,div.cms .cms-toolbar-item-logo a:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-moon:before{content:"\E02A"}.cms-icon-paste:before{content:"\E02B"}.cms-icon-pencil:before{content:"\E02C"}.cms-icon-pin:before{content:"\E02D"}.cms-icon-plugins:before{content:"\E02E"}.cms-icon-plus-circle:before{content:"\E02F"}.cms-icon-plus-square-o:before{content:"\E030"}.cms-icon-plus:before{content:"\E031"}.cms-icon-publish:before{content:"\E032"}.cms-icon-puzzle:before{content:"\E033"}.cms-icon-redo:before{content:"\E034"}.cms-icon-rename:before{content:"\E035"}.cms-icon-scissors:before{content:"\E036"}.cms-icon-search:before{content:"\E037"}.cms-icon-settings:before{content:"\E038"}.cms-icon-sitemap:before{content:"\E039"}.cms-icon-squares:before{content:"\E03A"}.cms-icon-sun:before{content:"\E03B"}.cms-icon-undo:before{content:"\E03C"}.cms-icon-unlock:before{content:"\E03D"}.cms-icon-unpublish:before{content:"\E03E"}.cms-icon-view:before{content:"\E03F"}.cms-icon-window:before{content:"\E040"}.cms-hover-tooltip{position:relative;z-index:1001}.cms-btn-active .cms-hover-tooltip:after,.cms-btn-active .cms-hover-tooltip:before,div.cms .cms-dropdown-open .cms-dropdown-toggle .cms-hover-tooltip:after,div.cms .cms-dropdown-open .cms-dropdown-toggle .cms-hover-tooltip:before{opacity:0!important;transition-delay:0s!important}.cms-hover-tooltip:after,.cms-hover-tooltip:before{visibility:hidden;position:absolute;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);transform:translate3d(0,0,0)}.cms-hover-tooltip-delay:focus:after,.cms-hover-tooltip-delay:focus:before,.cms-hover-tooltip-delay:hover:after,.cms-hover-tooltip-delay:hover:before{transition:opacity .2s ease-in-out 1.5s,visibility .2s ease-in-out 1.5s,transform .2s cubic-bezier(.71,1.7,.77,1.24) 1.5s}.cms-hover-tooltip:focus{outline:0}.cms-hover-tooltip:focus:after,.cms-hover-tooltip:focus:before,.cms-hover-tooltip:hover:after,.cms-hover-tooltip:hover:before{visibility:visible;opacity:1}.cms-hover-tooltip:before{content:"";z-index:2;border:6px solid transparent;background:0 0}.cms-hover-tooltip:after{content:attr(data-cms-tooltip);z-index:1;color:#fff!important;font-size:12px;font-weight:400;line-height:1.2;text-align:center;width:160px;padding:6px 8px;background-color:rgba(0,0,0,.8);white-space:normal}.cms-hover-tooltip:after,.cms-hover-tooltip:before{bottom:100%;left:50%}.cms-hover-tooltip:before{margin-bottom:-12px;margin-left:-6px;border-top-color:rgba(0,0,0,.8)}.cms-hover-tooltip:after{margin-left:-80px}.cms-hover-tooltip:focus:after,.cms-hover-tooltip:focus:before,.cms-hover-tooltip:hover:after,.cms-hover-tooltip:hover:before{transform:translateY(-12px)}.cms-hover-tooltip-left:after,.cms-hover-tooltip-left:before{right:100%;bottom:50%;left:auto;transform:translateY(50%)}.cms-hover-tooltip-left:before{margin-left:0;margin-right:-12px;margin-bottom:0;border-top-color:transparent;border-left-color:rgba(0,0,0,.8)}.cms-hover-tooltip-left:focus:after,.cms-hover-tooltip-left:focus:before,.cms-hover-tooltip-left:hover:after,.cms-hover-tooltip-left:hover:before{transform:translateX(-12px) translateY(50%)}.cms-hover-tooltip-bottom:after,.cms-hover-tooltip-bottom:before{top:100%;bottom:auto;left:50%}.cms-hover-tooltip-bottom:before{margin-top:-12px;margin-bottom:0;border-top-color:transparent;border-bottom-color:rgba(0,0,0,.8)}.cms-hover-tooltip-bottom:focus:after,.cms-hover-tooltip-bottom:focus:before,.cms-hover-tooltip-bottom:hover:after,.cms-hover-tooltip-bottom:hover:before{transform:translateY(12px)}.cms-hover-tooltip-right:after,.cms-hover-tooltip-right:before{bottom:50%;left:100%}.cms-hover-tooltip-right:before{margin-bottom:0;margin-left:-12px;border-top-color:transparent;border-right-color:rgba(0,0,0,.8)}.cms-hover-tooltip-right:focus:after,.cms-hover-tooltip-right:focus:before,.cms-hover-tooltip-right:hover:after,.cms-hover-tooltip-right:hover:before{transform:translateX(12px) translateY(50%)}.cms-hover-tooltip-left:before,.cms-hover-tooltip-right:before{transform:translateY(50%)}.cms-hover-tooltip-left:after,.cms-hover-tooltip-right:after{margin-left:0;transform:translateY(50%)}.cms-dialog{position:fixed;top:50%;left:50%;z-index:99999;box-sizing:border-box;width:500px;margin:-100px 0 0 -250px;padding:20px;border:1px solid #ddd;border-radius:5px;background:#fff;box-shadow:0 0 20px rgba(0,0,0,.5);transform:translateZ(0)}.cms-dialog h1{margin:0 0 10px;padding:0}.cms-dialog form{margin:-20px;padding:0 20px!important;border-top:1px solid #ddd}.cms-dialog form label{display:inline}.cms-dialog form input[type=checkbox]{position:relative;top:auto;vertical-align:middle;line-height:20px}.cms-dialog form p{margin:0 20px;margin-bottom:0;padding:10px 0}.cms-dialog form p:after{display:none}.cms-dialog form input[type=submit]{margin-bottom:0!important}.cms-dialog form .submit-row{margin:0 -20px;padding:20px 20px 0}.cms-dialog form .submit-row input{margin-left:0}@media (max-width:540px){.cms-dialog{right:0;left:0;width:80%;margin:-100px auto 0}}.cms-dialog-dimmer{position:fixed;top:0;left:0;z-index:9999;width:100%;height:100%;background:rgba(0,0,0,.6)}cms-plugin.cms-plugin-text-node{display:inline}.cms-placeholder{overflow:hidden;height:0}.cms-render-model-icon{display:inline-block;width:18px;height:18px;margin:0;padding:0;cursor:pointer}.cms-render-model-icon,.cms-render-model-icon img{position:relative;max-width:none;margin:0!important;padding:0!important;background:url(../../img/toolbar/render_model_icon.png) no-repeat}.cms-render-model-add{display:inline-block;width:18px;height:18px;margin:0;padding:0;cursor:pointer}.cms-render-model-add,.cms-render-model-add img{position:relative;max-width:none;margin:0!important;padding:0!important;background:url(../../img/toolbar/render_model_add.png) no-repeat}.cms-loader{background:#fff url(../../img/loader.gif?uf5b664wnc) no-repeat center center!important}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:1.25dppx){.cms-loader{background-image:url(../../img/loader@2x.gif?uf5b664wnc)!important;background-size:32px!important}}div.cms .cms-tooltip,div.cms .cms-tooltip-touch{visibility:hidden;position:absolute;top:0;left:0;font-size:12px;line-height:22px;font-weight:700;color:#ddd;white-space:nowrap;padding:0 7px 0 22px;margin:0;border-radius:3px;background:#454545}div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{content:"\E016"}div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{font-size:14px;top:50%;left:4px;margin-top:-7px;position:absolute}div.cms .cms-tooltip span,div.cms .cms-tooltip-touch span{position:absolute;top:100%;right:0;margin-top:-4px;float:right;color:#fff;font-weight:400;padding:0 7px;border-radius:3px 0 3px 3px;background:#454545}div.cms .cms-btn{background-image:none;margin-bottom:0;border-radius:3px;color:#555;background-color:#fff;border:1px solid #ddd;background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn.focus,div.cms .cms-btn:focus{color:#555;background-color:#f2f2f2;border-color:#d0d0d0;text-decoration:none}div.cms .cms-btn:hover{color:#555;background-color:#f2f2f2;border-color:#d0d0d0;text-decoration:none}div.cms .cms-btn.cms-btn-active,div.cms .cms-btn:active,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle{color:#555;background-color:#e6e6e6;border-color:#c3c3c3;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}div.cms .cms-btn.cms-btn-active.focus,div.cms .cms-btn.cms-btn-active:focus,div.cms .cms-btn.cms-btn-active:hover,div.cms .cms-btn:active.focus,div.cms .cms-btn:active:focus,div.cms .cms-btn:active:hover,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn.focus.cms-dropdown-toggle{color:#555;background-color:#d4d4d4;border-color:#9d9d9d}div.cms .cms-btn.cms-btn-active,div.cms .cms-btn:active,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle{background-image:none}div.cms .cms-btn.cms-btn-disabled,div.cms .cms-btn.cms-btn-disabled.cms-btn-active,div.cms .cms-btn.cms-btn-disabled.focus,div.cms .cms-btn.cms-btn-disabled:active,div.cms .cms-btn.cms-btn-disabled:focus,div.cms .cms-btn.cms-btn-disabled:hover,div.cms .cms-btn[disabled],div.cms .cms-btn[disabled].cms-btn-active,div.cms .cms-btn[disabled].focus,div.cms .cms-btn[disabled]:active,div.cms .cms-btn[disabled]:focus,div.cms .cms-btn[disabled]:hover{background-color:rgba(255,255,255,.4);border-color:rgba(221,221,221,.4);color:#d5d5d5;cursor:not-allowed;box-shadow:none}div.cms .cms-btn.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn.cms-btn-disabled.focus:before,div.cms .cms-btn.cms-btn-disabled:active:before,div.cms .cms-btn.cms-btn-disabled:before,div.cms .cms-btn.cms-btn-disabled:focus:before,div.cms .cms-btn.cms-btn-disabled:hover:before,div.cms .cms-btn[disabled].cms-btn-active:before,div.cms .cms-btn[disabled].focus:before,div.cms .cms-btn[disabled]:active:before,div.cms .cms-btn[disabled]:before,div.cms .cms-btn[disabled]:focus:before,div.cms .cms-btn[disabled]:hover:before{color:rgba(85,85,85,.4)}div.cms .cms-btn-action{background-image:none;margin-bottom:0;border-radius:3px;color:#fff;background-color:#0bf;border:1px solid #0bf;background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn-action.focus,div.cms .cms-btn-action:focus{color:#fff;background-color:#00a8e6;border-color:#00a8e6;text-decoration:none}div.cms .cms-btn-action:hover{color:#fff;background-color:#00a8e6;border-color:#00a8e6;text-decoration:none}div.cms .cms-btn-action.cms-btn-active,div.cms .cms-btn-action:active,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle{color:#fff;background-color:#0096cc;border-color:#0096cc;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}div.cms .cms-btn-action.cms-btn-active.focus,div.cms .cms-btn-action.cms-btn-active:focus,div.cms .cms-btn-action.cms-btn-active:hover,div.cms .cms-btn-action:active.focus,div.cms .cms-btn-action:active:focus,div.cms .cms-btn-action:active:hover,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn-action.focus.cms-dropdown-toggle{color:#fff;background-color:#007ba8;border-color:#005e80}div.cms .cms-btn-action.cms-btn-active,div.cms .cms-btn-action:active,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle{background-image:none}div.cms .cms-btn-action.cms-btn-disabled,div.cms .cms-btn-action.cms-btn-disabled.cms-btn-active,div.cms .cms-btn-action.cms-btn-disabled.focus,div.cms .cms-btn-action.cms-btn-disabled:active,div.cms .cms-btn-action.cms-btn-disabled:focus,div.cms .cms-btn-action.cms-btn-disabled:hover,div.cms .cms-btn-action[disabled],div.cms .cms-btn-action[disabled].cms-btn-active,div.cms .cms-btn-action[disabled].focus,div.cms .cms-btn-action[disabled]:active,div.cms .cms-btn-action[disabled]:focus,div.cms .cms-btn-action[disabled]:hover{background-color:rgba(0,187,255,.4);border-color:rgba(0,187,255,.4);color:#fff;cursor:not-allowed;box-shadow:none}div.cms .cms-btn-action.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn-action.cms-btn-disabled.focus:before,div.cms .cms-btn-action.cms-btn-disabled:active:before,div.cms .cms-btn-action.cms-btn-disabled:before,div.cms .cms-btn-action.cms-btn-disabled:focus:before,div.cms .cms-btn-action.cms-btn-disabled:hover:before,div.cms .cms-btn-action[disabled].cms-btn-active:before,div.cms .cms-btn-action[disabled].focus:before,div.cms .cms-btn-action[disabled]:active:before,div.cms .cms-btn-action[disabled]:before,div.cms .cms-btn-action[disabled]:focus:before,div.cms .cms-btn-action[disabled]:hover:before{color:rgba(255,255,255,.4)}div.cms .cms-btn-caution{background-image:none;margin-bottom:0;border-radius:3px;color:#fff;background-color:#ff4000;border:1px solid #ff4000;background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn-caution.focus,div.cms .cms-btn-caution:focus{color:#fff;background-color:#e63900;border-color:#e63900;text-decoration:none}div.cms .cms-btn-caution:hover{color:#fff;background-color:#e63900;border-color:#e63900;text-decoration:none}div.cms .cms-btn-caution.cms-btn-active,div.cms .cms-btn-caution:active,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle{color:#fff;background-color:#c30;border-color:#c30;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}div.cms .cms-btn-caution.cms-btn-active.focus,div.cms .cms-btn-caution.cms-btn-active:focus,div.cms .cms-btn-caution.cms-btn-active:hover,div.cms .cms-btn-caution:active.focus,div.cms .cms-btn-caution:active:focus,div.cms .cms-btn-caution:active:hover,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn-caution.focus.cms-dropdown-toggle{color:#fff;background-color:#a82a00;border-color:#802000}div.cms .cms-btn-caution.cms-btn-active,div.cms .cms-btn-caution:active,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle{background-image:none}div.cms .cms-btn-caution.cms-btn-disabled,div.cms .cms-btn-caution.cms-btn-disabled.cms-btn-active,div.cms .cms-btn-caution.cms-btn-disabled.focus,div.cms .cms-btn-caution.cms-btn-disabled:active,div.cms .cms-btn-caution.cms-btn-disabled:focus,div.cms .cms-btn-caution.cms-btn-disabled:hover,div.cms .cms-btn-caution[disabled],div.cms .cms-btn-caution[disabled].cms-btn-active,div.cms .cms-btn-caution[disabled].focus,div.cms .cms-btn-caution[disabled]:active,div.cms .cms-btn-caution[disabled]:focus,div.cms .cms-btn-caution[disabled]:hover{background-color:rgba(255,64,0,.4);border-color:rgba(255,64,0,.4);color:#fff;cursor:not-allowed;box-shadow:none}div.cms .cms-btn-caution.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn-caution.cms-btn-disabled.focus:before,div.cms .cms-btn-caution.cms-btn-disabled:active:before,div.cms .cms-btn-caution.cms-btn-disabled:before,div.cms .cms-btn-caution.cms-btn-disabled:focus:before,div.cms .cms-btn-caution.cms-btn-disabled:hover:before,div.cms .cms-btn-caution[disabled].cms-btn-active:before,div.cms .cms-btn-caution[disabled].focus:before,div.cms .cms-btn-caution[disabled]:active:before,div.cms .cms-btn-caution[disabled]:before,div.cms .cms-btn-caution[disabled]:focus:before,div.cms .cms-btn-caution[disabled]:hover:before{color:rgba(255,255,255,.4)}div.cms .cms-btn-disabled img{opacity:.2!important}div.cms .cms-dropdown-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:5px dashed;border-right:5px solid transparent;border-left:5px solid transparent}div.cms .cms-dropdown{position:relative}div.cms .cms-dropdown>.cms-btn{border-radius:3px!important}div.cms .cms-dropdown-toggle:focus{outline:0}div.cms .cms-dropdown-toggle-thin{margin-left:-1px;padding-left:7px!important;padding-right:7px!important}div.cms .cms-dropdown-toggle-thin .cms-dropdown-caret{margin-left:0}div.cms .cms-dropdown-menu{position:absolute;top:100%;left:0;z-index:9999999;display:none!important;float:left;min-width:180px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px!important;text-align:left;background-color:#fff;border:1px solid transparent;border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.25);background-clip:padding-box}div.cms .cms-dropdown-menu>li>a{display:block!important;padding:3px 20px!important;border:none!important;clear:both;font-weight:400;line-height:30px;float:none!important;font-size:14px!important;border-radius:0!important;padding-top:0!important;padding-bottom:0!important;height:30px;color:#555;white-space:nowrap}div.cms .cms-dropdown-menu>li>a.cms-btn-action,div.cms .cms-dropdown-menu>li>a.cms-btn-caution{color:#fff}div.cms .cms-dropdown-menu .cms-toolbar-item-navigation-break{text-indent:-119988px;overflow:hidden;text-align:left;height:1px;margin:0 0 4px;padding:0 0 4px;border-bottom:1px solid #ddd}div.cms .cms-toolbar-right .cms-dropdown-menu{left:auto;right:-1px}div.cms .cms-dropdown-menu>li>a{border-radius:none;background-color:none}div.cms .cms-dropdown-menu>li>a:focus,div.cms .cms-dropdown-menu>li>a:hover{text-decoration:none;color:#fff;background-color:#0bf}div.cms .cms-dropdown-menu>li>a.cms-btn-active,div.cms .cms-dropdown-menu>li>a.cms-btn-active:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-active:hover,div.cms .cms-dropdown-open .cms-dropdown-menu>li>a.cms-dropdown-toggle{color:#fff;text-decoration:none;outline:0;background-color:#0bf}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled{opacity:.2!important}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:hover{color:#000}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:hover{text-decoration:none!important;background-color:transparent!important;background-image:none!important;cursor:not-allowed!important}div.cms .cms-dropdown-open>.cms-dropdown-menu{display:block!important}div.cms .cms-dropdown-open .cms-dropdown-toggle{outline:0}div.cms .cms-dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:9999990}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-toggle{text-align:left!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-toggle .cms-dropdown-caret{position:absolute;right:15px;top:18px}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-menu{display:none!important;margin-left:0!important;width:100%!important;border:1px solid #ddd;border-bottom-left-radius:5px;border-bottom-right-radius:5px;margin-top:-1px}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-menu li>a.cms-btn{text-align:left}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-open .cms-dropdown-menu{display:block!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group{display:table;width:100%}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn{display:table-cell;text-align:left!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn.cms-btn-action,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn.cms-btn-caution{color:#fff}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn:first-child{border-right:none!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn:last-child{width:40px;text-align:center!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn .cms-dropdown-caret{position:static!important}div.cms .cms-btn-group>.cms-btn.cms-btn-action:last-child{border-left:1px solid #0096cc}div.cms .cms-btn-group>.cms-btn.cms-btn-caution:last-child{border-left:1px solid #c00}div.cms.cms.cms-toolbar-debug .cms-btn-group>.cms-btn.cms-btn-action:last-child{border-left:1px solid #caac04!important}div.cms .cms-toolbar{position:fixed;top:0;left:0;right:0;z-index:9999999;min-height:46px;margin-top:0;background-color:#fff;-webkit-backface-visibility:hidden;backface-visibility:hidden}div.cms .cms-toolbar:after{position:absolute;content:"";box-shadow:0 0 5px rgba(0,0,0,.2);top:100%;left:0;right:0;height:1px;margin-top:-1px;z-index:1;clip:rect(0,auto,10px,0);background:#ddd!important}.cms-structure-mode-structure div.cms .cms-toolbar:after{right:45px}div.cms .cms-toolbar .cms-toolbar-left{position:absolute;left:0;top:0;z-index:10}div.cms .cms-toolbar .cms-toolbar-right{position:absolute;right:0;top:0;z-index:10;padding-right:46px}div.cms .cms-toolbar .cms-toolbar-left .cms-toolbar-item{margin-right:15px}div.cms .cms-toolbar .cms-toolbar-left .cms-toolbar-item:last-child{margin-right:0}div.cms .cms-toolbar .cms-toolbar-right .cms-toolbar-item{margin-right:15px}div.cms .cms-toolbar .cms-toolbar-item{float:left}.cms-toolbar-non-sticky{position:static!important}.cms-toolbar-non-sticky .cms .cms-toolbar{position:absolute}div.cms.cms-toolbar-debug .cms-debug-bar{position:absolute;left:0;right:0;top:0;z-index:99999999;height:3px;background-color:#fad507;z-index:30}.cms-structure-mode-structure div.cms.cms-toolbar-debug .cms-debug-bar{right:46px}div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action{background-color:#fad507;border-color:#fad507;color:#000}div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action:active,div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action:focus{background-color:#fad507;border-color:#fad507;color:#000}div.cms .cms-toolbar-item-navigation li{position:relative;float:left}div.cms .cms-toolbar-item-navigation li a{float:left;color:#000;padding:0 10px;line-height:46px;height:46px;cursor:default}div.cms .cms-toolbar-item-navigation li ul{display:none}div.cms .cms-toolbar-item-navigation>li:first-child>a span{font-weight:600}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation a,div.cms .cms-toolbar-item-navigation .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-logo a{display:none;position:absolute;top:50%;right:7px;margin-top:-5px;font-size:10px;transform:rotate(180deg)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul{display:block;position:absolute;top:46px;left:0;min-width:180px;padding:4px 0 3px;border:1px solid #fff;border-top:none;border-radius:0 0 4px 4px;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.4)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul li{float:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul li a{display:block;float:none;white-space:nowrap;line-height:30px;height:30px;padding:0 25px 0 15px;cursor:pointer}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul ul{border-top:1px solid #f2f2f2;border-radius:0 4px 4px 0}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children ul{display:none;top:-5px;left:100%}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a{cursor:default}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span{display:block}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span .cms-toolbar-item-logo a{display:block}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover>a{color:#fff!important;background:#0bf}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-active>a{font-weight:800}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-break{text-indent:-119988px;overflow:hidden;text-align:left;height:1px;margin:0 0 4px;padding:0 0 4px;border-bottom:1px solid #ddd}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a{cursor:default!important;opacity:.2}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:active,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:focus,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:hover{color:#000!important;background:0 0!important;box-shadow:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled ul{display:none!important}div.cms .cms-toolbar-more{display:none}div.cms .cms-toolbar-more .cms-toolbar-item-navigation-children{padding:0}div.cms .cms-toolbar-more .cms-toolbar-item{float:none;margin:0 10px!important;overflow:hidden;margin-top:5px;margin-bottom:8px}div.cms .cms-toolbar-more .cms-toolbar-item-cms-mode-switcher a{float:left!important;width:50%}div.cms .cms-toolbar-more .cms-modal-item-buttons .cms-btn,div.cms .cms-toolbar-more .cms-toolbar-item-buttons .cms-btn{text-align:center}div.cms .cms-toolbar-more .cms-btn{color:#555}div.cms .cms-toolbar-more .cms-btn-action{color:#fff}div.cms .cms-toolbar-more .cms-more-buttons+.cms-toolbar-item-navigation-children{padding-top:8px;border-top:1px solid #ddd}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full{position:fixed;width:100%;width:100vw;top:46px;bottom:0;overflow-y:scroll;-webkit-overflow-scrolling:touch}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-toolbar-item-logo a{display:none!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full>li{border-bottom:1px solid #ddd}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-more-buttons{border-bottom:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full li a:not(.cms-btn){color:#000!important;background:0 0!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full li a{position:relative;line-height:42px;height:42px;overflow:hidden;text-overflow:ellipsis}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full ul{display:block!important;border:none;box-shadow:none;position:relative;left:0;top:0;border-radius:0;margin-left:20px}div.cms .cms-toolbar-item-cms-mode-switcher{position:absolute;right:0;top:0;position:absolute;right:0;top:0;width:46px;height:46px;margin-right:0!important}div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn{position:absolute;right:0;top:0;border-top:0!important;border-right:0!important;width:46px;height:45px;display:block;border-radius:0;border-bottom:0;clip:rect(0,46px,46px,0)}div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn .cms-icon,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-toolbar-item-cms-mode-switcher .cms-btn a{position:absolute;left:23px;top:23px;margin-left:-10px;margin-top:-9px;font-size:20px!important}div.cms .cms-dropdown-open .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-dropdown-toggle,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-dropdown-open .cms-btn.cms-dropdown-toggle{height:46px}div.cms .cms-dropdown-open .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-dropdown-toggle,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active:active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active:focus,div.cms .cms-toolbar-item-cms-mode-switcher .cms-dropdown-open .cms-btn.cms-dropdown-toggle{border-color:#ddd!important;background-color:#f0f0f0!important}div.cms .cms-messages{display:none;position:fixed;top:46px;z-index:999999;color:#fff;font-size:12px;font-weight:200;line-height:16px;width:300px;min-height:16px;margin:0;padding:6px 10px 8px;border-radius:0 0 3px 3px;background:rgba(0,0,0,.74);transition:top .2s}div.cms .cms-messages *{color:#fff;font-size:12px;font-weight:200;line-height:16px}div.cms .cms-messages a{color:#0bf}div.cms .cms-messages a:hover{text-decoration:underline}div.cms .cms-messages strong{color:#33c9ff;font-weight:200}div.cms .cms-messages ul{display:inline;color:#fff}div.cms .cms-messages ul li{display:inline;color:#fff;font-weight:200}div.cms .cms-messages .cms-messages-close{cursor:pointer;display:none;float:right;position:relative;width:20px;height:16px;text-align:right}div.cms .cms-messages .cms-messages-close span{font-size:10px}div.cms .cms-messages .cms-messages-close:hover span{color:#0bf}div.cms .cms-messages-error strong{color:red}div.cms .cms-toolbar-item-logo{margin-right:0!important}div.cms .cms-toolbar-item-logo a{font-size:21px;line-height:46px;height:46px;transition:color .2s;padding-left:15px;padding-right:15px}div.cms .cms-toolbar-item-logo a span{display:none}div.cms .cms-toolbar-item-logo a:active,div.cms .cms-toolbar-item-logo a:focus,div.cms .cms-toolbar-item-logo a:hover{color:#0bf}div.cms .cms-form-login label{display:inline-block;vertical-align:middle;line-height:46px;padding-left:15px;margin:0;cursor:pointer}div.cms .cms-form-login label span{display:inline-block}div.cms .cms-form-login input[type=password],div.cms .cms-form-login input[type=text]{display:inline-block;color:#666;font-size:14px;height:26px;line-height:26px;width:100px;margin:0;padding:0 5px;border:1px solid #d9d9d9;border-radius:3px;box-shadow:0 1px 0 #fff;text-transform:none}div.cms .cms-form-login input[type=password]:focus,div.cms .cms-form-login input[type=text]:focus{transition:outline .2s;border-color:#0bf;box-shadow:inset 0 0 2px #ddd}div.cms .cms-form-login input[type=submit]{display:block;font-size:13px;text-transform:uppercase;height:26px;line-height:26px;padding:0 15px}div.cms .cms-form-login input[type=submit]:-moz-focus-inner{border:0}div.cms .cms-form-login .cms-error{color:red}div.cms .cms-form-login .cms-error input{border:1px solid red}@media (max-width:488px){div.cms .cms-form-login{margin-left:-110px}}@media (max-width:768px){div.cms .cms-form-login{position:relative;font-size:1px;line-height:0;background:#fff}div.cms .cms-form-login label{position:relative;padding:0;margin-right:-1px;margin-bottom:-1px}div.cms .cms-form-login label span{position:absolute;left:5px;top:0;z-index:1;color:#999}div.cms .cms-form-login input[type=text]{border-radius:3px 0 0 3px}div.cms .cms-form-login input[type=password]{border-radius:0}div.cms .cms-form-login input[type=password],div.cms .cms-form-login input[type=text]{position:relative;z-index:10;width:95px}div.cms .cms-form-login input[type=password]:focus,div.cms .cms-form-login input[type=password]:valid,div.cms .cms-form-login input[type=text]:focus,div.cms .cms-form-login input[type=text]:valid{background:#fff}div.cms .cms-form-login input[type=submit]{border-radius:0 3px 3px 0;padding:0 7.5px}}div.cms .cms-modal-item-buttons,div.cms .cms-toolbar-item-buttons{margin:8px 0 8px}div.cms .cms-modal-item-buttons a,div.cms .cms-toolbar-item-buttons a{float:left;line-height:30px;height:30px;font-size:12px;padding:0 12px}div.cms .cms-modal-item-buttons a:first-child,div.cms .cms-toolbar-item-buttons a:first-child{border-radius:3px 0 0 3px}div.cms .cms-modal-item-buttons a:last-child,div.cms .cms-toolbar-item-buttons a:last-child{margin-left:-1px;border-radius:0 3px 3px 0}div.cms .cms-modal-item-buttons a:only-child,div.cms .cms-toolbar-item-buttons a:only-child{border-radius:3px}div.cms .cms-screenblock{position:fixed;top:0;right:0;z-index:100;color:#fff;text-align:center;width:100%;height:100%;background-color:#000;background:rgba(0,0,0,.9)}div.cms .cms-screenblock-inner{margin-top:300px}div.cms .cms-screenblock-inner h1{font-size:28px;line-height:30px}div.cms .cms-screenblock-inner h1,div.cms .cms-screenblock-inner p{color:#999;text-align:center}div.cms .cms-screenblock-inner a{color:#fff}div.cms .cms-screenblock-inner a:hover{text-decoration:underline}.cms-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}div.cms .cms-loading-bar{background:#0bf;position:fixed;z-index:99999999;top:0;left:0;width:100%;height:3px}div.cms .cms-loading-peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #0bf;opacity:1;transform:rotate(3deg) translate(0,-4px)}div.cms .cms-modal{display:none;position:fixed;top:50%;left:50%;overflow:hidden;z-index:9999999;border-radius:5px;background:#fff;box-shadow:0 0 20px rgba(0,0,0,.5);-webkit-user-select:none;-ms-user-select:none;user-select:none;opacity:0;transform:translate3d(0,-10%,0);transition:transform 150ms,opacity 150ms}.cms-structure-mode-structure div.cms .cms-modal{transform:translate3d(10%,0,0)}.cms-modal-maximized div.cms .cms-modal{right:0;bottom:0;top:0!important;left:0!important;border-radius:0;margin:0!important;width:auto!important;height:auto!important}.cms-modal-maximized div.cms .cms-modal .cms-modal-title{cursor:default}.cms-modal-minimized div.cms .cms-modal{width:auto!important;height:auto!important;top:1px!important;margin:0!important}.cms-modal-minimized div.cms .cms-modal .cms-modal-body,.cms-modal-minimized div.cms .cms-modal .cms-modal-breadcrumb,.cms-modal-minimized div.cms .cms-modal .cms-modal-foot{display:none!important}.cms-modal-minimized div.cms .cms-modal .cms-modal-title{cursor:default;padding-right:90px}.cms-modal-minimized div.cms .cms-modal .cms-modal-title-suffix{display:none}.cms-modal-minimized div.cms .cms-modal .cms-modal-minimize{right:33px}div.cms .cms-modal-morphing{transition:all .2s}div.cms .cms-modal-open{opacity:1}.cms-structure-mode-structure div.cms .cms-modal-open,div.cms .cms-modal-open{transform:translate3d(0,0,0)}div.cms .cms-modal-body{position:absolute;z-index:10;left:0;top:46px;right:0;bottom:46px;border-top:1px solid #ddd;background:#fff;border-bottom:1px solid #ddd}div.cms .cms-modal-foot{position:absolute;overflow:hidden;clear:both;height:46px;left:0;bottom:0;right:0;z-index:11}div.cms .cms-modal-shim{display:none;position:absolute;top:0;left:0;z-index:20;width:100%;height:100%}div.cms .cms-modal-frame{position:relative;z-index:10;width:100%;height:100%;-webkit-overflow-scrolling:touch;overflow-y:auto}div.cms .cms-modal-frame iframe{display:block;width:100%;height:100%}div.cms .cms-modal-head{position:relative}div.cms .cms-modal-title{display:block;color:#454545;font-size:16px;font-weight:700;line-height:46px;min-height:46px;padding:0 20px;cursor:move;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-right:100px}div.cms .cms-modal-title .cms-modal-title-suffix{font-weight:400;padding-left:10px}div.cms .cms-modal-close,div.cms .cms-modal-maximize,div.cms .cms-modal-minimize{display:block;position:absolute;top:50%;margin-top:-15px;right:10px;color:#999;text-align:center;width:30px;height:30px;cursor:pointer}div.cms .cms-modal-close:before,div.cms .cms-modal-maximize:before,div.cms .cms-modal-minimize:before{position:relative;top:7px}div.cms .cms-modal-close:hover,div.cms .cms-modal-maximize:hover,div.cms .cms-modal-minimize:hover{color:#0bf}div.cms .cms-modal-minimize{right:70px}.cms-modal-minimized div.cms .cms-modal-minimize{color:#0bf}.cms-modal-minimized div.cms .cms-modal-minimize:before{content:"\E031"}.cms-modal-maximized div.cms .cms-modal-minimize{display:none!important}div.cms .cms-modal-maximize{right:40px}.cms-modal-minimized div.cms .cms-modal-maximize{display:none!important}.cms-modal-maximized div.cms .cms-modal-maximize{color:#0bf}.cms-modal-maximized div.cms .cms-modal-maximize:before{content:"\E024"}div.cms .cms-modal-resize{position:absolute;right:0;bottom:0;z-index:102;font-size:10px;color:#999;width:25px;height:25px;cursor:nw-resize}div.cms .cms-modal-resize span{position:absolute;bottom:5px;right:5px;font-size:12px}div.cms .cms-modal-breadcrumb{display:none!important;font-size:14px;line-height:40px;padding:0 20px;border-top:1px solid #ddd;overflow-y:hidden;overflow-x:scroll;height:80px;width:100%;white-space:nowrap;-webkit-overflow-scrolling:touch}div.cms .cms-modal-breadcrumb a{color:#0bf}div.cms .cms-modal-breadcrumb a:hover{color:#007099}div.cms .cms-modal-breadcrumb a:after{content:"/";color:#ddd;text-decoration:none;padding:0 10px}div.cms .cms-modal-breadcrumb a.active{color:#999}div.cms .cms-modal-breadcrumb a:last-child:after{content:""}div.cms .cms-modal-buttons{position:absolute;top:0;right:0;left:0;z-index:101;padding:0 25px 0 10px}div.cms .cms-modal-item-buttons{float:right;margin-left:8px}div.cms .cms-modal-item-buttons-left{float:left}div.cms .cms-modal-markup .cms-modal-foot{height:23px}div.cms .cms-modal-markup .cms-modal-body{bottom:23px}div.cms .cms-modal-has-breadcrumb .cms-modal-body{top:86px!important}div.cms .cms-modal-has-breadcrumb .cms-modal-breadcrumb{display:block!important}.cms-modal-maximized{overflow:hidden!important}.cms-modal-maximized .cms.cms-toolbar-debug .cms-modal{top:3px!important}.cms-modal-minimized .cms.cms-toolbar-debug .cms-modal{top:4px!important}div.cms .cms-sideframe{display:none;position:fixed;top:0;left:0;width:0;bottom:0;z-index:999999}@media (max-width:768px){div.cms .cms-sideframe{width:100%!important}}div.cms .cms-sideframe-frame{position:absolute;left:0;top:0;-webkit-overflow-scrolling:touch;overflow-y:auto;z-index:10;width:100%;height:100%;background:#fff;-webkit-backface-visibility:hidden}div.cms .cms-sideframe-frame iframe{-webkit-overflow-scrolling:touch;overflow-y:auto;transform:translateZ(0);display:block;width:100%;height:100%;border:none;background:#fff}div.cms .cms-sideframe-shim{position:absolute;top:0;left:0;z-index:5;width:100%;height:100%;background:0 0}div.cms .cms-sideframe-controls{position:absolute;top:51px;right:20px;z-index:40;box-shadow:0 0 5px rgba(0,0,0,.2);background-color:#fff;border-radius:3px;border:1px solid #ddd}div.cms.cms-toolbar-debug .cms-sideframe-controls{top:54px}div.cms .cms-sideframe-close,div.cms .cms-sideframe-history{display:inline-block;position:relative;cursor:pointer;vertical-align:top;font-size:12px;color:#454545;text-align:center;width:32px;height:32px}div.cms .cms-sideframe-close span,div.cms .cms-sideframe-history span{position:absolute;top:50%;left:50%;margin-left:-8px;margin-top:-8px}div.cms .cms-sideframe-close span:hover,div.cms .cms-sideframe-history span:hover{color:#333}div.cms .cms-sideframe-history{width:65px;border-right:1px solid #ddd}div.cms .cms-sideframe-history .cms-icon,div.cms .cms-sideframe-history .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-sideframe-history a{float:left;position:relative;left:0;top:0;padding:8px 4px 8px 12px;margin:0}div.cms .cms-sideframe-history .cms-icon-arrow-forward{padding:8px 12px 8px 4px}div.cms .cms-sideframe-history .cms-icon-arrow-forward:before{content:"\E005"}div.cms .cms-sideframe-history .cms-icon-disabled{opacity:.5;cursor:not-allowed}div.cms .cms-sideframe-dimmer{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;background:rgba(0,0,0,.6)}div.cms .cms-droppable{position:relative;z-index:1000;line-height:0;height:0;min-height:0;box-shadow:0 0 0 2px #0bf;transform:translateY(2px)}.cms-draggable+div.cms .cms-droppable{transform:translateY(-2px)}div.cms .cms-droppable:before{content:"";position:absolute;top:-8px;left:-4px;width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:8px solid #0bf}div.cms .cms-draggables>.cms-droppable:first-child{transform:translateY(-2px)}div.cms .cms-draggables>.cms-droppable:only-child{transform:translateY(2px)}div.cms .cms-structure{display:none;position:fixed;top:0;overflow:hidden;z-index:9999;width:100%;height:100%;background:#f0f0f0}div.cms .cms-structure .cms-structure-content{position:relative;overflow-y:scroll;top:0;left:0;padding:46px 5%;z-index:100;width:100%;height:100%;-webkit-user-select:none;-ms-user-select:none;user-select:none;transform:translateZ(0);-webkit-overflow-scrolling:touch}@media (max-width:480px){div.cms .cms-structure .cms-structure-content{padding-right:0;padding-left:0}}div.cms .cms-structure .cms-dragarea{position:static;max-width:980px;margin:20px auto;padding:10px 28px}div.cms .cms-structure .cms-dragbar .cms-submenu-item-highlight{display:none}div.cms .cms-structure .cms-dragarea-static>.cms-draggables{display:none}div.cms .cms-structure .cms-dragarea-static>.cms-dragbar>.cms-btn{display:none}div.cms .cms-structure .cms-dragarea-static .cms-dragarea-static-icon{position:relative;top:2px}div.cms .cms-structure .cms-dragarea-static-expanded>.cms-draggables{display:block}div.cms .cms-structure .cms-dragarea-static-expanded>.cms-dragbar>.cms-btn{display:block}div.cms .cms-structure .cms-dragbar{position:relative;top:0;left:0;font-size:14px;line-height:20px;padding-left:7px;border-radius:3px}div.cms .cms-structure .cms-dragbar .cms-dragbar-title{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;color:#000;font-size:16px;font-weight:700;line-height:44px;height:44px;margin-right:97px}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler{position:absolute;right:0;background-image:linear-gradient(to right,rgba(240,240,240,0) 0,#f0f0f0 40px);padding-left:50px;font-weight:400;text-transform:uppercase;margin-left:30px;cursor:pointer}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler a{color:#555!important;font-size:12px!important}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler a:hover{color:#3c3c3c!important}div.cms .cms-structure .cms-dragbar .cms-dragbar-collapse-all{display:none}div.cms .cms-structure .cms-dragbar .cms-dragbar-expand-all{display:inline}div.cms .cms-structure .cms-dragbar .cms-dragbar-title-expanded .cms-dragbar-collapse-all{display:inline}div.cms .cms-structure .cms-dragbar .cms-dragbar-title-expanded .cms-dragbar-expand-all{display:none}div.cms .cms-structure .cms-dragbar-empty{font-size:12px;text-transform:uppercase;padding-top:0;padding-bottom:0}div.cms .cms-structure .cms-dragarea-empty .cms-dragbar-empty-wrapper{display:block!important}div.cms .cms-structure .cms-dragarea-empty .cms-dragbar-toggler{display:none}div.cms .cms-structure .cms-draggables{margin:0;padding:0;list-style-type:none}div.cms .cms-structure .cms-draggables.cms-hidden{display:none!important}div.cms .cms-structure .cms-draggables .cms-draggables{padding-left:30px}div.cms .cms-structure .cms-dragarea-empty .cms-draggables-root{position:relative;min-height:50px;border:2px solid #ddd;border-radius:3px}div.cms .cms-structure .cms-draggable{display:block!important;top:0;left:0;white-space:nowrap;margin-left:0!important;padding:0;border-radius:3px;list-style-type:none;-ms-touch-action:none;touch-action:none}div.cms .cms-structure .cms-draggable .cms-draggable{border-color:#ddd}div.cms .cms-structure .cms-draggable .cms-draggable:hover{border-color:#999}div.cms .cms-structure .cms-draggable .cms-submenu-dropdown-top{top:46px}div.cms .cms-structure .cms-draggable .cms-submenu-dropdown-bottom{bottom:46px}div.cms .cms-structure .cms-draggable .cms-dragitem{line-height:26px;border:2px solid #f0f0f0}div.cms .cms-structure .cms-draggable .cms-dragitem-text{display:block;position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-right:128px;padding:10px 28px}div.cms .cms-structure .cms-draggable .cms-dragitem-collapsable .cms-dragitem-text{padding-left:50px}div.cms .cms-structure .cms-collapsable-container.cms-hidden>.cms-draggable{display:none!important}div.cms .cms-structure .cms-draggable-success{position:relative}div.cms .cms-structure .cms-draggables-empty{display:none}div.cms .cms-structure .cms-dragarea-empty .cms-droppable{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:1;color:#666;line-height:26px;height:auto;margin:0;border:2px solid #0bf;border-radius:3px;background-color:#e6f8ff;box-shadow:none;transform:translateY(0)!important}div.cms .cms-structure .cms-dragarea-empty .cms-droppable:before{display:none}div.cms .cms-structure .cms-dragarea-empty .cms-droppable.cms-draggable-disallowed{border:2px solid red;background:rgba(255,0,0,.1)}div.cms .cms-structure .cms-dragarea-empty .cms-draggables-empty{display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;color:#666;line-height:44px;padding-left:20px}div.cms .cms-structure .cms-dragarea-empty>.cms-draggables-root>.cms-add-plugin-placeholder{position:absolute;right:0;left:0;height:50px;margin:-2px}div.cms .cms-structure .cms-draggable{color:#000}div.cms .cms-structure .cms-draggable-is-dragging{z-index:1;width:200px!important;height:46px!important;border-radius:0;transform:translateZ(0)}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem{color:#fff!important;border:none;border-radius:0;background-color:#0bf!important;background-image:none!important}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem:before{display:none;color:#fff}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem .cms-draggables{display:none}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem .cms-dragitem-text{padding-left:28px}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem-text{margin-right:0}div.cms .cms-structure .cms-draggable-is-dragging.cms-draggable-from-clipboard .cms-dragitem-text{margin-right:20px}div.cms .cms-structure .cms-draggable-is-dragging.cms-draggable-disabled>.cms-draggable{display:none!important}div.cms .cms-structure .cms-draggable-stack{overflow:hidden;height:46px!important;box-shadow:1px 1px 1px rgba(0,0,0,.2),4px 4px 0 0 #0bf}div.cms .cms-structure .cms-dragitem{position:relative;border-radius:5px;cursor:move;background:#fff;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAABCCAAAAAB73glBAAAAAnRSTlMAAHaTzTgAAAAeSURBVHgBY7gCBgxAAGHRRoAKYOi5dNSloy4ddSkA3VChcDH0cxcAAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:10px 50%;background-size:8px 33px}div.cms .cms-structure .cms-dragitem:hover{box-shadow:inset 0 0 0 1px #999}div.cms .cms-structure .cms-dragitem-collapsable:before{content:"\E006"}div.cms .cms-structure .cms-dragitem-collapsable:before{position:absolute;top:50%;left:12px;color:#555;font-size:12px;margin-top:-6px;margin-left:18px;cursor:pointer;transform:rotate(180deg)}div.cms .cms-structure .cms-dragitem-collapsable .cms-dragitem-text{cursor:pointer}div.cms .cms-structure .cms-dragitem-expanded:before{transform:rotate(-90deg)}div.cms .cms-structure .cms-draggable-selected .cms-dragitem,div.cms .cms-structure .cms-draggable-selected .cms-dragitem strong{color:#007bff}div.cms .cms-structure .cms-draggable-selected .cms-draggable .cms-dragitem,div.cms .cms-structure .cms-draggable-selected .cms-draggable .cms-dragitem strong{color:#000}div.cms .cms-structure .cms-draggable-allowed,div.cms .cms-structure .cms-draggable-hover-allowed,div.cms .cms-structure .cms-draggable-placeholder{color:#ccf1ff;border-color:#ccf1ff}div.cms .cms-structure .cms-draggable-hover-allowed,div.cms .cms-structure .cms-draggable-placeholder{color:#fff;background:rgba(0,187,255,.2)}div.cms .cms-structure .cms-draggable-disallowed,div.cms .cms-structure .cms-draggable-hover-disallowed{color:red;background:rgba(255,0,0,.1);box-shadow:0 0 0 2px red}div.cms .cms-structure .cms-draggable-disallowed:before,div.cms .cms-structure .cms-draggable-hover-disallowed:before{display:none}div.cms .cms-structure .cms-draggable-disabled .cms-submenu{display:none}div.cms .cms-structure .cms-draggable-disabled>.cms-dragitem .cms-submenu,div.cms .cms-structure .cms-draggable-disabled>.cms-dragitem-collapsable .cms-submenu{display:block}div.cms .cms-structure .cms-draggable-disabled .cms-draggable{margin-left:30px!important;margin-left:15px}div.cms .cms-structure .cms-draggable-disabled .cms-draggable .cms-dragitem{background-image:none}div.cms .cms-structure .cms-draggable-disabled .cms-draggable .cms-dragitem:hover{box-shadow:none}div.cms .cms-structure .cms-draggable-disabled .cms-draggables,div.cms .cms-structure .cms-draggable-disabled .cms-droppable{display:none!important}div.cms .cms-structure .cms-plugin-disabled{position:absolute;top:50%;right:5px;width:36px;height:36px;margin-top:-18px}div.cms .cms-structure .cms-plugin-disabled .cms-icon,div.cms .cms-structure .cms-plugin-disabled .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-structure .cms-plugin-disabled a{position:absolute;top:50%;left:50%;color:#555;font-size:20px;margin-top:-10px;margin-left:-10px}div.cms .cms-structure .cms-is-dragging{display:block!important;opacity:.3}div.cms .cms-structure.cms-structure-condensed{width:416px;right:0;box-shadow:0 0 5px 0 rgba(0,0,0,.2)}div.cms .cms-structure.cms-structure-condensed .cms-structure-content{padding-left:15px;padding-right:15px;overflow-x:hidden}div.cms .cms-structure.cms-structure-condensed .cms-draggables .cms-draggables{padding-left:15px}div.cms .cms-structure.cms-structure-condensed .cms-draggable-disabled .cms-draggable{margin-left:15px!important}div.cms .cms-structure.cms-structure-condensed .cms-dragitem{line-height:24px;background-size:8px 28px}div.cms .cms-structure.cms-structure-condensed .cms-dragitem-text{padding-top:8px;padding-bottom:8px;margin-right:110px;padding-right:5px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea-empty .cms-draggables-root{min-height:43px}div.cms .cms-structure.cms-structure-condensed .cms-draggables-empty{line-height:40px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea-empty>.cms-draggables-root>.cms-add-plugin-placeholder{height:44px}div.cms .cms-structure.cms-structure-condensed .cms-add-plugin-placeholder{line-height:38px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-btn{width:32px;height:32px;margin-top:-16px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-add{right:39px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-edit{right:75px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-dropdown-settings .cms-submenu-item a,div.cms .cms-structure.cms-structure-condensed .cms-submenu-dropdown-settings .cms-submenu-item a:before{line-height:40px;min-height:40px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea{padding:0}div.cms .cms-structure.cms-structure-condensed .cms-dragbar-title{margin-right:82px}div.cms .cms-structure.cms-structure-condensed .cms-draggable-stack{height:40px!important}.cms-dragitem-success{position:absolute;top:-2px;right:-2px;bottom:-2px;left:-2px;z-index:1000;border:1px solid #0bf!important;background:#ccf1ff!important;border-radius:3px;opacity:.6}.cms-dragitem-success.cms-plugin-overlay-see-through{top:-3px;right:-3px;left:-3px;bottom:-3px;border-width:3px!important;background:0 0!important;opacity:.6;pointer-events:none}.cms-dragitem-success.cms-plugin-overlay-prominent{box-shadow:0 0 20px #0bf}.cms-structure-mode-structure{min-height:100%}.ui-sortable-helper.cms-draggable .cms-submenu-btn{display:none!important}.ui-sortable-helper.cms-draggable .cms-draggables{display:none!important}.cms-overflow{overflow:hidden!important}.cms-content-reloading{position:fixed;width:100%;left:0;top:0;bottom:0;background:#fff!important;opacity:.5;z-index:9999}div.cms .cms-submenu-btn{display:block;position:absolute;right:5px;width:36px;height:36px;cursor:pointer;top:50%;margin-top:-18px}div.cms .cms-submenu-btn:before{content:"\E023"}div.cms .cms-submenu-btn:before{position:absolute;left:50%;top:50%;margin-left:-8px;margin-top:-8px;color:#555}div.cms .cms-submenu-btn .cms-hover-tooltip{position:absolute;left:0;top:0;right:0;bottom:0}div.cms .cms-dragbar .cms-submenu-btn{margin-right:2px;background-color:transparent}div.cms .cms-dragbar .cms-dropdown-open .cms-submenu-btn.cms-dropdown-toggle,div.cms .cms-dragbar .cms-submenu-btn.cms-btn-active,div.cms .cms-dragbar .cms-submenu-btn:active,div.cms .cms-dropdown-open .cms-dragbar .cms-submenu-btn.cms-dropdown-toggle{background-color:#e6e6e6}div.cms .cms-submenu-settings{border:none}div.cms .cms-submenu-edit{right:87px}div.cms .cms-submenu-edit:before{content:"\E016"}div.cms .cms-submenu-add{right:46px}div.cms .cms-submenu-add:before{content:"\E031"}div.cms .cms-submenu-add:before,div.cms .cms-submenu-edit:before{margin-left:-8px;margin-top:-8px;font-size:16px}div.cms .cms-submenu-lang{position:absolute;top:50%;height:20px;margin-top:-10px;line-height:18px;right:10px;padding:0 5px;border:1px solid #ddd;border-radius:3px}div.cms .cms-structure-content .cms-submenu-lang{display:none}div.cms .cms-submenu-dropdown-top{top:44px}div.cms .cms-submenu-dropdown-bottom{bottom:44px}div.cms .cms-submenu-dropdown-settings{display:none;position:absolute;z-index:1002;min-width:180px;background:#fff;border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.25);right:46px;transform:translateZ(0)}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a{position:relative;display:block;font-size:14px;text-align:left;padding:0 20px;line-height:46px;min-height:46px;padding-left:40px;color:#555}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:hover{color:#fff;background:#0bf}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon]:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-rel]:before{position:absolute;left:14px;top:0;height:46px;line-height:46px}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=copy]:before{content:"\E013"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=paste]:before{content:"\E02B"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=cut]:before{content:"\E014"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=bin]:before{content:"\E008"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=alias]:before{content:"\E002"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=highlight]:before{content:"\E01A"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item:first-child a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item:first-child a:hover{border-radius:5px 5px 0 0}div.cms .cms-submenu-dropdown-settings .cms-submenu-item:last-child a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item:last-child a:hover{border-radius:0 0 5px 5px}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-paste-tooltip{display:none}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled{position:relative}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a,div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a:hover{cursor:default!important;opacity:.2;color:#555!important;background:0 0!important;box-shadow:none}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled .cms-submenu-item-paste-tooltip{cursor:default;position:absolute;left:0;top:0;right:0;bottom:0}div.cms .cms-submenu-dropdown-settings:before{z-index:-1;position:absolute;content:"";left:100%;width:10px;height:10px;margin-left:-5px;transform:rotate(45deg);background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,.25)}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-top{top:0!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-top:before{top:18px!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom{bottom:0!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom:before{bottom:18px!important}div.cms .cms-submenu-dropdown-settings .cms-dropdown-inner{z-index:1;background-color:#fff;border-radius:5px}div.cms .cms-dragbar .cms-submenu-dropdown-settings.cms-submenu-dropdown-top:before{top:14px!important}div.cms .cms-dragbar .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom:before{bottom:12px!important;bottom:14px!important}div.cms .cms-z-index-9999{z-index:9999!important}div.cms .cms-clipboard{display:none}div.cms .cms-clipboard-containers{display:none!important}div.cms .cms-clipboard-containers .cms-dragarea{padding-top:3px}div.cms .cms-clipboard-containers .cms-draggable{display:block!important;position:relative;top:0;left:0;border-radius:3px;cursor:move}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem{line-height:46px;height:46px;padding-left:20px}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem .cms-submenu-btn{display:none!important}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:40px}div.cms .cms-clipboard-containers .cms-plugins{display:none}div.cms .cms-clipboard-containers .cms-droppable{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;color:#b6b6b6;line-height:26px;height:auto;margin:0;border:2px solid #0bf;border-radius:3px;background-color:#e6f8ff;box-shadow:none;transform:translateY(0)!important}div.cms .cms-clipboard-containers .cms-droppable:before{display:none}div.cms .cms-modal-markup .cms-clipboard-containers{display:block!important}div.cms .cms-modal-markup .cms-clipboard-containers .cms-is-dragging{display:block!important;opacity:.3}div.cms .cms-plugin-picker{display:none}div.cms .cms-plugin-picker .cms-submenu-item.cms-submenu-item-title{position:sticky;top:0;z-index:1;background-color:#fff}div.cms .cms-plugin-picker .cms-submenu-item a,div.cms .cms-plugin-picker span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:32px;text-align:left;min-height:32px;padding:0 20px}div.cms .cms-plugin-picker .cms-submenu-item a{color:#000;border-top:1px solid transparent;border-bottom:1px solid transparent}div.cms .cms-plugin-picker .cms-submenu-item a:hover{color:#0bf;border-top:1px solid #0bf;border-bottom:1px solid #0bf}div.cms .cms-plugin-picker .cms-submenu-item a:focus{color:#fff;background:#0bf;border-top:1px solid #0bf;border-bottom:1px solid #0bf}div.cms .cms-plugin-picker .cms-submenu-item span{color:#000;font-weight:700;border-bottom:1px solid #ddd;cursor:default}div.cms .cms-modal-markup .cms-plugin-picker{display:block}div.cms .cms-quicksearch{display:none;position:relative;height:40px;border-bottom:1px solid #ddd;cursor:default}div.cms .cms-quicksearch label{display:block;width:100%;height:100%;cursor:pointer}div.cms .cms-quicksearch input{display:block;width:100%;height:100%;padding:0 20px;border:none;background-color:#f2f2f2;-webkit-border-radius:0;-webkit-appearance:none;appearance:none}div.cms .cms-modal-markup .cms-quicksearch{display:block}div.cms .cms-add-plugin-placeholder{position:relative;z-index:3;color:#0bf;line-height:44px;padding-left:20px;border:2px solid #0bf;border-radius:3px;background-color:#e6f8ff}div.cms .cms-shortcuts{padding:0 20px;margin-bottom:20px}div.cms .cms-shortcuts h2{padding-top:20px;padding-left:8px;font-weight:700;margin-bottom:5px}div.cms .cms-shortcut{clear:both}div.cms .cms-shortcut-key-wrapper{width:100px;text-align:right;vertical-align:top;padding-bottom:5px;white-space:nowrap}div.cms .cms-shortcut-key{display:inline-block;background-color:#f2f2f2;padding:3px 6px;border-radius:3px;font-family:"Operator Mono",Menlo,Monaco,Consolas,monospace;background:#eff0f2;border-radius:4px;border-top:1px solid #f5f5f5;box-shadow:inset 0 0 25px #e8e8e8,0 1px 0 #c3c3c3,0 2px 0 #c9c9c9,0 2px 3px #333;text-shadow:0 1px 0 #f5f5f5}div.cms .cms-shortcut-desc{padding:3px 10px;width:100%;padding-bottom:5px}div.cms :not(.cms-modal):focus{outline:2px dotted #454545;outline-offset:-3px}div.cms :not(.cms-modal):focus::-moz-focus-inner{border:0!important}@media screen and (-webkit-min-device-pixel-ratio:0){div.cms :not(.cms-modal):focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}div.cms :not(.cms-modal):focus .cms-hover-tooltip{display:none}div.cms .cms-pagetree-node-state{box-sizing:border-box;display:inline-block;width:16px;height:16px;border-radius:100%;border:2px solid #fff;background:#fff;vertical-align:top}div.cms .cms-btn .cms-pagetree-node-state{vertical-align:middle;margin-right:5px;margin-top:-4px}div.cms .cms-btn:hover .cms-pagetree-node-state-dirty{box-shadow:0 0 0 1px #fff}div.cms .cms-pagetree-node-state-empty{border-color:#999;background-color:#fff}div.cms .cms-pagetree-node-state-unpublished,div.cms .cms-pagetree-node-state-unpublished-parent{border-color:#999;background-color:#999}div.cms .cms-pagetree-node-state-archived{border-color:#999;background-color:#ddd}div.cms .cms-pagetree-node-state-public,div.cms .cms-pagetree-node-state-published{border-color:#693;background-color:#693}div.cms .cms-pagetree-node-state-draft{border-color:#0bf;background-color:#fff}div.cms .cms-pagetree-node-state-dirty{animation:pulsate 2.5s ease-out infinite;border-color:#0bf;background-color:#0bf}div.cms .cms-pagetree-node-state-deletion{border-color:red;background-color:red}@keyframes pulsate{0%{opacity:.5}50%{opacity:1}100%{opacity:.5}} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc3/cms.pagetree.css b/cms/static/cms/css/4.1.0rc3/cms.pagetree.css deleted file mode 100644 index d03ad270393..00000000000 --- a/cms/static/cms/css/4.1.0rc3/cms.pagetree.css +++ /dev/null @@ -1,3 +0,0 @@ -/*! - * @copyright: https://github.com/divio/django-cms - */@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc3/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc3/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon,.cms-tooltip-touch:before,.cms-tooltip:before,.cms-tree-item-preview a,.cms-tree-node-success>.jstree-anchor .jstree-themeicon,.jstree-django-cms .jstree-ocl{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-moon:before{content:"\E02A"}.cms-icon-paste:before{content:"\E02B"}.cms-icon-pencil:before{content:"\E02C"}.cms-icon-pin:before{content:"\E02D"}.cms-icon-plugins:before{content:"\E02E"}.cms-icon-plus-circle:before{content:"\E02F"}.cms-icon-plus-square-o:before{content:"\E030"}.cms-icon-plus:before{content:"\E031"}.cms-icon-publish:before{content:"\E032"}.cms-icon-puzzle:before{content:"\E033"}.cms-icon-redo:before{content:"\E034"}.cms-icon-rename:before{content:"\E035"}.cms-icon-scissors:before{content:"\E036"}.cms-icon-search:before{content:"\E037"}.cms-icon-settings:before{content:"\E038"}.cms-icon-sitemap:before{content:"\E039"}.cms-icon-squares:before{content:"\E03A"}.cms-icon-sun:before{content:"\E03B"}.cms-icon-undo:before{content:"\E03C"}.cms-icon-unlock:before{content:"\E03D"}.cms-icon-unpublish:before{content:"\E03E"}.cms-icon-view:before{content:"\E03F"}.cms-icon-window:before{content:"\E040"}.cms-pagetree-wrapper .cms-btn{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:#555!important;background-color:#fff!important;border:1px solid #ddd!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn.focus,.cms-pagetree-wrapper .cms-btn:focus{color:#555!important;background-color:#f2f2f2!important;border-color:#d0d0d0!important;text-decoration:none!important}.cms-pagetree-wrapper .cms-btn:hover{color:#555!important;background-color:#f2f2f2!important;border-color:#d0d0d0!important;text-decoration:none!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn,.cms-pagetree-wrapper .cms-btn.cms-btn-active,.cms-pagetree-wrapper .cms-btn:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn{color:#555!important;background-color:#e6e6e6!important;border-color:#c3c3c3!important;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn.focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn:hover,.cms-pagetree-wrapper .cms-btn.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn:active.focus,.cms-pagetree-wrapper .cms-btn:active:focus,.cms-pagetree-wrapper .cms-btn:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn.focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn:hover{color:#555!important;background-color:#d4d4d4!important;border-color:#9d9d9d!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn,.cms-pagetree-wrapper .cms-btn.cms-btn-active,.cms-pagetree-wrapper .cms-btn:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn[disabled],.cms-pagetree-wrapper .cms-btn[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn[disabled].focus,.cms-pagetree-wrapper .cms-btn[disabled]:active,.cms-pagetree-wrapper .cms-btn[disabled]:focus,.cms-pagetree-wrapper .cms-btn[disabled]:hover{background-color:rgba(255,255,255,.4)!important;border-color:rgba(221,221,221,.4)!important;color:#d5d5d5;cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn[disabled].focus:before,.cms-pagetree-wrapper .cms-btn[disabled]:active:before,.cms-pagetree-wrapper .cms-btn[disabled]:before,.cms-pagetree-wrapper .cms-btn[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn[disabled]:hover:before{color:rgba(85,85,85,.4)}.cms-pagetree-wrapper .cms-btn-action{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:#fff!important;background-color:#0bf!important;border:1px solid #0bf!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn-action.focus,.cms-pagetree-wrapper .cms-btn-action:focus{color:#fff!important;background-color:#00a8e6!important;border-color:#00a8e6!important;text-decoration:none!important}.cms-pagetree-wrapper .cms-btn-action:hover{color:#fff!important;background-color:#00a8e6!important;border-color:#00a8e6!important;text-decoration:none!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn{color:#fff!important;background-color:#0096cc!important;border-color:#0096cc!important;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn:hover,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.focus.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn-action:active.focus,.cms-pagetree-wrapper .cms-btn-action:active:focus,.cms-pagetree-wrapper .cms-btn-action:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.focus.cms-btn{color:#fff!important;background-color:#007ba8!important;border-color:#005e80!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn-action[disabled],.cms-pagetree-wrapper .cms-btn-action[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn-action[disabled].focus,.cms-pagetree-wrapper .cms-btn-action[disabled]:active,.cms-pagetree-wrapper .cms-btn-action[disabled]:focus,.cms-pagetree-wrapper .cms-btn-action[disabled]:hover{background-color:rgba(0,187,255,.4)!important;border-color:rgba(0,187,255,.4)!important;color:#fff;cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn-action[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-action[disabled].focus:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:active:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:hover:before{color:rgba(255,255,255,.4)}.cms-pagetree-wrapper .cms-btn-caution{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:#fff!important;background-color:#ff4000!important;border:1px solid #ff4000!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn-caution.focus,.cms-pagetree-wrapper .cms-btn-caution:focus{color:#fff!important;background-color:#e63900!important;border-color:#e63900!important;text-decoration:none!important}.cms-pagetree-wrapper .cms-btn-caution:hover{color:#fff!important;background-color:#e63900!important;border-color:#e63900!important;text-decoration:none!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn{color:#fff!important;background-color:#c30!important;border-color:#c30!important;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn:hover,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.focus.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn-caution:active.focus,.cms-pagetree-wrapper .cms-btn-caution:active:focus,.cms-pagetree-wrapper .cms-btn-caution:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.focus.cms-btn{color:#fff!important;background-color:#a82a00!important;border-color:#802000!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn-caution[disabled],.cms-pagetree-wrapper .cms-btn-caution[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution[disabled].focus,.cms-pagetree-wrapper .cms-btn-caution[disabled]:active,.cms-pagetree-wrapper .cms-btn-caution[disabled]:focus,.cms-pagetree-wrapper .cms-btn-caution[disabled]:hover{background-color:rgba(255,64,0,.4)!important;border-color:rgba(255,64,0,.4)!important;color:#fff;cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn-caution[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-caution[disabled].focus:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:active:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:hover:before{color:rgba(255,255,255,.4)}.cms-pagetree-wrapper .cms-btn-disabled img{opacity:.2!important}.cms-admin-sideframe:not(.djangocms-admin-style){margin-top:46px}.cms-btn-toolbar{display:inline-block;line-height:32px;height:32px;font-size:12px;padding:0 22px}.cms-hidden,.hidden{display:none!important}.cms-clear{clear:both;overflow:hidden}.cms-clear-mobile{clear:both;overflow:hidden}@media (min-width:520px){.cms-clear-mobile{display:none}}.jstree li{-ms-touch-action:none;touch-action:none}.cms-pagetree-root#changelist{display:block;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between}.cms-pagetree-root,.cms-pagetree-root.filtered{min-height:0;padding:0!important;box-shadow:0 0 5px 0 rgba(0,0,0,.2)!important}.cms-pagetree{border:1px solid #ddd}.cms-pagetree .cms-hover-tooltip{z-index:auto}.cms-pagetree .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.cms-pagetree .cms-btn.cms-icon{display:inline-block;box-sizing:border-box;width:39px;height:37px;position:relative}.cms-pagetree .cms-btn.cms-icon:before{position:absolute;left:50%;top:50%;margin-top:-8px;margin-left:-8px}.cms-pagetree .cms-btn.cms-btn-no-border{border:none!important}.cms-pagetree-header{position:relative;display:-ms-flexbox;display:flex;width:100%;box-sizing:border-box;z-index:auto;min-height:36px;padding:15px 20px;box-shadow:none;border-bottom:none;background:#f7f7f7}.cms-pagetree-header:before{content:"";position:absolute;bottom:-6px;left:0;right:0;height:5px;background-color:#fff}.cms-pagetree-header+.module{padding-top:0!important}.djangocms-admin-style .cms-pagetree-header{margin:-40px 0 0 0}.djangocms-admin-style.cms-admin-sideframe .cms-pagetree-header{margin-top:-25px}.cms-pagetree-header-title{display:table-cell;width:100%;line-height:36px;height:36px}.cms-pagetree-header-title h1{line-height:36px;margin:0!important}.cms-pagetree-header-title h1 span{font-weight:400}.cms-pagetree-header-row{display:table;width:100%;table-layout:fixed}@media (max-width:520px){.cms-pagetree-header-row{display:block}}.cms-pagetree-header-cell{display:table-cell;white-space:nowrap;vertical-align:middle}@media (max-width:520px){.cms-pagetree-header-cell{display:block}}.cms-pagetree-header-cell-fluid{width:100%}.cms-pagetree-header-cell-search{width:220px!important;position:relative}.cms-pagetree-header-filter-active .cms-pagetree-header-cell-search{position:static}@media (max-width:520px){.cms-pagetree-header-cell-search{width:100%!important}}@media (max-width:520px){.cms-pagetree-header-body{text-align:right;padding-top:10px}}.cms-pagetree-header-filter-active .cms-pagetree-search-container{position:relative}.cms-pagetree-header-search{position:absolute;top:0;display:table;width:100%;left:0;right:0;padding:0;box-shadow:none;background:0 0}@media (max-width:520px){.cms-pagetree-header-search{position:relative}}.cms-pagetree-header-search .cms-pagetree-header-search-btn{display:table-cell;vertical-align:middle;position:relative;outline:0;color:#fff!important;padding:8px 10px!important;border:none!important;background:#0bf!important;height:36px;border-radius:3px}.cms-pagetree-header-search .cms-pagetree-header-search-btn:hover{background:#00a8e6!important}.cms-pagetree-header-search .cms-pagetree-header-search-btn:active,.cms-pagetree-header-search .cms-pagetree-header-search-btn:focus{color:#fff!important;background:#0083b3!important}.cms-pagetree-header-search .cms-pagetree-header-filter{position:relative;display:table-cell;width:100%;padding-right:5px;vertical-align:middle}.cms-pagetree-header-search .cms-pagetree-header-filter input{width:100%;box-sizing:border-box;width:100%;display:inline-block;height:36px;padding:6px;line-height:24px;padding-right:35px!important;transition:width .2s}.cms-pagetree-header-filter-active .cms-pagetree-header-search{left:0;right:0;top:0}.djangocms-admin-style .cms-pagetree-header-search{margin:5px 0 10px}.cms-pagetree-header-filter-trigger{position:absolute;right:5px;top:0;cursor:pointer;padding:10px;transform:rotate(270deg)}.cms-pagetree-header-filter-trigger:active .cms-icon,.cms-pagetree-header-filter-trigger:focus .cms-icon,.cms-pagetree-header-filter-trigger:hover .cms-icon{color:#0bf}.cms-pagetree-header-filter-trigger .cms-icon{font-size:11px;color:#666}.cms-pagetree-header-filter-container{display:none;overflow:auto;position:absolute;left:0;top:38px;width:100%;padding:5px 20px 15px;max-height:400px;box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-sizing:border-box;border-radius:3px;background:#fff;z-index:1000}.cms-pagetree-header-filter-container h3{color:#666;font-size:14px;font-weight:400;text-transform:uppercase;padding:10px 0 0 0}.cms-pagetree-header-filter-container li,.cms-pagetree-header-filter-container ul{list-style-type:none;padding:2px 0;margin:0}.cms-pagetree-header-filter-container li a{color:#999}.cms-pagetree-header-filter-container .selected a{color:#0bf;font-weight:700}.cms-pagetree-header-search-close{position:absolute;right:0;top:0;padding:10px}.cms-pagetree-header-search-close:active .cms-icon,.cms-pagetree-header-search-close:focus .cms-icon,.cms-pagetree-header-search-close:hover .cms-icon{color:#0bf}.cms-pagetree-header-search-close .cms-icon{font-size:12px;color:#666}.cms-pagetree-header-search-reset{font-size:90%;padding:0 10px}.cms-pagetree-sites-list{display:inline-block;vertical-align:top;padding-left:10px;padding-right:10px;margin-left:10px;margin-right:10px}.cms-pagetree-sites-list .cms-pagetree-dropdown-trigger{display:inline-block;color:#666!important;padding:10px;height:16px}.cms-pagetree-sites-list .cms-pagetree-dropdown-menu{right:50%;margin-right:-19px!important}.cms-pagetree-header-create{display:inline-block;vertical-align:top;height:36px!important;box-sizing:border-box}.djangocms-admin-style .cms-pagetree-breadcrumbs{margin-bottom:-30px!important;border:none!important}.cms-pagetree-section{position:relative;z-index:auto;min-height:15px;padding:15px 20px;box-shadow:none;border-bottom:none;background:#fff}.cms-pagetree-section h2,.cms-pagetree-section p{padding:0;margin:0;border:none}.cms-pagetree-section h2{float:left;font-weight:700;color:#333;background:0 0}.cms-pagetree-container+.cms-pagetree-section{margin-top:-1px}.cms-pagetree-section-header{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.cms-pagetree-section-header select{width:120px!important;margin-left:15px}.cms-pagetree-section-condensed{padding:10px 20px}.cms-pagetree-section-nav{position:absolute;right:4px;top:50%;margin-top:-19px}.cms-pagetree-section-nav .cms-pagetree-dropdown-menu{right:40px;top:-2px;width:205px}.cms-pagetree-dropdown-separator{padding:0;margin:4px 1px!important;line-height:1;height:1px;background:#ddd}.cms-pagetree-container{position:relative;z-index:auto;border:1px solid #ddd;border-bottom:none}.cms-tree-col{float:right;min-width:32px;height:32px}.cms-tree-col-padding-sm{margin-top:-3px;margin-left:-4px;margin-right:-4px;height:38px}.cms-tree-item{display:table;width:100%;text-align:center;height:32px}.cms-tree-item+.cms-tree-item{padding-left:4px}.cms-tree-item-disabled{opacity:.3;pointer-events:none}.cms-tree-item-wrapper{display:table-row;min-width:32px}.cms-tree-item-wrapper .cms-tree-item{display:table-cell;vertical-align:middle;text-align:center;min-width:32px}.cms-tree-item-wrapper .cms-tree-item-inner{display:block}.cms-tree-item-inner{display:table-cell;text-align:center;vertical-align:middle}.cms-tree-reload{float:right}.cms-tree-item-lang .cms-pagetree-dropdown-menu{right:32px;top:-5px;min-width:180px}.cms-tree-item-button .cms-pagetree-dropdown-menu{right:40px;top:-2px;width:205px}.cms-tree-item-button .cms-hover-tooltip:after,.cms-tree-item-button .cms-hover-tooltip:before{bottom:23px}.cms-pagetree-alt-mode .cms-tree-item-button .cms-icon-settings:not(.cms-btn-disabled)[data-url]:before{content:"\E001"}.cms-tree-item-icons{position:relative}.cms-tree-item-icons .cms-icon{display:block}.cms-tree-item-icons span:before{color:#999}.cms-tree-item-icons-dark span:before{color:#454545}.cms-tree-item-preview{position:relative}.cms-tree-item-preview a{font-size:18px;line-height:18px;height:18px;display:block}.cms-tree-item-preview a:before{display:block;color:#454545}.cms-tree-item-preview a:hover:before{color:#000}.cms-tree-item-preview-active a:before{color:#000}.cms-tree-item-lang{position:relative}.cms-tree-item-lang .cms-tree-item-inner>.cms-tree-lang-container,.cms-tree-item-lang .cms-tree-item-inner>a{display:block;height:16px}.cms-tree-item-menu{position:relative}.cms-tree-item-menu .cms-tree-item-inner>a{display:block;height:14px}.cms-tree-item-menu .cms-icon{display:block}.cms-tree-item-menu .cms-icon:before{display:block;font-size:14px;color:#454545}.cms-tree-item-menu .cms-icon-check-square:before{color:#693}.cms-tree-item-info{position:relative}.cms-tree-item-info .cms-tree-item-inner>a{display:block;height:16px}.cms-tree-item-info .cms-icon{display:block}.cms-tree-item-info .cms-icon:before{display:block;font-size:16px}.cms-tree-item-info p{color:#333;padding:0;margin:0}.cms-tree-item-info strong{color:#999;font-weight:400}.cms-tree-item-info a{display:inline-block;line-height:1}.cms-tree-search{float:left;margin-right:5px}.cms-tree-search label{display:none!important}.cms-tree-search select{position:relative;top:2px;width:175px!important}.cms-tree-search #toolbar form#changelist-search input[type=submit]{margin-left:0!important}.cms-tree-search #toolbar form#changelist-search #searchbar{width:175px!important}.cms-tree-filters{float:right}.cms-tree-filters .js-cms-tree-filter-trigger{position:absolute;top:0;right:0;padding-right:20px;line-height:30px;width:175px;border-bottom:1px solid #ddd}.cms-tree-filters h2{display:none}.cms-pagetree-empty{padding:15px 20px;border-top:none}.cms-pagetree-empty .addlink{padding-left:0}.jstree-django-cms{-webkit-tap-highlight-color:transparent}.jstree-django-cms .jstree-children,.jstree-django-cms .jstree-container-ul,.jstree-django-cms .jstree-leaf,.jstree-django-cms .jstree-node{list-style-type:none;padding:0;margin:0;transform:translateZ(0)}.jstree-django-cms .jstree-is-dragging{opacity:.1!important}.jstree-django-cms .jstree-is-dragging+.jstree-grid-cell{height:47px;border-top:1px solid #ddd;margin-top:-1px}.jstree-django-cms .jstree-is-dragging-copy{opacity:.9!important}.jstree-django-cms .jstree-grid-header,.jstree-django-cms .jstree-grid-separator{padding:0;margin:0;margin-left:0!important;border:none;background:0 0}.jstree-django-cms .jstree-grid-header{z-index:1;position:relative}.jstree-django-cms.jstree-grid-cell{padding:0}.jstree-django-cms .jstree-grid-cell,.jstree-django-cms .jstree-grid-column{box-sizing:border-box;overflow:visible}.jstree-django-cms .jstree-grid-column{vertical-align:top}.jstree-grid-wrapper{box-sizing:border-box;overflow:visible!important;width:100%!important}.jstree-grid-wrapper{background:#f2f2f2}.jstree-django-cms .jstree-grid-header{font-size:12px;color:#666;text-align:center;padding:3px 6px;border-bottom:1px solid #ddd;background:#fff}.jstree-django-cms .jstree-grid-header-fixed{position:fixed;z-index:2}.jstree-django-cms .jstree-grid-column-0 .jstree-grid-header{text-align:left!important}.jstree-django-cms .jstree-children{margin-left:20px}.jstree-django-cms .jstree-container-ul{margin-left:-1px}.jstree-django-cms .jstree-ocl{float:left;position:relative;left:20px;font-size:12px;color:#999;padding:18px 10px 10px 0}.jstree-django-cms .jstree-ocl:before{display:inline-block}.jstree-django-cms .jstree-closed>.jstree-ocl,.jstree-django-cms .jstree-open>.jstree-ocl{cursor:pointer}.jstree-django-cms .jstree-open>.jstree-ocl:before{content:"\E005"}.jstree-django-cms .jstree-open>.jstree-ocl:before{transform:rotate(90deg)}.jstree-django-cms .jstree-closed>.jstree-ocl:before{content:"\E005"}.jstree-django-cms .jstree-loading>.jstree-ocl:before{content:"\E01F"}.jstree-django-cms .jstree-loading>.jstree-ocl:before{animation:cms-spin 2s infinite linear}.jstree-django-cms .jstree-anchor{box-sizing:border-box;display:block;cursor:move;outline:0;color:#666;height:47px;padding:12px 25px;margin-top:-1px;border:1px solid #ddd;border-right:none;background-color:#fff;background-image:url(../../img/pagetree/tree-li-drag.gif);background-repeat:no-repeat;background-position:-1px center;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.jstree-django-cms .jstree-anchor:hover{color:#666!important}.jstree-django-cms .jstree-node[data-move-permission=false]>.jstree-anchor{cursor:default;background-image:none}.jstree-django-cms .jstree-closed>.jstree-anchor,.jstree-django-cms .jstree-loading>.jstree-anchor,.jstree-django-cms .jstree-open>.jstree-anchor{padding:12px 25px 12px 45px}.jstree-django-cms .cms-tree-node-filtered .jstree-anchor{cursor:default}.jstree-django-cms .jstree-grid-cell{height:46px;border-bottom:1px solid #ddd;background:#fff}.jstree-django-cms .jstree-grid-cell>span{display:block}.jstree-django-cms .jstree-grid-cell.jstree-django-cms{height:auto;border:none;background:0 0}.jstree-django-cms .jstree-grid-cell-regular{text-align:center;padding:7px 8px;border-left:1px solid #ddd}.jstree-django-cms .jstree-grid-cell-regular-options{border-left:none;text-align:right}.jstree-django-cms .jstree-clicked,.jstree-django-cms .jstree-hovered{background-color:#fafafa!important}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header{text-align:right}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header a{font-size:12px;top:0}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header span{line-height:1}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header .cms-icon{font-size:12px;padding-right:5px;margin-left:5px}.jstree.jstree-loading .jstree-container-ul{margin:0}.jstree.jstree-loading .jstree-anchor{padding-top:13px;padding-left:15px;border:none;background:0 0}.jstree.jstree-loading .jstree-loading>.jstree-ocl{display:none}.cms-tree-node-success>.jstree-anchor .jstree-themeicon{content:"";position:relative;top:4px;color:#693}.cms-tree-node-success>.jstree-anchor .jstree-themeicon:before{content:"\E00E"}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor{border-style:dashed;border-right:none;color:#999;background-color:#f2f2f2!important}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor:hover{color:#999!important}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor.jstree-hovered{background-color:#f2f2f2!important}.jstree-django-cms .jstree-grid-cell.jstree-clicked,.jstree-django-cms .jstree-grid-cell.jstree-hovered{background-color:#f2f2f2}.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor{border-style:solid;border-right:none;background-color:#fff!important;border-bottom:1px solid #ddd}.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor.jstree-hovered{background-color:#fafafa!important}.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true>.jstree-anchor{border-top-style:solid}.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true.jstree-hovered{background-color:#f2f2f2}.jstree-django-cms .cms-page-tree-cell-shared--true{border-style:dashed;background-color:#f2f2f2}.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-grid-cell-regular-options{border-left:none}.jstree-django-cms .cms-page-tree-cell-shared--true .cms-btn-no-border{background-color:transparent!important}.jstree-django-cms .cms-page-tree-cell-shared--true .cms-btn-no-border:hover{background-color:#fff!important;border:1px solid #ddd!important}.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-clicked,.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-hovered{background-color:#f2f2f2!important}.jstree-django-cms .cms-page-tree-cell-shared--false{background-color:#fff}.jstree-django-cms .cms-page-tree-cell-shared--false.jstree-clicked,.jstree-django-cms .cms-page-tree-cell-shared--false.jstree-hovered{background-color:#fafafa!important}.jstree-django-cms .cms-page-tree-cell-shared--true+.cms-page-tree-cell-shared--false{border-top:1px solid #ddd;margin-top:-1px;padding-top:8px;height:47px}#jstree-dnd{box-sizing:border-box;display:block;min-width:300px;height:46px;padding:12px 25px!important;margin-left:-5px;background-color:#0bf!important;color:#fff}#jstree-dnd .jstree-copy{color:#fff;padding:0 5px 2px;margin-left:5px;border-radius:3px;background:#999}#jstree-dnd .jstree-er,#jstree-dnd .jstree-ok{position:absolute;top:0;left:-5px;bottom:0;right:0;background-color:rgba(255,255,255,.6)}#jstree-dnd .jstree-ok{display:none}.is-stacked #jstree-dnd{box-shadow:1px 1px 1px rgba(0,0,0,.2),4px 4px 0 0 #0bf}.is-stacked .jstree-er{box-shadow:4px 4px 0 0 rgba(255,255,255,.6)}#jstree-marker{position:absolute;right:3%;z-index:102;margin:-6px 0 0 0;border-right:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid #0bf;height:0}#jstree-marker:after{content:"";display:block;position:absolute;height:3px;top:-1px;left:-2px;right:0;background-color:#0bf}#jstree-marker.jstree-marker-child{border:2px solid #0bf;height:46px;margin:-24px 0 0 0;background-color:rgba(0,187,255,.1);box-sizing:border-box}#jstree-marker.jstree-marker-child:after{display:none}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe .messagelist+#content{margin-top:117px!important}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs{left:20px}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs+#content,.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs+.messagelist+#content{margin-left:0!important;margin-right:0!important}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #jstree-marker{right:0}.cms-pagetree-header-lang,.cms-pagetree-header-lang:active,.cms-pagetree-header-lang:focus,.cms-pagetree-header-lang:hover,.cms-pagetree-header-lang:link{color:#333!important}.cms-pagetree-header-lang.active{font-weight:700}.cms-pagetree-dropdown{position:relative}.cms-pagetree-dropdown-menu{display:none;position:absolute;top:30px;right:-1px;z-index:1000;min-width:180px;border-radius:5px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.25);transform:translateZ(0)}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item,.cms-pagetree-dropdown-menu a,.cms-pagetree-dropdown-menu a:link,.cms-pagetree-dropdown-menu a:link:visited,.cms-pagetree-dropdown-menu a:visited{display:block;color:#555;line-height:1.5;text-align:left;padding:10px 15px}.cms-pagetree-dropdown-menu a:active,.cms-pagetree-dropdown-menu a:focus,.cms-pagetree-dropdown-menu a:hover{color:#fff!important;background:#0bf}.cms-pagetree-dropdown-menu li:first-child>a{border-top-left-radius:5px;border-top-right-radius:5px}.cms-pagetree-dropdown-menu li:last-child>a{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled{opacity:.2;color:#000;cursor:default}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled:focus,.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled:hover{background:0 0!important;color:#454545!important}.cms-pagetree-dropdown-menu.cms-pagetree-dropdown-menu-condensed .cms-pagetree-dropdown-item,.cms-pagetree-dropdown-menu.cms-pagetree-dropdown-menu-condensed a{padding:5px 15px}.cms-pagetree-dropdown-menu .active{font-weight:700}.cms-pagetree-dropdown-menu .label{display:block;color:#555;font-size:90%;font-weight:400;line-height:1.5;text-align:left;text-transform:uppercase;padding:7px 15px 5px;border-bottom:1px solid #ddd;margin-bottom:4px}.cms-pagetree-dropdown-menu li{margin:0;padding:0;list-style-type:none}.cms-pagetree-dropdown-menu p{display:block;overflow:hidden;font-size:12px!important;text-align:left;text-overflow:ellipsis;margin:0;padding:5px 15px 3px!important}.cms-pagetree-dropdown-menu p strong{font-size:12px!important}.cms-pagetree-dropdown-menu p+p{margin-top:-2px;padding-top:0!important}.cms-pagetree-dropdown-menu p:last-child{padding-bottom:7px!important}.cms-pagetree-dropdown-menu .cms-icon{margin-right:10px}.cms-pagetree-dropdown-menu span{vertical-align:middle}.cms-pagetree-dropdown-menu:before{content:"";position:absolute;left:100%;z-index:-1;width:10px;height:10px;margin-left:-5px;background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,.25);transform:rotate(45deg) translateZ(0)}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-menu-inner{margin:0;padding:0!important;border-radius:5px;background-color:#fff}.cms-pagetree-dropdown-menu-open .cms-pagetree-dropdown-menu{display:block}.cms-pagetree-dropdown-menu-arrow-top-right:before{margin-top:-5px;margin-left:-24px}.cms-pagetree-dropdown-menu-arrow-right-top:before{top:16px}.cms-pagetree-dropdown-menu-arrow-right-bottom:before{bottom:18px}.cms-pagetree-dropdown-loader{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:5px}.cms-pagetree-node-state{box-sizing:border-box;display:inline-block;width:16px;height:16px;border-radius:100%;border:2px solid #fff;background:#fff;vertical-align:top}.cms-btn .cms-pagetree-node-state{vertical-align:middle;margin-right:5px;margin-top:-4px}.cms-btn:hover .cms-pagetree-node-state-dirty{box-shadow:0 0 0 1px #fff}.cms-pagetree-node-state-empty{border-color:#999;background-color:#fff}.cms-pagetree-node-state-unpublished,.cms-pagetree-node-state-unpublished-parent{border-color:#999;background-color:#999}.cms-pagetree-node-state-archived{border-color:#999;background-color:#ddd}.cms-pagetree-node-state-public,.cms-pagetree-node-state-published{border-color:#693;background-color:#693}.cms-pagetree-node-state-draft{border-color:#0bf;background-color:#fff}.cms-pagetree-node-state-dirty{animation:pulsate 2.5s ease-out infinite;border-color:#0bf;background-color:#0bf}.cms-pagetree-node-state-deletion{border-color:red;background-color:red}@keyframes pulsate{0%{opacity:.5}50%{opacity:1}100%{opacity:.5}}.cms-pagetree-legend{position:relative;text-align:right}.cms-pagetree-legend .cms-icon-info{color:#0bf;vertical-align:middle;margin-right:5px}.cms-pagetree-legend .cms-pagetree-dropdown{display:inline-block}.cms-pagetree-legend .cms-pagetree-dropdown-menu{top:auto;right:100%;bottom:0;left:auto;margin-right:10px;margin-bottom:-90px}.cms-pagetree-legend .cms-pagetree-dropdown-menu:before{bottom:96px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-pagetree-node-state{margin-right:10px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon{margin-right:8px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-apphook,.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-home,.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-sitemap{color:#999}.cms-pagetree-legend .cms-icon{text-align:center;width:20px;margin-left:-2px}.cms-pagetree-legend .cms-icon-check-square{color:#693;font-size:14px}.cms-pagetree-legend .cms-icon-minus-square{font-size:14px}.cms-pagetree-legend-title-wrap{cursor:pointer}.cms-pagetree-legend-title{color:#999;vertical-align:middle;text-transform:uppercase}.cms-tooltip,.cms-tooltip-touch{visibility:hidden;position:absolute;top:0;left:0;font-size:12px;line-height:22px;font-weight:700;color:#ddd;white-space:nowrap;padding:0 7px 0 22px;margin:0;border-radius:3px;background:#454545}.cms-tooltip-touch:before,.cms-tooltip:before{content:"\E016"}.cms-tooltip-touch:before,.cms-tooltip:before{font-size:14px;top:50%;left:4px;margin-top:-7px;position:absolute}.cms-tooltip span,.cms-tooltip-touch span{position:absolute;top:100%;right:0;margin-top:-4px;float:right;color:#fff;font-weight:400;padding:0 7px;border-radius:3px 0 3px 3px;background:#454545} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc3/cms.welcome.css b/cms/static/cms/css/4.1.0rc3/cms.welcome.css deleted file mode 100644 index 01acdc6642b..00000000000 --- a/cms/static/cms/css/4.1.0rc3/cms.welcome.css +++ /dev/null @@ -1,3 +0,0 @@ -/*! - * @copyright: https://github.com/divio/django-cms - */@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc3/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc3/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc3/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc3/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-moon:before{content:"\E02A"}.cms-icon-paste:before{content:"\E02B"}.cms-icon-pencil:before{content:"\E02C"}.cms-icon-pin:before{content:"\E02D"}.cms-icon-plugins:before{content:"\E02E"}.cms-icon-plus-circle:before{content:"\E02F"}.cms-icon-plus-square-o:before{content:"\E030"}.cms-icon-plus:before{content:"\E031"}.cms-icon-publish:before{content:"\E032"}.cms-icon-puzzle:before{content:"\E033"}.cms-icon-redo:before{content:"\E034"}.cms-icon-rename:before{content:"\E035"}.cms-icon-scissors:before{content:"\E036"}.cms-icon-search:before{content:"\E037"}.cms-icon-settings:before{content:"\E038"}.cms-icon-sitemap:before{content:"\E039"}.cms-icon-squares:before{content:"\E03A"}.cms-icon-sun:before{content:"\E03B"}.cms-icon-undo:before{content:"\E03C"}.cms-icon-unlock:before{content:"\E03D"}.cms-icon-unpublish:before{content:"\E03E"}.cms-icon-view:before{content:"\E03F"}.cms-icon-window:before{content:"\E040"}.cms-welcome-bg{background:#f2f2f2}.cms-welcome{color:#454545;width:60%;min-width:320px;margin:0 auto}.cms-welcome a{color:#0bf}.cms-welcome a:active,.cms-welcome a:focus,.cms-welcome a:hover{text-decoration:underline}.cms-welcome .cms-hidden{display:none}.cms-welcome .cms-welcome-footer,.cms-welcome .cms-welcome-section{box-sizing:border-box;width:60%;min-width:320px;margin:0 auto}.cms-welcome .cms-welcome-header{text-align:center}.cms-welcome .cms-welcome-heading{color:#999;font-size:22px;font-weight:200;text-align:center;padding:40px 0 15px;border-bottom:1px solid #ddd}.cms-welcome .cms-welcome-heading .cms-icon{color:#693}.cms-welcome .cms-welcome-logo,.cms-welcome .cms-welcome-logo:focus,.cms-welcome .cms-welcome-logo:hover{display:inline-block;background-image:url(../../fonts/src/logo.svg);background-repeat:no-repeat;background-position:center center;height:35px;width:200px;font-size:35px;text-decoration:none;margin:50px auto 30px}.cms-welcome .cms-welcome-section{box-shadow:0 0 5px #ddd;padding:20px;margin-bottom:5px;background:#fff}.cms-welcome .cms-welcome-section h2{font-size:16px;font-weight:700;margin:0 0 15px}.cms-welcome .cms-welcome-section p{padding:5px 0}.cms-welcome .cms-welcome-links{padding:10px 5px;margin:0 0 15px;border-bottom:1px solid #ddd}.cms-welcome .cms-welcome-links a{padding:0 5px}.cms-welcome .cms-welcome-notes{font-size:12px;line-height:16px;color:#999;padding:5px 10px} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc3/cms.wizard.css b/cms/static/cms/css/4.1.0rc3/cms.wizard.css deleted file mode 100644 index 856add27e6d..00000000000 --- a/cms/static/cms/css/4.1.0rc3/cms.wizard.css +++ /dev/null @@ -1,3 +0,0 @@ -/*! - * @copyright: https://github.com/divio/django-cms - */.cms-content-wizard .clear{clear:both;overflow:hidden}.cms-content-wizard .errornote{box-sizing:border-box;display:block;width:100%}.cms-content-wizard .choice-wrapper{clear:both;overflow:hidden;margin:-1%}.cms-content-wizard .choice{background-image:none;margin-bottom:0;border-radius:3px;color:#555;background-color:#fff;border:1px solid #ddd;background-clip:padding-box;-webkit-appearance:none;box-sizing:border-box;position:relative;text-transform:none;height:85px;padding:20px 25px!important;margin:1%!important}.cms-content-wizard .choice.focus,.cms-content-wizard .choice:focus{color:#555;background-color:#f2f2f2;border-color:#d0d0d0;text-decoration:none}.cms-content-wizard .choice:hover{color:#555;background-color:#f2f2f2;border-color:#d0d0d0;text-decoration:none}.cms-content-wizard .choice.cms-btn-active,.cms-content-wizard .choice:active{color:#555;background-color:#e6e6e6;border-color:#c3c3c3;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.cms-content-wizard .choice.cms-btn-active.focus,.cms-content-wizard .choice.cms-btn-active:focus,.cms-content-wizard .choice.cms-btn-active:hover,.cms-content-wizard .choice:active.focus,.cms-content-wizard .choice:active:focus,.cms-content-wizard .choice:active:hover{color:#555;background-color:#d4d4d4;border-color:#9d9d9d}.cms-content-wizard .choice.cms-btn-active,.cms-content-wizard .choice:active{background-image:none}.cms-content-wizard .choice.cms-btn-disabled,.cms-content-wizard .choice.cms-btn-disabled.cms-btn-active,.cms-content-wizard .choice.cms-btn-disabled.focus,.cms-content-wizard .choice.cms-btn-disabled:active,.cms-content-wizard .choice.cms-btn-disabled:focus,.cms-content-wizard .choice.cms-btn-disabled:hover,.cms-content-wizard .choice[disabled],.cms-content-wizard .choice[disabled].cms-btn-active,.cms-content-wizard .choice[disabled].focus,.cms-content-wizard .choice[disabled]:active,.cms-content-wizard .choice[disabled]:focus,.cms-content-wizard .choice[disabled]:hover{background-color:rgba(255,255,255,.4);border-color:rgba(221,221,221,.4);color:#d5d5d5;cursor:not-allowed;box-shadow:none}.cms-content-wizard .choice.cms-btn-disabled.cms-btn-active:before,.cms-content-wizard .choice.cms-btn-disabled.focus:before,.cms-content-wizard .choice.cms-btn-disabled:active:before,.cms-content-wizard .choice.cms-btn-disabled:before,.cms-content-wizard .choice.cms-btn-disabled:focus:before,.cms-content-wizard .choice.cms-btn-disabled:hover:before,.cms-content-wizard .choice[disabled].cms-btn-active:before,.cms-content-wizard .choice[disabled].focus:before,.cms-content-wizard .choice[disabled]:active:before,.cms-content-wizard .choice[disabled]:before,.cms-content-wizard .choice[disabled]:focus:before,.cms-content-wizard .choice[disabled]:hover:before{color:rgba(85,85,85,.4)}@media (min-width:768px){.cms-content-wizard .choice{float:left!important;width:48%!important}}.cms-content-wizard .choice input{position:absolute;left:-9999px;opacity:0;visibility:hidden}.cms-content-wizard .choice strong{display:block;font-size:16px;margin-bottom:3px}.cms-content-wizard .choice .info{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cms-content-wizard .choice.active{border-color:#0bf;background:#e6f8ff} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc4/cms.admin.css b/cms/static/cms/css/4.1.0rc4/cms.admin.css new file mode 100644 index 00000000000..932e2b2c3ce --- /dev/null +++ b/cms/static/cms/css/4.1.0rc4/cms.admin.css @@ -0,0 +1,3 @@ +/*! + * @copyright: https://github.com/django-cms/django-cms + */:root,:root[data-theme=auto],:root[data-theme=light]{--dca-light-mode:1;--dca-dark-mode:0;--dca-white:#FFFFFF;--dca-black:#000000;--dca-shadow:0,0,0;--dca-primary:#00bbff;--dca-gray:#666;--dca-gray-lightest:#f2f2f2;--dca-gray-lighter:#ddd;--dca-gray-light:#999;--dca-gray-darker:#454545;--dca-gray-darkest:#333;--dca-gray-super-lightest:#f7f7f7;--active-brightness:0.9;--focus-brightness:0.95}:root,:root[data-them=auto]{color-scheme:dark light}:root[data-theme=light]{color-scheme:light}:root[data-theme=dark]{color-scheme:dark;--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#ccc;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#ddd;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}@media (prefers-color-scheme:dark){:root:not([data-theme]),:root[data-theme=auto]{--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#999;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#aaa;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}}@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc4/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc4/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-paste:before{content:"\E02A"}.cms-icon-pencil:before{content:"\E02B"}.cms-icon-pin:before{content:"\E02C"}.cms-icon-plugins:before{content:"\E02D"}.cms-icon-plus-circle:before{content:"\E02E"}.cms-icon-plus-square-o:before{content:"\E02F"}.cms-icon-plus:before{content:"\E030"}.cms-icon-publish:before{content:"\E031"}.cms-icon-puzzle:before{content:"\E032"}.cms-icon-redo:before{content:"\E033"}.cms-icon-rename:before{content:"\E034"}.cms-icon-scissors:before{content:"\E035"}.cms-icon-search:before{content:"\E036"}.cms-icon-settings:before{content:"\E037"}.cms-icon-sitemap:before{content:"\E038"}.cms-icon-squares:before{content:"\E039"}.cms-icon-theme-auto:before{content:"\E03A"}.cms-icon-theme-dark:before{content:"\E03B"}.cms-icon-theme-light:before{content:"\E03C"}.cms-icon-undo:before{content:"\E03D"}.cms-icon-unlock:before{content:"\E03E"}.cms-icon-unpublish:before{content:"\E03F"}.cms-icon-view:before{content:"\E040"}.cms-icon-window:before{content:"\E041"}a.btn.cms-action-btn{color:var(--dca-gray-darkest,var(--body-fg));border:1px solid var(--dca-gray-lighter,#ddd);border-radius:3px;position:relative;display:-ms-inline-flexbox;display:inline-flex;padding:0!important;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:34px;margin-top:-12px!important;box-sizing:border-box;bottom:-6px;cursor:pointer;height:34px}span.cms-empty-action{width:38px;display:-ms-inline-flexbox;display:inline-flex;position:relative}a.btn.cms-action-btn span{font-family:django-cms-iconfont;font-size:120%}a.btn.cms-action-btn img{width:20px;height:20px}a.btn.cms-action-btn.inactive:link,a.btn.cms-action-btn.inactive:visited{color:var(--dca-gray-lighter,var(--border-color,#ccc))!important}.btn.cms-action-btn.inactive{pointer-events:none}.btn.cms-action-btn.inactive img{opacity:.5}a.btn.cms-action-btn img{width:20px;height:20px;margin-right:4px}.cms-actions-dropdown-menu{display:none;position:absolute;top:30px;right:-1px;z-index:1000;min-width:180px;margin:0;padding:0!important;border-radius:5px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.25);transform:translateZ(0)}.cms-actions-dropdown-menu::before{content:"";position:absolute;left:100%;z-index:-1;width:10px;height:10px;margin-left:-5px;background-color:var(--dca-white,var(--body-bg,#fff));box-shadow:0 0 10px rgba(0,0,0,.25);transform:rotate(45deg) translateZ(0)}.cms-actions-dropdown-menu.open{display:block;width:fit-content}.cms-actions-dropdown-menu.closed{display:none}.cms-actions-dropdown-menu-arrow-right-top::before{top:16px}a.btn.cms-action-btn.open,a.btn.cms-action-btn:hover{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}ul.cms-actions-dropdown-menu-inner{margin:0;padding:0!important;border-radius:5px;background-color:var(--dca-white,var(--body-bg,#fff));overflow:hidden}ul.cms-actions-dropdown-menu-inner li{border:0 solid transparent;padding:0;list-style-type:none}ul.cms-actions-dropdown-menu-inner li a,ul.cms-actions-dropdown-menu-inner li a:link,ul.cms-actions-dropdown-menu-inner li a:link:visited,ul.cms-actions-dropdown-menu-inner li a:visited{color:var(--dca-gray)}ul.cms-actions-dropdown-menu-inner li a:hover,ul.cms-actions-dropdown-menu-inner li a:link:hover,ul.cms-actions-dropdown-menu-inner li a:link:visited:hover,ul.cms-actions-dropdown-menu-inner li a:visited:hover{color:var(--dca-white);border:0 solid var(--dca-gray-lighter);background-color:var(--dca-primary)}a.cms-actions-dropdown-menu-item-anchor{display:block;line-height:1.5;text-align:left;text-decoration:none;padding:10px 15px;border-top-left-radius:5px;border-top-right-radius:5px}a.cms-actions-dropdown-menu-item-anchor span.cms-icon{width:20px;height:20px;margin-right:10px;vertical-align:middle}a.cms-actions-dropdown-menu-item-anchor.inactive{cursor:not-allowed;pointer-events:none;opacity:.3}.change-list table tbody td .cms-pagetree-dropdown-trigger,.change-list table tbody td .cms-pagetree-node-state{vertical-align:middle}.change-list table tbody .field-indicator,.change-list table thead .column-indicator{text-align:center}.change-list table tbody .field-list_actions,.change-list table thead .column-list_actions{width:1%;white-space:nowrap}.change-list table tbody .field-list_actions .cms-burger-menu,.change-list table thead .column-list_actions .cms-burger-menu{margin-left:auto}body:not(.djangocms-admin-style) #page_form_lang_tabs input[type=button].selected{background-color:var(--button-bg);color:var(--button-fg)}body:not(.djangocms-admin-style) #page_form_lang_tabs input[type=button]{background-color:var(--darkened-bg);border:1px solid var(--border-color);color:var(--body-fg)} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc4/cms.base.css b/cms/static/cms/css/4.1.0rc4/cms.base.css new file mode 100644 index 00000000000..c2755565a2b --- /dev/null +++ b/cms/static/cms/css/4.1.0rc4/cms.base.css @@ -0,0 +1,3 @@ +/*! + * @copyright: https://github.com/divio/django-cms + */:root,:root[data-theme=auto],:root[data-theme=light]{--dca-light-mode:1;--dca-dark-mode:0;--dca-white:#FFFFFF;--dca-black:#000000;--dca-shadow:0,0,0;--dca-primary:#00bbff;--dca-gray:#666;--dca-gray-lightest:#f2f2f2;--dca-gray-lighter:#ddd;--dca-gray-light:#999;--dca-gray-darker:#454545;--dca-gray-darkest:#333;--dca-gray-super-lightest:#f7f7f7;--active-brightness:0.9;--focus-brightness:0.95}:root,:root[data-them=auto]{color-scheme:dark light}:root[data-theme=light]{color-scheme:light}:root[data-theme=dark]{color-scheme:dark;--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#ccc;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#ddd;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}@media (prefers-color-scheme:dark){:root:not([data-theme]),:root[data-theme=auto]{--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#999;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#aaa;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}}.cms-reset a,.cms-reset a:active,.cms-reset a:focus,.cms-reset a:hover,.cms-reset div,.cms-reset fieldset,.cms-reset form,.cms-reset h1,.cms-reset h2,.cms-reset h3,.cms-reset input,.cms-reset kbd,.cms-reset label,.cms-reset li,.cms-reset p,.cms-reset textarea,.cms-reset ul{color:var(--dca-black);font:normal 14px/20px Helvetica,Arial,sans-serif;text-align:left;text-decoration:none;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;outline:0;list-style-type:none;list-style-image:none;background:0 0;transition:none}.cms-reset table,.cms-reset td,.cms-reset th,.cms-reset tr{border:none;background:0 0;padding:0;margin:0}.cms{position:absolute;top:0;left:0;z-index:9999999;width:100%}.cms-prevent-scrolling{overflow:hidden!important}.cms-prevent-scrolling body{overflow:hidden!important}@keyframes cms-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc4/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc4/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon,div.cms .cms-structure .cms-dragitem-collapsable:before,div.cms .cms-submenu-btn:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon]:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-rel]:before,div.cms .cms-toolbar-item-logo a,div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before,div.cms .cms-toolbar-item-logo a:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-paste:before{content:"\E02A"}.cms-icon-pencil:before{content:"\E02B"}.cms-icon-pin:before{content:"\E02C"}.cms-icon-plugins:before{content:"\E02D"}.cms-icon-plus-circle:before{content:"\E02E"}.cms-icon-plus-square-o:before{content:"\E02F"}.cms-icon-plus:before{content:"\E030"}.cms-icon-publish:before{content:"\E031"}.cms-icon-puzzle:before{content:"\E032"}.cms-icon-redo:before{content:"\E033"}.cms-icon-rename:before{content:"\E034"}.cms-icon-scissors:before{content:"\E035"}.cms-icon-search:before{content:"\E036"}.cms-icon-settings:before{content:"\E037"}.cms-icon-sitemap:before{content:"\E038"}.cms-icon-squares:before{content:"\E039"}.cms-icon-theme-auto:before,html:not([data-theme]) div.cms .cms-toolbar-item-dark-mode-toggle .cms-toggle:before,html[data-theme=auto] div.cms .cms-toolbar-item-dark-mode-toggle .cms-toggle:before{content:"\E03A"}.cms-icon-theme-dark:before,html[data-theme=dark] div.cms .cms-toolbar-item-dark-mode-toggle .cms-toggle:before{content:"\E03B"}.cms-icon-theme-light:before,html[data-theme=light] div.cms .cms-toolbar-item-dark-mode-toggle .cms-toggle:before{content:"\E03C"}.cms-icon-undo:before{content:"\E03D"}.cms-icon-unlock:before{content:"\E03E"}.cms-icon-unpublish:before{content:"\E03F"}.cms-icon-view:before{content:"\E040"}.cms-icon-window:before{content:"\E041"}.cms-hover-tooltip{position:relative;z-index:1001}.cms-btn-active .cms-hover-tooltip:after,.cms-btn-active .cms-hover-tooltip:before,div.cms .cms-dropdown-open .cms-dropdown-toggle .cms-hover-tooltip:after,div.cms .cms-dropdown-open .cms-dropdown-toggle .cms-hover-tooltip:before{opacity:0!important;transition-delay:0s!important}.cms-hover-tooltip:after,.cms-hover-tooltip:before{visibility:hidden;position:absolute;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);transform:translate3d(0,0,0)}.cms-hover-tooltip-delay:focus:after,.cms-hover-tooltip-delay:focus:before,.cms-hover-tooltip-delay:hover:after,.cms-hover-tooltip-delay:hover:before{transition:opacity .2s ease-in-out 1.5s,visibility .2s ease-in-out 1.5s,transform .2s cubic-bezier(.71,1.7,.77,1.24) 1.5s}.cms-hover-tooltip:focus{outline:0}.cms-hover-tooltip:focus:after,.cms-hover-tooltip:focus:before,.cms-hover-tooltip:hover:after,.cms-hover-tooltip:hover:before{visibility:visible;opacity:1}.cms-hover-tooltip:before{content:"";z-index:2;border:6px solid transparent;background:0 0}.cms-hover-tooltip:after{content:attr(data-cms-tooltip);z-index:1;color:var(--dca-white)!important;font-size:12px;font-weight:400;line-height:1.2;text-align:center;width:160px;padding:6px 8px;background-color:var(--dca-black);white-space:normal}.cms-hover-tooltip:after,.cms-hover-tooltip:before{bottom:100%;left:50%}.cms-hover-tooltip:before{margin-bottom:-12px;margin-left:-6px;border-top-color:var(--dca-black)}.cms-hover-tooltip:after{margin-left:-80px}.cms-hover-tooltip:focus:after,.cms-hover-tooltip:focus:before,.cms-hover-tooltip:hover:after,.cms-hover-tooltip:hover:before{transform:translateY(-12px)}.cms-hover-tooltip-left:after,.cms-hover-tooltip-left:before{right:100%;bottom:50%;left:auto;transform:translateY(50%)}.cms-hover-tooltip-left:before{margin-left:0;margin-right:-12px;margin-bottom:0;border-top-color:transparent;border-left-color:var(--dca-black)}.cms-hover-tooltip-left:focus:after,.cms-hover-tooltip-left:focus:before,.cms-hover-tooltip-left:hover:after,.cms-hover-tooltip-left:hover:before{transform:translateX(-12px) translateY(50%)}.cms-hover-tooltip-bottom:after,.cms-hover-tooltip-bottom:before{top:100%;bottom:auto;left:50%}.cms-hover-tooltip-bottom:before{margin-top:-12px;margin-bottom:0;border-top-color:transparent;border-bottom-color:var(--dca-black)}.cms-hover-tooltip-bottom:focus:after,.cms-hover-tooltip-bottom:focus:before,.cms-hover-tooltip-bottom:hover:after,.cms-hover-tooltip-bottom:hover:before{transform:translateY(12px)}.cms-hover-tooltip-right:after,.cms-hover-tooltip-right:before{bottom:50%;left:100%}.cms-hover-tooltip-right:before{margin-bottom:0;margin-left:-12px;border-top-color:transparent;border-right-color:var(--dca-black)}.cms-hover-tooltip-right:focus:after,.cms-hover-tooltip-right:focus:before,.cms-hover-tooltip-right:hover:after,.cms-hover-tooltip-right:hover:before{transform:translateX(12px) translateY(50%)}.cms-hover-tooltip-left:before,.cms-hover-tooltip-right:before{transform:translateY(50%)}.cms-hover-tooltip-left:after,.cms-hover-tooltip-right:after{margin-left:0;transform:translateY(50%)}.cms-dialog{position:fixed;top:50%;left:50%;z-index:99999;box-sizing:border-box;width:500px;margin:-100px 0 0 -250px;padding:20px;border:1px solid var(--dca-gray-lighter);border-radius:5px;background:var(--dca-white);box-shadow:0 0 20px rgba(var(--dca-shadow),.5);transform:translateZ(0)}.cms-dialog h1{margin:0 0 10px;padding:0}.cms-dialog form{margin:0 -20px;padding:0 20px!important;border-top:1px solid var(--dca-gray-lighter)}.cms-dialog form label{display:inline}.cms-dialog form input[type=checkbox]{position:relative;top:auto;vertical-align:middle;line-height:20px}.cms-dialog form p{margin:0 20px;margin-bottom:0;padding:10px 0}.cms-dialog form p:after{display:none}.cms-dialog form input[type=submit]{margin-bottom:0!important}.cms-dialog form .submit-row{margin:0 -20px;padding:20px 20px 0}.cms-dialog form .submit-row input{margin-left:0}@media (max-width:540px){.cms-dialog{right:0;left:0;width:80%;margin:-100px auto 0}}.cms-dialog-dimmer{position:fixed;top:0;left:0;z-index:9999;width:100%;height:100%;background:rgba(var(--dca-shadow),.6)}cms-plugin.cms-plugin-text-node{display:inline}.cms-placeholder{overflow:hidden;height:0}.cms-render-model-icon{display:inline-block;width:18px;height:18px;margin:0;padding:0;cursor:pointer}.cms-render-model-icon,.cms-render-model-icon img{position:relative;max-width:none;margin:0!important;padding:0!important;background:url(../../img/toolbar/render_model_icon.png) no-repeat}.cms-render-model-add{display:inline-block;width:18px;height:18px;margin:0;padding:0;cursor:pointer}.cms-render-model-add,.cms-render-model-add img{position:relative;max-width:none;margin:0!important;padding:0!important;background:url(../../img/toolbar/render_model_add.png) no-repeat}.cms-loader{background:var(--dca-white) url(../../img/loader.gif?uf5b664wnc) no-repeat center center!important}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:1.25dppx){.cms-loader{background-image:url(../../img/loader@2x.gif?uf5b664wnc)!important;background-size:32px!important}}div.cms .cms-toolbar-item-dark-mode-toggle span.cms-icon.cms-toggle{font-size:120%;padding-top:55%;color:var(--dca-gray-darkest)}html[data-theme=light] div.cms .cms-toolbar-item-dark-mode-toggle .cms-toggle{font-size:170%;padding-top:25%}div.cms .cms-tooltip,div.cms .cms-tooltip-touch{visibility:hidden;position:absolute;top:0;left:0;font-size:12px;line-height:22px;font-weight:700;color:var(--dca-gray-lighter);white-space:nowrap;padding:0 7px 0 22px;margin:0;border-radius:3px;background:var(--dca-gray-darker)}div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{content:"\E016"}div.cms .cms-tooltip-touch:before,div.cms .cms-tooltip:before{font-size:14px;top:50%;left:4px;margin-top:-7px;position:absolute}div.cms .cms-tooltip span,div.cms .cms-tooltip-touch span{position:absolute;top:100%;right:0;margin-top:-4px;float:right;color:var(--dca-white);font-weight:400;padding:0 7px;border-radius:3px 0 3px 3px;background:var(--dca-gray-darker)}div.cms .cms-btn{background-image:none;margin-bottom:0;border-radius:3px;color:var(--dca-gray);background-color:var(--dca-white);border:1px solid var(--dca-gray-lighter);background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn.focus,div.cms .cms-btn:focus,div.cms .cms-btn:hover{color:var(--dca-gray);background-color:var(--dca-gray-lightest);border-color:var(--dca-gray-lighter)}div.cms .cms-btn.cms-btn-active,div.cms .cms-btn:active,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle{color:var(--dca-gray);background-color:var(--dca-white);border-color:var(--dca-gray-lighter);filter:brightness(var(--active-brightness)) opacity(1);box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)}div.cms .cms-btn.cms-btn-active.focus,div.cms .cms-btn.cms-btn-active:focus,div.cms .cms-btn.cms-btn-active:hover,div.cms .cms-btn:active.focus,div.cms .cms-btn:active:focus,div.cms .cms-btn:active:hover,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn.focus.cms-dropdown-toggle{color:var(--dca-gray);background-color:var(--dca-white);border-color:var(--dca-gray-lighter);filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)}div.cms .cms-btn.cms-btn-active,div.cms .cms-btn:active,div.cms .cms-dropdown-open .cms-btn.cms-dropdown-toggle{background-image:none}div.cms .cms-btn.cms-btn-disabled,div.cms .cms-btn.cms-btn-disabled.cms-btn-active,div.cms .cms-btn.cms-btn-disabled.focus,div.cms .cms-btn.cms-btn-disabled:active,div.cms .cms-btn.cms-btn-disabled:focus,div.cms .cms-btn.cms-btn-disabled:hover,div.cms .cms-btn[disabled],div.cms .cms-btn[disabled].cms-btn-active,div.cms .cms-btn[disabled].focus,div.cms .cms-btn[disabled]:active,div.cms .cms-btn[disabled]:focus,div.cms .cms-btn[disabled]:hover{background-color:var(--dca-white);border-color:var(--dca-gray-lighter);color:var(--dca-gray-lighter);cursor:not-allowed;box-shadow:none}div.cms .cms-btn.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn.cms-btn-disabled.focus:before,div.cms .cms-btn.cms-btn-disabled:active:before,div.cms .cms-btn.cms-btn-disabled:before,div.cms .cms-btn.cms-btn-disabled:focus:before,div.cms .cms-btn.cms-btn-disabled:hover:before,div.cms .cms-btn[disabled].cms-btn-active:before,div.cms .cms-btn[disabled].focus:before,div.cms .cms-btn[disabled]:active:before,div.cms .cms-btn[disabled]:before,div.cms .cms-btn[disabled]:focus:before,div.cms .cms-btn[disabled]:hover:before{color:var(--dca-gray-lighter)}div.cms .cms-btn-action{background-image:none;margin-bottom:0;border-radius:3px;color:var(--dca-white);background-color:var(--dca-primary);border:1px solid var(--dca-primary);background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn-action.focus,div.cms .cms-btn-action:focus,div.cms .cms-btn-action:hover{color:var(--dca-white);background-color:var(--dca-primary);border-color:var(--dca-primary);filter:brightness(var(--focus-brightness)) opacity(1)}div.cms .cms-btn-action.cms-btn-active,div.cms .cms-btn-action:active,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle{color:var(--dca-white);background-color:var(--dca-primary);border-color:var(--dca-primary);filter:brightness(var(--active-brightness)) opacity(1);box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)}div.cms .cms-btn-action.cms-btn-active.focus,div.cms .cms-btn-action.cms-btn-active:focus,div.cms .cms-btn-action.cms-btn-active:hover,div.cms .cms-btn-action:active.focus,div.cms .cms-btn-action:active:focus,div.cms .cms-btn-action:active:hover,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn-action.focus.cms-dropdown-toggle{color:var(--dca-white);background-color:var(--dca-primary);border-color:var(--dca-primary);filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)}div.cms .cms-btn-action.cms-btn-active,div.cms .cms-btn-action:active,div.cms .cms-dropdown-open .cms-btn-action.cms-dropdown-toggle{background-image:none}div.cms .cms-btn-action.cms-btn-disabled,div.cms .cms-btn-action.cms-btn-disabled.cms-btn-active,div.cms .cms-btn-action.cms-btn-disabled.focus,div.cms .cms-btn-action.cms-btn-disabled:active,div.cms .cms-btn-action.cms-btn-disabled:focus,div.cms .cms-btn-action.cms-btn-disabled:hover,div.cms .cms-btn-action[disabled],div.cms .cms-btn-action[disabled].cms-btn-active,div.cms .cms-btn-action[disabled].focus,div.cms .cms-btn-action[disabled]:active,div.cms .cms-btn-action[disabled]:focus,div.cms .cms-btn-action[disabled]:hover{background-color:var(--dca-primary);border-color:var(--dca-primary);color:var(--dca-white);filter:brightness(.6) opacity(1);cursor:not-allowed;box-shadow:none}div.cms .cms-btn-action.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn-action.cms-btn-disabled.focus:before,div.cms .cms-btn-action.cms-btn-disabled:active:before,div.cms .cms-btn-action.cms-btn-disabled:before,div.cms .cms-btn-action.cms-btn-disabled:focus:before,div.cms .cms-btn-action.cms-btn-disabled:hover:before,div.cms .cms-btn-action[disabled].cms-btn-active:before,div.cms .cms-btn-action[disabled].focus:before,div.cms .cms-btn-action[disabled]:active:before,div.cms .cms-btn-action[disabled]:before,div.cms .cms-btn-action[disabled]:focus:before,div.cms .cms-btn-action[disabled]:hover:before{color:var(--dca-white);filter:brightness(.6) opacity(1)}div.cms .cms-btn-caution{background-image:none;margin-bottom:0;border-radius:3px;color:var(--dca-white);background-color:#ff4000;border:1px solid #ff4000;background-clip:padding-box;-webkit-appearance:none}div.cms .cms-btn-caution.focus,div.cms .cms-btn-caution:focus,div.cms .cms-btn-caution:hover{color:var(--dca-white);background-color:#ff4000;border-color:#ff4000;filter:brightness(var(--focus-brightness)) opacity(1)}div.cms .cms-btn-caution.cms-btn-active,div.cms .cms-btn-caution:active,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle{color:var(--dca-white);background-color:#ff4000;border-color:#ff4000;filter:brightness(var(--active-brightness)) opacity(1);box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)}div.cms .cms-btn-caution.cms-btn-active.focus,div.cms .cms-btn-caution.cms-btn-active:focus,div.cms .cms-btn-caution.cms-btn-active:hover,div.cms .cms-btn-caution:active.focus,div.cms .cms-btn-caution:active:focus,div.cms .cms-btn-caution:active:hover,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle:focus,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle:hover,div.cms .cms-dropdown-open .cms-btn-caution.focus.cms-dropdown-toggle{color:var(--dca-white);background-color:#ff4000;border-color:#ff4000;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)}div.cms .cms-btn-caution.cms-btn-active,div.cms .cms-btn-caution:active,div.cms .cms-dropdown-open .cms-btn-caution.cms-dropdown-toggle{background-image:none}div.cms .cms-btn-caution.cms-btn-disabled,div.cms .cms-btn-caution.cms-btn-disabled.cms-btn-active,div.cms .cms-btn-caution.cms-btn-disabled.focus,div.cms .cms-btn-caution.cms-btn-disabled:active,div.cms .cms-btn-caution.cms-btn-disabled:focus,div.cms .cms-btn-caution.cms-btn-disabled:hover,div.cms .cms-btn-caution[disabled],div.cms .cms-btn-caution[disabled].cms-btn-active,div.cms .cms-btn-caution[disabled].focus,div.cms .cms-btn-caution[disabled]:active,div.cms .cms-btn-caution[disabled]:focus,div.cms .cms-btn-caution[disabled]:hover{background-color:#ff4000;border-color:#ff4000;color:var(--dca-white);filter:brightness(.6) opacity(1);cursor:not-allowed;box-shadow:none}div.cms .cms-btn-caution.cms-btn-disabled.cms-btn-active:before,div.cms .cms-btn-caution.cms-btn-disabled.focus:before,div.cms .cms-btn-caution.cms-btn-disabled:active:before,div.cms .cms-btn-caution.cms-btn-disabled:before,div.cms .cms-btn-caution.cms-btn-disabled:focus:before,div.cms .cms-btn-caution.cms-btn-disabled:hover:before,div.cms .cms-btn-caution[disabled].cms-btn-active:before,div.cms .cms-btn-caution[disabled].focus:before,div.cms .cms-btn-caution[disabled]:active:before,div.cms .cms-btn-caution[disabled]:before,div.cms .cms-btn-caution[disabled]:focus:before,div.cms .cms-btn-caution[disabled]:hover:before{color:var(--dca-white);filter:brightness(.6) opacity(1)}div.cms .cms-btn-disabled img{opacity:.2!important}div.cms .cms-dropdown-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:5px dashed;border-right:5px solid transparent;border-left:5px solid transparent}div.cms .cms-dropdown{position:relative}div.cms .cms-dropdown>.cms-btn{border-radius:3px!important}div.cms .cms-dropdown-toggle:focus{outline:0}div.cms .cms-dropdown-toggle-thin{margin-left:-1px;padding-left:7px!important;padding-right:7px!important}div.cms .cms-dropdown-toggle-thin .cms-dropdown-caret{margin-left:0}div.cms .cms-dropdown-menu{position:absolute;top:100%;left:0;z-index:9999999;display:none!important;float:left;min-width:180px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px!important;text-align:left;background-color:var(--dca-white);border:1px solid transparent;border-radius:5px;box-shadow:0 0 10px rgba(var(--dca-shadow),.25);background-clip:padding-box}div.cms .cms-dropdown-menu>li>a{display:block!important;padding:3px 20px!important;border:none!important;clear:both;font-weight:400;line-height:30px;float:none!important;font-size:14px!important;border-radius:0!important;padding-top:0!important;padding-bottom:0!important;height:30px;color:var(--dca-gray);white-space:nowrap}div.cms .cms-dropdown-menu>li>a.cms-btn-action,div.cms .cms-dropdown-menu>li>a.cms-btn-caution{color:var(--dca-white)}div.cms .cms-dropdown-menu .cms-toolbar-item-navigation-break{text-indent:-119988px;overflow:hidden;text-align:left;height:1px;margin:0 0 4px;padding:0 0 4px;border-bottom:1px solid var(--dca-gray-lighter)}div.cms .cms-toolbar-right .cms-dropdown-menu{left:auto;right:-1px}div.cms .cms-dropdown-menu>li>a{border-radius:none;background-color:none}div.cms .cms-dropdown-menu>li>a:focus,div.cms .cms-dropdown-menu>li>a:hover{text-decoration:none;color:var(--dca-white);background-color:var(--dca-primary)}div.cms .cms-dropdown-menu>li>a.cms-btn-active,div.cms .cms-dropdown-menu>li>a.cms-btn-active:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-active:hover,div.cms .cms-dropdown-open .cms-dropdown-menu>li>a.cms-dropdown-toggle{color:var(--dca-white);text-decoration:none;outline:0;background-color:var(--dca-primary)}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled{opacity:.2!important}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:hover{color:var(--dca-gray-light)}div.cms .cms-dropdown-menu>li>a.cms-btn-disabled,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:focus,div.cms .cms-dropdown-menu>li>a.cms-btn-disabled:hover{text-decoration:none!important;background-color:transparent!important;background-image:none!important;cursor:not-allowed!important}div.cms .cms-dropdown-open>.cms-dropdown-menu{display:block!important}div.cms .cms-dropdown-open .cms-dropdown-toggle{outline:0}div.cms .cms-dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:9999990}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-toggle{text-align:left!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-toggle .cms-dropdown-caret{position:absolute;right:15px;top:18px}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-menu{display:none!important;margin-left:0!important;width:100%!important;border:1px solid var(--dca-gray-lighter);border-bottom-left-radius:5px;border-bottom-right-radius:5px;margin-top:-1px}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-menu li>a.cms-btn{text-align:left}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-dropdown-open .cms-dropdown-menu{display:block!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group{display:table;width:100%}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn{display:table-cell;text-align:left!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn.cms-btn-action,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn.cms-btn-caution{color:var(--dca-white)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn:first-child{border-right:none!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn:last-child{width:40px;text-align:center!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-btn-group>.cms-btn .cms-dropdown-caret{position:static!important}div.cms .cms-btn-group>.cms-btn.cms-btn-action:last-child{border-left:1px solid #0096cc}div.cms .cms-btn-group>.cms-btn.cms-btn-caution:last-child{border-left:1px solid #c00}div.cms.cms.cms-toolbar-debug .cms-btn-group>.cms-btn.cms-btn-action:last-child{border-left:1px solid #caac04!important}div.cms .cms-toolbar{position:fixed;top:0;left:0;right:0;z-index:9999999;min-height:46px;margin-top:0;background-color:var(--dca-white);-webkit-backface-visibility:hidden;backface-visibility:hidden}div.cms .cms-toolbar:after{position:absolute;content:"";box-shadow:0 0 5px rgba(var(--dca-shadow),.2);top:100%;left:0;right:0;height:1px;margin-top:-1px;z-index:1;clip:rect(0,auto,10px,0);background:var(--dca-gray-lighter)!important}.cms-structure-mode-structure div.cms .cms-toolbar:after{right:45px}div.cms .cms-toolbar .cms-toolbar-left{position:absolute;left:0;top:0;z-index:10}div.cms .cms-toolbar .cms-toolbar-right{position:absolute;right:0;top:0;z-index:10;padding-right:46px}div.cms .cms-toolbar .cms-toolbar-left .cms-toolbar-item{margin-right:15px}div.cms .cms-toolbar .cms-toolbar-left .cms-toolbar-item:last-child{margin-right:0}div.cms .cms-toolbar .cms-toolbar-right .cms-toolbar-item{margin-right:15px}div.cms .cms-toolbar .cms-toolbar-item{float:left}.cms-toolbar-non-sticky{position:static!important}.cms-toolbar-non-sticky .cms .cms-toolbar{position:absolute}div.cms.cms-toolbar-debug .cms-debug-bar{position:absolute;left:0;right:0;top:0;z-index:99999999;height:3px;background-color:#fad507;z-index:30}.cms-structure-mode-structure div.cms.cms-toolbar-debug .cms-debug-bar{right:46px}div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action{background-color:#fad507;border-color:#fad507;color:var(--dca-black)}div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action:active,div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action:focus{background-color:#fad507;border-color:#fad507;color:#000}div.cms .cms-toolbar-item-navigation li{position:relative;float:left}div.cms .cms-toolbar-item-navigation li a{float:left;color:var(--dca-black);padding:0 10px;line-height:46px;height:46px;cursor:default}div.cms .cms-toolbar-item-navigation li ul{display:none}div.cms .cms-toolbar-item-navigation>li:first-child>a span{font-weight:600}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation a,div.cms .cms-toolbar-item-navigation .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-logo a{display:none;position:absolute;top:50%;right:7px;margin-top:-5px;font-size:10px;transform:rotate(180deg)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul{display:block;position:absolute;top:46px;left:0;min-width:180px;padding:4px 0 3px;border:1px solid var(--dca-white);border-top:none;border-radius:0 0 4px 4px;background-color:var(--dca-white);box-shadow:0 1.5px 1.5px rgba(var(--dca-shadow),.4)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul li{float:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul li a{display:block;float:none;white-space:nowrap;line-height:30px;height:30px;padding:0 25px 0 15px;cursor:pointer}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover ul ul{border-top:1px solid var(--dca-gray-lightest);border-radius:0 4px 4px 0}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children ul{display:none;top:-5px;left:100%}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a{cursor:default}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span{display:block}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-children>a span .cms-toolbar-item-logo a{display:block}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover>a{color:var(--dca-white)!important;background:var(--dca-primary)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-toolbar-item-navigation-active>a{font-weight:800}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-break{text-indent:-119988px;overflow:hidden;text-align:left;height:1px;margin:0 0 4px;padding:0 0 4px;border-bottom:1px solid var(--dca-gray-lighter)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a{cursor:default!important;opacity:.2}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:active,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:focus,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled a:hover{color:var(--dca-black)!important;background:0 0!important;box-shadow:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-disabled ul{display:none!important}div.cms .cms-toolbar-more{display:none}div.cms .cms-toolbar-more .cms-toolbar-item-navigation-children{padding:0}div.cms .cms-toolbar-more .cms-toolbar-item{float:none;margin:0 10px!important;overflow:hidden;margin-top:5px;margin-bottom:8px}div.cms .cms-toolbar-more .cms-toolbar-item-cms-mode-switcher a{float:left!important;width:50%}div.cms .cms-toolbar-more .cms-modal-item-buttons .cms-btn,div.cms .cms-toolbar-more .cms-toolbar-item-buttons .cms-btn{text-align:center}div.cms .cms-toolbar-more .cms-btn{color:var(--dca-gray)}div.cms .cms-toolbar-more .cms-btn-action{color:var(--dca-white)}div.cms .cms-toolbar-more .cms-more-buttons+.cms-toolbar-item-navigation-children{padding-top:8px;border-top:1px solid var(--dca-gray-lighter)}div.cms .cms-toolbar-more .cms-toolbar-item-dark-mode-toggle{display:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full{position:fixed;width:100%;width:100vw;top:46px;bottom:0;overflow-y:scroll;-webkit-overflow-scrolling:touch}div.cms .cms-toolbar-item-logo .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full a,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-icon,div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-toolbar-item-logo a{display:none!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full>li{border-bottom:1px solid var(--dca-gray-lighter)}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full .cms-more-buttons{border-bottom:none}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full li a:not(.cms-btn){color:var(--dca-black)!important;background:0 0!important}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full li a{position:relative;line-height:42px;height:42px;overflow:hidden;text-overflow:ellipsis}div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover .cms-more-dropdown-full ul{display:block!important;border:none;box-shadow:none;position:relative;left:0;top:0;border-radius:0;margin-left:20px}div.cms .cms-toolbar-item-cms-mode-switcher{position:absolute;right:0;top:0;position:absolute;right:0;top:0;width:46px;height:46px;margin-right:0!important}div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn{position:absolute;right:0;top:0;border-top:0!important;border-right:0!important;width:46px;height:45px;display:block;border-radius:0;border-bottom:0;clip:rect(0,46px,46px,0)}div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn .cms-icon,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-toolbar-item-cms-mode-switcher .cms-btn a{position:absolute;left:23px;top:23px;margin-left:-10px;margin-top:-9px;font-size:20px!important}div.cms .cms-dropdown-open .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-dropdown-toggle,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-dropdown-open .cms-btn.cms-dropdown-toggle{height:46px}div.cms .cms-dropdown-open .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-dropdown-toggle,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active:active,div.cms .cms-toolbar-item-cms-mode-switcher .cms-btn.cms-btn-active:focus,div.cms .cms-toolbar-item-cms-mode-switcher .cms-dropdown-open .cms-btn.cms-dropdown-toggle{border-color:var(--dca-gray-lighter)!important;background-color:var(--dca-gray-super-lightest)!important}div.cms .cms-messages{display:none;position:fixed;top:46px;z-index:999999;color:var(--dca-white);font-size:12px;font-weight:200;line-height:16px;width:300px;min-height:16px;margin:0;padding:6px 10px 8px;border-radius:0 0 3px 3px;background:rgba(var(--dca-shadow),.74);transition:top .2s}div.cms .cms-messages *{color:var(--dca-white);font-size:12px;font-weight:200;line-height:16px}div.cms .cms-messages a{color:var(--dca-primary)}div.cms .cms-messages a:hover{text-decoration:underline}div.cms .cms-messages strong{color:var(--dca-primary);filter:brightness(1.1);font-weight:200}div.cms .cms-messages ul{display:inline;color:var(--dca-white)}div.cms .cms-messages ul li{display:inline;color:var(--dca-white);font-weight:200}div.cms .cms-messages .cms-messages-close{cursor:pointer;display:none;float:right;position:relative;width:20px;height:16px;text-align:right}div.cms .cms-messages .cms-messages-close span{font-size:10px}div.cms .cms-messages .cms-messages-close:hover span{color:var(--dca-primary)}div.cms .cms-messages-error strong{color:red}div.cms .cms-toolbar-item-logo{margin-right:0!important}div.cms .cms-toolbar-item-logo a{color:var(--dca-black);font-size:21px;line-height:46px;height:46px;transition:color .2s;padding-left:15px;padding-right:15px}div.cms .cms-toolbar-item-logo a span{display:none}div.cms .cms-toolbar-item-logo a:active,div.cms .cms-toolbar-item-logo a:focus,div.cms .cms-toolbar-item-logo a:hover{color:var(--dca-primary)}div.cms .cms-form-login label{display:inline-block;vertical-align:middle;line-height:46px;padding-left:15px;margin:0;cursor:pointer}div.cms .cms-form-login label span{display:inline-block}div.cms .cms-form-login input[type=password],div.cms .cms-form-login input[type=text]{display:inline-block;color:var(--dca-gray);font-size:14px;height:26px;line-height:26px;width:100px;margin:0;padding:0 5px;border:1px solid var(--dca-gray-lighter);border-radius:3px;box-shadow:0 1px 0 var(--dca-white);text-transform:none}div.cms .cms-form-login input[type=password]:focus,div.cms .cms-form-login input[type=text]:focus{transition:outline .2s;border-color:var(--dca-primary);box-shadow:inset 0 0 2px var(--dca-gray-lighter)}div.cms .cms-form-login input[type=submit]{display:block;font-size:13px;text-transform:uppercase;height:26px;line-height:26px;padding:0 15px}div.cms .cms-form-login input[type=submit]:-moz-focus-inner{border:0}div.cms .cms-form-login .cms-error{color:red}div.cms .cms-form-login .cms-error input{border:1px solid red}@media (max-width:488px){div.cms .cms-form-login{margin-left:-110px}}@media (max-width:768px){div.cms .cms-form-login{position:relative;font-size:1px;line-height:0;background:var(--dca-white)}div.cms .cms-form-login label{position:relative;padding:0;margin-right:-1px;margin-bottom:-1px}div.cms .cms-form-login label span{position:absolute;left:5px;top:0;z-index:1;color:var(--dca-gray-light)}div.cms .cms-form-login input[type=text]{border-radius:3px 0 0 3px}div.cms .cms-form-login input[type=password]{border-radius:0}div.cms .cms-form-login input[type=password],div.cms .cms-form-login input[type=text]{position:relative;z-index:10;width:95px}div.cms .cms-form-login input[type=password]:focus,div.cms .cms-form-login input[type=password]:valid,div.cms .cms-form-login input[type=text]:focus,div.cms .cms-form-login input[type=text]:valid{background:var(--dca-white)}div.cms .cms-form-login input[type=submit]{border-radius:0 3px 3px 0;padding:0 7.5px}}div.cms .cms-modal-item-buttons,div.cms .cms-toolbar-item-buttons{margin:8px 0 8px}div.cms .cms-modal-item-buttons a,div.cms .cms-toolbar-item-buttons a{float:left;line-height:30px;height:30px;font-size:12px;padding:0 12px}div.cms .cms-modal-item-buttons a:first-child,div.cms .cms-toolbar-item-buttons a:first-child{border-radius:3px 0 0 3px}div.cms .cms-modal-item-buttons a:last-child,div.cms .cms-toolbar-item-buttons a:last-child{margin-left:-1px;border-radius:0 3px 3px 0}div.cms .cms-modal-item-buttons a:only-child,div.cms .cms-toolbar-item-buttons a:only-child{border-radius:3px}div.cms .cms-screenblock{position:fixed;top:0;right:0;z-index:100;color:var(--dca-white);text-align:center;width:100%;height:100%;background-color:rgba(var(--dca-shadow),.9)}div.cms .cms-screenblock-inner{margin-top:300px}div.cms .cms-screenblock-inner h1{font-size:28px;line-height:30px}div.cms .cms-screenblock-inner h1,div.cms .cms-screenblock-inner p{color:var(--dca-gray-light);text-align:center}div.cms .cms-screenblock-inner a{color:var(--dca-white)}div.cms .cms-screenblock-inner a:hover{text-decoration:underline}.cms-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}div.cms .cms-loading-bar{background:var(--dca-primary);position:fixed;z-index:99999999;top:0;left:0;width:100%;height:3px}div.cms .cms-loading-peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px var(--dca-primary);opacity:1;transform:rotate(3deg) translate(0,-4px)}div.cms .cms-modal{display:none;position:fixed;top:50%;left:50%;overflow:hidden;z-index:9999999;border-radius:5px;background:var(--dca-white);box-shadow:0 0 20px rgba(var(--dca-shadow),.5);-webkit-user-select:none;-ms-user-select:none;user-select:none;opacity:0;transform:translate3d(0,-10%,0);transition:transform 150ms,opacity 150ms}.cms-structure-mode-structure div.cms .cms-modal{transform:translate3d(10%,0,0)}.cms-modal-maximized div.cms .cms-modal{right:0;bottom:0;top:0!important;left:0!important;border-radius:0;margin:0!important;width:auto!important;height:auto!important}.cms-modal-maximized div.cms .cms-modal .cms-modal-title{cursor:default}.cms-modal-minimized div.cms .cms-modal{width:auto!important;height:auto!important;top:1px!important;margin:0!important}.cms-modal-minimized div.cms .cms-modal .cms-modal-body,.cms-modal-minimized div.cms .cms-modal .cms-modal-breadcrumb,.cms-modal-minimized div.cms .cms-modal .cms-modal-foot{display:none!important}.cms-modal-minimized div.cms .cms-modal .cms-modal-title{cursor:default;padding-right:90px}.cms-modal-minimized div.cms .cms-modal .cms-modal-title-suffix{display:none}.cms-modal-minimized div.cms .cms-modal .cms-modal-minimize{right:33px}div.cms .cms-modal-morphing{transition:all .2s}div.cms .cms-modal-open{opacity:1}.cms-structure-mode-structure div.cms .cms-modal-open,div.cms .cms-modal-open{transform:translate3d(0,0,0)}div.cms .cms-modal-body{position:absolute;z-index:10;left:0;top:46px;right:0;bottom:46px;border-top:1px solid var(--dca-gray-lighter);background:var(--dca-white);border-bottom:1px solid var(--dca-gray-lighter)}div.cms .cms-modal-foot{position:absolute;overflow:hidden;clear:both;height:46px;left:0;bottom:0;right:0;z-index:11}div.cms .cms-modal-shim{display:none;position:absolute;top:0;left:0;z-index:20;width:100%;height:100%}div.cms .cms-modal-frame{position:relative;z-index:10;width:100%;height:100%;-webkit-overflow-scrolling:touch;overflow-y:auto}div.cms .cms-modal-frame iframe{display:block;width:100%;height:100%}div.cms .cms-modal-head{position:relative}div.cms .cms-modal-title{display:block;color:var(--dca-gray-darker);font-size:16px;font-weight:700;line-height:46px;min-height:46px;padding:0 20px;cursor:move;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-right:100px}div.cms .cms-modal-title .cms-modal-title-suffix{font-weight:400;padding-left:10px}div.cms .cms-modal-close,div.cms .cms-modal-maximize,div.cms .cms-modal-minimize{display:block;position:absolute;top:50%;margin-top:-15px;right:10px;color:var(--dca-gray-light);text-align:center;width:30px;height:30px;cursor:pointer}div.cms .cms-modal-close:before,div.cms .cms-modal-maximize:before,div.cms .cms-modal-minimize:before{position:relative;top:7px}div.cms .cms-modal-close:hover,div.cms .cms-modal-maximize:hover,div.cms .cms-modal-minimize:hover{color:var(--dca-primary)}div.cms .cms-modal-minimize{right:70px}.cms-modal-minimized div.cms .cms-modal-minimize{color:var(--dca-primary)}.cms-modal-minimized div.cms .cms-modal-minimize:before{content:"\E030"}.cms-modal-maximized div.cms .cms-modal-minimize{display:none!important}div.cms .cms-modal-maximize{right:40px}.cms-modal-minimized div.cms .cms-modal-maximize{display:none!important}.cms-modal-maximized div.cms .cms-modal-maximize{color:var(--dca-primary)}.cms-modal-maximized div.cms .cms-modal-maximize:before{content:"\E024"}div.cms .cms-modal-resize{position:absolute;right:0;bottom:0;z-index:102;font-size:10px;color:var(--dca-gray-light);width:25px;height:25px;cursor:nw-resize}div.cms .cms-modal-resize span{position:absolute;bottom:5px;right:5px;font-size:12px}div.cms .cms-modal-breadcrumb{display:none!important;font-size:14px;line-height:40px;padding:0 20px;border-top:1px solid var(--dca-gray-lighter);overflow-y:hidden;overflow-x:scroll;height:80px;width:100%;white-space:nowrap;-webkit-overflow-scrolling:touch}div.cms .cms-modal-breadcrumb a{color:var(--dca-primary)}div.cms .cms-modal-breadcrumb a:hover{filter:brightness(.8)}div.cms .cms-modal-breadcrumb a:after{content:"/";color:var(--dca-gray-lighter);text-decoration:none;padding:0 10px}div.cms .cms-modal-breadcrumb a.active{color:var(--dca-gray-light)}div.cms .cms-modal-breadcrumb a:last-child:after{content:""}div.cms .cms-modal-buttons{position:absolute;top:0;right:0;left:0;z-index:101;padding:0 25px 0 10px}div.cms .cms-modal-item-buttons{float:right;margin-left:8px}div.cms .cms-modal-item-buttons .cancel-link{display:none}div.cms .cms-modal-item-buttons-left{float:left}div.cms .cms-modal-markup .cms-modal-foot{height:23px}div.cms .cms-modal-markup .cms-modal-body{bottom:23px}div.cms .cms-modal-has-breadcrumb .cms-modal-body{top:86px!important}div.cms .cms-modal-has-breadcrumb .cms-modal-breadcrumb{display:block!important}.cms-modal-maximized{overflow:hidden!important}.cms-modal-maximized .cms.cms-toolbar-debug .cms-modal{top:3px!important}.cms-modal-minimized .cms.cms-toolbar-debug .cms-modal{top:4px!important}div.cms .cms-sideframe{display:none;position:fixed;top:0;left:0;width:0;bottom:0;z-index:999999}@media (max-width:768px){div.cms .cms-sideframe{width:100%!important}}div.cms .cms-sideframe-frame{position:absolute;left:0;top:0;-webkit-overflow-scrolling:touch;overflow-y:auto;z-index:10;width:100%;height:100%;background:var(--dca-white);-webkit-backface-visibility:hidden}div.cms .cms-sideframe-frame iframe{-webkit-overflow-scrolling:touch;overflow-y:auto;transform:translateZ(0);display:block;width:100%;height:100%;border:none;background:var(--dca-white)}div.cms .cms-sideframe-shim{position:absolute;top:0;left:0;z-index:5;width:100%;height:100%;background:0 0}div.cms .cms-sideframe-controls{position:absolute;top:51px;right:20px;z-index:40;box-shadow:0 0 5px rgba(var(--dca-shadow),.2);background-color:var(--dca-white);border-radius:3px;border:1px solid var(--dca-gray-lighter)}div.cms.cms-toolbar-debug .cms-sideframe-controls{top:54px}div.cms .cms-sideframe-close,div.cms .cms-sideframe-history{display:inline-block;position:relative;cursor:pointer;vertical-align:top;font-size:12px;color:var(--dca-gray-darker);text-align:center;width:32px;height:32px}div.cms .cms-sideframe-close span,div.cms .cms-sideframe-history span{position:absolute;top:50%;left:50%;margin-left:-8px;margin-top:-8px}div.cms .cms-sideframe-close span:hover,div.cms .cms-sideframe-history span:hover{color:var(--dca-gray-darkest)}div.cms .cms-sideframe-history{width:65px;border-right:1px solid var(--dca-gray-lighter)}div.cms .cms-sideframe-history .cms-icon,div.cms .cms-sideframe-history .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-sideframe-history a{float:left;position:relative;left:0;top:0;padding:8px 4px 8px 12px;margin:0}div.cms .cms-sideframe-history .cms-icon-arrow-forward{padding:8px 12px 8px 4px}div.cms .cms-sideframe-history .cms-icon-arrow-forward:before{content:"\E005"}div.cms .cms-sideframe-history .cms-icon-disabled{opacity:.5;cursor:not-allowed}div.cms .cms-sideframe-dimmer{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;background:rgba(var(--dca-shadow),.6)}div.cms .cms-droppable{position:relative;z-index:1000;line-height:0;height:0;min-height:0;box-shadow:0 0 0 2px var(--dca-primary);transform:translateY(2px)}.cms-draggable+div.cms .cms-droppable{transform:translateY(-2px)}div.cms .cms-droppable:before{content:"";position:absolute;top:-8px;left:-4px;width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:8px solid var(--dca-primary)}div.cms .cms-draggables>.cms-droppable:first-child{transform:translateY(-2px)}div.cms .cms-draggables>.cms-droppable:only-child{transform:translateY(2px)}div.cms .cms-structure{display:none;position:fixed;top:0;overflow:hidden;z-index:9999;width:100%;height:100%;background:var(--dca-gray-super-lightest)}div.cms .cms-structure .cms-structure-content{position:relative;overflow-y:scroll;top:0;left:0;padding:46px 5%;z-index:100;width:100%;height:100%;-webkit-user-select:none;-ms-user-select:none;user-select:none;transform:translateZ(0);-webkit-overflow-scrolling:touch}@media (max-width:480px){div.cms .cms-structure .cms-structure-content{padding-right:0;padding-left:0}}div.cms .cms-structure .cms-dragarea{position:static;max-width:980px;margin:20px auto;padding:10px 28px}div.cms .cms-structure .cms-dragbar .cms-submenu-item-highlight{display:none}div.cms .cms-structure .cms-dragarea-static>.cms-draggables{display:none}div.cms .cms-structure .cms-dragarea-static>.cms-dragbar>.cms-btn{display:none}div.cms .cms-structure .cms-dragarea-static .cms-dragarea-static-icon{position:relative;top:2px}div.cms .cms-structure .cms-dragarea-static-expanded>.cms-draggables{display:block}div.cms .cms-structure .cms-dragarea-static-expanded>.cms-dragbar>.cms-btn{display:block}div.cms .cms-structure .cms-dragbar{position:relative;top:0;left:0;font-size:14px;line-height:20px;padding-left:7px;border-radius:3px}div.cms .cms-structure .cms-dragbar .cms-dragbar-title{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;color:var(--dca-black);font-size:16px;font-weight:700;line-height:44px;height:44px;margin-right:97px}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler{position:absolute;right:0;background-image:linear-gradient(to right,rgba(var(--dca-gray-super-lightest),0) 0,var(--dca-gray-super-lightest) 40px);padding-left:50px;font-weight:400;text-transform:uppercase;margin-left:30px;cursor:pointer}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler a{color:var(--dca-gray)!important;font-size:12px!important}div.cms .cms-structure .cms-dragbar .cms-dragbar-toggler a:hover{color:var(--dca-gray)!important;filter:brightness(.9)}div.cms .cms-structure .cms-dragbar .cms-dragbar-collapse-all{display:none}div.cms .cms-structure .cms-dragbar .cms-dragbar-expand-all{display:inline}div.cms .cms-structure .cms-dragbar .cms-dragbar-title-expanded .cms-dragbar-collapse-all{display:inline}div.cms .cms-structure .cms-dragbar .cms-dragbar-title-expanded .cms-dragbar-expand-all{display:none}div.cms .cms-structure .cms-dragbar-empty{font-size:12px;text-transform:uppercase;padding-top:0;padding-bottom:0}div.cms .cms-structure .cms-dragarea-empty .cms-dragbar-empty-wrapper{display:block!important}div.cms .cms-structure .cms-dragarea-empty .cms-dragbar-toggler{display:none}div.cms .cms-structure .cms-draggables{margin:0;padding:0;list-style-type:none}div.cms .cms-structure .cms-draggables.cms-hidden{display:none!important}div.cms .cms-structure .cms-draggables .cms-draggables{padding-left:30px}div.cms .cms-structure .cms-dragarea-empty .cms-draggables-root{position:relative;min-height:50px;border:2px solid var(--dca-gray-lighter);border-radius:3px}div.cms .cms-structure .cms-draggable{display:block!important;top:0;left:0;white-space:nowrap;margin-left:0!important;padding:0;border-radius:3px;list-style-type:none;-ms-touch-action:none;touch-action:none}div.cms .cms-structure .cms-draggable .cms-draggable{border-color:var(--dca-gray-lighter)}div.cms .cms-structure .cms-draggable .cms-draggable:hover{border-color:var(--dca-gray-light)}div.cms .cms-structure .cms-draggable .cms-submenu-dropdown-top{top:46px}div.cms .cms-structure .cms-draggable .cms-submenu-dropdown-bottom{bottom:46px}div.cms .cms-structure .cms-draggable .cms-dragitem{line-height:26px;border:2px solid var(--dca-gray-super-lightest)}div.cms .cms-structure .cms-draggable .cms-dragitem-text{display:block;position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-right:128px;padding:10px 28px}div.cms .cms-structure .cms-draggable .cms-dragitem-collapsable .cms-dragitem-text{padding-left:50px}div.cms .cms-structure .cms-collapsable-container.cms-hidden>.cms-draggable{display:none!important}div.cms .cms-structure .cms-draggable-success{position:relative}div.cms .cms-structure .cms-draggables-empty{display:none}div.cms .cms-structure .cms-dragarea-empty .cms-droppable{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:1;color:var(--dca-gray);line-height:26px;height:auto;margin:0;border:2px solid var(--dca-primary);border-radius:3px;background-color:rgba(0,187,255,.2);box-shadow:none;transform:translateY(0)!important}div.cms .cms-structure .cms-dragarea-empty .cms-droppable:before{display:none}div.cms .cms-structure .cms-dragarea-empty .cms-droppable.cms-draggable-disallowed{border:2px solid red;background:rgba(255,0,0,.1)}div.cms .cms-structure .cms-dragarea-empty .cms-draggables-empty{display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;color:var(--dca-gray);line-height:44px;padding-left:20px}div.cms .cms-structure .cms-dragarea-empty>.cms-draggables-root>.cms-add-plugin-placeholder{position:absolute;right:0;left:0;height:50px;margin:-2px}div.cms .cms-structure .cms-draggable{color:var(--dca-black)}div.cms .cms-structure .cms-draggable-is-dragging{z-index:1;width:200px!important;height:46px!important;border-radius:0;transform:translateZ(0)}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem{color:var(--dca-white)!important;border:none;border-radius:0;background-color:var(--dca-primary)!important;background-image:none!important}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem:before{display:none;color:var(--dca-white)}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem .cms-draggables{display:none}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem .cms-dragitem-text{padding-left:28px}div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem-text{margin-right:0}div.cms .cms-structure .cms-draggable-is-dragging.cms-draggable-from-clipboard .cms-dragitem-text{margin-right:20px}div.cms .cms-structure .cms-draggable-is-dragging.cms-draggable-disabled>.cms-draggable{display:none!important}div.cms .cms-structure .cms-draggable-stack{overflow:hidden;height:46px!important;box-shadow:1px 1px 1px rgba(var(--dca-black),.2),4px 4px 0 0 var(--dca-primary)}div.cms .cms-structure .cms-dragitem{position:relative;border-radius:5px;cursor:move;background:var(--dca-white);background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAABCCAAAAAB73glBAAAAAnRSTlMAAHaTzTgAAAAeSURBVHgBY7gCBgxAAGHRRoAKYOi5dNSloy4ddSkA3VChcDH0cxcAAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:10px 50%;background-size:8px 33px}div.cms .cms-structure .cms-dragitem:hover{box-shadow:inset 0 0 0 1px var(--dca-gray-light)}div.cms .cms-structure .cms-dragitem-collapsable:before{content:"\E006"}div.cms .cms-structure .cms-dragitem-collapsable:before{position:absolute;top:50%;left:12px;color:var(--dca-gray);font-size:12px;margin-top:-6px;margin-left:18px;cursor:pointer;transform:rotate(180deg)}div.cms .cms-structure .cms-dragitem-collapsable .cms-dragitem-text{cursor:pointer}div.cms .cms-structure .cms-dragitem-expanded:before{transform:rotate(-90deg)}div.cms .cms-structure .cms-draggable-selected .cms-dragitem,div.cms .cms-structure .cms-draggable-selected .cms-dragitem strong{color:#007bff}div.cms .cms-structure .cms-draggable-selected .cms-draggable .cms-dragitem,div.cms .cms-structure .cms-draggable-selected .cms-draggable .cms-dragitem strong{color:var(--dca-black)}div.cms .cms-structure .cms-draggable-allowed,div.cms .cms-structure .cms-draggable-hover-allowed,div.cms .cms-structure .cms-draggable-placeholder{color:#ccf1ff;border-color:#ccf1ff}div.cms .cms-structure .cms-draggable-hover-allowed,div.cms .cms-structure .cms-draggable-placeholder{color:var(--dca-white);background:rgba(var(--dca-primary),.2)}div.cms .cms-structure .cms-draggable-disallowed,div.cms .cms-structure .cms-draggable-hover-disallowed{color:red;background:rgba(255,0,0,.1);box-shadow:0 0 0 2px red}div.cms .cms-structure .cms-draggable-disallowed:before,div.cms .cms-structure .cms-draggable-hover-disallowed:before{display:none}div.cms .cms-structure .cms-draggable-disabled .cms-submenu{display:none}div.cms .cms-structure .cms-draggable-disabled>.cms-dragitem .cms-submenu,div.cms .cms-structure .cms-draggable-disabled>.cms-dragitem-collapsable .cms-submenu{display:block}div.cms .cms-structure .cms-draggable-disabled .cms-draggable{margin-left:30px!important;margin-left:15px}div.cms .cms-structure .cms-draggable-disabled .cms-draggable .cms-dragitem{background-image:none}div.cms .cms-structure .cms-draggable-disabled .cms-draggable .cms-dragitem:hover{box-shadow:none}div.cms .cms-structure .cms-draggable-disabled .cms-draggables,div.cms .cms-structure .cms-draggable-disabled .cms-droppable{display:none!important}div.cms .cms-structure .cms-plugin-disabled{position:absolute;top:50%;right:5px;width:36px;height:36px;margin-top:-18px}div.cms .cms-structure .cms-plugin-disabled .cms-icon,div.cms .cms-structure .cms-plugin-disabled .cms-toolbar-item-logo a,div.cms .cms-toolbar-item-logo .cms-structure .cms-plugin-disabled a{position:absolute;top:50%;left:50%;color:var(--dca-gray);font-size:20px;margin-top:-10px;margin-left:-10px}div.cms .cms-structure .cms-is-dragging{display:block!important;opacity:.3}div.cms .cms-structure.cms-structure-condensed{width:416px;right:0;box-shadow:0 0 5px 0 rgba(0,0,0,.2)}div.cms .cms-structure.cms-structure-condensed .cms-structure-content{padding-left:15px;padding-right:15px;overflow-x:hidden}div.cms .cms-structure.cms-structure-condensed .cms-draggables .cms-draggables{padding-left:15px}div.cms .cms-structure.cms-structure-condensed .cms-draggable-disabled .cms-draggable{margin-left:15px!important}div.cms .cms-structure.cms-structure-condensed .cms-dragitem{line-height:24px;background-size:8px 28px}div.cms .cms-structure.cms-structure-condensed .cms-dragitem-text{padding-top:8px;padding-bottom:8px;margin-right:110px;padding-right:5px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea-empty .cms-draggables-root{min-height:43px}div.cms .cms-structure.cms-structure-condensed .cms-draggables-empty{line-height:40px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea-empty>.cms-draggables-root>.cms-add-plugin-placeholder{height:44px}div.cms .cms-structure.cms-structure-condensed .cms-add-plugin-placeholder{line-height:38px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-btn{width:32px;height:32px;margin-top:-16px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-add{right:39px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-edit{right:75px}div.cms .cms-structure.cms-structure-condensed .cms-submenu-dropdown-settings .cms-submenu-item a,div.cms .cms-structure.cms-structure-condensed .cms-submenu-dropdown-settings .cms-submenu-item a:before{line-height:40px;min-height:40px}div.cms .cms-structure.cms-structure-condensed .cms-dragarea{padding:0}div.cms .cms-structure.cms-structure-condensed .cms-dragbar-title{margin-right:82px}div.cms .cms-structure.cms-structure-condensed .cms-draggable-stack{height:40px!important}.cms-dragitem-success{position:absolute;top:-2px;right:-2px;bottom:-2px;left:-2px;z-index:1000;border:1px solid var(--dca-primary)!important;background:rgba(0,187,255,.2)!important;border-radius:3px;opacity:.6}.cms-dragitem-success.cms-plugin-overlay-see-through{top:-3px;right:-3px;left:-3px;bottom:-3px;border-width:3px!important;background:0 0!important;opacity:.6;pointer-events:none}.cms-dragitem-success.cms-plugin-overlay-prominent{box-shadow:0 0 20px var(--dca-primary)}.ui-sortable-helper.cms-draggable .cms-submenu-btn{display:none!important}.ui-sortable-helper.cms-draggable .cms-draggables{display:none!important}.cms-overflow{overflow:hidden!important}.cms-content-reloading{position:fixed;width:100%;left:0;top:0;bottom:0;background:var(--dca-white)!important;opacity:.5;z-index:9999}div.cms .cms-submenu-btn{display:block;position:absolute;right:5px;width:36px;height:36px;cursor:pointer;top:50%;margin-top:-18px}div.cms .cms-submenu-btn:before{content:"\E023"}div.cms .cms-submenu-btn:before{position:absolute;left:50%;top:50%;margin-left:-8px;margin-top:-8px;color:var(--dca-gray)}div.cms .cms-submenu-btn .cms-hover-tooltip{position:absolute;left:0;top:0;right:0;bottom:0}div.cms .cms-dragbar .cms-submenu-btn{margin-right:2px;background-color:transparent}div.cms .cms-dragbar .cms-dropdown-open .cms-submenu-btn.cms-dropdown-toggle,div.cms .cms-dragbar .cms-submenu-btn.cms-btn-active,div.cms .cms-dragbar .cms-submenu-btn:active,div.cms .cms-dropdown-open .cms-dragbar .cms-submenu-btn.cms-dropdown-toggle{color:var(--dca-gray)!important;filter:brightness(.9)}div.cms .cms-submenu-settings{border:none}div.cms .cms-submenu-edit{right:87px}div.cms .cms-submenu-edit:before{content:"\E016"}div.cms .cms-submenu-add{right:46px}div.cms .cms-submenu-add:before{content:"\E030"}div.cms .cms-submenu-add:before,div.cms .cms-submenu-edit:before{margin-left:-8px;margin-top:-8px;font-size:16px}div.cms .cms-submenu-lang{position:absolute;top:50%;height:20px;margin-top:-10px;line-height:18px;right:10px;padding:0 5px;border:1px solid var(--dca-gray-lighter);border-radius:3px}div.cms .cms-structure-content .cms-submenu-lang{display:none}div.cms .cms-submenu-dropdown-top{top:44px}div.cms .cms-submenu-dropdown-bottom{bottom:44px}div.cms .cms-submenu-dropdown-settings{display:none;position:absolute;z-index:1002;min-width:180px;background:var(--dca-white);border-radius:5px;box-shadow:0 0 10px rgba(var(--dca-shadow),.25);right:46px;transform:translateZ(0)}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a{position:relative;display:block;font-size:14px;text-align:left;padding:0 20px;line-height:46px;min-height:46px;padding-left:40px;color:var(--dca-gray)}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:hover{color:var(--dca-white);background:var(--dca-primary)}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon]:before,div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-rel]:before{position:absolute;left:14px;top:0;height:46px;line-height:46px}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=copy]:before{content:"\E013"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=paste]:before{content:"\E02A"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=cut]:before{content:"\E014"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=bin]:before{content:"\E008"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=alias]:before{content:"\E002"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item a[data-cms-icon=highlight]:before{content:"\E01A"}div.cms .cms-submenu-dropdown-settings .cms-submenu-item:first-child a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item:first-child a:hover{border-radius:5px 5px 0 0}div.cms .cms-submenu-dropdown-settings .cms-submenu-item:last-child a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item:last-child a:hover{border-radius:0 0 5px 5px}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-paste-tooltip{display:none}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled{position:relative}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a,div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a:focus,div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled a:hover{cursor:default!important;opacity:.2;color:var(--dca-gray)!important;background:0 0!important;box-shadow:none}div.cms .cms-submenu-dropdown-settings .cms-submenu-item-disabled .cms-submenu-item-paste-tooltip{cursor:default;position:absolute;left:0;top:0;right:0;bottom:0}div.cms .cms-submenu-dropdown-settings:before{z-index:-1;position:absolute;content:"";left:100%;width:10px;height:10px;margin-left:-5px;transform:rotate(45deg);background-color:var(--dca-white);box-shadow:0 0 10px rgba(var(--dca-shadow),.25)}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-top{top:0!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-top:before{top:18px!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom{bottom:0!important}div.cms .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom:before{bottom:18px!important}div.cms .cms-submenu-dropdown-settings .cms-dropdown-inner{z-index:1;background-color:var(--dca-white);border-radius:5px}div.cms .cms-dragbar .cms-submenu-dropdown-settings.cms-submenu-dropdown-top:before{top:14px!important}div.cms .cms-dragbar .cms-submenu-dropdown-settings.cms-submenu-dropdown-bottom:before{bottom:12px!important;bottom:14px!important}div.cms .cms-z-index-9999{z-index:9999!important}div.cms .cms-clipboard{display:none}div.cms .cms-clipboard-containers{display:none!important}div.cms .cms-clipboard-containers .cms-dragarea{padding-top:3px}div.cms .cms-clipboard-containers .cms-draggable{display:block!important;position:relative;top:0;left:0;border-radius:3px;cursor:move}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem{line-height:46px;height:46px;padding-left:20px}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem .cms-submenu-btn{display:none!important}div.cms .cms-clipboard-containers .cms-draggable .cms-dragitem-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:40px}div.cms .cms-clipboard-containers .cms-plugins{display:none}div.cms .cms-clipboard-containers .cms-droppable{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;color:var(--dca-gray-light);line-height:26px;height:auto;margin:0;border:2px solid var(--dca-primary);border-radius:3px;background-color:rgba(0,187,255,.2);box-shadow:none;transform:translateY(0)!important}div.cms .cms-clipboard-containers .cms-droppable:before{display:none}div.cms .cms-modal-markup .cms-clipboard-containers{display:block!important}div.cms .cms-modal-markup .cms-clipboard-containers .cms-is-dragging{display:block!important;opacity:.3}div.cms .cms-plugin-picker{display:none}div.cms .cms-plugin-picker .cms-submenu-item.cms-submenu-item-title{position:sticky;top:0;z-index:1;background-color:var(--dca-white)}div.cms .cms-plugin-picker .cms-submenu-item a,div.cms .cms-plugin-picker span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:32px;text-align:left;min-height:32px;padding:0 20px}div.cms .cms-plugin-picker .cms-submenu-item a{color:var(--dca-black);border-top:1px solid transparent;border-bottom:1px solid transparent}div.cms .cms-plugin-picker .cms-submenu-item a:hover{color:var(--dca-primary);border-top:1px solid var(--dca-primary);border-bottom:1px solid var(--dca-primary)}div.cms .cms-plugin-picker .cms-submenu-item a:focus{color:var(--dca-white);background:var(--dca-primary);border-top:1px solid var(--dca-primary);border-bottom:1px solid var(--dca-primary)}div.cms .cms-plugin-picker .cms-submenu-item span{color:var(--dca-black);font-weight:700;border-bottom:1px solid var(--dca-gray-lighter);cursor:default}div.cms .cms-modal-markup .cms-plugin-picker{display:block}div.cms .cms-quicksearch{display:none;position:relative;height:40px;border-bottom:1px solid var(--dca-gray-lighter);cursor:default}div.cms .cms-quicksearch label{display:block;width:100%;height:100%;cursor:pointer}div.cms .cms-quicksearch input{display:block;width:100%;height:100%;padding:0 20px;border:none;background-color:var(--dca-gray-lightest);-webkit-border-radius:0;-webkit-appearance:none;appearance:none}div.cms .cms-modal-markup .cms-quicksearch{display:block}div.cms .cms-add-plugin-placeholder{position:relative;z-index:3;color:var(--dca-primary);line-height:44px;padding-left:20px;border:2px solid var(--dca-primary);border-radius:3px;background-color:var(--dca-white)}div.cms .cms-add-plugin-placeholder:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,187,255,.4)}div.cms .cms-shortcuts{padding:0 20px;margin-bottom:20px}div.cms .cms-shortcuts h2{padding-top:20px;padding-left:8px;font-weight:700;margin-bottom:5px}div.cms .cms-shortcut{clear:both}div.cms .cms-shortcut-key-wrapper{width:100px;text-align:right;vertical-align:top;padding-bottom:5px;white-space:nowrap}div.cms .cms-shortcut-key{display:inline-block;background-color:var(--dca-gray-lightest);padding:3px 6px;border-radius:3px;font-family:"Operator Mono",Menlo,Monaco,Consolas,monospace;border-top:1px solid var(--dca-gray-super-lightest);box-shadow:inset 0 0 25px var(--dca-gray-lightest),0 1px 0 var(--dca-gray-light),0 2px 0 var(--dca-gray-light),0 2px 3px var(--dca-gray-darkest);text-shadow:0 1px 0 var(--dca-gray-super-lightest)}div.cms .cms-shortcut-desc{padding:3px 10px;width:100%;padding-bottom:5px}div.cms :not(.cms-modal):focus{outline:2px dotted var(--dca-gray-darker);outline-offset:-3px}div.cms :not(.cms-modal):focus::-moz-focus-inner{border:0!important}@media screen and (-webkit-min-device-pixel-ratio:0){div.cms :not(.cms-modal):focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}div.cms :not(.cms-modal):focus .cms-hover-tooltip{display:none}div.cms .cms-pagetree-node-state{box-sizing:border-box;display:inline-block;width:16px;height:16px;border-radius:100%;border:2px solid var(--dca-white);background:var(--dca-white);vertical-align:top}div.cms .cms-btn .cms-pagetree-node-state{vertical-align:middle;margin-right:5px;margin-top:-4px}div.cms .cms-btn:hover .cms-pagetree-node-state-dirty{box-shadow:0 0 0 1px #fff}div.cms .cms-pagetree-node-state-empty{border-color:var(--dca-gray-light);background-color:var(--dca-white)}div.cms .cms-pagetree-node-state-unpublished,div.cms .cms-pagetree-node-state-unpublished-parent{border-color:var(--dca-gray-light);background-color:var(--dca-gray-light)}div.cms .cms-pagetree-node-state-archived{border-color:var(--dca-gray-light);background-color:var(--dca-gray-lighter)}div.cms .cms-pagetree-node-state-public,div.cms .cms-pagetree-node-state-published{border-color:#693;background-color:#693}div.cms .cms-pagetree-node-state-draft{border-color:var(--dca-primary);background-color:var(--dca-white)}div.cms .cms-pagetree-node-state-dirty{animation:pulsate 2.5s ease-out infinite;border-color:var(--dca-primary);background-color:var(--dca-primary)}div.cms .cms-pagetree-node-state-deletion{border-color:red;background-color:red}@keyframes pulsate{0%{opacity:.5}50%{opacity:1}100%{opacity:.5}} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc4/cms.pagetree.css b/cms/static/cms/css/4.1.0rc4/cms.pagetree.css new file mode 100644 index 00000000000..7b54fc7ce69 --- /dev/null +++ b/cms/static/cms/css/4.1.0rc4/cms.pagetree.css @@ -0,0 +1,3 @@ +/*! + * @copyright: https://github.com/divio/django-cms + */:root,:root[data-theme=auto],:root[data-theme=light]{--dca-light-mode:1;--dca-dark-mode:0;--dca-white:#FFFFFF;--dca-black:#000000;--dca-shadow:0,0,0;--dca-primary:#00bbff;--dca-gray:#666;--dca-gray-lightest:#f2f2f2;--dca-gray-lighter:#ddd;--dca-gray-light:#999;--dca-gray-darker:#454545;--dca-gray-darkest:#333;--dca-gray-super-lightest:#f7f7f7;--active-brightness:0.9;--focus-brightness:0.95}:root,:root[data-them=auto]{color-scheme:dark light}:root[data-theme=light]{color-scheme:light}:root[data-theme=dark]{color-scheme:dark;--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#ccc;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#ddd;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}@media (prefers-color-scheme:dark){:root:not([data-theme]),:root[data-theme=auto]{--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#999;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#aaa;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}}@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc4/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc4/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon,.cms-tooltip-touch:before,.cms-tooltip:before,.cms-tree-item-preview a,.cms-tree-node-success>.jstree-anchor .jstree-themeicon,.jstree-django-cms .jstree-ocl{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-paste:before{content:"\E02A"}.cms-icon-pencil:before{content:"\E02B"}.cms-icon-pin:before{content:"\E02C"}.cms-icon-plugins:before{content:"\E02D"}.cms-icon-plus-circle:before{content:"\E02E"}.cms-icon-plus-square-o:before{content:"\E02F"}.cms-icon-plus:before{content:"\E030"}.cms-icon-publish:before{content:"\E031"}.cms-icon-puzzle:before{content:"\E032"}.cms-icon-redo:before{content:"\E033"}.cms-icon-rename:before{content:"\E034"}.cms-icon-scissors:before{content:"\E035"}.cms-icon-search:before{content:"\E036"}.cms-icon-settings:before{content:"\E037"}.cms-icon-sitemap:before{content:"\E038"}.cms-icon-squares:before{content:"\E039"}.cms-icon-theme-auto:before{content:"\E03A"}.cms-icon-theme-dark:before{content:"\E03B"}.cms-icon-theme-light:before{content:"\E03C"}.cms-icon-undo:before{content:"\E03D"}.cms-icon-unlock:before{content:"\E03E"}.cms-icon-unpublish:before{content:"\E03F"}.cms-icon-view:before{content:"\E040"}.cms-icon-window:before{content:"\E041"}.cms-pagetree-wrapper .cms-btn{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:var(--dca-gray)!important;background-color:var(--dca-white)!important;border:1px solid var(--dca-gray-lighter)!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn.focus,.cms-pagetree-wrapper .cms-btn:focus,.cms-pagetree-wrapper .cms-btn:hover{color:var(--dca-gray)!important;background-color:var(--dca-gray-lightest)!important;border-color:var(--dca-gray-lighter)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn,.cms-pagetree-wrapper .cms-btn.cms-btn-active,.cms-pagetree-wrapper .cms-btn:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn{color:var(--dca-gray)!important;background-color:var(--dca-white)!important;border-color:var(--dca-gray-lighter)!important;filter:brightness(var(--active-brightness)) opacity(1)!important;box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn.focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn:hover,.cms-pagetree-wrapper .cms-btn.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn:active.focus,.cms-pagetree-wrapper .cms-btn:active:focus,.cms-pagetree-wrapper .cms-btn:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn.focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn:hover{color:var(--dca-gray)!important;background-color:var(--dca-white)!important;border-color:var(--dca-gray-lighter)!important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn,.cms-pagetree-wrapper .cms-btn.cms-btn-active,.cms-pagetree-wrapper .cms-btn:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn[disabled],.cms-pagetree-wrapper .cms-btn[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn[disabled].focus,.cms-pagetree-wrapper .cms-btn[disabled]:active,.cms-pagetree-wrapper .cms-btn[disabled]:focus,.cms-pagetree-wrapper .cms-btn[disabled]:hover{background-color:var(--dca-white)!important;border-color:var(--dca-gray-lighter)!important;color:var(--dca-gray-lighter);cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn[disabled].focus:before,.cms-pagetree-wrapper .cms-btn[disabled]:active:before,.cms-pagetree-wrapper .cms-btn[disabled]:before,.cms-pagetree-wrapper .cms-btn[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn[disabled]:hover:before{color:var(--dca-gray-lighter)}.cms-pagetree-wrapper .cms-btn-action{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:var(--dca-white)!important;background-color:var(--dca-primary)!important;border:1px solid var(--dca-primary)!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn-action.focus,.cms-pagetree-wrapper .cms-btn-action:focus,.cms-pagetree-wrapper .cms-btn-action:hover{color:var(--dca-white)!important;background-color:var(--dca-primary)!important;border-color:var(--dca-primary)!important;filter:brightness(var(--focus-brightness)) opacity(1)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn{color:var(--dca-white)!important;background-color:var(--dca-primary)!important;border-color:var(--dca-primary)!important;filter:brightness(var(--active-brightness)) opacity(1)!important;box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn:hover,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.focus.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn-action:active.focus,.cms-pagetree-wrapper .cms-btn-action:active:focus,.cms-pagetree-wrapper .cms-btn-action:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.focus.cms-btn{color:var(--dca-white)!important;background-color:var(--dca-primary)!important;border-color:var(--dca-primary)!important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-action.cms-btn,.cms-pagetree-wrapper .cms-btn-action.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-action.cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn-action[disabled],.cms-pagetree-wrapper .cms-btn-action[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn-action[disabled].focus,.cms-pagetree-wrapper .cms-btn-action[disabled]:active,.cms-pagetree-wrapper .cms-btn-action[disabled]:focus,.cms-pagetree-wrapper .cms-btn-action[disabled]:hover{background-color:var(--dca-primary)!important;border-color:var(--dca-primary)!important;color:var(--dca-white);filter:brightness(.6) opacity(1);cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn-action.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn-action[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-action[disabled].focus:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:active:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn-action[disabled]:hover:before{color:var(--dca-white);filter:brightness(.6) opacity(1)}.cms-pagetree-wrapper .cms-btn-caution{background-image:none!important;margin-bottom:0;border-radius:3px!important;color:var(--dca-white)!important;background-color:#ff4000!important;border:1px solid #ff4000!important;background-clip:padding-box;-webkit-appearance:none}.cms-pagetree-wrapper .cms-btn-caution.focus,.cms-pagetree-wrapper .cms-btn-caution:focus,.cms-pagetree-wrapper .cms-btn-caution:hover{color:var(--dca-white)!important;background-color:#ff4000!important;border-color:#ff4000!important;filter:brightness(var(--focus-brightness)) opacity(1)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn{color:var(--dca-white)!important;background-color:#ff4000!important;border-color:#ff4000!important;filter:brightness(var(--active-brightness)) opacity(1)!important;box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn:focus,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn:hover,.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.focus.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active.focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active:focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active:hover,.cms-pagetree-wrapper .cms-btn-caution:active.focus,.cms-pagetree-wrapper .cms-btn-caution:active:focus,.cms-pagetree-wrapper .cms-btn-caution:active:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn:focus,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn:hover,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.focus.cms-btn{color:var(--dca-white)!important;background-color:#ff4000!important;border-color:#ff4000!important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)!important}.cms-pagetree .cms-pagetree-dropdown-menu-open .cms-pagetree-wrapper .cms-btn-caution.cms-btn,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution:active,.cms-pagetree-wrapper .cms-pagetree .cms-pagetree-dropdown-menu-open .cms-btn-caution.cms-btn{background-image:none!important}.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:active,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:focus,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:hover,.cms-pagetree-wrapper .cms-btn-caution[disabled],.cms-pagetree-wrapper .cms-btn-caution[disabled].cms-btn-active,.cms-pagetree-wrapper .cms-btn-caution[disabled].focus,.cms-pagetree-wrapper .cms-btn-caution[disabled]:active,.cms-pagetree-wrapper .cms-btn-caution[disabled]:focus,.cms-pagetree-wrapper .cms-btn-caution[disabled]:hover{background-color:#ff4000!important;border-color:#ff4000!important;color:var(--dca-white);filter:brightness(.6) opacity(1);cursor:not-allowed;box-shadow:none!important}.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled.focus:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:active:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:focus:before,.cms-pagetree-wrapper .cms-btn-caution.cms-btn-disabled:hover:before,.cms-pagetree-wrapper .cms-btn-caution[disabled].cms-btn-active:before,.cms-pagetree-wrapper .cms-btn-caution[disabled].focus:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:active:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:focus:before,.cms-pagetree-wrapper .cms-btn-caution[disabled]:hover:before{color:var(--dca-white);filter:brightness(.6) opacity(1)}.cms-pagetree-wrapper .cms-btn-disabled img{opacity:.2!important}.cms-admin-sideframe:not(.djangocms-admin-style){margin-top:46px}.cms-btn-toolbar{display:inline-block;line-height:32px;height:32px;font-size:12px;padding:0 22px}.cms-hidden,.hidden{display:none!important}.cms-clear{clear:both;overflow:hidden}.cms-clear-mobile{clear:both;overflow:hidden}@media (min-width:520px){.cms-clear-mobile{display:none}}.jstree li{-ms-touch-action:none;touch-action:none}.cms-pagetree-root#changelist{display:block;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between}.cms-pagetree-root,.cms-pagetree-root.filtered{min-height:0;padding:0!important;box-shadow:0 0 5px 0 rgba(var(--dca-shadow),.2)!important}.cms-pagetree{border:1px solid var(--dca-gray-lighter)}.cms-pagetree .cms-hover-tooltip{z-index:auto}.cms-pagetree .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.cms-pagetree .cms-btn.cms-icon{display:inline-block;box-sizing:border-box;width:39px;height:37px;position:relative}.cms-pagetree .cms-btn.cms-icon:before{position:absolute;left:50%;top:50%;margin-top:-8px;margin-left:-8px}.cms-pagetree .cms-btn.cms-btn-no-border{border:none!important}.cms-pagetree-header{position:relative;display:-ms-flexbox;display:flex;width:100%;box-sizing:border-box;z-index:auto;min-height:36px;padding:15px 20px;box-shadow:none;border-bottom:none;background:var(--dca-gray-super-lightest)}.cms-pagetree-header:before{content:"";position:absolute;bottom:-6px;left:0;right:0;height:5px;background-color:var(--dca-white)}.cms-pagetree-header+.module{padding-top:0!important}.djangocms-admin-style .cms-pagetree-header{margin:-40px 0 0 0}.djangocms-admin-style.cms-admin-sideframe .cms-pagetree-header{margin-top:-25px}.cms-pagetree-header-title{display:table-cell;width:100%;line-height:36px;height:36px}.cms-pagetree-header-title h1{line-height:36px;margin:0!important}.cms-pagetree-header-title h1 span{font-weight:400}.cms-pagetree-header-row{display:table;width:100%;table-layout:fixed}@media (max-width:520px){.cms-pagetree-header-row{display:block}}.cms-pagetree-header-cell{display:table-cell;white-space:nowrap;vertical-align:middle}@media (max-width:520px){.cms-pagetree-header-cell{display:block}}.cms-pagetree-header-cell-fluid{width:100%}.cms-pagetree-header-cell-search{width:220px!important;position:relative}.cms-pagetree-header-filter-active .cms-pagetree-header-cell-search{position:static}@media (max-width:520px){.cms-pagetree-header-cell-search{width:100%!important}}@media (max-width:520px){.cms-pagetree-header-body{text-align:right;padding-top:10px}}.cms-pagetree-header-filter-active .cms-pagetree-search-container{position:relative}.cms-pagetree-header-search{position:absolute;top:0;display:table;width:100%;left:0;right:0;padding:0;box-shadow:none;background:0 0}@media (max-width:520px){.cms-pagetree-header-search{position:relative}}.cms-pagetree-header-search .cms-pagetree-header-search-btn{display:table-cell;vertical-align:middle;position:relative;outline:0;color:var(--dca-white)!important;padding:8px 10px!important;border:none!important;background:var(--dca-primary)!important;height:36px;border-radius:3px}.cms-pagetree-header-search .cms-pagetree-header-search-btn:hover{background:#00a8e6!important}.cms-pagetree-header-search .cms-pagetree-header-search-btn:active,.cms-pagetree-header-search .cms-pagetree-header-search-btn:focus{color:var(--dca-white)!important;background:#0083b3!important}.cms-pagetree-header-search .cms-pagetree-header-filter{position:relative;display:table-cell;width:100%;padding-right:5px;vertical-align:middle}.cms-pagetree-header-search .cms-pagetree-header-filter input{width:100%;box-sizing:border-box;width:100%;display:inline-block;height:36px;padding:6px;line-height:24px;padding-right:35px!important;transition:width .2s}.cms-pagetree-header-filter-active .cms-pagetree-header-search{left:0;right:0;top:0}.djangocms-admin-style .cms-pagetree-header-search{margin:5px 0 10px}.cms-pagetree-header-filter-trigger{position:absolute;right:5px;top:0;cursor:pointer;padding:10px;transform:rotate(270deg)}.cms-pagetree-header-filter-trigger:active .cms-icon,.cms-pagetree-header-filter-trigger:focus .cms-icon,.cms-pagetree-header-filter-trigger:hover .cms-icon{color:var(--dca-primary)}.cms-pagetree-header-filter-trigger .cms-icon{font-size:11px;color:var(--dca-gray)}.cms-pagetree-header-filter-container{display:none;overflow:auto;position:absolute;left:0;top:38px;width:100%;padding:5px 20px 15px;max-height:400px;box-shadow:0 0 5px 0 rgba(var(--dca-shadow),.2);box-sizing:border-box;border-radius:3px;background:var(--dca-white);z-index:1000}.cms-pagetree-header-filter-container h3{color:var(--dca-gray);font-size:14px;font-weight:400;text-transform:uppercase;padding:10px 0 0 0}.cms-pagetree-header-filter-container li,.cms-pagetree-header-filter-container ul{list-style-type:none;padding:2px 0;margin:0}.cms-pagetree-header-filter-container li a{color:var(--dca-gray-light)}.cms-pagetree-header-filter-container .selected a{color:var(--dca-primary);font-weight:700}.cms-pagetree-header-search-close{position:absolute;right:0;top:0;padding:10px}.cms-pagetree-header-search-close:active .cms-icon,.cms-pagetree-header-search-close:focus .cms-icon,.cms-pagetree-header-search-close:hover .cms-icon{color:var(--dca-primary)}.cms-pagetree-header-search-close .cms-icon{font-size:12px;color:var(--dca-gray)}.cms-pagetree-header-search-reset{font-size:90%;padding:0 10px}.cms-pagetree-sites-list{display:inline-block;vertical-align:top;padding-left:10px;padding-right:10px;margin-left:10px;margin-right:10px}.cms-pagetree-sites-list .cms-pagetree-dropdown-trigger{display:inline-block;color:var(--dca-gray)!important;padding:10px;height:16px}.cms-pagetree-sites-list .cms-pagetree-dropdown-menu{right:50%;margin-right:-19px!important}.cms-pagetree-header-create{display:inline-block;vertical-align:top;height:36px!important;box-sizing:border-box}.djangocms-admin-style .cms-pagetree-breadcrumbs{margin-bottom:-30px!important;border:none!important}.cms-pagetree-section{position:relative;z-index:auto;min-height:15px;padding:15px 20px;box-shadow:none;border-bottom:none;background:var(--dca-white)}.cms-pagetree-section h2,.cms-pagetree-section p{padding:0;margin:0;border:none}.cms-pagetree-section h2{float:left;font-weight:700;color:var(--dca-gray-darkest);background:0 0}.cms-pagetree-container+.cms-pagetree-section{margin-top:-1px}.cms-pagetree-section-header{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.cms-pagetree-section-header select{width:120px!important;margin-left:15px}.cms-pagetree-section-condensed{padding:10px 20px}.cms-pagetree-section-nav{position:absolute;right:4px;top:50%;margin-top:-19px}.cms-pagetree-section-nav .cms-pagetree-dropdown-menu{right:40px;top:-2px;width:205px}.cms-pagetree-dropdown-separator{padding:0;margin:4px 1px!important;line-height:1;height:1px;background:var(--dca-gray-lighter)}.cms-pagetree-container{position:relative;z-index:auto;border:1px solid var(--dca-gray-lighter);border-bottom:none}.cms-tree-col{float:right;min-width:32px;height:32px}.cms-tree-col-padding-sm{margin-top:-3px;margin-left:-4px;margin-right:-4px;height:38px}.cms-tree-item{display:table;width:100%;text-align:center;height:32px}.cms-tree-item+.cms-tree-item{padding-left:4px}.cms-tree-item-disabled{opacity:.3;pointer-events:none}.cms-tree-item-wrapper{display:table-row;min-width:32px}.cms-tree-item-wrapper .cms-tree-item{display:table-cell;vertical-align:middle;text-align:center;min-width:32px}.cms-tree-item-wrapper .cms-tree-item-inner{display:block}.cms-tree-item-inner{display:table-cell;text-align:center;vertical-align:middle}.cms-tree-reload{float:right}.cms-tree-item-lang .cms-pagetree-dropdown-menu{right:32px;top:-5px;min-width:180px}.cms-tree-item-button .cms-pagetree-dropdown-menu{right:40px;top:-2px;width:205px}.cms-tree-item-button .cms-hover-tooltip:after,.cms-tree-item-button .cms-hover-tooltip:before{bottom:23px}.cms-pagetree-alt-mode .cms-tree-item-button .cms-icon-settings:not(.cms-btn-disabled)[data-url]:before{content:"\E001"}.cms-tree-item-icons{position:relative}.cms-tree-item-icons .cms-icon{display:block}.cms-tree-item-icons span:before{color:var(--dca-gray-light)}.cms-tree-item-icons-dark span:before{color:var(--dca-gray-darker)}.cms-tree-item-preview{position:relative}.cms-tree-item-preview a{font-size:18px;line-height:18px;height:18px;display:block}.cms-tree-item-preview a:before{display:block;color:var(--dca-gray-darker)}.cms-tree-item-preview a:hover:before{color:var(--dca-black)}.cms-tree-item-preview-active a:before{color:var(--dca-black)}.cms-tree-item-lang{position:relative}.cms-tree-item-lang .cms-tree-item-inner>.cms-tree-lang-container,.cms-tree-item-lang .cms-tree-item-inner>a{display:block;height:16px}.cms-tree-item-menu{position:relative}.cms-tree-item-menu .cms-tree-item-inner>a{display:block;height:14px}.cms-tree-item-menu .cms-icon{display:block}.cms-tree-item-menu .cms-icon:before{display:block;font-size:14px;color:var(--dca-gray-darker)}.cms-tree-item-menu .cms-icon-check-square:before{color:#693}.cms-tree-item-info{position:relative}.cms-tree-item-info .cms-tree-item-inner>a{display:block;height:16px}.cms-tree-item-info .cms-icon{display:block}.cms-tree-item-info .cms-icon:before{display:block;font-size:16px}.cms-tree-item-info p{color:var(--dca-gray-darkest);padding:0;margin:0}.cms-tree-item-info strong{color:var(--dca-gray-light);font-weight:400}.cms-tree-item-info a{display:inline-block;line-height:1}.cms-tree-search{float:left;margin-right:5px}.cms-tree-search label{display:none!important}.cms-tree-search select{position:relative;top:2px;width:175px!important}.cms-tree-search #toolbar form#changelist-search input[type=submit]{margin-left:0!important}.cms-tree-search #toolbar form#changelist-search #searchbar{width:175px!important}.cms-tree-filters{float:right}.cms-tree-filters .js-cms-tree-filter-trigger{position:absolute;top:0;right:0;padding-right:20px;line-height:30px;width:175px;border-bottom:1px solid var(--dca-gray-lighter)}.cms-tree-filters h2{display:none}.cms-pagetree-empty{padding:15px 20px;border-top:none}.cms-pagetree-empty .addlink{padding-left:0}.jstree-django-cms{-webkit-tap-highlight-color:transparent}.jstree-django-cms .jstree-children,.jstree-django-cms .jstree-container-ul,.jstree-django-cms .jstree-leaf,.jstree-django-cms .jstree-node{list-style-type:none;padding:0;margin:0;transform:translateZ(0)}.jstree-django-cms .jstree-is-dragging{opacity:.1!important}.jstree-django-cms .jstree-is-dragging+.jstree-grid-cell{height:47px;border-top:1px solid var(--dca-gray-lighter);margin-top:-1px}.jstree-django-cms .jstree-is-dragging-copy{opacity:.9!important}.jstree-django-cms .jstree-grid-header,.jstree-django-cms .jstree-grid-separator{padding:0;margin:0;margin-left:0!important;border:none;background:0 0}.jstree-django-cms .jstree-grid-header{z-index:1;position:relative}.jstree-django-cms.jstree-grid-cell{padding:0}.jstree-django-cms .jstree-grid-cell,.jstree-django-cms .jstree-grid-column{box-sizing:border-box;overflow:visible}.jstree-django-cms .jstree-grid-column{vertical-align:top}.jstree-grid-wrapper{box-sizing:border-box;overflow:visible!important;width:100%!important}.jstree-grid-wrapper{background:var(--dca-gray-lightest)}.jstree-django-cms .jstree-grid-header{font-size:12px;color:var(--dca-gray);text-align:center;padding:3px 6px;border-bottom:1px solid var(--dca-gray-lighter);background:var(--dca-white)}.jstree-django-cms .jstree-grid-header-fixed{position:fixed;z-index:2}.jstree-django-cms .jstree-grid-column-0 .jstree-grid-header{text-align:left!important}.jstree-django-cms .jstree-children{margin-left:20px}.jstree-django-cms .jstree-container-ul{margin-left:-1px}.jstree-django-cms .jstree-ocl{float:left;position:relative;left:20px;font-size:12px;color:var(--dca-gray-light);padding:18px 10px 10px 0}.jstree-django-cms .jstree-ocl:before{display:inline-block}.jstree-django-cms .jstree-closed>.jstree-ocl,.jstree-django-cms .jstree-open>.jstree-ocl{cursor:pointer}.jstree-django-cms .jstree-open>.jstree-ocl:before{content:"\E005"}.jstree-django-cms .jstree-open>.jstree-ocl:before{transform:rotate(90deg)}.jstree-django-cms .jstree-closed>.jstree-ocl:before{content:"\E005"}.jstree-django-cms .jstree-loading>.jstree-ocl:before{content:"\E01F"}.jstree-django-cms .jstree-loading>.jstree-ocl:before{animation:cms-spin 2s infinite linear}.jstree-django-cms .jstree-anchor{box-sizing:border-box;display:block;cursor:move;outline:0;color:var(--dca-gray);height:47px;padding:12px 25px;margin-top:-1px;border:1px solid var(--dca-gray-lighter);border-right:none;background-color:var(--dca-white);background-image:url(../../img/pagetree/tree-li-drag.gif);background-repeat:no-repeat;background-position:-1px center;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated;white-space:normal}.jstree-django-cms .jstree-anchor:hover{color:var(--dca-gray)!important}.jstree-django-cms .jstree-node[data-move-permission=false]>.jstree-anchor{cursor:default;background-image:none}.jstree-django-cms .jstree-closed>.jstree-anchor,.jstree-django-cms .jstree-loading>.jstree-anchor,.jstree-django-cms .jstree-open>.jstree-anchor{padding:12px 25px 12px 45px}.jstree-django-cms .cms-tree-node-filtered .jstree-anchor{cursor:default}.jstree-django-cms .jstree-grid-cell{height:46px;border-bottom:1px solid var(--dca-gray-lighter);background:var(--dca-white)}.jstree-django-cms .jstree-grid-cell>span{display:block}.jstree-django-cms .jstree-grid-cell.jstree-django-cms{height:auto;border:none;background:0 0}.jstree-django-cms .jstree-grid-cell-regular{text-align:center;padding:7px 8px;border-left:1px solid var(--dca-gray-lighter)}.jstree-django-cms .jstree-grid-cell-regular-options{border-left:none;text-align:right}.jstree-django-cms .jstree-clicked,.jstree-django-cms .jstree-hovered{background-color:var(--dca-gray-lightest)!important}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header{text-align:right}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header a{font-size:12px;top:0}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header span{line-height:1}.jstree-django-cms .jstree-grid-column-1 .jstree-grid-header .cms-icon{font-size:12px;padding-right:5px;margin-left:5px}.jstree.jstree-loading .jstree-container-ul{margin:0}.jstree.jstree-loading .jstree-anchor{padding-top:13px;padding-left:15px;border:none;background:0 0}.jstree.jstree-loading .jstree-loading>.jstree-ocl{display:none}.cms-tree-node-success>.jstree-anchor .jstree-themeicon{content:"";position:relative;top:4px;color:#693}.cms-tree-node-success>.jstree-anchor .jstree-themeicon:before{content:"\E00E"}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor{border-style:dashed;border-right:none;color:#999;background-color:#f2f2f2!important}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor:hover{color:#999!important}.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-true>.jstree-anchor.jstree-hovered{background-color:#f2f2f2!important}.jstree-django-cms .jstree-grid-cell.jstree-clicked,.jstree-django-cms .jstree-grid-cell.jstree-hovered{background-color:#f2f2f2}.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor{border-style:solid;border-right:none;background-color:var(--dca-white)!important;border-bottom:1px solid var(--dca-gray-lighter)}.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-false>.jstree-anchor.jstree-hovered{background-color:var(--dca-gray-lightest)!important}.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true>.jstree-anchor{border-top-style:solid}.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true.jstree-clicked,.jstree-django-cms .cms-tree-node-shared-false+.cms-tree-node-shared-true.jstree-hovered{background-color:#f2f2f2}.jstree-django-cms .cms-page-tree-cell-shared--true{border-style:dashed;background-color:#f2f2f2}.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-grid-cell-regular-options{border-left:none}.jstree-django-cms .cms-page-tree-cell-shared--true .cms-btn-no-border{background-color:transparent!important}.jstree-django-cms .cms-page-tree-cell-shared--true .cms-btn-no-border:hover{background-color:#fff!important;border:1px solid #ddd!important}.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-clicked,.jstree-django-cms .cms-page-tree-cell-shared--true.jstree-hovered{background-color:#f2f2f2!important}.jstree-django-cms .cms-page-tree-cell-shared--false{background-color:var(--dca-white)}.jstree-django-cms .cms-page-tree-cell-shared--false.jstree-clicked,.jstree-django-cms .cms-page-tree-cell-shared--false.jstree-hovered{background-color:var(--dca-gray-lightest)!important}.jstree-django-cms .cms-page-tree-cell-shared--true+.cms-page-tree-cell-shared--false{border-top:1px solid var(--dca-gray-lighter);margin-top:-1px;padding-top:8px;height:47px}#jstree-dnd{box-sizing:border-box;display:block;min-width:300px;height:46px;padding:12px 25px!important;margin-left:-5px;background-color:var(--dca-primary)!important;color:var(--dca-white)}#jstree-dnd .jstree-copy{color:var(--dca-white);padding:0 5px 2px;margin-left:5px;border-radius:3px;background:var(--dca-gray-light)}#jstree-dnd .jstree-er,#jstree-dnd .jstree-ok{position:absolute;top:0;left:-5px;bottom:0;right:0;background-color:rgba(255,255,255,.6)}#jstree-dnd .jstree-ok{display:none}.is-stacked #jstree-dnd{box-shadow:1px 1px 1px rgba(var(--dca-black),.2),4px 4px 0 0 var(--dca-primary)}.is-stacked .jstree-er{box-shadow:4px 4px 0 0 rgba(255,255,255,.6)}#jstree-marker{position:absolute;right:3%;z-index:102;margin:-6px 0 0 0;border-right:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid var(--dca-primary);height:0}#jstree-marker:after{content:"";display:block;position:absolute;height:3px;top:-1px;left:-2px;right:0;background-color:var(--dca-primary)}#jstree-marker.jstree-marker-child{border:2px solid var(--dca-primary);height:46px;margin:-24px 0 0 0;background-color:rgba(var(--dca-primary),.1);box-sizing:border-box}#jstree-marker.jstree-marker-child:after{display:none}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe .messagelist+#content{margin-top:117px!important}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs{left:20px}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs+#content,.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #container .breadcrumbs+.messagelist+#content{margin-left:0!important;margin-right:0!important}.djangocms-admin-style.cms-pagetree-wrapper.cms-admin-sideframe #jstree-marker{right:0}.cms-pagetree-header-lang,.cms-pagetree-header-lang:active,.cms-pagetree-header-lang:focus,.cms-pagetree-header-lang:hover,.cms-pagetree-header-lang:link{color:var(--dca-gray-darkest)!important}.cms-pagetree-header-lang.active{font-weight:700}.cms-pagetree-dropdown{position:relative}.cms-pagetree-dropdown-menu{display:none;position:absolute;top:30px;right:-1px;z-index:1000;min-width:180px;border-radius:5px;background:var(--dca-white);box-shadow:0 0 10px rgba(var(--dca-shadow),.25);transform:translateZ(0)}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item,.cms-pagetree-dropdown-menu a,.cms-pagetree-dropdown-menu a:link,.cms-pagetree-dropdown-menu a:link:visited,.cms-pagetree-dropdown-menu a:visited{display:block;color:var(--dca-gray);line-height:1.5;text-align:left;padding:10px 15px}.cms-pagetree-dropdown-menu a:active,.cms-pagetree-dropdown-menu a:focus,.cms-pagetree-dropdown-menu a:hover{color:var(--dca-white)!important;background:var(--dca-primary)}.cms-pagetree-dropdown-menu li:first-child>a{border-top-left-radius:5px;border-top-right-radius:5px}.cms-pagetree-dropdown-menu li:last-child>a{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled{opacity:.2;color:var(--dca-gray-light);cursor:default}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled:focus,.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-item-disabled:hover{background:0 0!important;color:var(--dca-gray-darker)!important}.cms-pagetree-dropdown-menu.cms-pagetree-dropdown-menu-condensed .cms-pagetree-dropdown-item,.cms-pagetree-dropdown-menu.cms-pagetree-dropdown-menu-condensed a{padding:5px 15px}.cms-pagetree-dropdown-menu .active{font-weight:700}.cms-pagetree-dropdown-menu .label{display:block;color:var(--dca-gray);font-size:90%;font-weight:400;line-height:1.5;text-align:left;text-transform:uppercase;padding:7px 15px 5px;border-bottom:1px solid var(--dca-gray-lighter);margin-bottom:4px}.cms-pagetree-dropdown-menu li{margin:0;padding:0;list-style-type:none}.cms-pagetree-dropdown-menu p{display:block;overflow:hidden;font-size:12px!important;text-align:left;text-overflow:ellipsis;margin:0;padding:5px 15px 3px!important}.cms-pagetree-dropdown-menu p strong{font-size:12px!important}.cms-pagetree-dropdown-menu p+p{margin-top:-2px;padding-top:0!important}.cms-pagetree-dropdown-menu p:last-child{padding-bottom:7px!important}.cms-pagetree-dropdown-menu .cms-icon{margin-right:10px}.cms-pagetree-dropdown-menu span{vertical-align:middle}.cms-pagetree-dropdown-menu:before{content:"";position:absolute;left:100%;z-index:-1;width:10px;height:10px;margin-left:-5px;background-color:var(--dca-white);box-shadow:0 0 10px rgba(var(--dca-shadow),.25);transform:rotate(45deg) translateZ(0)}.cms-pagetree-dropdown-menu .cms-pagetree-dropdown-menu-inner{margin:0;padding:0!important;border-radius:5px;background-color:var(--dca-white)}.cms-pagetree-dropdown-menu-open .cms-pagetree-dropdown-menu{display:block}.cms-pagetree-dropdown-menu-arrow-top-right:before{margin-top:-5px;margin-left:-24px}.cms-pagetree-dropdown-menu-arrow-right-top:before{top:16px}.cms-pagetree-dropdown-menu-arrow-right-bottom:before{bottom:18px}.cms-pagetree-dropdown-loader{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:5px}.cms-pagetree-node-state{box-sizing:border-box;display:inline-block;width:16px;height:16px;border-radius:100%;border:2px solid var(--dca-white);background:var(--dca-white);vertical-align:top}.cms-btn .cms-pagetree-node-state{vertical-align:middle;margin-right:5px;margin-top:-4px}.cms-btn:hover .cms-pagetree-node-state-dirty{box-shadow:0 0 0 1px #fff}.cms-pagetree-node-state-empty{border-color:var(--dca-gray-light);background-color:var(--dca-white)}.cms-pagetree-node-state-unpublished,.cms-pagetree-node-state-unpublished-parent{border-color:var(--dca-gray-light);background-color:var(--dca-gray-light)}.cms-pagetree-node-state-archived{border-color:var(--dca-gray-light);background-color:var(--dca-gray-lighter)}.cms-pagetree-node-state-public,.cms-pagetree-node-state-published{border-color:#693;background-color:#693}.cms-pagetree-node-state-draft{border-color:var(--dca-primary);background-color:var(--dca-white)}.cms-pagetree-node-state-dirty{animation:pulsate 2.5s ease-out infinite;border-color:var(--dca-primary);background-color:var(--dca-primary)}.cms-pagetree-node-state-deletion{border-color:red;background-color:red}@keyframes pulsate{0%{opacity:.5}50%{opacity:1}100%{opacity:.5}}.cms-pagetree-legend{position:relative;text-align:right}.cms-pagetree-legend .cms-icon-info{color:var(--dca-primary);vertical-align:middle;margin-right:5px}.cms-pagetree-legend .cms-pagetree-dropdown{display:inline-block}.cms-pagetree-legend .cms-pagetree-dropdown-menu{top:auto;right:100%;bottom:0;left:auto;margin-right:10px;margin-bottom:-90px}.cms-pagetree-legend .cms-pagetree-dropdown-menu:before{bottom:96px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-pagetree-node-state{margin-right:10px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon{margin-right:8px}.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-apphook,.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-home,.cms-pagetree-legend .cms-pagetree-dropdown-item .cms-icon-sitemap{color:var(--dca-gray-light)}.cms-pagetree-legend .cms-icon{text-align:center;width:20px;margin-left:-2px}.cms-pagetree-legend .cms-icon-check-square{color:#693;font-size:14px}.cms-pagetree-legend .cms-icon-minus-square{font-size:14px}.cms-pagetree-legend-title-wrap{cursor:pointer}.cms-pagetree-legend-title{color:var(--dca-gray-light);vertical-align:middle;text-transform:uppercase}.cms-tooltip,.cms-tooltip-touch{visibility:hidden;position:absolute;top:0;left:0;font-size:12px;line-height:22px;font-weight:700;color:var(--dca-gray-lighter);white-space:nowrap;padding:0 7px 0 22px;margin:0;border-radius:3px;background:var(--dca-gray-darker)}.cms-tooltip-touch:before,.cms-tooltip:before{content:"\E016"}.cms-tooltip-touch:before,.cms-tooltip:before{font-size:14px;top:50%;left:4px;margin-top:-7px;position:absolute}.cms-tooltip span,.cms-tooltip-touch span{position:absolute;top:100%;right:0;margin-top:-4px;float:right;color:var(--dca-white);font-weight:400;padding:0 7px;border-radius:3px 0 3px 3px;background:var(--dca-gray-darker)} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc4/cms.welcome.css b/cms/static/cms/css/4.1.0rc4/cms.welcome.css new file mode 100644 index 00000000000..eecd29f15f1 --- /dev/null +++ b/cms/static/cms/css/4.1.0rc4/cms.welcome.css @@ -0,0 +1,3 @@ +/*! + * @copyright: https://github.com/divio/django-cms + */:root,:root[data-theme=auto],:root[data-theme=light]{--dca-light-mode:1;--dca-dark-mode:0;--dca-white:#FFFFFF;--dca-black:#000000;--dca-shadow:0,0,0;--dca-primary:#00bbff;--dca-gray:#666;--dca-gray-lightest:#f2f2f2;--dca-gray-lighter:#ddd;--dca-gray-light:#999;--dca-gray-darker:#454545;--dca-gray-darkest:#333;--dca-gray-super-lightest:#f7f7f7;--active-brightness:0.9;--focus-brightness:0.95}:root,:root[data-them=auto]{color-scheme:dark light}:root[data-theme=light]{color-scheme:light}:root[data-theme=dark]{color-scheme:dark;--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#ccc;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#ddd;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}@media (prefers-color-scheme:dark){:root:not([data-theme]),:root[data-theme=auto]{--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#999;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#aaa;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}}@font-face{font-family:django-cms-iconfont;src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot);src:url(../../fonts/4.1.0rc4/django-cms-iconfont.eot#iefix) format("eot"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff2) format("woff2"),url(../../fonts/4.1.0rc4/django-cms-iconfont.woff) format("woff"),url(../../fonts/4.1.0rc4/django-cms-iconfont.ttf) format("truetype"),url(../../fonts/4.1.0rc4/django-cms-iconfont.svg#django-cms-iconfont) format("svg");font-weight:400;font-style:normal}.cms-icon{display:inline-block;font:normal normal normal 16px/1 django-cms-iconfont;text-rendering:auto;transform:translate(0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cms-icon-advanced-settings:before{content:"\E001"}.cms-icon-alias:before{content:"\E002"}.cms-icon-apphook:before{content:"\E003"}.cms-icon-archive:before{content:"\E004"}.cms-icon-arrow-right:before{content:"\E005"}.cms-icon-arrow-wide:before{content:"\E006"}.cms-icon-arrow:before{content:"\E007"}.cms-icon-bin:before{content:"\E008"}.cms-icon-broadcast-off:before{content:"\E009"}.cms-icon-broadcast-on:before{content:"\E00A"}.cms-icon-check-circle:before{content:"\E00B"}.cms-icon-check-o:before{content:"\E00C"}.cms-icon-check-square:before{content:"\E00D"}.cms-icon-check:before{content:"\E00E"}.cms-icon-close:before{content:"\E00F"}.cms-icon-cogs:before{content:"\E010"}.cms-icon-comment:before{content:"\E011"}.cms-icon-compare:before{content:"\E012"}.cms-icon-copy:before{content:"\E013"}.cms-icon-cut:before{content:"\E014"}.cms-icon-edit-new:before{content:"\E015"}.cms-icon-edit:before{content:"\E016"}.cms-icon-eye:before{content:"\E017"}.cms-icon-forbidden:before{content:"\E018"}.cms-icon-handler:before{content:"\E019"}.cms-icon-highlight:before{content:"\E01A"}.cms-icon-home:before{content:"\E01B"}.cms-icon-info:before{content:"\E01C"}.cms-icon-layers:before{content:"\E01D"}.cms-icon-list-ol:before{content:"\E01E"}.cms-icon-loader:before{content:"\E01F"}.cms-icon-lock:before{content:"\E020"}.cms-icon-logo:before{content:"\E021"}.cms-icon-manage-versions:before{content:"\E022"}.cms-icon-menu:before{content:"\E023"}.cms-icon-minimize:before{content:"\E024"}.cms-icon-minus-circle:before{content:"\E025"}.cms-icon-minus-square-o:before{content:"\E026"}.cms-icon-minus-square:before{content:"\E027"}.cms-icon-minus:before{content:"\E028"}.cms-icon-moderate:before{content:"\E029"}.cms-icon-paste:before{content:"\E02A"}.cms-icon-pencil:before{content:"\E02B"}.cms-icon-pin:before{content:"\E02C"}.cms-icon-plugins:before{content:"\E02D"}.cms-icon-plus-circle:before{content:"\E02E"}.cms-icon-plus-square-o:before{content:"\E02F"}.cms-icon-plus:before{content:"\E030"}.cms-icon-publish:before{content:"\E031"}.cms-icon-puzzle:before{content:"\E032"}.cms-icon-redo:before{content:"\E033"}.cms-icon-rename:before{content:"\E034"}.cms-icon-scissors:before{content:"\E035"}.cms-icon-search:before{content:"\E036"}.cms-icon-settings:before{content:"\E037"}.cms-icon-sitemap:before{content:"\E038"}.cms-icon-squares:before{content:"\E039"}.cms-icon-theme-auto:before{content:"\E03A"}.cms-icon-theme-dark:before{content:"\E03B"}.cms-icon-theme-light:before{content:"\E03C"}.cms-icon-undo:before{content:"\E03D"}.cms-icon-unlock:before{content:"\E03E"}.cms-icon-unpublish:before{content:"\E03F"}.cms-icon-view:before{content:"\E040"}.cms-icon-window:before{content:"\E041"}.cms-welcome-bg{background:var(--dca-gray-lightest)}.cms-welcome{color:var(--dca-gray-darker);width:60%;min-width:320px;margin:0 auto}.cms-welcome a{color:var(--dca-primary)}.cms-welcome a:active,.cms-welcome a:focus,.cms-welcome a:hover{text-decoration:underline}.cms-welcome .cms-hidden{display:none}.cms-welcome .cms-welcome-footer,.cms-welcome .cms-welcome-section{box-sizing:border-box;width:60%;min-width:320px;margin:0 auto}.cms-welcome .cms-welcome-header{text-align:center}.cms-welcome .cms-welcome-heading{color:var(--dca-gray-light);font-size:22px;font-weight:200;text-align:center;padding:40px 0 15px;border-bottom:1px solid var(--dca-gray-lighter)}.cms-welcome .cms-welcome-heading .cms-icon{color:#693}.cms-welcome .cms-welcome-logo,.cms-welcome .cms-welcome-logo:focus,.cms-welcome .cms-welcome-logo:hover{display:inline-block;background-image:url(../../fonts/src/logo.svg);background-repeat:no-repeat;background-position:center center;height:35px;width:200px;font-size:35px;text-decoration:none;margin:50px auto 30px}.cms-welcome .cms-welcome-section{box-shadow:0 0 5px var(--dca-gray-lighter);padding:20px;margin-bottom:5px;background:var(--dca-white)}.cms-welcome .cms-welcome-section h2{font-size:16px;font-weight:700;margin:0 0 15px}.cms-welcome .cms-welcome-section p{padding:5px 0}.cms-welcome .cms-welcome-links{padding:10px 5px;margin:0 0 15px;border-bottom:1px solid var(--dca-gray-lighter)}.cms-welcome .cms-welcome-links a{padding:0 5px}.cms-welcome .cms-welcome-notes{font-size:12px;line-height:16px;color:var(--dca-gray-light);padding:5px 10px} \ No newline at end of file diff --git a/cms/static/cms/css/4.1.0rc4/cms.wizard.css b/cms/static/cms/css/4.1.0rc4/cms.wizard.css new file mode 100644 index 00000000000..8fde0f69c47 --- /dev/null +++ b/cms/static/cms/css/4.1.0rc4/cms.wizard.css @@ -0,0 +1,3 @@ +/*! + * @copyright: https://github.com/divio/django-cms + */:root,:root[data-theme=auto],:root[data-theme=light]{--dca-light-mode:1;--dca-dark-mode:0;--dca-white:#FFFFFF;--dca-black:#000000;--dca-shadow:0,0,0;--dca-primary:#00bbff;--dca-gray:#666;--dca-gray-lightest:#f2f2f2;--dca-gray-lighter:#ddd;--dca-gray-light:#999;--dca-gray-darker:#454545;--dca-gray-darkest:#333;--dca-gray-super-lightest:#f7f7f7;--active-brightness:0.9;--focus-brightness:0.95}:root,:root[data-them=auto]{color-scheme:dark light}:root[data-theme=light]{color-scheme:light}:root[data-theme=dark]{color-scheme:dark;--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#ccc;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#ddd;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}@media (prefers-color-scheme:dark){:root:not([data-theme]),:root[data-theme=auto]{--dca-light-mode:0;--dca-dark-mode:1;--dca-white:#2A2C2E;--dca-black:#FFF;--dca-primary:#58D1FC;--dca-gray:#999;--dca-gray-lightest:#444;--dca-gray-lighter:#666;--dca-gray-light:#888;--dca-gray-darker:#aaa;--dca-gray-darkest:#eee;--dca-gray-super-lightest:#333;--active-brightness:2;--focus-brightness:1.5}}.cms-content-wizard .clear{clear:both;overflow:hidden}.cms-content-wizard .errornote{box-sizing:border-box;display:block;width:100%}.cms-content-wizard .choice-wrapper{clear:both;overflow:hidden;margin:-1%}.cms-content-wizard .choice{background-image:none;margin-bottom:0;border-radius:3px;color:var(--dca-gray);background-color:var(--dca-white);border:1px solid var(--dca-gray-lighter);background-clip:padding-box;-webkit-appearance:none;box-sizing:border-box;position:relative;text-transform:none;height:85px;padding:20px 25px!important;margin:1%!important}.cms-content-wizard .choice.focus,.cms-content-wizard .choice:focus,.cms-content-wizard .choice:hover{color:var(--dca-gray);background-color:var(--dca-gray-lightest);border-color:var(--dca-gray-lighter)}.cms-content-wizard .choice.cms-btn-active,.cms-content-wizard .choice:active{color:var(--dca-gray);background-color:var(--dca-white);border-color:var(--dca-gray-lighter);filter:brightness(var(--active-brightness)) opacity(1);box-shadow:inset 0 3px 5px rgba(var(--dca-shadow),.125)}.cms-content-wizard .choice.cms-btn-active.focus,.cms-content-wizard .choice.cms-btn-active:focus,.cms-content-wizard .choice.cms-btn-active:hover,.cms-content-wizard .choice:active.focus,.cms-content-wizard .choice:active:focus,.cms-content-wizard .choice:active:hover{color:var(--dca-gray);background-color:var(--dca-white);border-color:var(--dca-gray-lighter);filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1)}.cms-content-wizard .choice.cms-btn-active,.cms-content-wizard .choice:active{background-image:none}.cms-content-wizard .choice.cms-btn-disabled,.cms-content-wizard .choice.cms-btn-disabled.cms-btn-active,.cms-content-wizard .choice.cms-btn-disabled.focus,.cms-content-wizard .choice.cms-btn-disabled:active,.cms-content-wizard .choice.cms-btn-disabled:focus,.cms-content-wizard .choice.cms-btn-disabled:hover,.cms-content-wizard .choice[disabled],.cms-content-wizard .choice[disabled].cms-btn-active,.cms-content-wizard .choice[disabled].focus,.cms-content-wizard .choice[disabled]:active,.cms-content-wizard .choice[disabled]:focus,.cms-content-wizard .choice[disabled]:hover{background-color:var(--dca-white);border-color:var(--dca-gray-lighter);color:var(--dca-gray-lighter);cursor:not-allowed;box-shadow:none}.cms-content-wizard .choice.cms-btn-disabled.cms-btn-active:before,.cms-content-wizard .choice.cms-btn-disabled.focus:before,.cms-content-wizard .choice.cms-btn-disabled:active:before,.cms-content-wizard .choice.cms-btn-disabled:before,.cms-content-wizard .choice.cms-btn-disabled:focus:before,.cms-content-wizard .choice.cms-btn-disabled:hover:before,.cms-content-wizard .choice[disabled].cms-btn-active:before,.cms-content-wizard .choice[disabled].focus:before,.cms-content-wizard .choice[disabled]:active:before,.cms-content-wizard .choice[disabled]:before,.cms-content-wizard .choice[disabled]:focus:before,.cms-content-wizard .choice[disabled]:hover:before{color:var(--dca-gray-lighter)}@media (min-width:768px){.cms-content-wizard .choice{float:left!important;width:48%!important}}.cms-content-wizard .choice input{position:absolute;left:-9999px;opacity:0;visibility:hidden}.cms-content-wizard .choice strong{display:block;font-size:16px;margin-bottom:3px}.cms-content-wizard .choice .info{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cms-content-wizard .choice.active{border-color:var(--dca-primary);background:rgba(0,187,255,.45)} \ No newline at end of file diff --git a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff b/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff deleted file mode 100644 index 65b30b29f7c4c8bd984f01e07e1c0c4068013c74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8172 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 diff --git a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.eot b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.eot similarity index 85% rename from cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.eot rename to cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.eot index 95ba87c8ab0a60becad661e064c3cd540d91b505..a5135229da7d1f90e2080696e9dc0fbda1a48e56 100644 GIT binary patch delta 657 zcmXw0OKeg>6g~4El%JFW52}f2NIw$!NhyVvK7O&)=+bC3ZjcCqDHK#Nv@umv7p5Vk z%_J_mG%j4Z!Ig1|wJXy_qb^*aX%iPl>n|oBu$pMy-6_911PJc|)o!jZe{Fat`V`Pk1Kz%THl1{l)WP+jLUP_td-!KRy03Ulxum8`TKb<}8J3&KS3uU>x2T}fm z-Cz>W2yvF=PlREZWPdwfNuGtu<{@#y|YE!kXFi-OTk#vTQ5 z@ion9qeyH_0sQ={rr#(L3n@T=TeP!B=(E}h1yqKPrT{XpYcDu!rgq<3^D*-S^D|4# zvS8I)r>)N=pLAKeC#~BSZ7*zJ>=paNrdB5pG&h~|`m;i(L(dF>K|`0pNFc_7J~m_? z^s!)!1qPVZ%NU|LSoi&b>g6~saIA{j2}+`;S(TzUCi8H*fDQU19A+ARMMs~fAQp~2Y^k)(^T+$Z1vE3 zhv-RXi=~yr`a6JqBmFazpED+p#}5JbHt7dhqqM|svR~8>lkUzLS+kP1D?scYWj%_vGhXcoX9OzHKRo;rIGyW%>oxha;3h4@X*a)t z#(%TBEXe1D6w~=DVUI6}G5$h4duhMv3w(gsTt#T6qp*EQD3gyw52e~VuZm`WA40f{ z2(I8N`Y}Lz2N8vWA;d6@I1(7aC{%PJNggdP*CggAlQsfkN8?RHw>Dg&(B4O`5eI~L z**!KmKx)W=oMF>-H=qpI!w!@NJMI95hvhroPExuq`qRXfMKqK~Y}-W8AaI;yuYjej30S+_=~m`lp$ R^Etk)nvz&p&hb>T`#*bnh{6B> diff --git a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.svg b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.svg similarity index 99% rename from cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.svg rename to cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.svg index fc06d438a9e..067949f1ada 100644 --- a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.svg +++ b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.svg @@ -130,74 +130,77 @@ - - + + diff --git a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.ttf b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.ttf similarity index 85% rename from cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.ttf rename to cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.ttf index 4074bf7433fefbe4d6d86989ceb9d39eaa92bf11..0041d23b214064defffd327cfc62f034cfa09563 100644 GIT binary patch delta 650 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 AKmY&$ literal 0 HcmV?d00001 diff --git a/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff2 b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..4a3035a83a4af4d3bfd77556c8bf49e2c0dd6e6b GIT binary patch literal 6828 zcmV;d8dK$WPew8T0RR9102-_S3jhEB06L5S02*EZ0RR9100000000000000000000 z0000SR0dW6iEs+q5XdV5HUcCAfpiOe00bZfg&GHi8XIOXWdv*-05q9zI*M{I%7|)F znf?D|f^AIgsa_ZYYX;v)eNhKW>u4fe`}ENmY7!A@8>SC+YEf>gE7GFHhQ`3KFUHWk z(AtDZkU6&Xeh!C@#7;EVfZ(z@jL1|$rS z-h?E5Oh%0IY@&~Z+2+;REA?;E{Y?;PImuB8z;IW8;B0-JJK3wWQlMpr>?8iU;TI?umYrn{eif;bVn>10!}^iiJvufFnTn{oE4;Oj&!P7cSj+Abt0E_k${~ELz}bUhiJNd`zb>KDe~#fDG2! zR;C&Sqo2wHm;2ZLN5wxH(UtAE^Wx$&@8oO)9B;^d<*+o;furxqudku;1^OO8im}-k z@qaw|nE^26MY3u0f=^Gdt z8Jj4YnweWzT4B~U^0s#N4vtRFF0O7$?x4n$_Y9!#c+P^5iiKifSU47eMPgA{G!}!! zVsTg!EQlq=l40>!0+xs+hb51tfTf6~gr$t7f~AV3re2-YaG$S9=USvTsYB|LdZa#S zKpK)pq%mninv!Pjx0}HwU>a`SK5a?Dg_+ZGedVh9lvpU=e{dc@ro3qD|>hUVKJ zk8K>5HMdr1(Kf~={m8T6LpjPntjkKxVK8NOqF>cRG{w-Ump;)B@_trc5FYf#r|ZtN@oTfBa?zclAhXH=ECTJoQ4#5~g^g&DuGeRdgwIiEi1H!pQt zvyNvV&gLy+xek?}If;=&ieORT;0JK*kwR`yP?-p&ng=r{ z6;~3e^;V;$u4Usm?vVSgZlwfnnsL*@VbFk(Ft`h$+BMz=)JBCGYqz>z5$osk>)Xhn z_caY%Xgq6cZrla7SOg)%c0vAM{&#O)-dwL+ zyCF`j*jKN6%|wD`Rpj`1$J7AU7+3Me*}f!L*ohbFdtv(5pUKvP#dlQ9W*!ffq|+Z+ zseLgTMc2pj>M*=A_*{<1(Y2AdG6=5@gNQhuX&_jn$FDY`yha9^g$xS=HuS=Y^X_?~ zDca3of#`x{`?y3OX7o_Q9Km9d^{vMBt>lHTTO&SeCH>*)IXbPwpd8#L+dHB`r*c0K zJI&n4U3qpnTH14>zT6MHqUYCcT+5L5opRQ^w&G27g^+k9 zW@PigEIid@LCR+^df6C%n7U`GJ6rL9>9~&PXGqT9#~=hsB@4@g#MB^R70Ol`uk01!^^pR6P7(WUA|VODCroPBXTX?t7l=Ibamyv%N(epBn>tnt^tL zL4pfr@{Dhz6KNM1-UVaT4el**?ZdI(2A2C0AZCUS&lwi(FL_?GYA{!l>@h5v6FAR5A*fb`Gq;#RiA9+>aRIw+Z;lB}y=6kWbCj^EOu= z3c3o%0D48Ium{`zV-=uQ6IdHnoSAvBHa{@O+D;*# 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 apq#h3?W{2;y>UyU>&E=~;zHMoFE;=MZ!5U~ literal 0 HcmV?d00001 diff --git a/cms/static/cms/js/dist/4.1.0rc3/bundle.admin.base.min.js b/cms/static/cms/js/dist/4.1.0rc3/bundle.admin.base.min.js deleted file mode 100644 index 4f4f5bb480f..00000000000 --- a/cms/static/cms/js/dist/4.1.0rc3/bundle.admin.base.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}(function(){var e=this,t=void 0;Function.prototype.bind||(Function.prototype.bind=function(e){if("function"!=typeof this)throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");var t=Array.prototype.slice.call(arguments,1),n=this,r=function(){},o=function(){return n.apply(this instanceof r?this:e,t.concat(Array.prototype.slice.call(arguments)))};return this.prototype&&(r.prototype=this.prototype),o.prototype=new r,o}),Object.keys||(Object.keys=function(){"use strict";var e=Object.prototype.hasOwnProperty,t=!{toString:null}.propertyIsEnumerable("toString"),n=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=n.length;return function(o){if("object"!=typeof o&&("function"!=typeof o||null===o))throw new TypeError("Object.keys called on non-object");var i,a,s=[];for(i in o)e.call(o,i)&&s.push(i);if(t)for(a=0;a0&&t-1 in e))}function u(e,t,n){if(ce.isFunction(t))return ce.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return ce.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(ge.test(t))return ce.filter(t,e,n);t=ce.filter(t,e)}return ce.grep(e,function(e){return ce.inArray(e,t)>=0!==n})}function c(e,t){do{e=e[t]}while(e&&1!==e.nodeType);return e}function l(e){var t=Se[e]={};return ce.each(e.match(Te)||[],function(e,n){t[n]=!0}),t}function f(){be.addEventListener?(be.removeEventListener("DOMContentLoaded",p,!1),i.removeEventListener("load",p,!1)):(be.detachEvent("onreadystatechange",p),i.detachEvent("onload",p))}function p(){(be.addEventListener||"load"===event.type||"complete"===be.readyState)&&(f(),ce.ready())}function d(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(je,"-$1").toLowerCase();if("string"==typeof(n=e.getAttribute(r))){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:Oe.test(n)?ce.parseJSON(n):n)}catch(e){}ce.data(e,t,n)}else n=void 0}return n}function h(e){var t;for(t in e)if(("data"!==t||!ce.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function m(e,t,n,r){if(ce.acceptData(e)){var o,i,a=ce.expando,s=e.nodeType,u=s?ce.cache:e,c=s?e[a]:e[a]&&a;if(c&&u[c]&&(r||u[c].data)||void 0!==n||"string"!=typeof t)return c||(c=s?e[a]=Z.pop()||ce.guid++:a),u[c]||(u[c]=s?{}:{toJSON:ce.noop}),("object"==typeof t||"function"==typeof t)&&(r?u[c]=ce.extend(u[c],t):u[c].data=ce.extend(u[c].data,t)),i=u[c],r||(i.data||(i.data={}),i=i.data),void 0!==n&&(i[ce.camelCase(t)]=n),"string"==typeof t?null==(o=i[t])&&(o=i[ce.camelCase(t)]):o=i,o}}function v(e,t,n){if(ce.acceptData(e)){var r,o,i=e.nodeType,a=i?ce.cache:e,s=i?e[ce.expando]:ce.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){ce.isArray(t)?t=t.concat(ce.map(t,ce.camelCase)):t in r?t=[t]:(t=ce.camelCase(t),t=t in r?[t]:t.split(" ")),o=t.length;for(;o--;)delete r[t[o]];if(n?!h(r):!ce.isEmptyObject(r))return}(n||(delete a[s].data,h(a[s])))&&(i?ce.cleanData([e],!0):se.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function g(){return!0}function y(){return!1}function b(){try{return be.activeElement}catch(e){}}function w(e){var t=He.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function x(e,t){var n,r,o=0,i=typeof e.getElementsByTagName!==Ce?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==Ce?e.querySelectorAll(t||"*"):void 0;if(!i)for(i=[],n=e.childNodes||e;null!=(r=n[o]);o++)!t||ce.nodeName(r,t)?i.push(r):ce.merge(i,x(r,t));return void 0===t||t&&ce.nodeName(e,t)?ce.merge([e],i):i}function _(e){Le.test(e.type)&&(e.defaultChecked=e.checked)}function T(e,t){return ce.nodeName(e,"table")&&ce.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function S(e){return e.type=(null!==ce.find.attr(e,"type"))+"/"+e.type,e}function E(e){var t=Je.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function k(e,t){for(var n,r=0;null!=(n=e[r]);r++)ce._data(n,"globalEval",!t||ce._data(t[r],"globalEval"))}function C(e,t){if(1===t.nodeType&&ce.hasData(e)){var n,r,o,i=ce._data(e),a=ce._data(t,i),s=i.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,o=s[n].length;o>r;r++)ce.event.add(t,n,s[n][r])}a.data&&(a.data=ce.extend({},a.data))}}function O(e,t){var n,r,o;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!se.noCloneEvent&&t[ce.expando]){o=ce._data(t);for(r in o.events)ce.removeEvent(t,r,o.handle);t.removeAttribute(ce.expando)}"script"===n&&t.text!==e.text?(S(t).text=e.text,E(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),se.html5Clone&&e.innerHTML&&!ce.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Le.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function j(e,t){var n,r=ce(t.createElement(e)).appendTo(t.body),o=i.getDefaultComputedStyle&&(n=i.getDefaultComputedStyle(r[0]))?n.display:ce.css(r[0],"display");return r.detach(),o}function P(e){var t=be,n=rt[e];return n||(n=j(e,t),"none"!==n&&n||(nt=(nt||ce("