├── .coveragerc ├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── lint-pr.yml │ ├── lint.yml │ ├── publish-to-live-pypi.yml │ ├── publish-to-test-pypi.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .tx └── config ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── addon.json ├── aldryn_config.py ├── djangocms_video ├── __init__.py ├── cms_plugins.py ├── forms.py ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── be │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cmn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cy │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_BO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_DO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ga │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── is │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── is_IS │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── km │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ku_IQ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mn_MN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── no │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl_SI │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sq_AL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr@latin │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── th │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tlh │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ug │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi_VN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ ├── 0002_set_related_name_for_cmsplugin_ptr.py │ ├── 0003_field_adaptions.py │ ├── 0004_move_to_attributes.py │ ├── 0005_migrate_to_filer.py │ ├── 0006_field_adaptions.py │ ├── 0007_create_nested_plugin.py │ ├── 0008_reset_null_values.py │ ├── 0009_removed_null_values.py │ ├── 0010_videoplayer_parameters.py │ ├── 0011_alter_videoplayer_cmsplugin_ptr_and_more.py │ └── __init__.py ├── models.py └── templates │ └── djangocms_video │ └── default │ ├── source.html │ ├── track.html │ └── video_player.html ├── preview.gif ├── pyproject.toml ├── setup.py ├── tests ├── __init__.py ├── helpers.py ├── requirements │ ├── compile.py │ ├── py310-django32-cms310.txt │ ├── py310-django32-cms38.txt │ ├── py310-django32-cms39.txt │ ├── py310-django42-cms311.txt │ ├── py311-django42-cms311.txt │ ├── py38-django32-cms310.txt │ ├── py38-django32-cms38.txt │ ├── py38-django32-cms39.txt │ ├── py39-django32-cms310.txt │ ├── py39-django32-cms38.txt │ ├── py39-django32-cms39.txt │ └── requirements.in ├── settings.py ├── test_forms.py ├── test_migrations.py ├── test_models.py └── test_plugins.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | parallel = True 3 | branch = True 4 | source = djangocms_video 5 | omit = 6 | migrations/* 7 | tests/* 8 | 9 | [report] 10 | exclude_lines = 11 | pragma: no cover 12 | def __repr__ 13 | if self.debug: 14 | if settings.DEBUG 15 | raise AssertionError 16 | raise NotImplementedError 17 | if 0: 18 | if __name__ == .__main__.: 19 | ignore_errors = True 20 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | indent_style = space 7 | indent_size = 4 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | max_line_length = 80 13 | 14 | [*.py] 15 | max_line_length = 120 16 | quote_type = single 17 | 18 | [*.{scss,js,html}] 19 | max_line_length = 120 20 | indent_style = space 21 | quote_type = double 22 | 23 | [*.js] 24 | max_line_length = 120 25 | quote_type = single 26 | 27 | [*.rst] 28 | max_line_length = 80 29 | 30 | [*.yml] 31 | indent_size = 2 32 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 7 | 8 | ## Related resources 9 | 10 | 14 | 15 | * #... 16 | * #... 17 | 18 | ## Checklist 19 | 20 | 25 | 26 | * [ ] I have opened this pull request against ``master`` 27 | * [ ] I have added or modified the tests when changing logic 28 | * [ ] I have followed [the conventional commits guidelines](https://www.conventionalcommits.org/) to add meaningful information into the changelog 29 | * [ ] I have read the [contribution guidelines ](https://github.com/django-cms/django-cms/blob/develop/CONTRIBUTING.rst) and I have joined #workgroup-pr-review on 30 | [Slack](https://www.django-cms.org/slack) to find a “pr review buddy” who is going to review my pull request. 31 | -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- 1 | name: "Lint PR" 2 | 3 | # Validates PR titles against the conventional commit spec 4 | # https://github.com/commitizen/conventional-commit-types 5 | 6 | on: 7 | pull_request_target: 8 | types: 9 | - opened 10 | - edited 11 | - synchronize 12 | 13 | jobs: 14 | conventional-commits: 15 | name: Validate PR title 16 | runs-on: ubuntu-latest 17 | steps: 18 | - uses: amannn/action-semantic-pull-request@v4 19 | env: 20 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 21 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: [push, pull_request] 4 | 5 | concurrency: 6 | group: ${{ github.workflow }}-${{ github.ref }} 7 | cancel-in-progress: true 8 | 9 | jobs: 10 | ruff: 11 | name: ruff 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v3 16 | - name: Set up Python 17 | uses: actions/setup-python@v4 18 | with: 19 | python-version: '3.11' 20 | allow-prereleases: true 21 | cache: pip 22 | - run: | 23 | python -m pip install --upgrade pip 24 | pip install ruff 25 | - name: Run Ruff 26 | run: | 27 | ruff djangocms_video 28 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-live-pypi.yml: -------------------------------------------------------------------------------- 1 | name: Publish Python 🐍 distributions 📦 to pypi 2 | 3 | on: 4 | release: 5 | types: 6 | - published 7 | 8 | jobs: 9 | build-n-publish: 10 | name: Build and publish Python 🐍 distributions 📦 to pypi 11 | runs-on: ubuntu-latest 12 | environment: 13 | name: pypi 14 | url: https://pypi.org/p/djangocms-video 15 | permissions: 16 | id-token: write 17 | steps: 18 | - uses: actions/checkout@v4 19 | - name: Set up Python 3.10 20 | uses: actions/setup-python@v4 21 | with: 22 | python-version: '3.11' 23 | 24 | - name: Install pypa/build 25 | run: >- 26 | python -m 27 | pip install 28 | build 29 | --user 30 | - name: Build a binary wheel and a source tarball 31 | run: >- 32 | python -m 33 | build 34 | --sdist 35 | --wheel 36 | --outdir dist/ 37 | . 38 | 39 | - name: Publish distribution 📦 to PyPI 40 | if: startsWith(github.ref, 'refs/tags') 41 | uses: pypa/gh-action-pypi-publish@release/v1 42 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- 1 | name: Publish Python 🐍 distributions 📦 to TestPyPI 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | build-n-publish: 10 | name: Build and publish Python 🐍 distributions 📦 to TestPyPI 11 | runs-on: ubuntu-latest 12 | environment: 13 | name: pypi 14 | url: https://test.pypi.org/p/djangocms-video 15 | permissions: 16 | id-token: write 17 | steps: 18 | - uses: actions/checkout@v4 19 | - name: Set up Python 3.10 20 | uses: actions/setup-python@v4 21 | with: 22 | python-version: '3.11' 23 | 24 | - name: Install pypa/build 25 | run: >- 26 | python -m 27 | pip install 28 | build 29 | --user 30 | - name: Build a binary wheel and a source tarball 31 | run: >- 32 | python -m 33 | build 34 | --sdist 35 | --wheel 36 | --outdir dist/ 37 | . 38 | 39 | - name: Publish distribution 📦 to Test PyPI 40 | uses: pypa/gh-action-pypi-publish@release/v1 41 | with: 42 | repository-url: https://test.pypi.org/legacy/ 43 | skip_existing: true 44 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: CodeCov 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | 9 | concurrency: 10 | group: ${{ github.head_ref || github.run_id }} 11 | cancel-in-progress: true 12 | 13 | jobs: 14 | tests: 15 | name: ${{ matrix.database }} Python ${{ matrix.python-version }} 16 | runs-on: ubuntu-22.04 17 | 18 | strategy: 19 | fail-fast: false 20 | matrix: 21 | python-version: 22 | - '3.8' 23 | - '3.9' 24 | - '3.10' 25 | - '3.11' 26 | 27 | steps: 28 | - uses: actions/checkout@v3 29 | 30 | - uses: actions/setup-python@v4 31 | with: 32 | python-version: ${{ matrix.python-version }} 33 | allow-prereleases: true 34 | cache: pip 35 | cache-dependency-path: 'requirements/*.txt' 36 | 37 | - name: Install dependencies 38 | run: | 39 | python -m pip install --upgrade pip setuptools wheel 40 | python -m pip install --upgrade 'tox>=4.0.0rc3' 41 | 42 | - name: Run tox targets for ${{ matrix.python-version }} 43 | run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .) 44 | 45 | - name: Upload coverage data 46 | uses: actions/upload-artifact@v3 47 | with: 48 | name: coverage-data 49 | path: '.coverage*' 50 | 51 | coverage: 52 | name: Coverage 53 | runs-on: ubuntu-22.04 54 | needs: tests 55 | steps: 56 | - uses: actions/checkout@v3 57 | 58 | - uses: actions/setup-python@v4 59 | with: 60 | python-version: '3.11' 61 | 62 | - name: Install dependencies 63 | run: python -m pip install --upgrade coverage[toml] 64 | 65 | - name: Download data 66 | uses: actions/download-artifact@v3 67 | with: 68 | name: coverage-data 69 | 70 | - name: Combine coverage and fail if it's <95% 71 | run: | 72 | python -m coverage combine 73 | python -m coverage html --skip-covered --skip-empty 74 | python -m coverage report --fail-under=95 75 | 76 | - name: Upload HTML report 77 | if: ${{ failure() }} 78 | uses: actions/upload-artifact@v3 79 | with: 80 | name: html-report 81 | path: htmlcov 82 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | *$py.class 3 | *.egg-info 4 | *.log 5 | *.pot 6 | .DS_Store 7 | .coverage 8 | .coverage/ 9 | .eggs/ 10 | .idea/ 11 | .project/ 12 | .pydevproject/ 13 | .vscode/ 14 | .settings/ 15 | .tox/ 16 | __pycache__/ 17 | build/ 18 | dist/ 19 | env/ 20 | 21 | /~ 22 | /node_modules 23 | .sass-cache 24 | *.css.map 25 | npm-debug.log 26 | package-lock.json 27 | 28 | local.sqlite 29 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ci: 2 | autofix_commit_msg: | 3 | ci: auto fixes from pre-commit hooks 4 | 5 | for more information, see https://pre-commit.ci 6 | autofix_prs: false 7 | autoupdate_commit_msg: 'ci: pre-commit autoupdate' 8 | autoupdate_schedule: monthly 9 | 10 | repos: 11 | - repo: https://github.com/asottile/pyupgrade 12 | rev: v3.7.0 13 | hooks: 14 | - id: pyupgrade 15 | args: ["--py38-plus"] 16 | 17 | - repo: https://github.com/adamchainz/django-upgrade 18 | rev: '1.14.0' 19 | hooks: 20 | - id: django-upgrade 21 | args: [--target-version, "3.2"] 22 | 23 | - repo: https://github.com/astral-sh/ruff-pre-commit 24 | rev: v0.0.275 25 | hooks: 26 | - id: ruff 27 | args: [--fix, --exit-non-zero-on-fix] 28 | 29 | - repo: https://github.com/asottile/yesqa 30 | rev: v1.5.0 31 | hooks: 32 | - id: yesqa 33 | 34 | - repo: https://github.com/pre-commit/pre-commit-hooks 35 | rev: v4.4.0 36 | hooks: 37 | - id: check-merge-conflict 38 | - id: debug-statements 39 | - id: mixed-line-ending 40 | - id: trailing-whitespace 41 | 42 | - repo: https://github.com/pycqa/isort 43 | rev: 5.12.0 44 | hooks: 45 | - id: isort 46 | 47 | - repo: https://github.com/codespell-project/codespell 48 | rev: v2.2.5 49 | hooks: 50 | - id: codespell 51 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [djangocms-video.djangocms_video] 5 | file_filter = djangocms_video/locale//LC_MESSAGES/django.po 6 | source_file = djangocms_video/locale/en/LC_MESSAGES/django.po 7 | source_lang = en 8 | type = PO 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011, Divio AG 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of Divio AG nor the 12 | names of its contributors may be used to endorse or promote products 13 | derived from this software without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 16 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL DIVIO AG BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | include README.rst 3 | recursive-include djangocms_video/locale * 4 | recursive-include djangocms_video/templates * 5 | recursive-exclude * *.py[co] 6 | -------------------------------------------------------------------------------- /addon.json: -------------------------------------------------------------------------------- 1 | { 2 | "package-name": "djangocms-video", 3 | "installed-apps": [ 4 | "djangocms_video" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /aldryn_config.py: -------------------------------------------------------------------------------- 1 | from aldryn_client import forms 2 | 3 | 4 | def split_and_strip(string): 5 | return [item.strip() for item in string.split(',') if item] 6 | 7 | 8 | class Form(forms.BaseForm): 9 | templates = forms.CharField( 10 | 'List of additional templates (comma separated)', 11 | required=False, 12 | ) 13 | extensions = forms.CharField( 14 | 'List of allowed extensions, default "mp4, webm, ogv" when empty (comma separated)', 15 | required=False, 16 | ) 17 | 18 | def clean(self): 19 | data = super(Form, self).clean() 20 | 21 | # older versions of this addon had a bug where the values would be 22 | # saved to settings.json as a list instead of a string. 23 | if isinstance(data['templates'], list): 24 | data['templates'] = ', '.join(data['templates']) 25 | if isinstance(data['extensions'], list): 26 | data['extensions'] = ', '.join(data['extensions']) 27 | 28 | # prettify 29 | data['templates'] = ', '.join(split_and_strip(data['templates'])) 30 | data['extensions'] = ', '.join(split_and_strip(data['extensions'])) 31 | return data 32 | 33 | def to_settings(self, data, settings): 34 | if data['templates']: 35 | settings['DJANGOCMS_VIDEO_TEMPLATES'] = [ 36 | (item, item) 37 | for item in split_and_strip(data['templates']) 38 | ] 39 | if data['extensions']: 40 | settings['DJANGOCMS_VIDEO_ALLOWED_EXTENSIONS'] = split_and_strip(data['extensions']) 41 | 42 | return settings 43 | -------------------------------------------------------------------------------- /djangocms_video/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1.0' 2 | -------------------------------------------------------------------------------- /djangocms_video/forms.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | from django import forms 4 | from django.conf import settings 5 | 6 | from . import models 7 | 8 | YOUTUBE_URL_RE = re.compile(r'(?:(?:http://|https://|//)?(?:www\.)?youtu\.?be.*).*') 9 | # https://stackoverflow.com/a/9102270 10 | YOUTUBE_VIDEO_ID_RE = re.compile(r'(?:[?&]v=|/embed/|/1/|/v/|https?://(?:www\.)?youtu\.be/)([^&\n?#]+)') 11 | DEFAULT_YOUTUBE_EMBED_URL = '//www.youtube.com/embed/{}' 12 | 13 | 14 | class VideoPlayerPluginForm(forms.ModelForm): 15 | class Meta: 16 | model = models.VideoPlayer 17 | exclude = [] 18 | 19 | def clean_embed_link(self): 20 | link = self.cleaned_data['embed_link'] 21 | # let's check if it's a youtube url 22 | # (the low cost version) 23 | if YOUTUBE_URL_RE.match(link): 24 | # try to get the video id 25 | results = YOUTUBE_VIDEO_ID_RE.findall(link) 26 | if results: 27 | embed_url = getattr(settings, "DJANGOCMS_VIDEO_YOUTUBE_EMBED_URL", DEFAULT_YOUTUBE_EMBED_URL) 28 | link = embed_url.format(results[0]) 29 | return link 30 | -------------------------------------------------------------------------------- /djangocms_video/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/af/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Afrikaans (https://www.transifex.com/divio/teams/58664/af/)\n" 14 | "Language: af\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/be/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Belarusian (https://www.transifex.com/divio/teams/58664/be/)\n" 14 | "Language: be\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" 19 | "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" 20 | "%100>=11 && n%100<=14)? 2 : 3);\n" 21 | 22 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 23 | msgid "Video player" 24 | msgstr "" 25 | 26 | #: cms_plugins.py:25 27 | msgid "Embed video" 28 | msgstr "" 29 | 30 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 31 | msgid "Advanced settings" 32 | msgstr "" 33 | 34 | #: cms_plugins.py:52 models.py:129 35 | msgid "Source" 36 | msgstr "" 37 | 38 | #: cms_plugins.py:79 39 | msgid "Track" 40 | msgstr "" 41 | 42 | #: models.py:33 43 | msgid "Default" 44 | msgstr "" 45 | 46 | #: models.py:47 47 | msgid "Template" 48 | msgstr "" 49 | 50 | #: models.py:53 models.py:203 51 | msgid "Label" 52 | msgstr "" 53 | 54 | #: models.py:58 55 | msgid "Embed link" 56 | msgstr "" 57 | 58 | #: models.py:62 59 | msgid "" 60 | "Use this field to embed videos from external services such as YouTube, Vimeo " 61 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 62 | "plugins." 63 | msgstr "" 64 | 65 | #: models.py:68 66 | msgid "Parameters" 67 | msgstr "" 68 | 69 | #: models.py:71 70 | msgid "Parameters are appended to the video link if provided." 71 | msgstr "" 72 | 73 | #: models.py:75 74 | msgid "Poster" 75 | msgstr "" 76 | 77 | #: models.py:82 models.py:145 models.py:208 78 | msgid "Attributes" 79 | msgstr "" 80 | 81 | #: models.py:136 82 | msgid "Title" 83 | msgstr "" 84 | 85 | #: models.py:141 86 | msgid "Description" 87 | msgstr "" 88 | 89 | #: models.py:157 90 | #, python-brace-format 91 | msgid "Incorrect file type: {extension}." 92 | msgstr "" 93 | 94 | #: models.py:164 95 | msgid "" 96 | msgstr "" 97 | 98 | #: models.py:178 99 | msgid "Subtitles" 100 | msgstr "" 101 | 102 | #: models.py:179 103 | msgid "Captions" 104 | msgstr "" 105 | 106 | #: models.py:180 107 | msgid "Descriptions" 108 | msgstr "" 109 | 110 | #: models.py:181 111 | msgid "Chapters" 112 | msgstr "" 113 | 114 | #: models.py:185 115 | msgid "Kind" 116 | msgstr "" 117 | 118 | #: models.py:190 119 | msgid "Source file" 120 | msgstr "" 121 | 122 | #: models.py:197 123 | msgid "Source language" 124 | msgstr "" 125 | 126 | #: models.py:200 127 | msgid "Examples: \"en\" or \"de\" etc." 128 | msgstr "" 129 | 130 | #: templates/djangocms_video/default/video_player.html:18 131 | msgid "Your browser doesn't support this video format." 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /djangocms_video/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Bulgarian (https://www.transifex.com/divio/teams/58664/bg/)\n" 15 | "Language: bg\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "" 135 | #~ "използвайте видео файлове във формат .FLV или видео файл кодиран в h264 " 136 | #~ "формат" 137 | -------------------------------------------------------------------------------- /djangocms_video/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/bn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Bengali (https://www.transifex.com/divio/teams/58664/bn/)\n" 14 | "Language: bn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/cmn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/cmn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/cmn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Chinese (Mandarin) (https://www.transifex.com/divio/" 14 | "teams/58664/cmn/)\n" 15 | "Language: cmn\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Czech (https://www.transifex.com/divio/teams/58664/cs/)\n" 15 | "Language: cs\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "použijte .flv nebo video zakódované pomocí h264" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/cy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Welsh (https://www.transifex.com/divio/teams/58664/cy/)\n" 14 | "Language: cy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " 19 | "11) ? 2 : 3;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Danish (https://www.transifex.com/divio/teams/58664/da/)\n" 15 | "Language: da\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "movie file" 134 | #~ msgstr "videofil" 135 | 136 | #~ msgid "use .flv file or h264 encoded video file" 137 | #~ msgstr "brug .flv eller h264 encodede video filer" 138 | -------------------------------------------------------------------------------- /djangocms_video/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Greek (https://www.transifex.com/divio/teams/58664/el/)\n" 15 | "Language: el\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "χρήση .flv αρχείου ή αρχείο h264 κωδικοποιημένου βίντεο" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Spanish (https://www.transifex.com/divio/teams/58664/es/)\n" 14 | "Language: es\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/es_BO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/es_BO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/es_BO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Spanish (Bolivia) (https://www.transifex.com/divio/" 15 | "teams/58664/es_BO/)\n" 16 | "Language: es_BO\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 23 | msgid "Video player" 24 | msgstr "" 25 | 26 | #: cms_plugins.py:25 27 | msgid "Embed video" 28 | msgstr "" 29 | 30 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 31 | msgid "Advanced settings" 32 | msgstr "" 33 | 34 | #: cms_plugins.py:52 models.py:129 35 | msgid "Source" 36 | msgstr "" 37 | 38 | #: cms_plugins.py:79 39 | msgid "Track" 40 | msgstr "" 41 | 42 | #: models.py:33 43 | msgid "Default" 44 | msgstr "" 45 | 46 | #: models.py:47 47 | msgid "Template" 48 | msgstr "" 49 | 50 | #: models.py:53 models.py:203 51 | msgid "Label" 52 | msgstr "" 53 | 54 | #: models.py:58 55 | msgid "Embed link" 56 | msgstr "" 57 | 58 | #: models.py:62 59 | msgid "" 60 | "Use this field to embed videos from external services such as YouTube, Vimeo " 61 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 62 | "plugins." 63 | msgstr "" 64 | 65 | #: models.py:68 66 | msgid "Parameters" 67 | msgstr "" 68 | 69 | #: models.py:71 70 | msgid "Parameters are appended to the video link if provided." 71 | msgstr "" 72 | 73 | #: models.py:75 74 | msgid "Poster" 75 | msgstr "" 76 | 77 | #: models.py:82 models.py:145 models.py:208 78 | msgid "Attributes" 79 | msgstr "" 80 | 81 | #: models.py:136 82 | msgid "Title" 83 | msgstr "" 84 | 85 | #: models.py:141 86 | msgid "Description" 87 | msgstr "" 88 | 89 | #: models.py:157 90 | #, python-brace-format 91 | msgid "Incorrect file type: {extension}." 92 | msgstr "" 93 | 94 | #: models.py:164 95 | msgid "" 96 | msgstr "" 97 | 98 | #: models.py:178 99 | msgid "Subtitles" 100 | msgstr "" 101 | 102 | #: models.py:179 103 | msgid "Captions" 104 | msgstr "" 105 | 106 | #: models.py:180 107 | msgid "Descriptions" 108 | msgstr "" 109 | 110 | #: models.py:181 111 | msgid "Chapters" 112 | msgstr "" 113 | 114 | #: models.py:185 115 | msgid "Kind" 116 | msgstr "" 117 | 118 | #: models.py:190 119 | msgid "Source file" 120 | msgstr "" 121 | 122 | #: models.py:197 123 | msgid "Source language" 124 | msgstr "" 125 | 126 | #: models.py:200 127 | msgid "Examples: \"en\" or \"de\" etc." 128 | msgstr "" 129 | 130 | #: templates/djangocms_video/default/video_player.html:18 131 | msgid "Your browser doesn't support this video format." 132 | msgstr "" 133 | 134 | #~ msgid "use .flv file or h264 encoded video file" 135 | #~ msgstr "" 136 | #~ "Use un fichero .flv o uno codificado como h265 como fichero de vídeo" 137 | -------------------------------------------------------------------------------- /djangocms_video/locale/es_DO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/es_DO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/es_DO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/divio/" 14 | "teams/58664/es_DO/)\n" 15 | "Language: es_DO\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Estonian (https://www.transifex.com/divio/teams/58664/et/)\n" 14 | "Language: et\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Persian (https://www.transifex.com/divio/teams/58664/fa/)\n" 15 | "Language: fa\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "movie file" 134 | #~ msgstr "فایل ویدیو" 135 | 136 | #~ msgid "use .flv file or h264 encoded video file" 137 | #~ msgstr "از نوع .flv یا کدگذاری h264 استفاده کنید" 138 | -------------------------------------------------------------------------------- /djangocms_video/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ga/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Irish (https://www.transifex.com/divio/teams/58664/ga/)\n" 14 | "Language: ga\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " 19 | "4);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Galician (https://www.transifex.com/divio/teams/58664/gl/)\n" 14 | "Language: gl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/gu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/gu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/gu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Gujarati (https://www.transifex.com/divio/teams/58664/gu/)\n" 14 | "Language: gu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: fishfurbanter , 2016\n" 14 | "Language-Team: Hebrew (https://www.transifex.com/divio/teams/58664/he/)\n" 15 | "Language: he\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "הגדרות מתקדמות" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Hindi (https://www.transifex.com/divio/teams/58664/hi/)\n" 15 | "Language: hi\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "उपयोग flv फाइल या h264 एन्कोडेड फ़ाइल वीडियो." 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Indonesian (https://www.transifex.com/divio/teams/58664/id/)\n" 14 | "Language: id\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/is_IS/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/is_IS/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/is_IS/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Icelandic (Iceland) (https://www.transifex.com/divio/" 14 | "teams/58664/is_IS/)\n" 15 | "Language: is_IS\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Italian (https://www.transifex.com/divio/teams/58664/it/)\n" 14 | "Language: it\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Japanese (https://www.transifex.com/divio/teams/58664/ja/)\n" 15 | "Language: ja\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "movie file" 134 | #~ msgstr "動画ファイル" 135 | 136 | #~ msgid "use .flv file or h264 encoded video file" 137 | #~ msgstr "" 138 | #~ "FLV ファイルか、 H264 エンコードされた動画ファイルを使ってください。" 139 | -------------------------------------------------------------------------------- /djangocms_video/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ka/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Georgian (https://www.transifex.com/divio/teams/58664/ka/)\n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/kk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Kazakh (https://www.transifex.com/divio/teams/58664/kk/)\n" 14 | "Language: kk\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/km/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Khmer (https://www.transifex.com/divio/teams/58664/km/)\n" 15 | "Language: km\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "ប្រើ​ឯកសារ .flv ឬ វីដេអូប្រភេទ h264" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Korean (https://www.transifex.com/divio/teams/58664/ko/)\n" 14 | "Language: ko\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/ko_KR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ko_KR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ku_IQ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ku_IQ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ku_IQ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Kurdish (Iraq) (https://www.transifex.com/divio/teams/58664/" 15 | "ku_IQ/)\n" 16 | "Language: ku_IQ\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 23 | msgid "Video player" 24 | msgstr "" 25 | 26 | #: cms_plugins.py:25 27 | msgid "Embed video" 28 | msgstr "" 29 | 30 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 31 | msgid "Advanced settings" 32 | msgstr "" 33 | 34 | #: cms_plugins.py:52 models.py:129 35 | msgid "Source" 36 | msgstr "" 37 | 38 | #: cms_plugins.py:79 39 | msgid "Track" 40 | msgstr "" 41 | 42 | #: models.py:33 43 | msgid "Default" 44 | msgstr "" 45 | 46 | #: models.py:47 47 | msgid "Template" 48 | msgstr "" 49 | 50 | #: models.py:53 models.py:203 51 | msgid "Label" 52 | msgstr "" 53 | 54 | #: models.py:58 55 | msgid "Embed link" 56 | msgstr "" 57 | 58 | #: models.py:62 59 | msgid "" 60 | "Use this field to embed videos from external services such as YouTube, Vimeo " 61 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 62 | "plugins." 63 | msgstr "" 64 | 65 | #: models.py:68 66 | msgid "Parameters" 67 | msgstr "" 68 | 69 | #: models.py:71 70 | msgid "Parameters are appended to the video link if provided." 71 | msgstr "" 72 | 73 | #: models.py:75 74 | msgid "Poster" 75 | msgstr "" 76 | 77 | #: models.py:82 models.py:145 models.py:208 78 | msgid "Attributes" 79 | msgstr "" 80 | 81 | #: models.py:136 82 | msgid "Title" 83 | msgstr "" 84 | 85 | #: models.py:141 86 | msgid "Description" 87 | msgstr "" 88 | 89 | #: models.py:157 90 | #, python-brace-format 91 | msgid "Incorrect file type: {extension}." 92 | msgstr "" 93 | 94 | #: models.py:164 95 | msgid "" 96 | msgstr "" 97 | 98 | #: models.py:178 99 | msgid "Subtitles" 100 | msgstr "" 101 | 102 | #: models.py:179 103 | msgid "Captions" 104 | msgstr "" 105 | 106 | #: models.py:180 107 | msgid "Descriptions" 108 | msgstr "" 109 | 110 | #: models.py:181 111 | msgid "Chapters" 112 | msgstr "" 113 | 114 | #: models.py:185 115 | msgid "Kind" 116 | msgstr "" 117 | 118 | #: models.py:190 119 | msgid "Source file" 120 | msgstr "" 121 | 122 | #: models.py:197 123 | msgid "Source language" 124 | msgstr "" 125 | 126 | #: models.py:200 127 | msgid "Examples: \"en\" or \"de\" etc." 128 | msgstr "" 129 | 130 | #: templates/djangocms_video/default/video_player.html:18 131 | msgid "Your browser doesn't support this video format." 132 | msgstr "" 133 | 134 | #~ msgid "use .flv file or h264 encoded video file" 135 | #~ msgstr " بەکاربێنە بۆ ڤیدیۆ بە کۆدکراوەکەh264یان.flv" 136 | -------------------------------------------------------------------------------- /djangocms_video/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Latvian (https://www.transifex.com/divio/teams/58664/lv/)\n" 14 | "Language: lv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " 19 | "2);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Mongolian (https://www.transifex.com/divio/teams/58664/mn/)\n" 14 | "Language: mn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/mn_MN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/mn_MN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/mn_MN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Mongolian (Mongolia) (https://www.transifex.com/divio/" 14 | "teams/58664/mn_MN/)\n" 15 | "Language: mn_MN\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/mt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/mt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/mt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Maltese (https://www.transifex.com/divio/teams/58664/mt/)\n" 14 | "Language: mt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n" 19 | "%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/no/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/no/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/no/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Norwegian (https://www.transifex.com/divio/teams/58664/no/)\n" 15 | "Language: no\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "bruk .flv-fil eller h264-kodet videofil" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Romanian (https://www.transifex.com/divio/teams/58664/ro/)\n" 14 | "Language: ro\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" 19 | "2:1));\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Slovak (https://www.transifex.com/divio/teams/58664/sk/)\n" 15 | "Language: sk\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "použite .flv súbor alebo video kódované v h264" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Slovenian (https://www.transifex.com/divio/teams/58664/sl/)\n" 14 | "Language: sl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" 19 | "%100==4 ? 2 : 3);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/sl_SI/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sl_SI/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sq/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Albanian (https://www.transifex.com/divio/teams/58664/sq/)\n" 14 | "Language: sq\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/sq_AL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sq_AL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sq_AL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Albanian (Albania) (https://www.transifex.com/divio/" 14 | "teams/58664/sq_AL/)\n" 15 | "Language: sq_AL\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Serbian (https://www.transifex.com/divio/teams/58664/sr/)\n" 14 | "Language: sr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" 19 | "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/sr@latin/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sr@latin/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Swedish (https://www.transifex.com/divio/teams/58664/sv/)\n" 15 | "Language: sv\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr "använd .flv-fil eller en h264-kodad videofil" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Thai (https://www.transifex.com/divio/teams/58664/th/)\n" 14 | "Language: th\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/th_TH/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/th_TH/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/th_TH/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Thai (Thailand) (https://www.transifex.com/divio/teams/58664/" 14 | "th_TH/)\n" 15 | "Language: th_TH\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/tlh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/tlh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/tlh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Klingon (https://www.transifex.com/divio/teams/58664/tlh/)\n" 14 | "Language: tlh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Turkish (https://www.transifex.com/divio/teams/58664/tr/)\n" 15 | "Language: tr\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | 133 | #~ msgid "use .flv file or h264 encoded video file" 134 | #~ msgstr ".flv dosyası veya h264 ile kodlanmış video dosyası" 135 | -------------------------------------------------------------------------------- /djangocms_video/locale/ug/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ug/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ug/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Uighur (https://www.transifex.com/divio/teams/58664/ug/)\n" 14 | "Language: ug\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/ur/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Urdu (https://www.transifex.com/divio/teams/58664/ur/)\n" 14 | "Language: ur\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Vietnamese (https://www.transifex.com/divio/teams/58664/vi/)\n" 14 | "Language: vi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/vi_VN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/vi_VN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/vi_VN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/divio/" 14 | "teams/58664/vi_VN/)\n" 15 | "Language: vi_VN\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 22 | msgid "Video player" 23 | msgstr "" 24 | 25 | #: cms_plugins.py:25 26 | msgid "Embed video" 27 | msgstr "" 28 | 29 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 30 | msgid "Advanced settings" 31 | msgstr "" 32 | 33 | #: cms_plugins.py:52 models.py:129 34 | msgid "Source" 35 | msgstr "" 36 | 37 | #: cms_plugins.py:79 38 | msgid "Track" 39 | msgstr "" 40 | 41 | #: models.py:33 42 | msgid "Default" 43 | msgstr "" 44 | 45 | #: models.py:47 46 | msgid "Template" 47 | msgstr "" 48 | 49 | #: models.py:53 models.py:203 50 | msgid "Label" 51 | msgstr "" 52 | 53 | #: models.py:58 54 | msgid "Embed link" 55 | msgstr "" 56 | 57 | #: models.py:62 58 | msgid "" 59 | "Use this field to embed videos from external services such as YouTube, Vimeo " 60 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 61 | "plugins." 62 | msgstr "" 63 | 64 | #: models.py:68 65 | msgid "Parameters" 66 | msgstr "" 67 | 68 | #: models.py:71 69 | msgid "Parameters are appended to the video link if provided." 70 | msgstr "" 71 | 72 | #: models.py:75 73 | msgid "Poster" 74 | msgstr "" 75 | 76 | #: models.py:82 models.py:145 models.py:208 77 | msgid "Attributes" 78 | msgstr "" 79 | 80 | #: models.py:136 81 | msgid "Title" 82 | msgstr "" 83 | 84 | #: models.py:141 85 | msgid "Description" 86 | msgstr "" 87 | 88 | #: models.py:157 89 | #, python-brace-format 90 | msgid "Incorrect file type: {extension}." 91 | msgstr "" 92 | 93 | #: models.py:164 94 | msgid "" 95 | msgstr "" 96 | 97 | #: models.py:178 98 | msgid "Subtitles" 99 | msgstr "" 100 | 101 | #: models.py:179 102 | msgid "Captions" 103 | msgstr "" 104 | 105 | #: models.py:180 106 | msgid "Descriptions" 107 | msgstr "" 108 | 109 | #: models.py:181 110 | msgid "Chapters" 111 | msgstr "" 112 | 113 | #: models.py:185 114 | msgid "Kind" 115 | msgstr "" 116 | 117 | #: models.py:190 118 | msgid "Source file" 119 | msgstr "" 120 | 121 | #: models.py:197 122 | msgid "Source language" 123 | msgstr "" 124 | 125 | #: models.py:200 126 | msgid "Examples: \"en\" or \"de\" etc." 127 | msgstr "" 128 | 129 | #: templates/djangocms_video/default/video_player.html:18 130 | msgid "Your browser doesn't support this video format." 131 | msgstr "" 132 | -------------------------------------------------------------------------------- /djangocms_video/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Language-Team: Chinese (https://www.transifex.com/divio/teams/58664/zh/)\n" 14 | "Language: zh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 21 | msgid "Video player" 22 | msgstr "" 23 | 24 | #: cms_plugins.py:25 25 | msgid "Embed video" 26 | msgstr "" 27 | 28 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 29 | msgid "Advanced settings" 30 | msgstr "" 31 | 32 | #: cms_plugins.py:52 models.py:129 33 | msgid "Source" 34 | msgstr "" 35 | 36 | #: cms_plugins.py:79 37 | msgid "Track" 38 | msgstr "" 39 | 40 | #: models.py:33 41 | msgid "Default" 42 | msgstr "" 43 | 44 | #: models.py:47 45 | msgid "Template" 46 | msgstr "" 47 | 48 | #: models.py:53 models.py:203 49 | msgid "Label" 50 | msgstr "" 51 | 52 | #: models.py:58 53 | msgid "Embed link" 54 | msgstr "" 55 | 56 | #: models.py:62 57 | msgid "" 58 | "Use this field to embed videos from external services such as YouTube, Vimeo " 59 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 60 | "plugins." 61 | msgstr "" 62 | 63 | #: models.py:68 64 | msgid "Parameters" 65 | msgstr "" 66 | 67 | #: models.py:71 68 | msgid "Parameters are appended to the video link if provided." 69 | msgstr "" 70 | 71 | #: models.py:75 72 | msgid "Poster" 73 | msgstr "" 74 | 75 | #: models.py:82 models.py:145 models.py:208 76 | msgid "Attributes" 77 | msgstr "" 78 | 79 | #: models.py:136 80 | msgid "Title" 81 | msgstr "" 82 | 83 | #: models.py:141 84 | msgid "Description" 85 | msgstr "" 86 | 87 | #: models.py:157 88 | #, python-brace-format 89 | msgid "Incorrect file type: {extension}." 90 | msgstr "" 91 | 92 | #: models.py:164 93 | msgid "" 94 | msgstr "" 95 | 96 | #: models.py:178 97 | msgid "Subtitles" 98 | msgstr "" 99 | 100 | #: models.py:179 101 | msgid "Captions" 102 | msgstr "" 103 | 104 | #: models.py:180 105 | msgid "Descriptions" 106 | msgstr "" 107 | 108 | #: models.py:181 109 | msgid "Chapters" 110 | msgstr "" 111 | 112 | #: models.py:185 113 | msgid "Kind" 114 | msgstr "" 115 | 116 | #: models.py:190 117 | msgid "Source file" 118 | msgstr "" 119 | 120 | #: models.py:197 121 | msgid "Source language" 122 | msgstr "" 123 | 124 | #: models.py:200 125 | msgid "Examples: \"en\" or \"de\" etc." 126 | msgstr "" 127 | 128 | #: templates/djangocms_video/default/video_player.html:18 129 | msgid "Your browser doesn't support this video format." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /djangocms_video/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Chinese (China) (https://www.transifex.com/divio/teams/58664/" 15 | "zh_CN/)\n" 16 | "Language: zh_CN\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | 22 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 23 | msgid "Video player" 24 | msgstr "" 25 | 26 | #: cms_plugins.py:25 27 | msgid "Embed video" 28 | msgstr "" 29 | 30 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 31 | msgid "Advanced settings" 32 | msgstr "" 33 | 34 | #: cms_plugins.py:52 models.py:129 35 | msgid "Source" 36 | msgstr "" 37 | 38 | #: cms_plugins.py:79 39 | msgid "Track" 40 | msgstr "" 41 | 42 | #: models.py:33 43 | msgid "Default" 44 | msgstr "" 45 | 46 | #: models.py:47 47 | msgid "Template" 48 | msgstr "" 49 | 50 | #: models.py:53 models.py:203 51 | msgid "Label" 52 | msgstr "" 53 | 54 | #: models.py:58 55 | msgid "Embed link" 56 | msgstr "" 57 | 58 | #: models.py:62 59 | msgid "" 60 | "Use this field to embed videos from external services such as YouTube, Vimeo " 61 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 62 | "plugins." 63 | msgstr "" 64 | 65 | #: models.py:68 66 | msgid "Parameters" 67 | msgstr "" 68 | 69 | #: models.py:71 70 | msgid "Parameters are appended to the video link if provided." 71 | msgstr "" 72 | 73 | #: models.py:75 74 | msgid "Poster" 75 | msgstr "" 76 | 77 | #: models.py:82 models.py:145 models.py:208 78 | msgid "Attributes" 79 | msgstr "" 80 | 81 | #: models.py:136 82 | msgid "Title" 83 | msgstr "" 84 | 85 | #: models.py:141 86 | msgid "Description" 87 | msgstr "" 88 | 89 | #: models.py:157 90 | #, python-brace-format 91 | msgid "Incorrect file type: {extension}." 92 | msgstr "" 93 | 94 | #: models.py:164 95 | msgid "" 96 | msgstr "" 97 | 98 | #: models.py:178 99 | msgid "Subtitles" 100 | msgstr "" 101 | 102 | #: models.py:179 103 | msgid "Captions" 104 | msgstr "" 105 | 106 | #: models.py:180 107 | msgid "Descriptions" 108 | msgstr "" 109 | 110 | #: models.py:181 111 | msgid "Chapters" 112 | msgstr "" 113 | 114 | #: models.py:185 115 | msgid "Kind" 116 | msgstr "" 117 | 118 | #: models.py:190 119 | msgid "Source file" 120 | msgstr "" 121 | 122 | #: models.py:197 123 | msgid "Source language" 124 | msgstr "" 125 | 126 | #: models.py:200 127 | msgid "Examples: \"en\" or \"de\" etc." 128 | msgstr "" 129 | 130 | #: templates/djangocms_video/default/video_player.html:18 131 | msgid "Your browser doesn't support this video format." 132 | msgstr "" 133 | 134 | #~ msgid "movie file" 135 | #~ msgstr "电影文件" 136 | 137 | #~ msgid "use .flv file or h264 encoded video file" 138 | #~ msgstr "使用.flv或者h264编码的视频文件" 139 | -------------------------------------------------------------------------------- /djangocms_video/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_video/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-07-23 14:19+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Angelo Dini , 2016\n" 14 | "Language-Team: Chinese (Taiwan) (https://www.transifex.com/divio/teams/58664/" 15 | "zh_TW/)\n" 16 | "Language: zh_TW\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | 22 | #: cms_plugins.py:12 cms_plugins.py:53 cms_plugins.py:80 23 | msgid "Video player" 24 | msgstr "" 25 | 26 | #: cms_plugins.py:25 27 | msgid "Embed video" 28 | msgstr "" 29 | 30 | #: cms_plugins.py:32 cms_plugins.py:64 cms_plugins.py:92 31 | msgid "Advanced settings" 32 | msgstr "" 33 | 34 | #: cms_plugins.py:52 models.py:129 35 | msgid "Source" 36 | msgstr "" 37 | 38 | #: cms_plugins.py:79 39 | msgid "Track" 40 | msgstr "" 41 | 42 | #: models.py:33 43 | msgid "Default" 44 | msgstr "" 45 | 46 | #: models.py:47 47 | msgid "Template" 48 | msgstr "" 49 | 50 | #: models.py:53 models.py:203 51 | msgid "Label" 52 | msgstr "" 53 | 54 | #: models.py:58 55 | msgid "Embed link" 56 | msgstr "" 57 | 58 | #: models.py:62 59 | msgid "" 60 | "Use this field to embed videos from external services such as YouTube, Vimeo " 61 | "or others. Leave it blank to upload video files by adding nested \"Source\" " 62 | "plugins." 63 | msgstr "" 64 | 65 | #: models.py:68 66 | msgid "Parameters" 67 | msgstr "" 68 | 69 | #: models.py:71 70 | msgid "Parameters are appended to the video link if provided." 71 | msgstr "" 72 | 73 | #: models.py:75 74 | msgid "Poster" 75 | msgstr "" 76 | 77 | #: models.py:82 models.py:145 models.py:208 78 | msgid "Attributes" 79 | msgstr "" 80 | 81 | #: models.py:136 82 | msgid "Title" 83 | msgstr "" 84 | 85 | #: models.py:141 86 | msgid "Description" 87 | msgstr "" 88 | 89 | #: models.py:157 90 | #, python-brace-format 91 | msgid "Incorrect file type: {extension}." 92 | msgstr "" 93 | 94 | #: models.py:164 95 | msgid "" 96 | msgstr "" 97 | 98 | #: models.py:178 99 | msgid "Subtitles" 100 | msgstr "" 101 | 102 | #: models.py:179 103 | msgid "Captions" 104 | msgstr "" 105 | 106 | #: models.py:180 107 | msgid "Descriptions" 108 | msgstr "" 109 | 110 | #: models.py:181 111 | msgid "Chapters" 112 | msgstr "" 113 | 114 | #: models.py:185 115 | msgid "Kind" 116 | msgstr "" 117 | 118 | #: models.py:190 119 | msgid "Source file" 120 | msgstr "" 121 | 122 | #: models.py:197 123 | msgid "Source language" 124 | msgstr "" 125 | 126 | #: models.py:200 127 | msgid "Examples: \"en\" or \"de\" etc." 128 | msgstr "" 129 | 130 | #: templates/djangocms_video/default/video_player.html:18 131 | msgid "Your browser doesn't support this video format." 132 | msgstr "" 133 | 134 | #~ msgid "movie file" 135 | #~ msgstr "影片檔案" 136 | 137 | #~ msgid "use .flv file or h264 encoded video file" 138 | #~ msgstr "使用 .flv 檔案或 h264 編碼的影像檔案" 139 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0002_set_related_name_for_cmsplugin_ptr.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 1.9.2 on 2016-03-04 05:27 2 | import django.db.models.deletion 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('djangocms_video', '0001_initial'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AlterField( 14 | model_name='video', 15 | name='cmsplugin_ptr', 16 | field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='djangocms_video_video', serialize=False, to='cms.CMSPlugin'), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0003_field_adaptions.py: -------------------------------------------------------------------------------- 1 | import django.db.models.deletion 2 | from django.conf import settings 3 | from django.db import migrations, models 4 | 5 | import djangocms_attributes_field.fields 6 | import filer.fields.image 7 | 8 | 9 | class Migration(migrations.Migration): 10 | 11 | dependencies = [ 12 | migrations.swappable_dependency(settings.FILER_IMAGE_MODEL), 13 | ('djangocms_video', '0002_set_related_name_for_cmsplugin_ptr'), 14 | ] 15 | 16 | operations = [ 17 | migrations.RenameModel( 18 | old_name='Video', 19 | new_name='VideoPlayer', 20 | ), 21 | migrations.AlterField( 22 | model_name='videoplayer', 23 | name='cmsplugin_ptr', 24 | field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, parent_link=True, related_name='djangocms_video_videoplayer', primary_key=True, serialize=False, to='cms.CMSPlugin'), 25 | ), 26 | migrations.RenameField( 27 | model_name='videoplayer', 28 | old_name='movie_url', 29 | new_name='embed_link', 30 | ), 31 | migrations.AddField( 32 | model_name='videoplayer', 33 | name='poster', 34 | field=filer.fields.image.FilerImageField(related_name='+', on_delete=django.db.models.deletion.SET_NULL, verbose_name='Poster', blank=True, to=settings.FILER_IMAGE_MODEL, null=True), 35 | ), 36 | migrations.AddField( 37 | model_name='videoplayer', 38 | name='attributes', 39 | field=djangocms_attributes_field.fields.AttributesField(default=dict, verbose_name='Attributes', blank=True), 40 | ), 41 | ] 42 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0004_move_to_attributes.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | def migrate_to_attributes(apps, schema_editor): 7 | VideoPlayer = apps.get_model('djangocms_video', 'VideoPlayer') 8 | attrs = {} 9 | 10 | mapping = { 11 | 'width': 'width', 12 | 'height': 'height', 13 | 'data-auto_play': 'auto_play', 14 | 'data-auto_hide': 'auto_hide', 15 | 'data-fullscreen': 'fullscreen', 16 | 'data-loop': 'loop', 17 | 'data-bgcolor': 'bgcolor', 18 | 'data-textcolor': 'textcolor', 19 | 'data-seekbarcolor': 'seekbarcolor', 20 | 'data-seekbarbgcolor': 'seekbarbgcolor', 21 | 'data-loadingbarcolor': 'loadingbarcolor', 22 | 'data-buttonovercolor': 'buttonovercolor', 23 | 'data-buttonhighlightcolor': 'buttonhighlightcolor', 24 | } 25 | 26 | for plugin in VideoPlayer.objects.all(): # pragma: no cover 27 | for new, old in mapping.items(): 28 | attrs[new] = str(getattr(plugin, old)).strip() 29 | # needs to be stored as dict to the database 30 | plugin.attributes = attrs 31 | plugin.save() 32 | 33 | 34 | class Migration(migrations.Migration): 35 | 36 | dependencies = [ 37 | ('djangocms_video', '0003_field_adaptions'), 38 | ] 39 | 40 | operations = [ 41 | migrations.RunPython(migrate_to_attributes), 42 | migrations.RemoveField( 43 | model_name='videoplayer', 44 | name='auto_hide', 45 | ), 46 | migrations.RemoveField( 47 | model_name='videoplayer', 48 | name='auto_play', 49 | ), 50 | migrations.RemoveField( 51 | model_name='videoplayer', 52 | name='bgcolor', 53 | ), 54 | migrations.RemoveField( 55 | model_name='videoplayer', 56 | name='buttonhighlightcolor', 57 | ), 58 | migrations.RemoveField( 59 | model_name='videoplayer', 60 | name='buttonoutcolor', 61 | ), 62 | migrations.RemoveField( 63 | model_name='videoplayer', 64 | name='buttonovercolor', 65 | ), 66 | migrations.RemoveField( 67 | model_name='videoplayer', 68 | name='fullscreen', 69 | ), 70 | migrations.RemoveField( 71 | model_name='videoplayer', 72 | name='height', 73 | ), 74 | migrations.RemoveField( 75 | model_name='videoplayer', 76 | name='loadingbarcolor', 77 | ), 78 | migrations.RemoveField( 79 | model_name='videoplayer', 80 | name='loop', 81 | ), 82 | migrations.RemoveField( 83 | model_name='videoplayer', 84 | name='seekbarbgcolor', 85 | ), 86 | migrations.RemoveField( 87 | model_name='videoplayer', 88 | name='seekbarcolor', 89 | ), 90 | migrations.RemoveField( 91 | model_name='videoplayer', 92 | name='textcolor', 93 | ), 94 | migrations.RemoveField( 95 | model_name='videoplayer', 96 | name='width', 97 | ), 98 | ] 99 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0005_migrate_to_filer.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | from django.db import migrations, models 3 | 4 | 5 | def migrate_to_filer(apps, schema_editor): 6 | # Because filer is polymorphic, Djangos migration can't handle 7 | from filer.utils.loader import load_model 8 | 9 | Image = load_model(settings.FILER_IMAGE_MODEL) 10 | VideoPlayer = apps.get_model('djangocms_video', 'VideoPlayer') 11 | plugins = VideoPlayer.objects.all() 12 | 13 | for video in plugins: # pragma: no cover 14 | if video.image: 15 | poster = Image.objects.get_or_create( 16 | file=video.image.file, 17 | defaults={ 18 | 'name': video.image.name 19 | } 20 | )[0] 21 | plugins.filter(pk=video.pk).update(poster=poster) 22 | 23 | 24 | class Migration(migrations.Migration): 25 | 26 | dependencies = [ 27 | migrations.swappable_dependency(settings.FILER_IMAGE_MODEL), 28 | ('djangocms_video', '0004_move_to_attributes'), 29 | ] 30 | 31 | operations = [ 32 | migrations.RunPython(migrate_to_filer), 33 | ] 34 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0007_create_nested_plugin.py: -------------------------------------------------------------------------------- 1 | from django.db import migrations, models 2 | 3 | 4 | def create_videosourceplugin(apps, schema_editor): 5 | from cms import api 6 | from cms.models import CMSPlugin, Placeholder 7 | 8 | from filer.models import File 9 | 10 | 11 | VideoPlayer = apps.get_model('djangocms_video', 'VideoPlayer') 12 | plugins = VideoPlayer.objects.all() 13 | 14 | for video in plugins: # pragma: no cover 15 | # adapt plugin name 16 | plugins.filter(pk=video.pk).update(plugin_type='VideoPlayerPlugin') 17 | # add nested video source plugin 18 | if video.movie: 19 | placeholder = Placeholder.objects.get(pk=video.placeholder_id) 20 | target = CMSPlugin.objects.get(pk=video.pk) 21 | image = File.objects.get_or_create( 22 | file=video.movie.file, 23 | defaults={ 24 | 'name': video.movie.name 25 | } 26 | )[0] 27 | 28 | plugin = api.add_plugin( 29 | language=video.language, 30 | placeholder=placeholder, 31 | plugin_type='VideoSourcePlugin', 32 | position='last-child', 33 | target=target, 34 | # video source fields 35 | source_file=image 36 | ) 37 | 38 | 39 | class Migration(migrations.Migration): 40 | 41 | dependencies = [ 42 | ('djangocms_video', '0006_field_adaptions'), 43 | ] 44 | 45 | operations = [ 46 | migrations.RunPython(create_videosourceplugin), 47 | migrations.RemoveField( 48 | model_name='videoplayer', 49 | name='movie', 50 | ), 51 | ] 52 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0008_reset_null_values.py: -------------------------------------------------------------------------------- 1 | from django.db import migrations, models 2 | 3 | 4 | def reset_null_values(apps, schema_editor): 5 | VideoPlayer = apps.get_model('djangocms_video', 'VideoPlayer') 6 | plugins = VideoPlayer.objects.all() 7 | plugins.filter(embed_link__isnull=True).update(embed_link='') 8 | 9 | 10 | class Migration(migrations.Migration): 11 | 12 | dependencies = [ 13 | ('djangocms_video', '0007_create_nested_plugin'), 14 | ] 15 | 16 | operations = [ 17 | migrations.RunPython(reset_null_values), 18 | ] 19 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0009_removed_null_values.py: -------------------------------------------------------------------------------- 1 | from django.db import migrations, models 2 | 3 | 4 | class Migration(migrations.Migration): 5 | 6 | dependencies = [ 7 | ('djangocms_video', '0008_reset_null_values'), 8 | ] 9 | 10 | operations = [ 11 | migrations.AlterField( 12 | model_name='videoplayer', 13 | name='embed_link', 14 | field=models.CharField(help_text='Use this field to embed videos from external services such as YouTube, Vimeo or others. Leave it blank to upload video files by adding nested "Source" plugins.', max_length=255, verbose_name='Embed link', blank=True), 15 | ), 16 | ] 17 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0010_videoplayer_parameters.py: -------------------------------------------------------------------------------- 1 | from django.db import migrations 2 | 3 | import djangocms_attributes_field.fields 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('djangocms_video', '0009_removed_null_values'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AddField( 14 | model_name='videoplayer', 15 | name='parameters', 16 | field=djangocms_attributes_field.fields.AttributesField(blank=True, default=dict, help_text='Parameters are appended to the video link if provided.', verbose_name='Parameters'), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /djangocms_video/migrations/0011_alter_videoplayer_cmsplugin_ptr_and_more.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.2.4 on 2023-08-02 14:03 2 | 3 | from django.db import migrations, models 4 | import django.db.models.deletion 5 | 6 | 7 | class Migration(migrations.Migration): 8 | 9 | dependencies = [ 10 | ('cms', '0022_auto_20180620_1551'), 11 | ('djangocms_video', '0010_videoplayer_parameters'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='videoplayer', 17 | name='cmsplugin_ptr', 18 | field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='%(app_label)s_%(class)s', serialize=False, to='cms.cmsplugin'), 19 | ), 20 | migrations.AlterField( 21 | model_name='videosource', 22 | name='cmsplugin_ptr', 23 | field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='%(app_label)s_%(class)s', serialize=False, to='cms.cmsplugin'), 24 | ), 25 | migrations.AlterField( 26 | model_name='videotrack', 27 | name='cmsplugin_ptr', 28 | field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='%(app_label)s_%(class)s', serialize=False, to='cms.cmsplugin'), 29 | ), 30 | ] 31 | -------------------------------------------------------------------------------- /djangocms_video/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/djangocms_video/migrations/__init__.py -------------------------------------------------------------------------------- /djangocms_video/templates/djangocms_video/default/source.html: -------------------------------------------------------------------------------- 1 | {% load i18n cms_tags %} 2 | 3 | {% if not disabled %} 4 | {% with instance.source_file.extension as ext %} 5 | 6 | {% endwith %} 7 | {% endif %} 8 | 9 | {% comment %} 10 | # https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video 11 | # https://github.com/divio/django-filer/blob/master/filer/models/filemodels.py 12 | {{ instance.source_file }} 13 | # Available variables: 14 | {{ instance.text_title }} 15 | {{ instance.text_description }} 16 | {{ instance.attributes_str }} 17 | {% endcomment %} 18 | -------------------------------------------------------------------------------- /djangocms_video/templates/djangocms_video/default/track.html: -------------------------------------------------------------------------------- 1 | {% if not disabled %} 2 | 7 | {% endif %} 8 | 9 | {% comment %} 10 | # https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track 11 | # https://github.com/divio/django-filer/blob/master/filer/models/foldermodels.py 12 | {{ instance.src }} 13 | # Available variables: 14 | {{ instance.kind }} 15 | {{ instance.srclang }} 16 | {{ instance.label }} 17 | {{ instance.attributes_str }} 18 | {% endcomment %} 19 | -------------------------------------------------------------------------------- /djangocms_video/templates/djangocms_video/default/video_player.html: -------------------------------------------------------------------------------- 1 | {% load i18n cms_tags %} 2 | 3 | 4 |
5 | {% if instance.embed_link %} 6 | {# show iframe if embed_link is provided #} 7 | 8 | {% with disabled=instance.embed_link %} 9 | {% for plugin in instance.child_plugin_instances %} 10 | {% render_plugin plugin %} 11 | {% endfor %} 12 | {% endwith %} 13 | {% else %} 14 | {# render or plugins #} 15 | 22 | {% endif %} 23 | 24 | {% comment %} 25 | # Available variables: 26 | {{ instance.template }} 27 | {{ instance.label }} 28 | {{ instance.embed_link }} 29 | {{ instance.poster }} 30 | {{ instance.attributes_str }} 31 | {% endcomment %} 32 |
33 | -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/preview.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.ruff] 2 | exclude = [ 3 | ".env", 4 | ".venv", 5 | "**/migrations/**", 6 | ] 7 | ignore = [ 8 | "E501", # line too long 9 | "F403", # 'from module import *' used; unable to detect undefined names 10 | "E701", # multiple statements on one line (colon) 11 | "F401", # module imported but unused 12 | ] 13 | line-length = 119 14 | select = [ 15 | "I", 16 | "E", 17 | "F", 18 | "W", 19 | ] 20 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from setuptools import find_packages, setup 3 | 4 | from djangocms_video import __version__ 5 | 6 | REQUIREMENTS = [ 7 | 'django-cms>=3.7', 8 | 'django-filer>=1.7', 9 | 'djangocms-attributes-field>=1', 10 | ] 11 | 12 | 13 | CLASSIFIERS = [ 14 | 'Development Status :: 5 - Production/Stable', 15 | 'Environment :: Web Environment', 16 | 'Intended Audience :: Developers', 17 | 'License :: OSI Approved :: BSD License', 18 | 'Operating System :: OS Independent', 19 | 'Programming Language :: Python', 20 | 'Programming Language :: Python :: 3', 21 | 'Programming Language :: Python :: 3.8', 22 | 'Programming Language :: Python :: 3.9', 23 | 'Programming Language :: Python :: 3.10', 24 | 'Programming Language :: Python :: 3.11', 25 | 'Framework :: Django', 26 | 'Framework :: Django :: 3.2', 27 | 'Framework :: Django :: 4.0', 28 | 'Framework :: Django :: 4.1', 29 | 'Framework :: Django :: 4.2', 30 | 'Framework :: Django CMS', 31 | 'Framework :: Django CMS :: 3.7', 32 | 'Framework :: Django CMS :: 3.8', 33 | 'Framework :: Django CMS :: 3.9', 34 | 'Framework :: Django CMS :: 3.10', 35 | 'Framework :: Django CMS :: 3.11', 36 | 'Framework :: Django CMS :: 4.1', 37 | 'Topic :: Internet :: WWW/HTTP', 38 | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 39 | 'Topic :: Software Development', 40 | 'Topic :: Software Development :: Libraries', 41 | ] 42 | 43 | 44 | setup( 45 | name='djangocms-video', 46 | version=__version__, 47 | author='Divio AG', 48 | author_email='info@divio.com', 49 | maintainer='Django CMS Association and contributors', 50 | maintainer_email='info@django-cms.org', 51 | url='https://github.com/django-cms/djangocms-video', 52 | license='BSD-3-Clause', 53 | description='Adds video plugin to django CMS.', 54 | long_description=open('README.rst').read(), 55 | packages=find_packages(), 56 | include_package_data=True, 57 | zip_safe=False, 58 | install_requires=REQUIREMENTS, 59 | classifiers=CLASSIFIERS, 60 | test_suite='tests.settings.run', 61 | ) 62 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-video/cf5308974c935a4136b848096d0148dfe84ff2b9/tests/__init__.py -------------------------------------------------------------------------------- /tests/requirements/compile.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # 3 | # This script requries multiple python versions to be installed. 4 | # You can use pyenv for that. 5 | # 6 | # See: https://github.com/pyenv/pyenv#installation 7 | # For example: 8 | # curl https://pyenv.run | bash 9 | # 10 | # Then setup pyenv shell environment like described here: 11 | # https://github.com/pyenv/pyenv#set-up-your-shell-environment-for-pyenv 12 | # 13 | # Install requirements for building python versions: 14 | # https://github.com/pyenv/pyenv/wiki#suggested-build-environment 15 | # 16 | # Now install python versions: 17 | # pyenv install 3.8 3.9 3.10 3.11 18 | # 19 | # Then activate them globaly with the systems default to be still default: 20 | # pyenv global system 3.11 3.10 3.9 3.8 21 | # 22 | # Also pip-tools must be installed for every version of python. 23 | # pip3.8 install pip-tools 24 | # pip3.9 install pip-tools 25 | # pip3.10 install pip-tools 26 | # pip3.11 install pip-tools 27 | 28 | from __future__ import annotations 29 | 30 | import sys 31 | from os import chdir, environ 32 | from pathlib import Path 33 | from subprocess import run 34 | 35 | CONFIG_MATRIX = [ 36 | ["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.8,<3.9", "py38-django32-cms38.txt",], 37 | ["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.9,<3.10", "py38-django32-cms39.txt",], 38 | ["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.10,<3.11", "py38-django32-cms310.txt",], 39 | 40 | ["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.8,<3.9", "py39-django32-cms38.txt",], 41 | ["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.9,<3.10", "py39-django32-cms39.txt",], 42 | ["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.10,<3.11", "py39-django32-cms310.txt",], 43 | 44 | ["python3.10", "Django>=3.2a1,<3.3", "django-cms>=3.8,<3.9", "py310-django32-cms38.txt",], 45 | ["python3.10", "Django>=3.2a1,<3.3", "django-cms>=3.9,<3.10", "py310-django32-cms39.txt",], 46 | ["python3.10", "Django>=3.2a1,<3.3", "django-cms>=3.10,<3.11", "py310-django32-cms310.txt",], 47 | ["python3.10", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py310-django42-cms311.txt",], 48 | 49 | ["python3.11", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py311-django42-cms311.txt",], 50 | ] 51 | 52 | if __name__ == "__main__": 53 | chdir(Path(__file__).parent) 54 | environ["CUSTOM_COMPILE_COMMAND"] = "requirements/compile.py" 55 | environ["PIP_REQUIRE_VIRTUALENV"] = "0" 56 | common_args = [ 57 | "-m", 58 | "piptools", 59 | "compile", 60 | "--generate-hashes", 61 | "--allow-unsafe", 62 | ] + sys.argv[1:] 63 | # mysqlclient requirements found on each version's "Databases" documentation page: 64 | # https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-db-api-drivers 65 | 66 | for req in CONFIG_MATRIX: 67 | cmd = [ 68 | req[0], 69 | *common_args, 70 | "--upgrade-package", 71 | req[1], 72 | "--upgrade-package", 73 | req[2], 74 | "--output-file", 75 | req[3], 76 | ] 77 | print(" ".join(cmd)) 78 | output = run( 79 | cmd, 80 | # check=True, 81 | capture_output=True, 82 | ) 83 | print(output.stderr.decode('utf-8')) 84 | -------------------------------------------------------------------------------- /tests/requirements/requirements.in: -------------------------------------------------------------------------------- 1 | coverage 2 | django 3 | django-app-helper 4 | django-mptt 5 | tox 6 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | HELPER_SETTINGS = { 3 | 'INSTALLED_APPS': [ 4 | 'easy_thumbnails', 5 | 'filer', 6 | 'mptt', 7 | ], 8 | 'CMS_LANGUAGES': { 9 | 1: [{ 10 | 'code': 'en', 11 | 'name': 'English', 12 | }] 13 | }, 14 | 'LANGUAGE_CODE': 'en', 15 | 'ALLOWED_HOSTS': ['localhost'], 16 | } 17 | 18 | 19 | def run(): 20 | from app_helper import runner 21 | runner.cms('djangocms_video') 22 | 23 | 24 | if __name__ == '__main__': 25 | run() 26 | -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- 1 | # original from 2 | # http://tech.octopus.energy/news/2016/01/21/testing-for-missing-migrations-in-django.html 3 | from io import StringIO 4 | 5 | from django.core.management import call_command 6 | from django.test import TestCase, override_settings 7 | 8 | 9 | class MigrationTestCase(TestCase): 10 | 11 | @override_settings(MIGRATION_MODULES={}) 12 | def test_for_missing_migrations(self): 13 | output = StringIO() 14 | options = { 15 | 'interactive': False, 16 | 'dry_run': True, 17 | 'stdout': output, 18 | 'check_changes': True, 19 | } 20 | 21 | try: 22 | call_command('makemigrations', **options) 23 | except SystemExit as e: 24 | status_code = str(e) 25 | else: 26 | # the "no changes" exit code is 0 27 | status_code = '0' 28 | 29 | if status_code == '1': 30 | self.fail('There are missing migrations:\n {}'.format(output.getvalue())) 31 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | requires = 3 | tox>=4.2 4 | envlist = 5 | ruff 6 | py311-django42-cms311 7 | py310-django42-cms311 8 | py310-django32-cms{38, 39, 310} 9 | py39-django32-cms{38, 39, 310} 10 | py38-django32-cms{38, 39, 310} 11 | skip_missing_interpreters=True 12 | 13 | [testenv] 14 | deps = 15 | -r tests/requirements/{env_name}.txt 16 | commands = 17 | {envpython} --version 18 | {env:COMMAND:coverage} erase 19 | {env:COMMAND:coverage} run tests/settings.py 20 | {env:COMMAND:coverage} combine --keep 21 | {env:COMMAND:coverage} report --show-missing 22 | 23 | [testenv:ruff] 24 | deps = ruff 25 | commands = ruff djangocms_video 26 | skip_install = true 27 | --------------------------------------------------------------------------------