diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..14f01789602 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000000..27fd5ce7c6e --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,42 @@ +name: "CodeQL" + +on: + push: + branches: [ "develop", "develop-4", "release/0.10.x", "release/2.1.x", "release/2.2.x", "release/2.3.x", "release/2.4.x", "release/3.0.x", "release/3.1.x", "release/3.2.x", "release/3.3.x", "release/3.4.x", "release/3.5.x", "release/3.6.x", "release/3.7.x", "release/3.8.x", "release/3.9.x", "release/3.10.x", "release/3.11.x", "release/4.0.x", "release/4.0.0.x", "release/4.0.1.x", "release/4.1.x" ] + pull_request: + branches: [ "develop" ] + schedule: + - cron: "40 4 * * 6" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ python, javascript ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: +security-and-quality + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + if: ${{ matrix.language == 'python' || matrix.language == 'javascript' }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 28f47cae1d3..d6960759ea2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,20 +12,23 @@ jobs: name: docs steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: - python-version: '3.9' + python-version: "3.12" cache: 'pip' - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - run: python -m pip install -r docs/requirements.txt + - run: python setup.py install + - run: codespell -w *.rst + - run: codespell -w --skip docs/spelling_wordlist docs - name: Build docs run: | cd docs diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index b3128905aee..ffba12b0f00 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -14,9 +14,9 @@ jobs: node-version: ['18'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm install @@ -24,3 +24,5 @@ jobs: - run: | gulp unitTest gulp lint + - run: gulp icons + - run: gulp sass diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml new file mode 100644 index 00000000000..fc5d65d7cfb --- /dev/null +++ b/.github/workflows/lint-pr.yml @@ -0,0 +1,20 @@ +name: "Lint PR" + +# Validates PR titles against the conventional commit spec +# https://github.com/commitizen/conventional-commit-types + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v4 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index e3696c0f371..92e6c73df5a 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" cache: 'pip' - run: | python -m pip install --upgrade pip diff --git a/.github/workflows/publish-to-live-pypi.yml b/.github/workflows/publish-to-live-pypi.yml index 52f112f8dc7..efafc715270 100644 --- a/.github/workflows/publish-to-live-pypi.yml +++ b/.github/workflows/publish-to-live-pypi.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v3 with: - python-version: '3.10' + python-version: '3.12' - name: Install pypa/build run: >- diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index d56b6da5113..04989836709 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v3 with: - python-version: '3.10' + python-version: '3.12' - name: Install pypa/build run: >- diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 00000000000..71995b9291a --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,16 @@ +name: django CMS spelling + +on: [push, pull_request] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + codespell: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: codespell + uses: codespell-project/actions-codespell@master diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ed1647290d..f2d025656f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,24 +7,28 @@ concurrency: cancel-in-progress: true jobs: - database-postgres: + postgres: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: [ 3.8, 3.9, '3.10', '3.11' ] # latest release minus two + python-version: [ 3.9, '3.10', '3.11', '3.12' ] # latest release minus two requirements-file: [ django-2.2.txt, - django-3.0.txt, - django-3.1.txt, django-3.2.txt, django-4.0.txt, django-4.1.txt, - django-4.2.txt + django-4.2.txt, + django-5.0.txt ] os: [ ubuntu-20.04, ] + exclude: + - requirements-file: django-5.0.txt + python-version: 3.8 + - requirements-file: django-5.0.txt + python-version: 3.9 services: postgres: @@ -39,7 +43,7 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 @@ -62,24 +66,28 @@ jobs: DATABASE_URL: postgres://postgres:postgres@127.0.0.1/postgres - database-mysql: + mysql: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: [ 3.8, 3.9, '3.10', '3.11' ] # latest release minus two + python-version: [ 3.9, '3.10', '3.11', '3.12' ] # latest release minus two requirements-file: [ django-2.2.txt, - django-3.0.txt, - django-3.1.txt, django-3.2.txt, django-4.0.txt, django-4.1.txt, - django-4.2.txt + django-4.2.txt, + django-5.0.txt ] os: [ ubuntu-20.04, ] + exclude: + - requirements-file: django-5.0.txt + python-version: 3.8 + - requirements-file: django-5.0.txt + python-version: 3.9 services: mysql: @@ -93,7 +101,7 @@ jobs: steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 @@ -116,27 +124,29 @@ jobs: env: DATABASE_URL: mysql://root@127.0.0.1/djangocms_test - database-sqlite: + sqlite: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: [ 3.8, 3.9, '3.10', '3.11' ] # latest release minus two + python-version: [ 3.9, '3.10', '3.11', '3.12' ] # latest release minus two requirements-file: [ django-2.2.txt, - django-3.0.txt, - django-3.1.txt, django-3.2.txt, django-4.0.txt, django-4.1.txt, - django-4.2.txt + django-4.2.txt, + django-5.0.txt ] os: [ ubuntu-20.04, ] + exclude: + - requirements-file: django-5.0.txt + python-version: 3.9 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 @@ -155,3 +165,138 @@ jobs: run: python manage.py test env: DATABASE_URL: sqlite://localhost/testdb.sqlite + + django-main-sqlite: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + python-version: ['3.12'] + requirements-file: ['requirements_base.txt'] + django-version: [ + 'https://github.com/django/django/archive/main.tar.gz' + ] + os: [ + ubuntu-20.04, + ] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + sudo apt install gettext gcc -y + python -m pip install --upgrade pip + pip install -r test_requirements/${{ matrix.requirements-file }} + pip install pytest ${{ matrix.django-version }} + python setup.py install + + - name: Test with django test runner + run: python manage.py test + continue-on-error: true + env: + DATABASE_URL: sqlite://localhost/testdb.sqlite + + django-main-postgres: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + python-version: ['3.12'] + requirements-file: ['requirements_base.txt'] + django-version: [ + 'https://github.com/django/django/archive/main.tar.gz' + ] + os: [ + ubuntu-20.04, + ] + + services: + postgres: + image: postgres:13 + env: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: postgres + ports: + - 5432:5432 + # needed because the postgres container does not provide a healthcheck + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - name: Install dependencies + run: | + sudo apt install gettext gcc -y + python -m pip install --upgrade pip + pip install -r test_requirements/${{ matrix.requirements-file }} + pip install pytest ${{ matrix.django-version }} + pip install -r test_requirements/databases.txt + python setup.py install + + - name: Test with django test runner + run: | + python -c "from django import __version__ ; print(f'Django version {__version__}')" + python manage.py test + continue-on-error: true + env: + DATABASE_URL: postgres://postgres:postgres@127.0.0.1/postgres + + django-main-mysql: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + python-version: ['3.12'] + requirements-file: ['requirements_base.txt'] + django-version: [ + 'https://github.com/django/django/archive/main.tar.gz' + ] + os: [ + ubuntu-20.04, + ] + + services: + mysql: + image: mysql:8.0 + env: + MYSQL_ALLOW_EMPTY_PASSWORD: yes + MYSQL_DATABASE: djangocms_test + ports: + - 3306:3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - name: Install dependencies + run: | + sudo apt install gettext gcc -y + python -m pip install --upgrade pip + pip install -r test_requirements/${{ matrix.requirements-file }} + pip install pytest ${{ matrix.django-version }} + pip install -r test_requirements/databases.txt + python setup.py install + + - name: Test with django test runner + run: | + python manage.py test + continue-on-error: true + env: + DATABASE_URL: mysql://root@127.0.0.1/djangocms_test diff --git a/.github/workflows/test_startcmsproject.yml b/.github/workflows/test_startcmsproject.yml new file mode 100644 index 00000000000..c21f9d5e19a --- /dev/null +++ b/.github/workflows/test_startcmsproject.yml @@ -0,0 +1,38 @@ +name: djangocms mysite test + +on: [push, pull_request] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + create-project: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + django-version: [ + '3.2', '4.2', + ] + python-version: ['3.11'] + requirements-file: ['requirements_base.txt'] + os: [ + ubuntu-20.04, + ] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Create project from template + run: | + sudo apt install gettext gcc -y + python -m venv .venv + source ./.venv/bin/activate + python -m pip install --upgrade pip + pip install -e . + djangocms mysite --noinput diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000000..e1bd672f46f --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,20 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +sphinx: + configuration: docs/conf.py + fail_on_warning: false + +formats: + - epub + - pdf + +python: + install: + - requirements: docs/requirements.txt diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 08244abb7a8..d306d46ab5f 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,12 +53,49 @@ 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) + + +* 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! @@ -882,7 +936,7 @@ Thanks to all contributors for their efforts! - Fix issue on django >= 1.6 with page form fields. - Resolve jQuery namespace issues in admin page tree and changeform - Fix issues for PageField in Firefox/Safari -- Fix some Python 3.4 compatibility issue when using proxy modles +- Fix some Python 3.4 compatibility issue when using proxy models - Fix corner case in plugin copy - Documentation fixes - Minor code cleanups diff --git a/CODE_OF_CONDUCT.rst b/CODE_OF_CONDUCT.rst new file mode 100644 index 00000000000..e1e42cf10a6 --- /dev/null +++ b/CODE_OF_CONDUCT.rst @@ -0,0 +1,7 @@ +========================== +django CMS Code of Conduct +========================== + +django CMS is governed by a `Code of Conduct +`_. +All participants in our community and its various forums are expected to abide by it. diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 00000000000..895afe3fb8d --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,102 @@ +============ +CONTRIBUTING +============ + +First, thank you very much, that you would like to contribute to django CMS. +We always welcome contributions, like many other open-source projects. We are +very thankful to the many `present, past and future contributors `_, to our `community heroes `_ and to the `members of the django CMS Association `_. + + +Code of Conduct +=============== + +django CMS is governed by a `Code of Conduct +`_. +All participants in our community and its various forums are expected to abide by it. + + +Issues +====== + +* Please report **any bugs** through `GitHub issues `_. +* For *security issues* please see further below. + +Contributing Code +================ + +Here’s what the pull request process looks like in brief: + +1. Fork our GitHub repository, https://github.com/django-cms/django-cms +2. Work locally and push your changes to your repository. +3. When you feel your code is good enough for inclusion, send us a pull request. +4. After that, please join the `Slack Channel `_ of our Pull Request Review work group (#workgroup-pr-review). This group of friendly community members is dedicated to reviewing pull requests. Report your PR and find a “pr review buddy” who is going to review your pull request. +5. Get acknowledged by the django CMS community for your contribution :-) + +To learn more about basic requirements and standards of code contribution, please familiarize yourself with our comprehensive `documentation `_. + +django CMS commits follow the `Conventional Commits Guideline `_, please try to follow the Guidelines in your commit messages to ease our review & merge process. + + +Proposing large feature additions +================================= + +In terms of proposing large feature additions, we follow the best practice of `DEPS `_. + +To create a proposal... + +1. please use this `DEP `_ template + +2. create a discussion in the main `django CMS repository `_ + +3. join the `Tech Committee `_ `Slack Channel `_ (#technical-committee) and ask for a RFC. + +4. After RFC is completed, add the proposal to the `agenda `_ of the TC for approval. + + +Contribution documentation +========================== + +We maintain comprehensive `contribution documentation `_. +Please familiarise yourself with it before submitting any issues or pull requests. + + +Security issues +=============== + +Please have a look at our security policy for +`how to deal with security issues `_. + +If you think you have discovered a security issue in our code, please do not raise it in any public +forum until we have had a chance to deal with it. + + +Community & Association +======================= + +You can join us online: + +* in our `django CMS Slack channel `_ + +You can join a work group and work collaboratively on django CMS + +* `work groups `_ + +You can also follow: + +* the `@djangocms `_ Twitter account for general announcements + +You can become a member of the django CMS Association and receive benefits + +* `Membership `_ + + +Receive rewards for submitting pull requests +-------------------------------------------- + +Sign up for our `Bounty program `_. + + +Join a work group +================= + +As part of the django CMS Association we have formed several `work groups `_ to work together on different django CMS development topics. If you want to become part of contributor team, feel free to join one of our groups. You will meet friendly people and improve your programming skills and make a real difference in the django CMS open source project. 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/__main__.py b/cms/__main__.py new file mode 100644 index 00000000000..04d6e74f20a --- /dev/null +++ b/cms/__main__.py @@ -0,0 +1,9 @@ +""" +Invokes djangocms when the cms module is run as a script. + +Example: python -m cms mysite +""" +from cms.management import djangocms + +if __name__ == "__main__": + djangocms.execute_from_command_line() diff --git a/cms/admin/forms.py b/cms/admin/forms.py index d11a673e99b..30d3827a120 100644 --- a/cms/admin/forms.py +++ b/cms/admin/forms.py @@ -1099,7 +1099,6 @@ class Meta: 'can_add', 'can_change', 'can_delete', - 'can_publish', 'can_change_advanced_settings', 'can_change_permissions', 'can_move_page', @@ -1143,7 +1142,6 @@ class Meta: 'can_add', 'can_change', 'can_delete', - 'can_publish', 'can_change_advanced_settings', 'can_change_permissions', 'can_move_page', @@ -1154,7 +1152,7 @@ class Meta: class GenericCmsPermissionForm(forms.ModelForm): - """Generic form for User & Grup permissions in cms + """Generic form for User & Group permissions in cms """ _current_user = None diff --git a/cms/admin/pageadmin.py b/cms/admin/pageadmin.py index 9adb9225873..652652a1109 100644 --- a/cms/admin/pageadmin.py +++ b/cms/admin/pageadmin.py @@ -372,10 +372,10 @@ def delete_view(self, request, object_id, extra_context=None): ) # This is bad and I should feel bad. - if 'placeholder' in perms_needed: + if _('placeholder') in perms_needed: perms_needed.remove('placeholder') - if 'page content' in perms_needed: + if _('page content') in perms_needed: perms_needed.remove('page content') if request.POST and not protected: # The user has confirmed the deletion. diff --git a/cms/admin/permissionadmin.py b/cms/admin/permissionadmin.py index 409ae821efd..af981bd8e4e 100644 --- a/cms/admin/permissionadmin.py +++ b/cms/admin/permissionadmin.py @@ -88,7 +88,7 @@ def get_formset(self, request, obj=None, **kwargs): """ Some fields may be excluded here. User can change only permissions which are available for him. E.g. if user does not haves - can_publish flag, he can't change assign can_publish permissions. + can_change flag, he can't change assign can_change permissions. """ exclude = self.exclude or [] if obj: @@ -97,8 +97,6 @@ def get_formset(self, request, obj=None, **kwargs): exclude.append('can_add') if not obj.has_delete_permission(user): exclude.append('can_delete') - if not obj.has_publish_permission(user): - exclude.append('can_publish') if not obj.has_advanced_settings_permission(user): exclude.append('can_change_advanced_settings') if not obj.has_move_page_permission(user): @@ -122,8 +120,8 @@ class ViewRestrictionInlineAdmin(PagePermissionInlineAdmin): class GlobalPagePermissionAdmin(admin.ModelAdmin): - list_display = ['user', 'group', 'can_change', 'can_delete', 'can_publish', 'can_change_permissions'] - list_filter = ['user', 'group', 'can_change', 'can_delete', 'can_publish', 'can_change_permissions'] + list_display = ['user', 'group', 'can_change', 'can_delete', 'can_change_permissions'] + list_filter = ['user', 'group', 'can_change', 'can_delete', 'can_change_permissions'] form = GlobalPagePermissionAdminForm search_fields = [] diff --git a/cms/api.py b/cms/api.py index 6a2f61c3a0c..08c2fe0ab84 100644 --- a/cms/api.py +++ b/cms/api.py @@ -3,7 +3,7 @@ on the models and managers, because the direct API via models and managers is slightly counterintuitive for developers. -Teh api for both Pages and Plugins has changed significantly since django CMS +The api for both Pages and Plugins has changed significantly since django CMS Version 4. Also, the functions defined in this module do sanity checks on arguments. @@ -81,7 +81,6 @@ def _verify_apphook(apphook, namespace): try: assert apphook.__class__ in [app.__class__ for app in apphook_pool.apps.values()] except AssertionError: - print(apphook_pool.apps.values()) raise apphook_name = apphook.__class__.__name__ elif hasattr(apphook, '__module__') and issubclass(apphook, CMSApp): @@ -90,7 +89,6 @@ def _verify_apphook(apphook, namespace): try: assert apphook in apphook_pool.apps except AssertionError: - print(apphook_pool.apps.values()) raise apphook_name = apphook else: @@ -488,7 +486,7 @@ def create_page_user(created_by, user, def assign_user_to_page(page, user, grant_on=ACCESS_PAGE_AND_DESCENDANTS, can_add=False, can_change=False, can_delete=False, - can_change_advanced_settings=False, can_publish=False, + can_change_advanced_settings=False, can_publish=None, can_change_permissions=False, can_move_page=False, can_recover_page=True, can_view=False, grant_all=False, global_permission=False): @@ -507,13 +505,16 @@ def assign_user_to_page(page, user, grant_on=ACCESS_PAGE_AND_DESCENDANTS, :param can_*: Permissions to grant :param bool grant_all: Grant all permissions to the user """ + if can_publish is not None: + warnings.warn('This API function no longer accepts a "can_publish" argument.', + UserWarning, stacklevel=2) + grant_all = grant_all and not global_permission data = { 'can_add': can_add or grant_all, 'can_change': can_change or grant_all, 'can_delete': can_delete or grant_all, 'can_change_advanced_settings': can_change_advanced_settings or grant_all, - 'can_publish': can_publish or grant_all, 'can_change_permissions': can_change_permissions or grant_all, 'can_move_page': can_move_page or grant_all, 'can_view': can_view or grant_all, diff --git a/cms/app_base.py b/cms/app_base.py index 502523d7f18..73a4a1246e7 100644 --- a/cms/app_base.py +++ b/cms/app_base.py @@ -6,7 +6,7 @@ class CMSApp: To create an AppHook subclass ``CMSApp`` in ``cms_apps.py`` :: class MyAppHook(CMSApp): - name = "Problem sovler" + name = "Problem solver" """ #: list of urlconfs: example: ``_urls = ["myapp.urls"]`` _urls = [] @@ -126,7 +126,7 @@ class CMSAppConfig(): CMSAppConfig live in a file called ``cms_config.py``. Apps subclassing ``CMSAppConfig`` can set ``cms_enabled = True`` for their app config to - use django CMS' wizzard functionality. Additional wizzwards are listed in the app config's + use django CMS' wizard functionality. Additional wizzwards are listed in the app config's ``cms_wizzards`` property. The second functionality that django CMS offers is attaching Model objects to the toolbar. To use diff --git a/cms/cache/permissions.py b/cms/cache/permissions.py index 2956441fb01..2ba2ac13974 100644 --- a/cms/cache/permissions.py +++ b/cms/cache/permissions.py @@ -3,7 +3,7 @@ PERMISSION_KEYS = [ 'add_page', 'change_page', 'change_page_advanced_settings', 'change_page_permissions', 'delete_page', 'move_page', - 'publish_page', 'view_page', + 'view_page', ] diff --git a/cms/cache/placeholder.py b/cms/cache/placeholder.py index 53bec32de87..6ab0f1df11b 100644 --- a/cms/cache/placeholder.py +++ b/cms/cache/placeholder.py @@ -41,7 +41,13 @@ def _get_placeholder_cache_version_key(placeholder, lang, site_id): lang=str(lang), site=site_id, ) - if len(key) > 250: + # django itself adds "version" add the end of cache-keys, e.g. ":1". + # -> If `cache.set()` is for example called with `version=""`, it still adds + # `:` at the end. So if we check the length for `> 250`, a length of 249 + # or even 250 ends up in an InvalidCacheKey-exception. + # In order to avoid these errors, we hash the keys at a lower length to also + # have a little buffer. + if len(key) > 200: key = '{prefix}|{hash}'.format( prefix=prefix, hash=hashlib.sha1(key.encode('utf-8')).hexdigest(), diff --git a/cms/cms_config.py b/cms/cms_config.py index a90b0f3f933..d4b067c986b 100644 --- a/cms/cms_config.py +++ b/cms/cms_config.py @@ -15,7 +15,7 @@ class CMSCoreConfig(CMSAppConfig): cms_enabled = True cms_wizards = [cms_page_wizard, cms_subpage_wizard] - cms_toolbar_enabled_models = [(PageContent, render_pagecontent)] + cms_toolbar_enabled_models = [(PageContent, render_pagecontent, "page")] class CMSCoreExtensions(CMSAppExtension): @@ -23,6 +23,7 @@ class CMSCoreExtensions(CMSAppExtension): def __init__(self): self.wizards = {} self.toolbar_enabled_models = {} + self.model_groupers = {} self.toolbar_mixins = [] def configure_wizards(self, cms_config): @@ -49,13 +50,15 @@ def configure_wizards(self, cms_config): def configure_toolbar_enabled_models(self, cms_config): if not isinstance(cms_config.cms_toolbar_enabled_models, Iterable): raise ImproperlyConfigured("cms_toolbar_enabled_models must be iterable") - for model, render_func in cms_config.cms_toolbar_enabled_models: + for model, render_func, *grouper in cms_config.cms_toolbar_enabled_models: if model in self.toolbar_enabled_models: logger.warning( "Model {} already registered for frontend rendering".format(model), ) else: self.toolbar_enabled_models[model] = render_func + if grouper: + self.model_groupers[model] = grouper[0] def configure_toolbar_mixin(self, cms_config): if not issubclass(cms_config.cms_toolbar_mixin, object): diff --git a/cms/cms_menus.py b/cms/cms_menus.py index 52e5dc7aeb4..c05cda453af 100644 --- a/cms/cms_menus.py +++ b/cms/cms_menus.py @@ -79,7 +79,7 @@ def get_menu_node_for_page(renderer, page, language, fallbacks=None): if fallbacks is None: fallbacks = [] - # Theses are simple to port over, since they are not calculated. + # These are simple to port over, since they are not calculated. # Other attributes will be added conditionally later. attr = { 'is_page': True, diff --git a/cms/cms_toolbars.py b/cms/cms_toolbars.py index bb0e6f08966..d6ac79b8e3d 100644 --- a/cms/cms_toolbars.py +++ b/cms/cms_toolbars.py @@ -13,7 +13,7 @@ from cms.api import can_change_page from cms.constants import TEMPLATE_INHERITANCE_MAGIC -from cms.models import Page, PageType, Placeholder +from cms.models import Page, PageContent, PageType, Placeholder from cms.toolbar.items import REFRESH_PAGE, ButtonList, TemplateItem from cms.toolbar.utils import ( get_object_edit_url, @@ -360,7 +360,8 @@ def add_language_menu(self): url = language_changer(code) except NoReverseMatch: url = DefaultLanguageChanger(self.request)(code) - self._language_menu.add_link_item(name, url=url, active=self.current_lang == code) + if url: + self._language_menu.add_link_item(name, url=url, active=self.current_lang == code) else: # We do not have to check every time the toolbar is created self._language_menu = True # Pretend the language menu is already there @@ -383,12 +384,19 @@ class PageToolbar(CMSToolbar): watch_models = [Page, PageType] def get_page_content(self): + if not getattr(self, "page", None): + # No page, no page content + return None + if hasattr(self, "obj") and isinstance(self.obj, PageContent): + # Toolbar object already set (e.g., in edit or preview mode) + return self.obj + # Get from db page_content = self.page.get_content_obj(language=self.current_lang, fallback=False) return page_content or None def has_page_change_permission(self): if not hasattr(self, 'page_change_permission'): - self.page_change_permission = can_change_page(self.request) + self.page_change_permission = can_change_page(self.request) and self.toolbar.object_is_editable() return self.page_change_permission def in_apphook(self): @@ -428,11 +436,28 @@ def get_on_delete_redirect_url(self): # page, if DEBUG == False this could cause a 404 return reverse('pages-root') - # Populate + @property + def title(self): + import warnings + + warnings.warn( + "Title property of PageToolbar will be removed. Use page_content property instead.", + DeprecationWarning, stacklevel=2) + return self.page_content + + @title.setter + def title(self, page_content): + import warnings + + warnings.warn( + "Title property of PageToolbar will be removed. Use page_content property instead.", + DeprecationWarning, stacklevel=2) + self.page_content = page_content + # Populate def populate(self): self.page = self.request.current_page - self.title = self.get_page_content() if self.page else None + self.page_content = self.get_page_content() self.permissions_activated = get_cms_setting('PERMISSION') self.change_admin_menu() self.add_page_menu() @@ -448,7 +473,6 @@ def change_language_menu(self): ) else: can_change = False - if can_change: language_menu = self.toolbar.get_menu(LANGUAGE_MENU_IDENTIFIER) if not language_menu: @@ -484,9 +508,10 @@ def change_language_menu(self): disabled = len(remove) == 1 for code, name in remove: pagecontent = self.page.get_content_obj(code) - translation_delete_url = admin_reverse('cms_pagecontent_delete', args=(pagecontent.pk,)) - url = add_url_parameters(translation_delete_url, language=code) - remove_plugins_menu.add_modal_item(name, url=url, disabled=disabled) + if pagecontent: + translation_delete_url = admin_reverse('cms_pagecontent_delete', args=(pagecontent.pk,)) + url = add_url_parameters(translation_delete_url, language=code) + remove_plugins_menu.add_modal_item(name, url=url, disabled=disabled) if copy: copy_plugins_menu = language_menu.get_or_create_menu( @@ -526,7 +551,7 @@ def change_admin_menu(self): self._changed_admin_menu = True def add_page_menu(self): - if self.page and self.title: + if self.page and self.page_content: edit_mode = self.toolbar.edit_mode_active refresh = self.toolbar.REFRESH_PAGE can_change = user_can_change_page( @@ -548,8 +573,8 @@ def add_page_menu(self): add_page_url = admin_reverse('cms_pagecontent_add') advanced_url = admin_reverse('cms_page_advanced', args=(self.page.pk,)) - page_settings_url = admin_reverse('cms_pagecontent_change', args=(self.title.pk,)) - duplicate_page_url = admin_reverse('cms_pagecontent_duplicate', args=[self.title.pk]) + page_settings_url = admin_reverse('cms_pagecontent_change', args=(self.page_content.pk,)) + duplicate_page_url = admin_reverse('cms_pagecontent_duplicate', args=[self.page_content.pk]) can_add_root_page = page_permissions.user_can_add_page( user=self.request.user, @@ -600,8 +625,11 @@ def add_page_menu(self): # page edit with force_language(self.current_lang): - page_edit_url = get_object_edit_url(self.title) if self.title else '' - current_page_menu.add_link_item(_('Edit this Page'), disabled=edit_mode, url=page_edit_url) + disabled = ( + edit_mode or not self.toolbar.object_is_editable() + ) + page_edit_url = get_object_edit_url(self.page_content) if self.page_content else '' + current_page_menu.add_link_item(_('Edit this Page'), disabled=disabled, url=page_edit_url) # page settings page_settings_url = add_url_parameters(page_settings_url, language=self.toolbar.request_language) @@ -617,7 +645,7 @@ def add_page_menu(self): # templates menu if edit_mode: - action = admin_reverse('cms_pagecontent_change_template', args=(self.title.pk,)) + action = admin_reverse('cms_pagecontent_change_template', args=(self.page_content.pk,)) if can_change_advanced: templates_menu = current_page_menu.get_or_create_menu( @@ -627,16 +655,16 @@ def add_page_menu(self): ) for path, name in get_cms_setting('TEMPLATES'): - active = self.page.template == path + active = self.page_content.template == path if path == TEMPLATE_INHERITANCE_MAGIC: templates_menu.add_break(TEMPLATE_MENU_BREAK) templates_menu.add_ajax_item(name, action=action, data={'template': path}, active=active, on_success=refresh) # navigation toggle - in_navigation = self.title.in_navigation + in_navigation = self.page_content.in_navigation nav_title = _('Hide in navigation') if in_navigation else _('Display in navigation') - nav_action = admin_reverse('cms_pagecontent_change_innavigation', args=(self.title.pk,)) + nav_action = admin_reverse('cms_pagecontent_change_innavigation', args=(self.page_content.pk,)) current_page_menu.add_ajax_item( nav_title, action=nav_action, diff --git a/cms/extensions/extension_pool.py b/cms/extensions/extension_pool.py index a18abd3d247..544dfc1cb2a 100644 --- a/cms/extensions/extension_pool.py +++ b/cms/extensions/extension_pool.py @@ -57,11 +57,11 @@ def _copy_page_extensions(self, source_page, target_page, language): instance.copy(target_page, language) def _copy_content_extensions(self, source_page, target_page, language): - source_content = source_page.pagecontent_set(manager="admin_manager").get(language=language) - target_title = target_page.pagecontent_set(manager="admin_manager").get(language=language) + source_content = source_page.pagecontent_set(manager="admin_manager").current_content(language=language).get() + target_content = target_page.pagecontent_set(manager="admin_manager").current_content(language=language).get() for extension in self.page_content_extensions: for instance in extension.objects.filter(extended_object=source_content): - instance.copy(target_title, language) + instance.copy(target_content, language) def copy_extensions(self, source_page, target_page, languages=None): if not languages: diff --git a/cms/extensions/toolbar.py b/cms/extensions/toolbar.py index 62deb766052..b43f12f8d51 100644 --- a/cms/extensions/toolbar.py +++ b/cms/extensions/toolbar.py @@ -1,5 +1,8 @@ +import warnings + from django.urls import NoReverseMatch +from cms.models import PageContent from cms.toolbar_base import CMSToolbar from cms.utils import get_language_list from cms.utils.page_permissions import user_can_change_page @@ -7,8 +10,11 @@ class ExtensionToolbar(CMSToolbar): + """Offers simplified API for providing the user access to the admin of page extensions and + page content extensions through the toolbar.""" model = None page = None + page_content = None def _setup_extension_toolbar(self): """ @@ -22,12 +28,18 @@ def _setup_extension_toolbar(self): page = self._get_page() if page and user_can_change_page(self.request.user, page=page): - return self.toolbar.get_or_create_menu('page') + return self.toolbar.get_or_create_menu("page") return def _get_page(self): if not self.page: - self.page = self.request.current_page + obj = self.toolbar.get_object() # Try getting the PageContent object from the toolbar + if isinstance(obj, PageContent): + self.page = obj.page + self.page_content = obj + else: + self.page = self.request.current_page # Otherwise get Page object from the request + self.page_content = self.page.get_content_obj(self.current_lang) return self.page def get_page_extension_admin(self): @@ -45,60 +57,81 @@ def get_page_extension_admin(self): except self.model.DoesNotExist: page_extension = None try: - model_name = self.model.__name__.lower() + app_label, model_name = self.model._meta.app_label, self.model.__name__.lower() if page_extension: - admin_url = admin_reverse( - '%s_%s_change' % (self.model._meta.app_label, model_name), - args=(page_extension.pk,)) + admin_url = admin_reverse(f"{app_label}_{model_name}_change", args=(page_extension.pk,)) else: - admin_url = "%s?extended_object=%s" % ( - admin_reverse('%s_%s_add' % (self.model._meta.app_label, model_name)), - self.page.pk) + admin_url = "{}?extended_object={}".format( + admin_reverse(f"{app_label}_{model_name}_add"), self.page.pk + ) except NoReverseMatch: # pragma: no cover admin_url = None return page_extension, admin_url def get_title_extension_admin(self, language=None): """ - Get the admin urls for the title extensions menu items, depending on whether a TitleExtension instance exists - for each PageContent in the current page. - A single language can be passed to only work on a single title. + Deprecated. - Return a list of tuples of the title extension and the url; the extension is None if no instance exists, - the url is None is no admin is registered for the extension. + Reflects now obsolete behavior in django CMS 3.x: + + Get the admin urls for the page content extensions menu items, depending on whether a + :class:`~cms.extensions.models.PageContentExtension` instance exists for each + :class:`~cms.models.contentmodels.PageContent` in the current page. + A single language can be passed to only work on a single page content object. + + Return a list of tuples of the page content extension and the url; the extension is None + if no instance exists, the url is None is no admin is registered for the extension. """ + warnings.warn( + "get_title_extension_admin has been deprecated and replaced by get_page_content_extension_admin", + DeprecationWarning, + stacklevel=2, + ) page = self._get_page() + + page_contents = ( + page.pagecontent_set(manager="admin_manager") + .latest_content() + .filter(language__in=get_language_list(page.node.site_id)) + ) urls = [] - if language: - titles = page.get_content_obj(language), - else: - titles = page.pagecontent_set.filter(language__in=get_language_list(page.node.site_id)) - # Titles - for title in titles: - try: - title_extension = self.model.objects.get(extended_object_id=title.pk) - except self.model.DoesNotExist: - title_extension = None - try: - model_name = self.model.__name__.lower() - if title_extension: - admin_url = admin_reverse( - '%s_%s_change' % (self.model._meta.app_label, model_name), - args=(title_extension.pk,)) - else: - admin_url = "%s?extended_object=%s" % ( - admin_reverse('%s_%s_add' % (self.model._meta.app_label, model_name)), - title.pk) - except NoReverseMatch: # pragma: no cover - admin_url = None + + for page_content in page_contents: + admin_url = self.get_page_content_extension_admin(page_content) if admin_url: - urls.append((title_extension, admin_url)) + urls.append(admin_url) return urls + def get_page_content_extension_admin(self, page_content_obj=None): + """ + Get the admin url for the page content extensions menu item, depending on whether a + :class:`~cms.extensions.models.PageContentExtension` instance exists for the + :class:`~cms.models.contentmodels.PageContent` displayed. + + Return a tuple of the page content extension and the url; the extension is None + if no instance exists, the url is None is no admin is registered for the extension. + """ + self._get_page() + page_content = page_content_obj or self.page_content + try: + pagecontent_extension = self.model.objects.get(extended_object_id=page_content.pk) + except self.model.DoesNotExist: + pagecontent_extension = None + try: + app_label, model_name = self.model._meta.app_label, self.model.__name__.lower() + if pagecontent_extension: + admin_url = admin_reverse(f"{app_label}_{model_name}_change", args=(pagecontent_extension.pk,)) + else: + admin_url = "{}?extended_object={}".format( + admin_reverse(f"{app_label}_{model_name}_add"), page_content.pk + ) + except NoReverseMatch: # pragma: no cover + admin_url = None + return pagecontent_extension, admin_url + def _get_sub_menu(self, current_menu, key, label, position=None): """ Utility function to get a submenu of the current menu """ - extension_menu = current_menu.get_or_create_menu( - key, label, position=position) + extension_menu = current_menu.get_or_create_menu(key, label, position=position) return extension_menu diff --git a/cms/forms/fields.py b/cms/forms/fields.py index e1d6ddb238c..ec81e31e68e 100644 --- a/cms/forms/fields.py +++ b/cms/forms/fields.py @@ -1,16 +1,22 @@ +import warnings + from django import forms from django.contrib.admin.widgets import RelatedFieldWidgetWrapper from django.core.validators import EMPTY_VALUES +from django.forms import ChoiceField from django.utils.translation import gettext_lazy as _ from cms.forms.utils import get_page_choices, get_site_choices from cms.forms.validators import validate_url from cms.forms.widgets import PageSelectWidget, PageSmartLinkWidget from cms.models.pagemodel import Page +from cms.utils.compat import DJANGO_4_2 -class SuperLazyIterator(): +class SuperLazyIterator: def __init__(self, func): + warnings.warn("SuperLazyIterator is deprecated.", + DeprecationWarning, stacklevel=2) self.func = func def __iter__(self): @@ -18,11 +24,24 @@ def __iter__(self): class LazyChoiceField(forms.ChoiceField): - def _set_choices(self, value): - # we overwrite this function so no list(value) is called - self._choices = self.widget.choices = value - choices = property(forms.ChoiceField._get_choices, _set_choices) + def __init__(self, *args, **kwargs): + warnings.warn("LazyChoiceField is deprecated. Use Django's ChoiceField instead.", + DeprecationWarning, stacklevel=2) + super().__init__(*args, **kwargs) + + @property + def choices(self): + return self._choices + + @choices.setter + def choices(self, value): + # we overwrite this function so no list(value) or normalize_choices(value) is called + # also, do not call the widget's setter as of Django 5 + if DJANGO_4_2: + self._choices = self.widget.choices = value + else: + self._choices = self.widget._choices = value class PageSelectFormField(forms.MultiValueField): @@ -45,13 +64,11 @@ def __init__(self, queryset=None, empty_label="---------", cache_choices=False, errors = self.default_error_messages.copy() if 'error_messages' in kwargs: errors.update(kwargs['error_messages']) - site_choices = SuperLazyIterator(get_site_choices) - page_choices = SuperLazyIterator(get_page_choices) self.limit_choices_to = limit_choices_to kwargs['required'] = required fields = ( - LazyChoiceField(choices=site_choices, required=False, error_messages={'invalid': errors['invalid_site']}), - LazyChoiceField(choices=page_choices, required=False, error_messages={'invalid': errors['invalid_page']}), + ChoiceField(choices=get_site_choices, required=False, error_messages={'invalid': errors['invalid_site']}), + ChoiceField(choices=get_page_choices, required=False, error_messages={'invalid': errors['invalid_page']}), ) # Remove the unexpected blank kwarg if it's supplied, diff --git a/cms/locale/af/LC_MESSAGES/django.mo b/cms/locale/af/LC_MESSAGES/django.mo index e2b287fec86..8bbe7bc24d1 100644 Binary files a/cms/locale/af/LC_MESSAGES/django.mo and b/cms/locale/af/LC_MESSAGES/django.mo differ 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 758a9c4935c..6d1f07d51d9 100644 Binary files a/cms/locale/af/LC_MESSAGES/djangojs.mo and b/cms/locale/af/LC_MESSAGES/djangojs.mo differ 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 51f07a75518..ce9e92698e7 100644 Binary files a/cms/locale/ar/LC_MESSAGES/django.mo and b/cms/locale/ar/LC_MESSAGES/django.mo differ diff --git a/cms/locale/ar/LC_MESSAGES/django.po b/cms/locale/ar/LC_MESSAGES/django.po index cb7da580f79..1788290fcf9 100644 --- a/cms/locale/ar/LC_MESSAGES/django.po +++ b/cms/locale/ar/LC_MESSAGES/django.po @@ -3,25 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Ahmed H , 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 75e190d0f2b..9ca9c5f122e 100644 Binary files a/cms/locale/ar/LC_MESSAGES/djangojs.mo and b/cms/locale/ar/LC_MESSAGES/djangojs.mo differ 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 925265d47ec..7715cc1f989 100644 Binary files a/cms/locale/ar_SA/LC_MESSAGES/django.mo and b/cms/locale/ar_SA/LC_MESSAGES/django.mo differ 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 3736f52e0b3..0eb02fcb2b7 100644 Binary files a/cms/locale/ar_SA/LC_MESSAGES/djangojs.mo and b/cms/locale/ar_SA/LC_MESSAGES/djangojs.mo differ 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 b9ef9bf57ae..d5642c72544 100644 Binary files a/cms/locale/be/LC_MESSAGES/django.mo and b/cms/locale/be/LC_MESSAGES/django.mo differ 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 516dca04ea7..27823088581 100644 Binary files a/cms/locale/be/LC_MESSAGES/djangojs.mo and b/cms/locale/be/LC_MESSAGES/djangojs.mo differ 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 a5e98af915a..15b860c7330 100644 Binary files a/cms/locale/bg/LC_MESSAGES/django.mo and b/cms/locale/bg/LC_MESSAGES/django.mo differ 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 f8bc74abee7..6527a1023c0 100644 Binary files a/cms/locale/bg/LC_MESSAGES/djangojs.mo and b/cms/locale/bg/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/bg/LC_MESSAGES/djangojs.po b/cms/locale/bg/LC_MESSAGES/djangojs.po index f17b6f73cc2..cc5c48a988b 100644 --- a/cms/locale/bg/LC_MESSAGES/djangojs.po +++ b/cms/locale/bg/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: 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 c95a9ca6326..29fdb9aa300 100644 Binary files a/cms/locale/bn/LC_MESSAGES/django.mo and b/cms/locale/bn/LC_MESSAGES/django.mo differ 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 b85cc771b51..5a9d9f98bed 100644 Binary files a/cms/locale/bn/LC_MESSAGES/djangojs.mo and b/cms/locale/bn/LC_MESSAGES/djangojs.mo differ 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 ccb4920f59a..ae413cdffd0 100644 Binary files a/cms/locale/ca/LC_MESSAGES/django.mo and b/cms/locale/ca/LC_MESSAGES/django.mo differ 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 1d752dbd133..2f85ee9347c 100644 Binary files a/cms/locale/ca/LC_MESSAGES/djangojs.mo and b/cms/locale/ca/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ca/LC_MESSAGES/djangojs.po b/cms/locale/ca/LC_MESSAGES/djangojs.po index 5bb34653e40..6b94c97a9c2 100644 --- a/cms/locale/ca/LC_MESSAGES/djangojs.po +++ b/cms/locale/ca/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: 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 c2308b21fe4..88058d20b1d 100644 Binary files a/cms/locale/cs/LC_MESSAGES/django.mo and b/cms/locale/cs/LC_MESSAGES/django.mo differ diff --git a/cms/locale/cs/LC_MESSAGES/django.po b/cms/locale/cs/LC_MESSAGES/django.po index e1cf4510f3c..f8a6a895154 100644 --- a/cms/locale/cs/LC_MESSAGES/django.po +++ b/cms/locale/cs/LC_MESSAGES/django.po @@ -3,29 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Jiří Vírava , 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 19ea2b36a7e..4f66768b1f1 100644 Binary files a/cms/locale/cs/LC_MESSAGES/djangojs.mo and b/cms/locale/cs/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/cs/LC_MESSAGES/djangojs.po b/cms/locale/cs/LC_MESSAGES/djangojs.po index 8902e59faf8..710b482d6db 100644 --- a/cms/locale/cs/LC_MESSAGES/djangojs.po +++ b/cms/locale/cs/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: 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 222eedefe30..9105f5d42a9 100644 Binary files a/cms/locale/cs_CZ/LC_MESSAGES/django.mo and b/cms/locale/cs_CZ/LC_MESSAGES/django.mo differ 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 2cfbb4760e3..b76d2320d84 100644 Binary files a/cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo and b/cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo differ 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 dfbe2795a72..10d4b17da35 100644 Binary files a/cms/locale/cy/LC_MESSAGES/django.mo and b/cms/locale/cy/LC_MESSAGES/django.mo differ diff --git a/cms/locale/cy/LC_MESSAGES/django.po b/cms/locale/cy/LC_MESSAGES/django.po index e2915841961..00ed9c87e63 100644 --- a/cms/locale/cy/LC_MESSAGES/django.po +++ b/cms/locale/cy/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: 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 326345f8454..0c7c6d69fa8 100644 Binary files a/cms/locale/cy/LC_MESSAGES/djangojs.mo and b/cms/locale/cy/LC_MESSAGES/djangojs.mo differ 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 a520546c51d..4c998d51262 100644 Binary files a/cms/locale/da/LC_MESSAGES/django.mo and b/cms/locale/da/LC_MESSAGES/django.mo differ 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 82afac5f3c4..6cc7e693fe4 100644 Binary files a/cms/locale/da/LC_MESSAGES/djangojs.mo and b/cms/locale/da/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/da/LC_MESSAGES/djangojs.po b/cms/locale/da/LC_MESSAGES/djangojs.po index 56d810de04b..c50e5290c19 100644 --- a/cms/locale/da/LC_MESSAGES/djangojs.po +++ b/cms/locale/da/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: 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 bc634e00746..764e983a5d7 100644 Binary files a/cms/locale/de/LC_MESSAGES/django.mo and b/cms/locale/de/LC_MESSAGES/django.mo differ 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 270e44e1044..abc2edf8a57 100644 Binary files a/cms/locale/de/LC_MESSAGES/djangojs.mo and b/cms/locale/de/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/de/LC_MESSAGES/djangojs.po b/cms/locale/de/LC_MESSAGES/djangojs.po index a062b888963..c2d898f9a80 100644 --- a/cms/locale/de/LC_MESSAGES/djangojs.po +++ b/cms/locale/de/LC_MESSAGES/djangojs.po @@ -6,20 +6,30 @@ # Translators: # Jonas Obrist , 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 55a87304de4..95f651a71a7 100644 Binary files a/cms/locale/el/LC_MESSAGES/django.mo and b/cms/locale/el/LC_MESSAGES/django.mo differ 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 565e540689e..8379e30473c 100644 Binary files a/cms/locale/el/LC_MESSAGES/djangojs.mo and b/cms/locale/el/LC_MESSAGES/djangojs.mo differ 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 60ac39c42d7..0a2ce43c291 100644 Binary files a/cms/locale/en/LC_MESSAGES/django.mo and b/cms/locale/en/LC_MESSAGES/django.mo differ diff --git a/cms/locale/en/LC_MESSAGES/django.po b/cms/locale/en/LC_MESSAGES/django.po index 0cf35b395af..69a6b4a1643 100644 --- a/cms/locale/en/LC_MESSAGES/django.po +++ b/cms/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: django-cms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-25 16:36+0000\n" +"POT-Creation-Date: 2023-08-25 14:47+0000\n" "PO-Revision-Date: 2015-11-11 17:31+0000\n" "Last-Translator: yakky \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" @@ -71,10 +68,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 +89,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 +107,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 +117,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 +144,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 +192,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 +225,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 +259,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 +297,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 +306,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 +344,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 +410,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 +447,7 @@ msgid "Disable toolbar" msgstr "Disable toolbar" msgid "Shortcuts..." -msgstr "" +msgstr "Shortcuts..." msgid "Users" msgstr "Users" @@ -488,29 +462,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 +485,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 +530,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 +551,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 +656,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 +697,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 +743,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 +867,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 +939,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 +1019,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 +1028,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 +1040,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 +1052,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 +1069,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 +1096,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 +1106,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 +1122,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 +1149,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 +1160,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 +1208,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,23 +1225,22 @@ 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" -msgid "The following error occured:" -msgstr "The following error occured:" +msgid "The following error occurred:" +msgstr "The following error occurred:" -#, 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 +1251,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 +1397,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 +1410,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 +1423,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 +1447,7 @@ msgid "Next" msgstr "Next" msgid "Unknown" -msgstr "" +msgstr "Unknown" #, python-format msgid "Page not found on %(domain)s" @@ -1668,10 +1532,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 +1541,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 +1554,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 +1577,6 @@ msgstr "Static Menu2" msgid "Static Menu3" msgstr "Static Menu3" -#, fuzzy -#| msgid "Static Menu" msgid "Static Menu4" msgstr "Static Menu" @@ -1746,15 +1604,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 +1632,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." @@ -1792,422 +1650,5 @@ msgstr "Create a new %s instance." 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" +#~ 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 6c497d9f872..b09e3c7f0a9 100644 Binary files a/cms/locale/en_GB/LC_MESSAGES/django.mo and b/cms/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/cms/locale/en_GB/LC_MESSAGES/django.po b/cms/locale/en_GB/LC_MESSAGES/django.po index 64b178ff8e8..cb7103ef377 100644 --- a/cms/locale/en_GB/LC_MESSAGES/django.po +++ b/cms/locale/en_GB/LC_MESSAGES/django.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Martin Koistinen , 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 3294b4fd323..80210548630 100644 Binary files a/cms/locale/en_GB/LC_MESSAGES/djangojs.mo and b/cms/locale/en_GB/LC_MESSAGES/djangojs.mo differ 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 79d5fe9f608..643ab1ef956 100644 Binary files a/cms/locale/en_HK/LC_MESSAGES/django.mo and b/cms/locale/en_HK/LC_MESSAGES/django.mo differ 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 ab9999f96df..33d3fce9658 100644 Binary files a/cms/locale/en_HK/LC_MESSAGES/djangojs.mo and b/cms/locale/en_HK/LC_MESSAGES/djangojs.mo differ 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 0d26f3ca3f3..4ecb8125678 100644 Binary files a/cms/locale/en_US/LC_MESSAGES/django.mo and b/cms/locale/en_US/LC_MESSAGES/django.mo differ 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 e7db5dfb5a6..721e1e9850c 100644 Binary files a/cms/locale/en_US/LC_MESSAGES/djangojs.mo and b/cms/locale/en_US/LC_MESSAGES/djangojs.mo differ 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 54e4007deea..1660dcf5574 100644 Binary files a/cms/locale/eo/LC_MESSAGES/django.mo and b/cms/locale/eo/LC_MESSAGES/django.mo differ 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 50ffd1e1a61..ef2e3eb6d19 100644 Binary files a/cms/locale/eo/LC_MESSAGES/djangojs.mo and b/cms/locale/eo/LC_MESSAGES/djangojs.mo differ 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 89d97e35052..1cb606333f4 100644 Binary files a/cms/locale/es/LC_MESSAGES/django.mo and b/cms/locale/es/LC_MESSAGES/django.mo differ diff --git a/cms/locale/es/LC_MESSAGES/django.po b/cms/locale/es/LC_MESSAGES/django.po index 9f0971205c2..b1b63ea841b 100644 --- a/cms/locale/es/LC_MESSAGES/django.po +++ b/cms/locale/es/LC_MESSAGES/django.po @@ -3,50 +3,27 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# 2lopez , 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 3b464bc2238..8c577f95bcb 100644 Binary files a/cms/locale/es/LC_MESSAGES/djangojs.mo and b/cms/locale/es/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/es/LC_MESSAGES/djangojs.po b/cms/locale/es/LC_MESSAGES/djangojs.po index a79cff74f8b..b1e14cc72d3 100644 --- a/cms/locale/es/LC_MESSAGES/djangojs.po +++ b/cms/locale/es/LC_MESSAGES/djangojs.po @@ -5,20 +5,29 @@ # Translators: # Translators: # Edwin Caldon , 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 4d2c5aca265..1f3ad74ffe0 100644 Binary files a/cms/locale/es_AR/LC_MESSAGES/django.mo and b/cms/locale/es_AR/LC_MESSAGES/django.mo differ 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 8b7a7c53f70..bd3b8b78ccb 100644 Binary files a/cms/locale/es_AR/LC_MESSAGES/djangojs.mo and b/cms/locale/es_AR/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/es_AR/LC_MESSAGES/djangojs.po b/cms/locale/es_AR/LC_MESSAGES/djangojs.po index 1ea731d7bf2..44643a9a76a 100644 --- a/cms/locale/es_AR/LC_MESSAGES/djangojs.po +++ b/cms/locale/es_AR/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: 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 23f857aace0..c210ac1315d 100644 Binary files a/cms/locale/es_BO/LC_MESSAGES/django.mo and b/cms/locale/es_BO/LC_MESSAGES/django.mo differ diff --git a/cms/locale/es_BO/LC_MESSAGES/django.po b/cms/locale/es_BO/LC_MESSAGES/django.po index f49485ca0b5..c03b834c9ed 100644 --- a/cms/locale/es_BO/LC_MESSAGES/django.po +++ b/cms/locale/es_BO/LC_MESSAGES/django.po @@ -3,66 +3,55 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# danirus , 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 68598288335..bd1734d8c18 100644 Binary files a/cms/locale/es_BO/LC_MESSAGES/djangojs.mo and b/cms/locale/es_BO/LC_MESSAGES/djangojs.mo differ 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 948f48c762b..9381c4a77d5 100644 Binary files a/cms/locale/es_DO/LC_MESSAGES/django.mo and b/cms/locale/es_DO/LC_MESSAGES/django.mo differ diff --git a/cms/locale/es_DO/LC_MESSAGES/django.po b/cms/locale/es_DO/LC_MESSAGES/django.po index 996b919553c..b4b1eaf422b 100644 --- a/cms/locale/es_DO/LC_MESSAGES/django.po +++ b/cms/locale/es_DO/LC_MESSAGES/django.po @@ -3,21 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Pavel Nunez , 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 1e871cf4be5..34cc3866a62 100644 Binary files a/cms/locale/es_DO/LC_MESSAGES/djangojs.mo and b/cms/locale/es_DO/LC_MESSAGES/djangojs.mo differ 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 ac459f792e8..0086404b40e 100644 Binary files a/cms/locale/et/LC_MESSAGES/django.mo and b/cms/locale/et/LC_MESSAGES/django.mo differ 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 3adbb3377f8..5509a97acf0 100644 Binary files a/cms/locale/et/LC_MESSAGES/djangojs.mo and b/cms/locale/et/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/et/LC_MESSAGES/djangojs.po b/cms/locale/et/LC_MESSAGES/djangojs.po index dab68650606..846f7664a4e 100644 --- a/cms/locale/et/LC_MESSAGES/djangojs.po +++ b/cms/locale/et/LC_MESSAGES/djangojs.po @@ -4,21 +4,30 @@ # # Translators: # Translators: -# Martin Pajuste , 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 802b2a0d9b1..e6c9bcec898 100644 Binary files a/cms/locale/eu/LC_MESSAGES/django.mo and b/cms/locale/eu/LC_MESSAGES/django.mo differ diff --git a/cms/locale/eu/LC_MESSAGES/django.po b/cms/locale/eu/LC_MESSAGES/django.po index c078274b84c..c097e4dfbe5 100644 --- a/cms/locale/eu/LC_MESSAGES/django.po +++ b/cms/locale/eu/LC_MESSAGES/django.po @@ -3,17 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Ales Zabala Alava , 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 f3c549a63a1..2801c808de8 100644 Binary files a/cms/locale/eu/LC_MESSAGES/djangojs.mo and b/cms/locale/eu/LC_MESSAGES/djangojs.mo differ 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 cb5e1c8654b..4770f0aa41e 100644 Binary files a/cms/locale/fa/LC_MESSAGES/django.mo and b/cms/locale/fa/LC_MESSAGES/django.mo differ 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 269a92ea1bc..8bd408bc7d5 100644 Binary files a/cms/locale/fa/LC_MESSAGES/djangojs.mo and b/cms/locale/fa/LC_MESSAGES/djangojs.mo differ 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 f520023f81c..d1a34731271 100644 Binary files a/cms/locale/fa_IR/LC_MESSAGES/django.mo and b/cms/locale/fa_IR/LC_MESSAGES/django.mo differ 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 18a2ec3a124..ed718f7b13d 100644 Binary files a/cms/locale/fa_IR/LC_MESSAGES/djangojs.mo and b/cms/locale/fa_IR/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/fa_IR/LC_MESSAGES/djangojs.po b/cms/locale/fa_IR/LC_MESSAGES/djangojs.po index 3aa69507f25..d253d3f1bfb 100644 --- a/cms/locale/fa_IR/LC_MESSAGES/djangojs.po +++ b/cms/locale/fa_IR/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: 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 f74a0ec7bc1..5e7d793bcfb 100644 Binary files a/cms/locale/fi/LC_MESSAGES/django.mo and b/cms/locale/fi/LC_MESSAGES/django.mo differ 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 f9a222255a8..a4cc5cdaa7f 100644 Binary files a/cms/locale/fi/LC_MESSAGES/djangojs.mo and b/cms/locale/fi/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/fi/LC_MESSAGES/djangojs.po b/cms/locale/fi/LC_MESSAGES/djangojs.po index e31b02d0e39..d33938e2ac2 100644 --- a/cms/locale/fi/LC_MESSAGES/djangojs.po +++ b/cms/locale/fi/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: 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 51caf178b67..56c970469ab 100644 Binary files a/cms/locale/fi_FI/LC_MESSAGES/django.mo and b/cms/locale/fi_FI/LC_MESSAGES/django.mo differ diff --git a/cms/locale/fi_FI/LC_MESSAGES/django.po b/cms/locale/fi_FI/LC_MESSAGES/django.po index fdf9b191d12..0af3ace4332 100644 --- a/cms/locale/fi_FI/LC_MESSAGES/django.po +++ b/cms/locale/fi_FI/LC_MESSAGES/django.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Niklas Jerva , 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 b50009e6769..ca44807233c 100644 Binary files a/cms/locale/fi_FI/LC_MESSAGES/djangojs.mo and b/cms/locale/fi_FI/LC_MESSAGES/djangojs.mo differ 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 5b5bd94297a..2889ef8e6cc 100644 Binary files a/cms/locale/fr/LC_MESSAGES/django.mo and b/cms/locale/fr/LC_MESSAGES/django.mo differ diff --git a/cms/locale/fr/LC_MESSAGES/django.po b/cms/locale/fr/LC_MESSAGES/django.po index 815fcb45744..e978d452427 100644 --- a/cms/locale/fr/LC_MESSAGES/django.po +++ b/cms/locale/fr/LC_MESSAGES/django.po @@ -3,53 +3,30 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# adrien.delhorme, 2014 -# Adrien Delhorme, 2017,2019 -# Adrien Delhorme, 2014 -# Alban Tiberghien , 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 fc1f5d26cfd..6709733a622 100644 Binary files a/cms/locale/fr/LC_MESSAGES/djangojs.mo and b/cms/locale/fr/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/fr/LC_MESSAGES/djangojs.po b/cms/locale/fr/LC_MESSAGES/djangojs.po index 9c1aa8d70ba..81fac606cca 100644 --- a/cms/locale/fr/LC_MESSAGES/djangojs.po +++ b/cms/locale/fr/LC_MESSAGES/djangojs.po @@ -5,21 +5,32 @@ # Translators: # Translators: # Bertrand Bordage , 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 65d335b7cf6..ee6c44a7de4 100644 Binary files a/cms/locale/fr_CA/LC_MESSAGES/django.mo and b/cms/locale/fr_CA/LC_MESSAGES/django.mo differ diff --git a/cms/locale/fr_CA/LC_MESSAGES/django.po b/cms/locale/fr_CA/LC_MESSAGES/django.po index 67d26a83acf..fb058910e5c 100644 --- a/cms/locale/fr_CA/LC_MESSAGES/django.po +++ b/cms/locale/fr_CA/LC_MESSAGES/django.po @@ -3,20 +3,19 @@ # 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: 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 3f1f609ab51..b0f7c4682d8 100644 Binary files a/cms/locale/fr_CA/LC_MESSAGES/djangojs.mo and b/cms/locale/fr_CA/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/fr_CA/LC_MESSAGES/djangojs.po b/cms/locale/fr_CA/LC_MESSAGES/djangojs.po index 7d783bf34d2..79708cb23e9 100644 --- a/cms/locale/fr_CA/LC_MESSAGES/djangojs.po +++ b/cms/locale/fr_CA/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: 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 1cb8fff7477..0e153a1f647 100644 Binary files a/cms/locale/ga/LC_MESSAGES/django.mo and b/cms/locale/ga/LC_MESSAGES/django.mo differ diff --git a/cms/locale/ga/LC_MESSAGES/django.po b/cms/locale/ga/LC_MESSAGES/django.po index e955096fe83..a1f99b5b923 100644 --- a/cms/locale/ga/LC_MESSAGES/django.po +++ b/cms/locale/ga/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: 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 266453e2f03..6ea6c8c90e7 100644 Binary files a/cms/locale/ga/LC_MESSAGES/djangojs.mo and b/cms/locale/ga/LC_MESSAGES/djangojs.mo differ 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 4cdd293dc4b..0fee563994c 100644 Binary files a/cms/locale/gl/LC_MESSAGES/django.mo and b/cms/locale/gl/LC_MESSAGES/django.mo differ 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 d673728e62a..740a0e702cd 100644 Binary files a/cms/locale/gl/LC_MESSAGES/djangojs.mo and b/cms/locale/gl/LC_MESSAGES/djangojs.mo differ 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 9c4f4615989..a3b403e4252 100644 Binary files a/cms/locale/gu/LC_MESSAGES/django.mo and b/cms/locale/gu/LC_MESSAGES/django.mo differ 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 85985d155f4..b3277af9def 100644 Binary files a/cms/locale/gu/LC_MESSAGES/djangojs.mo and b/cms/locale/gu/LC_MESSAGES/djangojs.mo differ 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 39598102c8f..bd49a83e455 100644 Binary files a/cms/locale/he/LC_MESSAGES/django.mo and b/cms/locale/he/LC_MESSAGES/django.mo differ diff --git a/cms/locale/he/LC_MESSAGES/django.po b/cms/locale/he/LC_MESSAGES/django.po index a00193f3c36..ef9296d6104 100644 --- a/cms/locale/he/LC_MESSAGES/django.po +++ b/cms/locale/he/LC_MESSAGES/django.po @@ -3,19 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# 30a61d5f1156f1c74ae8ac6dfaa6a072, 2013 -# Daniel Braun , 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 93e10c27918..6d3ae3fe2e6 100644 Binary files a/cms/locale/he/LC_MESSAGES/djangojs.mo and b/cms/locale/he/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/he/LC_MESSAGES/djangojs.po b/cms/locale/he/LC_MESSAGES/djangojs.po index 58fc583a82e..abd0025084b 100644 --- a/cms/locale/he/LC_MESSAGES/djangojs.po +++ b/cms/locale/he/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: 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 3bc65e179ff..2a08ee4899c 100644 Binary files a/cms/locale/hi/LC_MESSAGES/django.mo and b/cms/locale/hi/LC_MESSAGES/django.mo differ diff --git a/cms/locale/hi/LC_MESSAGES/django.po b/cms/locale/hi/LC_MESSAGES/django.po index 35e0ccc20a1..f37760ccb5e 100644 --- a/cms/locale/hi/LC_MESSAGES/django.po +++ b/cms/locale/hi/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: 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 2ab8ccb618e..999b0cd1bb6 100644 Binary files a/cms/locale/hi/LC_MESSAGES/djangojs.mo and b/cms/locale/hi/LC_MESSAGES/djangojs.mo differ 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 4d6fb87c1e8..414cb1c78d9 100644 Binary files a/cms/locale/hr/LC_MESSAGES/django.mo and b/cms/locale/hr/LC_MESSAGES/django.mo differ 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 1ff121b38c9..a392bcc53e9 100644 Binary files a/cms/locale/hr/LC_MESSAGES/djangojs.mo and b/cms/locale/hr/LC_MESSAGES/djangojs.mo differ 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 79a2f9d4c55..438842e2b1c 100644 Binary files a/cms/locale/hu/LC_MESSAGES/django.mo and b/cms/locale/hu/LC_MESSAGES/django.mo differ 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 9bfe2a7f91a..19b162c0248 100644 Binary files a/cms/locale/hu/LC_MESSAGES/djangojs.mo and b/cms/locale/hu/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/hu/LC_MESSAGES/djangojs.po b/cms/locale/hu/LC_MESSAGES/djangojs.po index dd7c0042067..147c439d245 100644 --- a/cms/locale/hu/LC_MESSAGES/djangojs.po +++ b/cms/locale/hu/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: 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 2c0c14d3185..6afad7ef625 100644 Binary files a/cms/locale/id/LC_MESSAGES/django.mo and b/cms/locale/id/LC_MESSAGES/django.mo differ diff --git a/cms/locale/id/LC_MESSAGES/django.po b/cms/locale/id/LC_MESSAGES/django.po index 8da5af4aed4..1db767b971d 100644 --- a/cms/locale/id/LC_MESSAGES/django.po +++ b/cms/locale/id/LC_MESSAGES/django.po @@ -3,19 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Gunawan Ariyanto , 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 055f757ce5d..b7e358e8fd1 100644 Binary files a/cms/locale/id/LC_MESSAGES/djangojs.mo and b/cms/locale/id/LC_MESSAGES/djangojs.mo differ 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 ba56ec8b9a5..2d7b0308637 100644 Binary files a/cms/locale/is/LC_MESSAGES/django.mo and b/cms/locale/is/LC_MESSAGES/django.mo differ diff --git a/cms/locale/is/LC_MESSAGES/django.po b/cms/locale/is/LC_MESSAGES/django.po index 6a588d458e7..4f7c4ce46e6 100644 --- a/cms/locale/is/LC_MESSAGES/django.po +++ b/cms/locale/is/LC_MESSAGES/django.po @@ -3,17 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Hannes Baldursson , 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 98637f24e4e..ae3633ecadb 100644 Binary files a/cms/locale/is/LC_MESSAGES/djangojs.mo and b/cms/locale/is/LC_MESSAGES/djangojs.mo differ 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 c04de59bdc0..ff2af66f6f8 100644 Binary files a/cms/locale/is_IS/LC_MESSAGES/django.mo and b/cms/locale/is_IS/LC_MESSAGES/django.mo differ 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 fe00fb6ebc5..2b2a830dd28 100644 Binary files a/cms/locale/is_IS/LC_MESSAGES/djangojs.mo and b/cms/locale/is_IS/LC_MESSAGES/djangojs.mo differ 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 d647cae747d..23d39aa6ddf 100644 Binary files a/cms/locale/it/LC_MESSAGES/django.mo and b/cms/locale/it/LC_MESSAGES/django.mo differ 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 d8654bdc501..78f875760bd 100644 Binary files a/cms/locale/it/LC_MESSAGES/djangojs.mo and b/cms/locale/it/LC_MESSAGES/djangojs.mo differ 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 615be3eca6b..6eb1d4334ce 100644 Binary files a/cms/locale/ja/LC_MESSAGES/django.mo and b/cms/locale/ja/LC_MESSAGES/django.mo differ 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 d55b7801c9c..a74fe47477b 100644 Binary files a/cms/locale/ja/LC_MESSAGES/djangojs.mo and b/cms/locale/ja/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ja/LC_MESSAGES/djangojs.po b/cms/locale/ja/LC_MESSAGES/djangojs.po index 00df514ccde..cc5227f05c8 100644 --- a/cms/locale/ja/LC_MESSAGES/djangojs.po +++ b/cms/locale/ja/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: 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 b26f9065e41..d316043ef6b 100644 Binary files a/cms/locale/ka/LC_MESSAGES/django.mo and b/cms/locale/ka/LC_MESSAGES/django.mo differ 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 20478f1b25d..2d6432e7953 100644 Binary files a/cms/locale/ka/LC_MESSAGES/djangojs.mo and b/cms/locale/ka/LC_MESSAGES/djangojs.mo differ 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 951bcc73a00..46f840b4344 100644 Binary files a/cms/locale/kk/LC_MESSAGES/django.mo and b/cms/locale/kk/LC_MESSAGES/django.mo differ 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 1e2f5d3c984..ce4c63980fb 100644 Binary files a/cms/locale/kk/LC_MESSAGES/djangojs.mo and b/cms/locale/kk/LC_MESSAGES/djangojs.mo differ 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 76657cfaf4b..a7416d7615e 100644 Binary files a/cms/locale/km/LC_MESSAGES/django.mo and b/cms/locale/km/LC_MESSAGES/django.mo differ 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 53bc5356f20..db61dd7c6eb 100644 Binary files a/cms/locale/km/LC_MESSAGES/djangojs.mo and b/cms/locale/km/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/km/LC_MESSAGES/djangojs.po b/cms/locale/km/LC_MESSAGES/djangojs.po index bd4ebf936be..438b2b63c26 100644 --- a/cms/locale/km/LC_MESSAGES/djangojs.po +++ b/cms/locale/km/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: 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 060b914886d..23cbc2c0f3e 100644 Binary files a/cms/locale/ko/LC_MESSAGES/django.mo and b/cms/locale/ko/LC_MESSAGES/django.mo differ 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 ce808d6f1e2..d1ceab5b951 100644 Binary files a/cms/locale/ko/LC_MESSAGES/djangojs.mo and b/cms/locale/ko/LC_MESSAGES/djangojs.mo differ 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 21e3d48a977..c2d6a2b7f0b 100644 Binary files a/cms/locale/ko_KR/LC_MESSAGES/django.mo and b/cms/locale/ko_KR/LC_MESSAGES/django.mo differ 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 3a1da623d4a..0ae9e697478 100644 Binary files a/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo and b/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ko_KR/LC_MESSAGES/djangojs.po b/cms/locale/ko_KR/LC_MESSAGES/djangojs.po index 2f5fced4fe3..7f28e2a002c 100644 --- a/cms/locale/ko_KR/LC_MESSAGES/djangojs.po +++ b/cms/locale/ko_KR/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: 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 774e08590f5..5630f9e5acf 100644 Binary files a/cms/locale/ku_IQ/LC_MESSAGES/django.mo and b/cms/locale/ku_IQ/LC_MESSAGES/django.mo differ 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 87b8691d279..4ff7b235968 100644 Binary files a/cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo and b/cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo differ 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 e41dde504ab..f8ee6d7a7a6 100644 Binary files a/cms/locale/ky/LC_MESSAGES/django.mo and b/cms/locale/ky/LC_MESSAGES/django.mo differ 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 9d9a8f5a0b1..c5a49dc2684 100644 Binary files a/cms/locale/ky/LC_MESSAGES/djangojs.mo and b/cms/locale/ky/LC_MESSAGES/djangojs.mo differ 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 1843a426a53..04b56c60b04 100644 Binary files a/cms/locale/lt/LC_MESSAGES/django.mo and b/cms/locale/lt/LC_MESSAGES/django.mo differ diff --git a/cms/locale/lt/LC_MESSAGES/django.po b/cms/locale/lt/LC_MESSAGES/django.po index 7d82e5cf8f0..89d8dd2c5d7 100644 --- a/cms/locale/lt/LC_MESSAGES/django.po +++ b/cms/locale/lt/LC_MESSAGES/django.po @@ -3,18 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Jelena , 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 59160ff8735..78646435d4e 100644 Binary files a/cms/locale/lt/LC_MESSAGES/djangojs.mo and b/cms/locale/lt/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/lt/LC_MESSAGES/djangojs.po b/cms/locale/lt/LC_MESSAGES/djangojs.po index 683fef8698e..e346f43a67b 100644 --- a/cms/locale/lt/LC_MESSAGES/djangojs.po +++ b/cms/locale/lt/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: 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 4ef1e5acfea..b35a5f96d01 100644 Binary files a/cms/locale/lt_LT/LC_MESSAGES/django.mo and b/cms/locale/lt_LT/LC_MESSAGES/django.mo differ 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 b29ff31550c..e92468bf651 100644 Binary files a/cms/locale/lt_LT/LC_MESSAGES/djangojs.mo and b/cms/locale/lt_LT/LC_MESSAGES/djangojs.mo differ 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 6f9652151fc..feed6d7e847 100644 Binary files a/cms/locale/lv/LC_MESSAGES/django.mo and b/cms/locale/lv/LC_MESSAGES/django.mo differ 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 2eea879d7fa..ece0b166e4e 100644 Binary files a/cms/locale/lv/LC_MESSAGES/djangojs.mo and b/cms/locale/lv/LC_MESSAGES/djangojs.mo differ 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 cde34272933..6e85e8020ca 100644 Binary files a/cms/locale/ml/LC_MESSAGES/django.mo and b/cms/locale/ml/LC_MESSAGES/django.mo differ 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 98591fd7737..af660c5c572 100644 Binary files a/cms/locale/ml/LC_MESSAGES/djangojs.mo and b/cms/locale/ml/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ml/LC_MESSAGES/djangojs.po b/cms/locale/ml/LC_MESSAGES/djangojs.po index 143eca0174b..2d90ec24bbb 100644 --- a/cms/locale/ml/LC_MESSAGES/djangojs.po +++ b/cms/locale/ml/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" +"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: 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 0229d1dc37c..7b46149c805 100644 Binary files a/cms/locale/mn/LC_MESSAGES/django.mo and b/cms/locale/mn/LC_MESSAGES/django.mo differ diff --git a/cms/locale/mn/LC_MESSAGES/django.po b/cms/locale/mn/LC_MESSAGES/django.po index 8db25173529..cae0757fdfd 100644 --- a/cms/locale/mn/LC_MESSAGES/django.po +++ b/cms/locale/mn/LC_MESSAGES/django.po @@ -3,17 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Bayarkhuu Bataa, 2013 -# Bayarkhuu Bataa, 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: 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 97fbb53fb39..eb012aa4fd5 100644 Binary files a/cms/locale/mn/LC_MESSAGES/djangojs.mo and b/cms/locale/mn/LC_MESSAGES/djangojs.mo differ 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 af7fb2d92b7..58880f41eb0 100644 Binary files a/cms/locale/mn_MN/LC_MESSAGES/django.mo and b/cms/locale/mn_MN/LC_MESSAGES/django.mo differ diff --git a/cms/locale/mn_MN/LC_MESSAGES/django.po b/cms/locale/mn_MN/LC_MESSAGES/django.po index ebff72f1ba0..56feb6ef0d8 100644 --- a/cms/locale/mn_MN/LC_MESSAGES/django.po +++ b/cms/locale/mn_MN/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: 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 3d14ecc379a..ded97ce5212 100644 Binary files a/cms/locale/mn_MN/LC_MESSAGES/djangojs.mo and b/cms/locale/mn_MN/LC_MESSAGES/djangojs.mo differ 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 21d18f84a86..9708294f254 100644 Binary files a/cms/locale/ms/LC_MESSAGES/django.mo and b/cms/locale/ms/LC_MESSAGES/django.mo differ diff --git a/cms/locale/ms/LC_MESSAGES/django.po b/cms/locale/ms/LC_MESSAGES/django.po index c1e00eda495..de9fb7fa703 100644 --- a/cms/locale/ms/LC_MESSAGES/django.po +++ b/cms/locale/ms/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: 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 adfb6fbfeb4..1cf717b624a 100644 Binary files a/cms/locale/ms/LC_MESSAGES/djangojs.mo and b/cms/locale/ms/LC_MESSAGES/djangojs.mo differ 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 aa41900ca26..0d30df2fa6a 100644 Binary files a/cms/locale/mt/LC_MESSAGES/django.mo and b/cms/locale/mt/LC_MESSAGES/django.mo differ 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 723463d1736..3cfe112b149 100644 Binary files a/cms/locale/mt/LC_MESSAGES/djangojs.mo and b/cms/locale/mt/LC_MESSAGES/djangojs.mo differ 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 fff047c9893..db1bf9847b0 100644 Binary files a/cms/locale/nb/LC_MESSAGES/django.mo and b/cms/locale/nb/LC_MESSAGES/django.mo differ 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 469c72e1767..670fbfcb058 100644 Binary files a/cms/locale/nb/LC_MESSAGES/djangojs.mo and b/cms/locale/nb/LC_MESSAGES/djangojs.mo differ 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 1fd7a23b7b1..52f81dee4b0 100644 Binary files a/cms/locale/nl/LC_MESSAGES/django.mo and b/cms/locale/nl/LC_MESSAGES/django.mo differ 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 c96bba1668c..fa21104ce98 100644 Binary files a/cms/locale/nl/LC_MESSAGES/djangojs.mo and b/cms/locale/nl/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/nl/LC_MESSAGES/djangojs.po b/cms/locale/nl/LC_MESSAGES/djangojs.po index b12463df656..5875d0d520c 100644 --- a/cms/locale/nl/LC_MESSAGES/djangojs.po +++ b/cms/locale/nl/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: 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 2d29260cad8..d10e6a4cb26 100644 Binary files a/cms/locale/no/LC_MESSAGES/django.mo and b/cms/locale/no/LC_MESSAGES/django.mo differ diff --git a/cms/locale/no/LC_MESSAGES/django.po b/cms/locale/no/LC_MESSAGES/django.po index 4009fade9fe..24db6e3eb39 100644 --- a/cms/locale/no/LC_MESSAGES/django.po +++ b/cms/locale/no/LC_MESSAGES/django.po @@ -3,24 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# affy , 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 6c121cd9dc0..88de8e9df16 100644 Binary files a/cms/locale/no/LC_MESSAGES/djangojs.mo and b/cms/locale/no/LC_MESSAGES/djangojs.mo differ 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 7b201d0c877..bfe96c5ef63 100644 Binary files a/cms/locale/pap/LC_MESSAGES/django.mo and b/cms/locale/pap/LC_MESSAGES/django.mo differ 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 2a8641d52fc..29cd8a2519c 100644 Binary files a/cms/locale/pap/LC_MESSAGES/djangojs.mo and b/cms/locale/pap/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/pap/LC_MESSAGES/djangojs.po b/cms/locale/pap/LC_MESSAGES/djangojs.po index f777b3bc7f8..7fac6acf865 100644 --- a/cms/locale/pap/LC_MESSAGES/djangojs.po +++ b/cms/locale/pap/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: 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 22fe302232b..cbbb4291d5a 100644 Binary files a/cms/locale/pl/LC_MESSAGES/django.mo and b/cms/locale/pl/LC_MESSAGES/django.mo differ 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 a104fc9f580..e0672db7e7f 100644 Binary files a/cms/locale/pl/LC_MESSAGES/djangojs.mo and b/cms/locale/pl/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/pl/LC_MESSAGES/djangojs.po b/cms/locale/pl/LC_MESSAGES/djangojs.po index 03a6337aa6f..62f1b956c1d 100644 --- a/cms/locale/pl/LC_MESSAGES/djangojs.po +++ b/cms/locale/pl/LC_MESSAGES/djangojs.po @@ -6,20 +6,29 @@ # Translators: # angularcircle, 2012 # angularcircle, 2012 -# m_aciek , 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 ae4d12dd95a..54e85c36ff8 100644 Binary files a/cms/locale/pt/LC_MESSAGES/django.mo and b/cms/locale/pt/LC_MESSAGES/django.mo differ diff --git a/cms/locale/pt/LC_MESSAGES/django.po b/cms/locale/pt/LC_MESSAGES/django.po index 190d20e1569..7b84b9d2a95 100644 --- a/cms/locale/pt/LC_MESSAGES/django.po +++ b/cms/locale/pt/LC_MESSAGES/django.po @@ -3,28 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# André Cruz , 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 15e5da0eacf..abe738bcb83 100644 Binary files a/cms/locale/pt/LC_MESSAGES/djangojs.mo and b/cms/locale/pt/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/pt/LC_MESSAGES/djangojs.po b/cms/locale/pt/LC_MESSAGES/djangojs.po index 466901be742..4dce6e7fc47 100644 --- a/cms/locale/pt/LC_MESSAGES/djangojs.po +++ b/cms/locale/pt/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: 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 843300608a2..146beb57dd2 100644 Binary files a/cms/locale/pt_BR/LC_MESSAGES/django.mo and b/cms/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/cms/locale/pt_BR/LC_MESSAGES/django.po b/cms/locale/pt_BR/LC_MESSAGES/django.po index 5121e48d4dc..76f1de073d9 100644 --- a/cms/locale/pt_BR/LC_MESSAGES/django.po +++ b/cms/locale/pt_BR/LC_MESSAGES/django.po @@ -3,43 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Andre Manzano , 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 cb493443624..92b51ada20b 100644 Binary files a/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo and b/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/pt_BR/LC_MESSAGES/djangojs.po b/cms/locale/pt_BR/LC_MESSAGES/djangojs.po index 52d4e7d08fc..f3beab9bf6d 100644 --- a/cms/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/cms/locale/pt_BR/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: 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 d9e7d40496c..7626af15750 100644 Binary files a/cms/locale/pt_PT/LC_MESSAGES/django.mo and b/cms/locale/pt_PT/LC_MESSAGES/django.mo differ 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 d6a2308d2a0..7c82b4c5fec 100644 Binary files a/cms/locale/pt_PT/LC_MESSAGES/djangojs.mo and b/cms/locale/pt_PT/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/pt_PT/LC_MESSAGES/djangojs.po b/cms/locale/pt_PT/LC_MESSAGES/djangojs.po index 1f957bf56e3..41dc2080e58 100644 --- a/cms/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/cms/locale/pt_PT/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: 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 25f683d7686..357e78eb893 100644 Binary files a/cms/locale/ro/LC_MESSAGES/django.mo and b/cms/locale/ro/LC_MESSAGES/django.mo differ 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 49d042de945..c7825561da1 100644 Binary files a/cms/locale/ro/LC_MESSAGES/djangojs.mo and b/cms/locale/ro/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ro/LC_MESSAGES/djangojs.po b/cms/locale/ro/LC_MESSAGES/djangojs.po index 9e530e48f3f..8ad26b83539 100644 --- a/cms/locale/ro/LC_MESSAGES/djangojs.po +++ b/cms/locale/ro/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: 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 53b3ce98b24..7fb92a43bb8 100644 Binary files a/cms/locale/ro_RO/LC_MESSAGES/django.mo and b/cms/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/cms/locale/ro_RO/LC_MESSAGES/django.po b/cms/locale/ro_RO/LC_MESSAGES/django.po index 2bf4cf3c6ef..38fa4ffa94d 100644 --- a/cms/locale/ro_RO/LC_MESSAGES/django.po +++ b/cms/locale/ro_RO/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: 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 ab6db880183..4cc4118fce4 100644 Binary files a/cms/locale/ro_RO/LC_MESSAGES/djangojs.mo and b/cms/locale/ro_RO/LC_MESSAGES/djangojs.mo differ 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 29d93b61e7f..417f8884d6d 100644 Binary files a/cms/locale/ru/LC_MESSAGES/django.mo and b/cms/locale/ru/LC_MESSAGES/django.mo differ 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 2d173dbca10..33dc19bcc26 100644 Binary files a/cms/locale/ru/LC_MESSAGES/djangojs.mo and b/cms/locale/ru/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/ru/LC_MESSAGES/djangojs.po b/cms/locale/ru/LC_MESSAGES/djangojs.po index b8a8e0307b0..212cda2ca49 100644 --- a/cms/locale/ru/LC_MESSAGES/djangojs.po +++ b/cms/locale/ru/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: 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 f3cb0245d96..f4c5dc45c7b 100644 Binary files a/cms/locale/ru_RU/LC_MESSAGES/django.mo and b/cms/locale/ru_RU/LC_MESSAGES/django.mo differ 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 456881e3e1f..3d9c6d8aed4 100644 Binary files a/cms/locale/ru_RU/LC_MESSAGES/djangojs.mo and b/cms/locale/ru_RU/LC_MESSAGES/djangojs.mo differ 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 5a2e46ee9b8..1ca9c6b3a5e 100644 Binary files a/cms/locale/sk/LC_MESSAGES/django.mo and b/cms/locale/sk/LC_MESSAGES/django.mo differ 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 00a5af4b4c7..87cefa52dcf 100644 Binary files a/cms/locale/sk/LC_MESSAGES/djangojs.mo and b/cms/locale/sk/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/sk/LC_MESSAGES/djangojs.po b/cms/locale/sk/LC_MESSAGES/djangojs.po index a76075f931f..bea8cc3067f 100644 --- a/cms/locale/sk/LC_MESSAGES/djangojs.po +++ b/cms/locale/sk/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: 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 d1a9f82241f..ffb4eb2cf6e 100644 Binary files a/cms/locale/sk_SK/LC_MESSAGES/django.mo and b/cms/locale/sk_SK/LC_MESSAGES/django.mo differ diff --git a/cms/locale/sk_SK/LC_MESSAGES/django.po b/cms/locale/sk_SK/LC_MESSAGES/django.po index f2359e67e84..b77dd925dab 100644 --- a/cms/locale/sk_SK/LC_MESSAGES/django.po +++ b/cms/locale/sk_SK/LC_MESSAGES/django.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Erik Pribula , 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 49b7e1b95a0..03214fc8fe4 100644 Binary files a/cms/locale/sk_SK/LC_MESSAGES/djangojs.mo and b/cms/locale/sk_SK/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/sk_SK/LC_MESSAGES/djangojs.po b/cms/locale/sk_SK/LC_MESSAGES/djangojs.po index bfe00f01162..e50cbbb9805 100644 --- a/cms/locale/sk_SK/LC_MESSAGES/djangojs.po +++ b/cms/locale/sk_SK/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: 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 6e8ece53249..c53420e4c5f 100644 Binary files a/cms/locale/sl/LC_MESSAGES/django.mo and b/cms/locale/sl/LC_MESSAGES/django.mo differ diff --git a/cms/locale/sl/LC_MESSAGES/django.po b/cms/locale/sl/LC_MESSAGES/django.po index 35779ab4582..862974ad91f 100644 --- a/cms/locale/sl/LC_MESSAGES/django.po +++ b/cms/locale/sl/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: 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 a58777f2b50..469b77d8b4e 100644 Binary files a/cms/locale/sl/LC_MESSAGES/djangojs.mo and b/cms/locale/sl/LC_MESSAGES/djangojs.mo differ 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 8b6b4330b83..15ef8b2844b 100644 Binary files a/cms/locale/sl_SI/LC_MESSAGES/django.mo and b/cms/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/cms/locale/sl_SI/LC_MESSAGES/django.po b/cms/locale/sl_SI/LC_MESSAGES/django.po index 6ee0f5367e6..2a9926367f6 100644 --- a/cms/locale/sl_SI/LC_MESSAGES/django.po +++ b/cms/locale/sl_SI/LC_MESSAGES/django.po @@ -3,18 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Ales Kocjancic , 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 d57da52125c..d950ac458f8 100644 Binary files a/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo and b/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/sl_SI/LC_MESSAGES/djangojs.po b/cms/locale/sl_SI/LC_MESSAGES/djangojs.po index dfaac5cad4f..020b8bf09ce 100644 --- a/cms/locale/sl_SI/LC_MESSAGES/djangojs.po +++ b/cms/locale/sl_SI/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: 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 9f727368b21..ad206120f79 100644 Binary files a/cms/locale/sq/LC_MESSAGES/django.mo and b/cms/locale/sq/LC_MESSAGES/django.mo differ diff --git a/cms/locale/sq/LC_MESSAGES/django.po b/cms/locale/sq/LC_MESSAGES/django.po index 364ece22bce..dc7174b0c08 100644 --- a/cms/locale/sq/LC_MESSAGES/django.po +++ b/cms/locale/sq/LC_MESSAGES/django.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Besnik Bleta , 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 4431b71dd46..64900c70eac 100644 Binary files a/cms/locale/sq/LC_MESSAGES/djangojs.mo and b/cms/locale/sq/LC_MESSAGES/djangojs.mo differ 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 1646535f543..3960090ecad 100644 Binary files a/cms/locale/sq_AL/LC_MESSAGES/django.mo and b/cms/locale/sq_AL/LC_MESSAGES/django.mo differ 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 614d7c561fb..47bf1b13e28 100644 Binary files a/cms/locale/sq_AL/LC_MESSAGES/djangojs.mo and b/cms/locale/sq_AL/LC_MESSAGES/djangojs.mo differ 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 e42884f5892..444c97c3cf2 100644 Binary files a/cms/locale/sr/LC_MESSAGES/django.mo and b/cms/locale/sr/LC_MESSAGES/django.mo differ 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 b3df838706c..c229aa183f2 100644 Binary files a/cms/locale/sr/LC_MESSAGES/djangojs.mo and b/cms/locale/sr/LC_MESSAGES/djangojs.mo differ 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 149fddbfb6d..0b1086b1cd9 100644 Binary files a/cms/locale/sr@latin/LC_MESSAGES/django.mo and b/cms/locale/sr@latin/LC_MESSAGES/django.mo differ 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 21194afbf70..89c84b385c9 100644 Binary files a/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo and b/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/sr@latin/LC_MESSAGES/djangojs.po b/cms/locale/sr@latin/LC_MESSAGES/djangojs.po index e3ea8df5f78..2260984a8c3 100644 --- a/cms/locale/sr@latin/LC_MESSAGES/djangojs.po +++ b/cms/locale/sr@latin/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 (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 22d7411f956..106419a771f 100644 Binary files a/cms/locale/sv/LC_MESSAGES/django.mo and b/cms/locale/sv/LC_MESSAGES/django.mo differ diff --git a/cms/locale/sv/LC_MESSAGES/django.po b/cms/locale/sv/LC_MESSAGES/django.po index c13a3d7405e..ff14bbcc231 100644 --- a/cms/locale/sv/LC_MESSAGES/django.po +++ b/cms/locale/sv/LC_MESSAGES/django.po @@ -3,37 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Björn Sandberg , 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 309e9d8593b..e8b4a6c791d 100644 Binary files a/cms/locale/sv/LC_MESSAGES/djangojs.mo and b/cms/locale/sv/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/sv/LC_MESSAGES/djangojs.po b/cms/locale/sv/LC_MESSAGES/djangojs.po index d7a4dc7774f..ed8f639cc8c 100644 --- a/cms/locale/sv/LC_MESSAGES/djangojs.po +++ b/cms/locale/sv/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: 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 83afd4351db..fa74c9c2be4 100644 Binary files a/cms/locale/ta/LC_MESSAGES/django.mo and b/cms/locale/ta/LC_MESSAGES/django.mo differ 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 cc3810e2c4b..377d3dab42f 100644 Binary files a/cms/locale/ta/LC_MESSAGES/djangojs.mo and b/cms/locale/ta/LC_MESSAGES/djangojs.mo differ 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 d30ed16e349..6b271a1f9cd 100644 Binary files a/cms/locale/th/LC_MESSAGES/django.mo and b/cms/locale/th/LC_MESSAGES/django.mo differ 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 c331c21926e..75534365127 100644 Binary files a/cms/locale/th/LC_MESSAGES/djangojs.mo and b/cms/locale/th/LC_MESSAGES/djangojs.mo differ 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 dbbe784648e..9dae5a04764 100644 Binary files a/cms/locale/th_TH/LC_MESSAGES/django.mo and b/cms/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/cms/locale/th_TH/LC_MESSAGES/django.po b/cms/locale/th_TH/LC_MESSAGES/django.po index 7b62a3a4f3c..b761e07904d 100644 --- a/cms/locale/th_TH/LC_MESSAGES/django.po +++ b/cms/locale/th_TH/LC_MESSAGES/django.po @@ -3,16 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# AriesAnywhere Anywhere , 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 dc7312e4898..06fc4d85186 100644 Binary files a/cms/locale/th_TH/LC_MESSAGES/djangojs.mo and b/cms/locale/th_TH/LC_MESSAGES/djangojs.mo differ 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 f5af86d6a67..4130f2c6ec3 100644 Binary files a/cms/locale/tlh/LC_MESSAGES/django.mo and b/cms/locale/tlh/LC_MESSAGES/django.mo differ 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 f6279e42b14..6a258575892 100644 Binary files a/cms/locale/tlh/LC_MESSAGES/djangojs.mo and b/cms/locale/tlh/LC_MESSAGES/djangojs.mo differ 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 5808c80fb4f..bf9cdc029da 100644 Binary files a/cms/locale/tr/LC_MESSAGES/django.mo and b/cms/locale/tr/LC_MESSAGES/django.mo differ diff --git a/cms/locale/tr/LC_MESSAGES/django.po b/cms/locale/tr/LC_MESSAGES/django.po index 9880c77eaa9..21e87aae2ca 100644 --- a/cms/locale/tr/LC_MESSAGES/django.po +++ b/cms/locale/tr/LC_MESSAGES/django.po @@ -3,31 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Ahmet Çakır , 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 344eedb8f31..6324aa9cb5d 100644 Binary files a/cms/locale/tr/LC_MESSAGES/djangojs.mo and b/cms/locale/tr/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/tr/LC_MESSAGES/djangojs.po b/cms/locale/tr/LC_MESSAGES/djangojs.po index 1217db48cc4..ed9fe7122d9 100644 --- a/cms/locale/tr/LC_MESSAGES/djangojs.po +++ b/cms/locale/tr/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: 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 26ebfcb0353..daf1b546d29 100644 Binary files a/cms/locale/tr_TR/LC_MESSAGES/django.mo and b/cms/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/cms/locale/tr_TR/LC_MESSAGES/django.po b/cms/locale/tr_TR/LC_MESSAGES/django.po index 71bda23faf2..56274f8737d 100644 --- a/cms/locale/tr_TR/LC_MESSAGES/django.po +++ b/cms/locale/tr_TR/LC_MESSAGES/django.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Translators: -# Bilal Tonga , 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 da2ac17edeb..957bf0d673f 100644 Binary files a/cms/locale/tr_TR/LC_MESSAGES/djangojs.mo and b/cms/locale/tr_TR/LC_MESSAGES/djangojs.mo differ 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 0a55214a288..274aa9b0b8f 100644 Binary files a/cms/locale/ug/LC_MESSAGES/django.mo and b/cms/locale/ug/LC_MESSAGES/django.mo differ diff --git a/cms/locale/ug/LC_MESSAGES/django.po b/cms/locale/ug/LC_MESSAGES/django.po index 17791247a5e..33085d1f10d 100644 --- a/cms/locale/ug/LC_MESSAGES/django.po +++ b/cms/locale/ug/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: 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 1f7f032948a..af3023550a8 100644 Binary files a/cms/locale/ug/LC_MESSAGES/djangojs.mo and b/cms/locale/ug/LC_MESSAGES/djangojs.mo differ 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 460be3c1479..841d5387074 100644 Binary files a/cms/locale/uk/LC_MESSAGES/django.mo and b/cms/locale/uk/LC_MESSAGES/django.mo differ 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 79a5a78e802..3064361e6d3 100644 Binary files a/cms/locale/uk/LC_MESSAGES/djangojs.mo and b/cms/locale/uk/LC_MESSAGES/djangojs.mo differ 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 5084664f914..0bff6aeb52e 100644 Binary files a/cms/locale/ur/LC_MESSAGES/django.mo and b/cms/locale/ur/LC_MESSAGES/django.mo differ 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 7430dbe228f..1550335c025 100644 Binary files a/cms/locale/ur/LC_MESSAGES/djangojs.mo and b/cms/locale/ur/LC_MESSAGES/djangojs.mo differ 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 0f4cdc165a8..e7026f7a3f0 100644 Binary files a/cms/locale/vi/LC_MESSAGES/django.mo and b/cms/locale/vi/LC_MESSAGES/django.mo differ 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 3e839ce637c..8a0ebf511aa 100644 Binary files a/cms/locale/vi/LC_MESSAGES/djangojs.mo and b/cms/locale/vi/LC_MESSAGES/djangojs.mo differ 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 059c87b57ad..fbd141a5442 100644 Binary files a/cms/locale/vi_VN/LC_MESSAGES/django.mo and b/cms/locale/vi_VN/LC_MESSAGES/django.mo differ 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 11fcfd6a285..0c43d359593 100644 Binary files a/cms/locale/vi_VN/LC_MESSAGES/djangojs.mo and b/cms/locale/vi_VN/LC_MESSAGES/djangojs.mo differ 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 3c9153187c2..87ad1f4c1df 100644 Binary files a/cms/locale/zh_CN/LC_MESSAGES/django.mo and b/cms/locale/zh_CN/LC_MESSAGES/django.mo differ 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 5bf47b6b20c..ef78e992175 100644 Binary files a/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo and b/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/zh_CN/LC_MESSAGES/djangojs.po b/cms/locale/zh_CN/LC_MESSAGES/djangojs.po index 249acd316eb..c11d8fa1c74 100644 --- a/cms/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/cms/locale/zh_CN/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: 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 f800c4ecc99..81da53fbeda 100644 Binary files a/cms/locale/zh_TW/LC_MESSAGES/django.mo and b/cms/locale/zh_TW/LC_MESSAGES/django.mo differ 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 5c4f8ee1aaf..6e529a3e3cb 100644 Binary files a/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo and b/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo differ diff --git a/cms/locale/zh_TW/LC_MESSAGES/djangojs.po b/cms/locale/zh_TW/LC_MESSAGES/djangojs.po index 1a30f8b68be..bf9a4c12d84 100644 --- a/cms/locale/zh_TW/LC_MESSAGES/djangojs.po +++ b/cms/locale/zh_TW/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: 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/management/commands/startcmsproject.py b/cms/management/commands/startcmsproject.py new file mode 100644 index 00000000000..fbf62e13525 --- /dev/null +++ b/cms/management/commands/startcmsproject.py @@ -0,0 +1,177 @@ +#!/usr/bin/env python +import os +import subprocess +import sys + +from django.core.checks.security.base import SECRET_KEY_INSECURE_PREFIX +from django.core.management import CommandError +from django.core.management.templates import TemplateCommand +from django.core.management.utils import get_random_secret_key + +from cms import __version__ as cms_version + + +class Command(TemplateCommand): + help = ( + "Creates a django CMS project directory structure for the given project " + "name in the current directory or optionally in the given directory." + ) + missing_args_message = "You must provide a project name." + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + # Version major.minor + self.major_minor = ".".join(cms_version.split(".")[:2]) + + # Configure formatting + self.HEADING = lambda text: "\n" + self.style.SQL_FIELD(text) + self.COMMAND = self.style.HTTP_SUCCESS + + def add_arguments(self, parser): + super().add_arguments(parser) + parser.add_argument( + "--noinput", + "--no-input", + action="store_false", + dest="interactive", + help=( + "Tells django CMS to NOT prompt the user for input of any kind. " + "Superusers created with --noinput will " + "not be able to log in until they're given a valid password." + ), + ) + parser.add_argument( + "--username", + help="Specifies the login for the superuser to be created", + ) + parser.add_argument("--email", help="Specifies the email for the superuser to be created") + + def get_default_template(self): + return f"https://github.com/django-cms/cms-template/archive/{self.major_minor}.tar.gz" + + def postprocess(self, project, options): + # Go to project dir + self.write_command(f'cd "{project}"') + os.chdir(project) + + # Install requirements + self.install_requirements(project) + + # Create database by running migrations + self.stdout.write(self.HEADING("Run migrations")) + self.run_management_command(["migrate"], capture_output=True) + + # Create superuser (respecting command line arguments) + self.stdout.write(self.HEADING("Create superuser")) + command = ["createsuperuser"] + if options.get("username"): + command.append("--username") + command.append(options.get("username")) + if options.get("email"): + command.append("--email") + command.append(options.get("email")) + if not options["interactive"]: + if "--username" not in command: + command.append("--username") + command.append(os.environ.get("DJANGO_SUPERUSER_USERNAME", "admin")) + if "--email" not in command: + command.append("--email") + command.append(os.environ.get("DJANGO_SUPERUSER_EMAIL", "none@nowhere.com")) + command.append("--noinput") + self.run_management_command(command) + + # Check installation + self.stdout.write(self.HEADING("Check installation")) + self.run_management_command(["cms", "check"], capture_output=True) + + # Display success message + message = f"django CMS {cms_version} installed successfully" + separator = "*" * len(message) + self.stdout.write(self.HEADING(f"{separator}\n{message}\n{separator}")) + self.stdout.write( + f""" +Congratulations! You have successfully installed django CMS, +the lean enterprise content management powered by Django! + +Now, to start the development server first go to your newly +created project and then call the runserver management command: +$ {self.style.SUCCESS("cd " + project)} +$ {self.style.SUCCESS("python -m manage runserver")} + +Learn more at https://docs.django-cms.org/ +Join the django CMS Slack channel http://www.django-cms.org/slack + +Enjoy! +""" + ) + + def install_requirements(self, project): + for req_file in ("requirements.txt", "requirements.in"): + requirements = os.path.join(project, req_file) + if os.path.isfile(requirements): + if self.running_in_venv() or os.environ.get("DJANGOCMS_ALLOW_PIP_INSTALL", "False") == "True": + self.stdout.write(self.HEADING(f"Install requirements in {requirements}")) + self.write_command(f'python -m pip install -r "{requirements}"') + result = subprocess.run( + [sys.executable, "-m", "pip", "install", "-r", requirements], + capture_output=True, + ) + if result.returncode: + self.stderr.write(self.style.ERROR(result.stderr.decode())) + raise CommandError(f"Failed to install requirements in {requirements}") + break + else: + self.stderr.write( + self.style.ERROR( + "To automatically install requirements for your new django CMS " + "project use this command in an virtual environment." + ) + ) + raise CommandError("Requirements not installed") + + def run_management_command(self, commands, capture_output=False): + self.write_command("python -m manage " + " ".join(commands)) + result = subprocess.run([sys.executable, "-m", "manage"] + commands, capture_output=capture_output) + if result.returncode: + if capture_output: + self.stderr.write(self.style.ERROR(result.stderr.decode())) + raise CommandError(f"{sys.executable} -m manage {' '.join(commands)} failed.") + + def write_command(self, command): + self.stderr.write(self.COMMAND(command)) + + @staticmethod + def running_in_venv(): + return sys.prefix != sys.base_prefix + + def handle_template(self, template, subdir): + if not template: + template = self.get_default_template() + return super().handle_template(template, subdir) + + def handle(self, **options): + # Capture target and name for postprocessing + name = options.pop("name") + directory = options.pop("directory", None) + # Create a random SECRET_KEY to put it in the main settings. + options["secret_key"] = SECRET_KEY_INSECURE_PREFIX + get_random_secret_key() + + self.stdout.write(self.HEADING("Clone template using django-admin")) + command = ( + f'django-admin startproject "{name}" ' f'--template {options["template"] or self.get_default_template()}' + ) + if directory: + command += f' --directory "{directory}"' + self.write_command(command) + + # Run startproject command + super().handle( + "project", name, directory, cms_version=cms_version, cms_docs_version=self.major_minor, **options + ) + + if directory is None: + top_dir = os.path.join(os.getcwd(), name) + else: + top_dir = os.path.abspath(os.path.expanduser(directory)) + self.postprocess(top_dir, options) diff --git a/cms/management/djangocms.py b/cms/management/djangocms.py new file mode 100644 index 00000000000..5eba317fdd6 --- /dev/null +++ b/cms/management/djangocms.py @@ -0,0 +1,24 @@ +import os +import sys + +from django.core.management import load_command_class + + +def execute_from_command_line(argv=None): + """Run the startcmsproject management command.""" + + # Prepare arguments + argv = argv or sys.argv[:] + argv[0] = os.path.basename(argv[0]) + if argv[0] == "__main__.py": + argv[0] = "python -m cms" + + # Find command + command = load_command_class("cms", "startcmsproject") + if argv[1:] == ["--version"]: + from cms import __version__ + sys.stdout.write(__version__ + "\n") + elif argv[1:] == ["--help"]: + command.print_help(argv[0], "") + else: + command.run_from_argv([argv[0], ""] + argv[1:]) # fake "empty" subcommand diff --git a/cms/migrations/0035_auto_20230822_2208.py b/cms/migrations/0035_auto_20230822_2208.py new file mode 100644 index 00000000000..63eae949cda --- /dev/null +++ b/cms/migrations/0035_auto_20230822_2208.py @@ -0,0 +1,35 @@ +# 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'}, + ), + migrations.AlterModelOptions( + name='page', + options={'default_permissions': ('add', 'change', 'delete'), 'permissions': ( + ('view_page', 'Can view page'), ('edit_static_placeholder', 'Can edit static placeholders')), + 'verbose_name': 'page', 'verbose_name_plural': 'pages'}, + ), + migrations.AlterModelOptions( + name='pagecontent', + options={'default_permissions': [], 'verbose_name': 'page content', 'verbose_name_plural': 'page contents'}, + ), + migrations.RemoveField( + model_name='globalpagepermission', + name='can_publish', + ), + migrations.RemoveField( + model_name='pagepermission', + name='can_publish', + ), + ] 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/models/managers.py b/cms/models/managers.py index b2a1b771b11..fbeaf3cbe37 100644 --- a/cms/models/managers.py +++ b/cms/models/managers.py @@ -133,7 +133,7 @@ def current_content(self, **kwargs): def latest_content(self, **kwargs): """If a versioning package is installed, returns the latest version that matches the - filter given in kwargs including discared or unpublished page content. Without versioning + filter given in kwargs including discarded or unpublished page content. Without versioning every page content is the latest.""" return self.filter(**kwargs) @@ -245,7 +245,7 @@ def user_has_permissions(self, user, site_id, perms): return queryset.filter(functools.reduce(operator.or_, queries)).exists() def subordinate_to_user(self, user, site): - """ + r""" Get all page permission objects on which user/group is lover in hierarchy then given user and given user can change permissions on them. diff --git a/cms/models/pagemodel.py b/cms/models/pagemodel.py index 5c4c24a7f0d..923e09e4f63 100644 --- a/cms/models/pagemodel.py +++ b/cms/models/pagemodel.py @@ -192,7 +192,6 @@ class Meta: default_permissions = ('add', 'change', 'delete') permissions = ( ('view_page', 'Can view page'), - ('publish_page', 'Can publish page'), ('edit_static_placeholder', 'Can edit static placeholders'), ) verbose_name = _('page') @@ -282,7 +281,12 @@ def set_as_homepage(self, user=None): def _get_path_sql_value(self, base_path=''): if base_path: - new_path = Concat(models.Value(base_path), models.Value('/'), models.F('slug')) + new_path = Concat( + models.Value(base_path), + models.Value('/'), + models.F('slug'), + output_field=models.CharField(), + ) elif base_path is None: new_path = None else: @@ -727,7 +731,7 @@ def remove_language(self, language): self.update_languages(page_languages) def update_languages(self, languages): - languages = ",".join(languages) + languages = ",".join(set(languages)) # Update current instance self.languages = languages # Commit. It's important to not call save() @@ -1001,10 +1005,6 @@ def has_delete_translation_permission(self, user, language): from cms.utils.page_permissions import user_can_delete_page_translation return user_can_delete_page_translation(user, page=self, language=language) - def has_publish_permission(self, user): - from cms.utils.page_permissions import user_can_publish_page - return user_can_publish_page(user, page=self) - def has_advanced_settings_permission(self, user): from cms.utils.page_permissions import ( user_can_change_page_advanced_settings, diff --git a/cms/models/permissionmodels.py b/cms/models/permissionmodels.py index bdb5d677395..c6b86ae233a 100644 --- a/cms/models/permissionmodels.py +++ b/cms/models/permissionmodels.py @@ -39,10 +39,10 @@ #: Access to page itself and immediate children (1 level) ACCESS_PAGE_AND_CHILDREN = 3 -#: Access to all children (first level and allso their children) +#: Access to all children (first level and also their children) ACCESS_DESCENDANTS = 4 -#: Access to page itself and all children (first level and allso their children) +#: Access to page itself and all children (first level and also their children) ACCESS_PAGE_AND_DESCENDANTS = 5 # binary masks for ACCESS permissions @@ -84,7 +84,6 @@ class AbstractPagePermission(models.Model): can_add = models.BooleanField(_("can add"), default=True) can_delete = models.BooleanField(_("can delete"), default=True) can_change_advanced_settings = models.BooleanField(_("can change advanced settings"), default=False) - can_publish = models.BooleanField(_("can publish"), default=True) can_change_permissions = models.BooleanField( _("can change permissions"), default=False, help_text=_("on page level") ) @@ -114,11 +113,6 @@ def clean(self): "to change the page. Edit permissions required.") raise ValidationError(message) - if self.can_publish: - message = _("Users can't publish a page without permissions " - "to change the page. Edit permissions required.") - raise ValidationError(message) - if self.can_change_advanced_settings: message = _("Users can't change page advanced settings without permissions " "to change the page. Edit permissions required.") @@ -162,7 +156,6 @@ def get_all_permissions(cls): 'can_add', 'can_change', 'can_delete', - 'can_publish', 'can_change_advanced_settings', 'can_change_permissions', 'can_move_page', @@ -182,7 +175,6 @@ def get_permissions_by_action(cls): 'delete_page': ['can_change', 'can_delete'], 'delete_page_translation': ['can_change', 'can_delete'], 'move_page': ['can_change', 'can_move_page'], - 'publish_page': ['can_change', 'can_publish'], 'view_page': ['can_view'], } return permissions_by_action diff --git a/cms/models/pluginmodel.py b/cms/models/pluginmodel.py index 190ba94d5dc..ad77f99f431 100644 --- a/cms/models/pluginmodel.py +++ b/cms/models/pluginmodel.py @@ -63,7 +63,7 @@ def _get_database_cursor(action): @lru_cache(maxsize=None) def plugin_supports_cte(): # This has to be as function because when it's a var it evaluates before - # db is connected and we get OperationalError. MySQL version is retrived + # db is connected and we get OperationalError. MySQL version is retrieved # from db, and it's cached_property. connection = _get_database_connection('write') db_vendor = _get_database_vendor('write') @@ -134,10 +134,6 @@ def __new__(cls, name, bases, attrs): # if there is a RenderMeta in attrs, use this one # else try to use the one from the superclass (if present) meta = attr_meta or getattr(new_class, '_render_meta', None) - treebeard_view_fields = (f for f in new_class._meta.fields - if f.name in ('depth', 'numchild', 'path')) - for field in treebeard_view_fields: - field.editable = False # set a new BoundRenderMeta to prevent leaking of state new_class._render_meta = BoundRenderMeta(meta) return new_class @@ -484,7 +480,7 @@ def get_plugin_media_path(instance, filename): Django requires that unbound function used in fields' definitions to be defined outside the parent class. (see https://docs.djangoproject.com/en/dev/topics/migrations/#serializing-values) - This function is used withing field definition: + This function is used within field definition: file = models.FileField(_("file"), upload_to=get_plugin_media_path) diff --git a/cms/page_rendering.py b/cms/page_rendering.py index cee0ea93418..b2a1ba5bf13 100644 --- a/cms/page_rendering.py +++ b/cms/page_rendering.py @@ -1,33 +1,34 @@ from django.conf import settings from django.http import Http404 from django.template.response import TemplateResponse -from django.urls import Resolver404, resolve, reverse +from django.urls import Resolver404, get_resolver, resolve, reverse from cms import __version__, constants from cms.cache.page import set_page_cache from cms.models import EmptyPageContent -from cms.utils.page import get_page_template_from_request from cms.utils.page_permissions import user_can_change_page, user_can_view_page -def render_page(request, page, current_language, slug): +def render_page(request, page, current_language, slug=None): """ Renders a page """ + page_content = page.page_content_cache.get(current_language, page.get_content_obj(current_language)) context = {} context['lang'] = current_language context['current_page'] = page + context['current_pagecontent'] = page_content context['has_change_permissions'] = user_can_change_page(request.user, page) context['has_view_permissions'] = user_can_view_page(request.user, page) cant_view_page = any([ not context['has_view_permissions'], - isinstance(page.get_content_obj(current_language), EmptyPageContent) + isinstance(page_content, EmptyPageContent) ]) if cant_view_page: return _handle_no_page(request) - template = get_page_template_from_request(request) + template = page_content.get_template() response = TemplateResponse(request, template, context) response.add_post_render_callback(set_page_cache) @@ -83,4 +84,4 @@ def render_pagecontent(request, pagecontent): language = pagecontent.language request.current_page = page = pagecontent.page page.page_content_cache[language] = pagecontent - return render_page(request, page, language, page.get_slug(language)) + return render_page(request, page, language) 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/signals/apphook.py b/cms/signals/apphook.py index 97eaf3b613a..5253d8beace 100644 --- a/cms/signals/apphook.py +++ b/cms/signals/apphook.py @@ -39,7 +39,7 @@ def debug_server_restart(**kwargs): try: reload(cms.urls) except NameError: # python3 - from imp import reload + from importlib import reload reload(cms.urls) if 'test' not in sys.argv: msg = 'Application url changed and urls_need_reloading signal fired. ' \ 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 65b30b29f7c..00000000000 Binary files a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff and /dev/null differ diff --git a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff2 b/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff2 deleted file mode 100644 index e08f555c028..00000000000 Binary files a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.woff2 and /dev/null differ 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 95ba87c8ab0..a5135229da7 100644 Binary files a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.eot and b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.eot differ 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 4074bf7433f..0041d23b214 100644 Binary files a/cms/static/cms/fonts/4.1.0rc3/django-cms-iconfont.ttf and b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.ttf differ diff --git a/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff new file mode 100644 index 00000000000..2908d107992 Binary files /dev/null and b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff differ 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 00000000000..4a3035a83a4 Binary files /dev/null and b/cms/static/cms/fonts/4.1.0rc4/django-cms-iconfont.woff2 differ 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("