[
  {
    "path": ".coveragerc",
    "content": "[run]\nsource = photologue\nomit = *migrations*, *wsgi*, */tests/*\n\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions\n\nname: CI\n\non: [ push, pull_request ]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false # If one test fails, complete the other jobs.\n      matrix:\n        python: [ 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]\n    steps:\n      - uses: actions/checkout@v2\n      - name: Set up Python ${{ matrix.python-version }}\n        uses: actions/setup-python@v2\n        with:\n          python-version: ${{ matrix.python }}\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install -r requirements.txt\n          pip install tox tox-gh-actions\n        working-directory: ./example_project\n      - name: Run tests\n        run: tox\n      - name: Flake8\n        if: ${{ matrix.python == '3.12' }}\n        run: |\n          pip install flake8\n          flake8 ./\n      - name: Isort\n        if: ${{ matrix.python == '3.12' }}\n        uses: jamescurtin/isort-action@master\n      - name: Coverage\n        if: ${{ matrix.python == '3.12' }}\n        run: |\n          pip install coverage[toml] django\n          coverage run ./example_project/manage.py test photologue\n      - name: Upload coverage\n        if: ${{ matrix.python == '3.12' }}\n        uses: codecov/codecov-action@v1\n        with:\n          name: Python ${{ matrix.python }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n*__pycache__*\ndjango_photologue.egg-info\nbuild\n.idea\nexample_project/db.sqlite3\nhtmlcov\n.coverage\n\n# Tox workfiles\n.tox/*\n"
  },
  {
    "path": ".isort.cfg",
    "content": "[settings]\nextend_skip_glob = photologue/migrations\nline_length = 119\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "# .readthedocs.yml\n# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details\n\n# Required\nversion: 2\n\n# Build documentation in the docs/ directory with Sphinx\nsphinx:\n  configuration: docs/conf.py\n\n# Optionally build your docs in additional formats such as PDF and ePub\nformats:\n  - htmlzip\n\n# Optionally set the version of Python and requirements required to build your docs\npython:\n  version: 3.7\n  install:\n    - requirements: docs/requirements.txt\n"
  },
  {
    "path": ".tx/config",
    "content": "[main]\nhost = https://www.transifex.com\nlang_map = sr@latin:sr_Latn, zh-Hans:zh_Hans\n\n[django-photologue.core]\nfile_filter = photologue/locale/<lang>/LC_MESSAGES/django.po\nsource_file = photologue/locale/en_US/LC_MESSAGES/django.po\nsource_lang = en_US\ntype = PO\n"
  },
  {
    "path": "CHANGELOG.txt",
    "content": "Changelog\n=========\n\n3.19 (unreleased)\n-----------------\n\n- Nothing changed yet.\n\n\n3.18 (2025-06-01)\n-----------------\n\n- Checked compatibility with Django 5.1 and 5.2.\n- Dropped Django 3.2 and 4.1.\n\n\n3.17 (2023-10-25)\n-----------------\n\n- Fixed Python 3.11 bug (#226) (contributed by emirisman).\n\n\n3.16 (2023-07-28)\n-----------------\n\n- Split out zip upload functionality into a separate function (#222) (contributed by lausek).\n- Do not allow JS injection into the Photo caption field (#223) (bug detected by Domiee13).\n- Fixed deprecation warnings from Pillow. Should fix #225.\n- Handle when PHOTOLOGUE_DIR is not a string. Should fix #224.\n- Checked compatibility with Django 4.1 and 4.2.\n- Dropped Django 2.2 and 4.0. Dropped Python 3.7.\n- Note: not testing against Python 3.11 as I do not have it installed.\n\n\n3.15.1 (2022-02-23)\n-------------------\n\n- Django 4.0 adds a no-op migration (#221) (reported by rhbvkleef).\n\n\n3.15 (2022-02-05)\n-----------------\n\n- Made compatible with Django 4.0 (#220) (contributed by Martijn Verkleij).\n- Updated French translation (#219) (contributed by Alexandre Iooss).\n\n3.14 (2021-10-03)\n-----------------\n\n- Updated the sample templates to use Bootstrap 5 (previously used Bootstrap 3).\n- Checked compatibility with Django 3.2.\n- Use isort to tidy the Python imports.\n\n3.13 (2020-09-03)\n-----------------\n\n- Checked compatibility with Django 3.1.\n- Apply crop/effect changes to existing images (#210).\n- Encoding objects before hashing error\t(#205).\n\n3.12 (2020-07-30)\n-----------------\n\n- Drop alpha channel only on jpeg save (contributed by drazen)\n- Added zh_Hans translation\t(contributed by Lessica)\n- improved Dutch translations (contributed by andreas.milants)\n\n3.11 (2019-12-13)\n-----------------\n\n- Added support for Django 3.\n- Dropped support for Python 2, python 3.4 and Django 2.1.\n\n\n3.10 (2019-08-29)\n-----------------\n\n- Compatibility with Django 2.2.\n\n\n3.9 (2019-04-21)\n----------------\n\n- Fixes when file doesn't exist in the file system but still is in S3.\n- Doc tweaks - and added a page on how to actually use Photologue!\n- Make setup compatible with latest version of pip.\n- Checked compatibility with Django 2.1 and Python 3.7.\n- Updated translations for Catalan and Basque.\n- Missed a Django migration (issue #194).\n- Test Tox; integrate with Travis and Coveralls.\n- Removed old code (old-style demo templates that have been deprecated since 2014).\n- Removed old code (old views that have been deprecated since 2014).\n- Removed all references to PIL (which hasn't been updated since 2009). I think that by now\n  there are no servers left anywhere in the world that still use it :-)\n\n3.8.1 (2017-12-03)\n------------------\n\n- Admin thumbnails were not displaying correctly.\n\n\n3.8 (2017-12-03)\n----------------\n\n- Added support for Django 2.0.\n- Dropped support for Django 1.8 and 1.10.\n- Did not really work with Django 1.11 - sortedm2m library was broken. Upgraded sortedm2m and it now works with 1.11.\n- New translation for Ukrainian; updated translation for Spanish.\n- Fixed template tag that was broken in Django 1.11.\n\n3.7 (2017-05-10)\n----------------\n\n- Now works with Django 1.11. Deprecated support for Django 1.9.\n- Fixed the management commands to work in the latest versions of Django.\n- Fixed an issue with some photo sizes not being created (see #170).\n- Updated translations for French and Basque (provided by matthieu.payet and urtzai).\n\n3.6 (2016-10-05)\n----------------\n\n- Now works with Django 1.10 (to be precise: Photologue worked, but the unit tests did not).\n- Updated urlpatterns in docs, tests and example project for Django 1.8+\n- Enhance Python 2.7 EXIF info.\n- Updated docs (contributed by lizwalsh).\n- Fixed command plcreatesize (contributed by Mikel Larreategi).\n- Fixed deprecated template settings (contributed by Justin Dugger).\n- Updated translations for German and Russian.\n\n3.5.1 (2016-01-13)\n------------------\n\n- Photologue 3.5 failed to install under Python 2.7. Looks like distutils does not like files\n  with non-ascii filenames (reported in #149).\n- Fix for issue #149 - bug with projects that extend ImageModel.\n\n\n3.5 (2016-01-09)\n----------------\n\n- Increased length of 'title' fields to 250 chars in order to store longer title.\n- Rotate image before resize, to comply with height/width constraints (see #145).\n- Added forgotten migration (#148).\n- Changing \"Photo\" image leaves extra files on server (#147).\n- Normalize filenames to ASCII so they work across all filesystems (#109).\n- Updated Hungarian translation.\n\n3.4.1 (2015-12-23)\n------------------\n\n- Django 1.9 requires latest version of django-sortedm2m.\n\n\n3.4 (2015-12-23)\n----------------\n\nUpgrade notes:\n- The EXIF property of an Image is now a method instead.\n\n- Dropped support for Django 1.7.\n- Fixed a few minor issues with the unit tests.\n- Adding a watermark was crashing (fix suggested by hambro).\n- Added/updated translations: Danish, Slovak (contributed by Rasmus Klett, saboter).\n- Fixed Django 1.9 Deprecation warnings (contributed by jlemaes).\n- Processing of EXIF data was broken (and very broken in Python 3) - updated library and bug fixes.\n\n\n3.3.2 (2015-07-20)\n------------------\n\n- Release Photologue as a universal wheel.\n\n\n3.3.1 (2015-07-20)\n------------------\n\n- Upload of 3.3 to Pypi had failed.\n\n3.3 (2015-07-20)\n----------------\n\n- In the initial data setup, the 'thumbnail' photosizes should not increment the\n  view count (issue #133).\n- Fix typo in admin text (issue reported by Transifex user ciastko).\n- Updated translations: Hungarian, Czech, Dutch.\n- Zip upload used gallery title instead of \"Title\" field for photos (#139).\n- Zip upload: an uploaded photo is not a duplicate of an existing photo simply because they share the same slug.\n- Updated django-sortedm2m version - this should help admin performance for galleries with lots of photos.\n\n3.2 (2015-05-11)\n----------------\n\n- Dropped support for Django 1.6.\n- Rotation of photos based upon EXIF data if available, so they get displayed correctly (#122).\n- Misc doc tweaks.\n- Only clear scale cache if image has changed.\n- Pagination is now hard-coded to 20 items per page - it's a convenience to have it available as\n  soon as the app is run, but having settings to tweak this value is not needed as it's so\n  easy to override in a Django project.\n- PHOTOLOGUE_GALLERY_PAGINATE_BY and PHOTOLOGUE_PHOTO_PAGINATE_BY were previously deprecated\n  and have now been removed.\n- Tagging has been removed from Photologue.\n- All references to 'title_slug' field have been removed.\n- Django can now natively chain custom manager filters - so the dependency on django-model-utils\n  is removed.\n- Updated German translation.\n- Improved setup file.\n\n3.1.1 (2014-11-13)\n------------------\n\n- The 'zip upload' functionality did not work (the required html templates\n  were not included into the released package).\n- Updated French translation.\n\n3.1 (2014-11-03)\n----------------\n\n- The 'zip upload' functionality has been moved to a custom admin page.\n- Refactor `add_accessor_methods` to be lazily applied (see #110).\n- Updated German translation.\n- Several improvements to the sample Bootstrap templates.\n- Support CACHEDIR.TAG spec issue #89\n- Fix issue #99 by adding 10 extra char to photo title(max gallery size up to 999999999 images)\n- Sitemap.xml was not aware of Sites (#104).\n- In python 3, gallery upload would crash if uploaded file was not a zip file (#106).\n\n3.0.2 (2014-09-23)\n------------------\n\n- Updated django-sortedm2m to an official release.\n- Updated Spanish translation.\n- Updated Bootstrap version used in example project.\n\n3.0.1 (2014-09-16)\n------------------\n\n- Missed out some templates from the released package.\n\n3.0 (2014-09-15)\n----------------\n\nUpgrade notes:\n\nWARNING: IF YOU'RE USING POSTGRESQL AS A DATABASE & DJANGO 1.7, THE LATEST RELEASE OF\nDJANGO-SORTEDM2M HAS A BUG. INSTEAD, YOU'LL HAVE TO MANUALLY INSTALL:\n\npip install -e git://github.com/richardbarran/django-sortedm2m.git@9a609a1c6b790a40a016e4ceadedbb6dd6b92010#egg=sortedm2m\n\n\n\nTHE FOLLOWING CHANGES BREAK BACKWARDS COMPATIBILITY!\n\n- Django 1.7 comes with a new migrations framework which replaces South -\n  if you continue to use Django 1.6, you'll need to add new settings. Please\n  refer in the docs to the installation instructions.\n  If you're upgrading to Django 1.7 - upgrade Photologue first, THEN upgrade\n  Django.\n- The Twitter-Bootstrap templates - previously in 'contrib' - become the default; the\n  previous templates are moved to 'contrib'.\n- The django-tagging library is no longer maintained by its author. As a consequence,\n  it has been disabled - see the docs for more information (page\n  https://django-photologue.readthedocs.org/en/latest/pages/customising/settings.html#photologue-enable-tags)\n- Support for Django 1.4 and 1.5 has been dropped (Photologue depends on django-sortedm2m,\n  which has dropped support for 1.4; and Django 1.5 is no longer supported).\n- PHOTOLOGUE_USE_CKEDITOR has been removed.\n- Many urls have been renamed; photologue urls now go into their own namespace. See the urls.py\n  file for all the changes.\n\nOther changes:\n\n- Support for Amazon S3 to store images (thank you Celia Oakley!).\n- List views have changed urls: instead of /page/<n>/, we now have a /?page=<n> pattern.\n  This is a more common style, and allows us to simplify template code e.g. paginators!\n- date_taken field not correctly handled during single photo upload (#80).\n- Removed deprecated PhotologueSitemap.\n- Gallery zip uploads would fail if the title contained unicode characters.\n- Gallery-uploads: Do not require title for uploading to existing gallery (#98).\n- The Photologue urls used to use names for months; this has been changed to using\n  numbers, which is better for non-English websites (#101).\n\n\n2.8.3 (2014-08-28)\n------------------\n\n- Updated Spanish translation.\n\n2.8.2 (2014-07-26)\n------------------\n\n- The latest release of django-sortedm2m is not compatible with older\n  versions of Django, so don't use it (issue #92).\n\n2.8.1 (2014-07-26)\n------------------\n\n- Fixed issue #94 (problem with i18n plural forms).\n- Updated Slovak translation.\n\n2.8 (2014-05-04)\n----------------\n\nUpgrade notes:\n\n1. Photologue now depends on django-sortedm2m and django-model-utils - please\n   refer to installation instructions. These dependencies should be added\n   automatically.\n\n2. Run South migrations.\n\nList of changes:\n\n- Photo and Gallery models now support Django's sites framework.\n- Photologue now uses django-sortedm2m to sort photos in a gallery.\n- Major rewrite of zip archive uploader: warn users of files that could not be\n  processed, get code to work with Python 3 (issue #71), add extra error\n  handling.\n- Renamed field title_slug to slug - this allows us to simplify views.py a\n  bit.\n- PHOTOLOGUE_USE_CKEDITOR, PHOTOLOGUE_GALLERY_PAGINATE_BY and\n  PHOTOLOGUE_PHOTO_PAGINATE_BY are deprecated.\n- Fixed pagination controls for photo list template.\n- Tightened naming rules for Photosize names.\n- Fixed a couple of unicode-related bugs.\n- Added to the documentation pages describing how to customise the admin and\n  the views.\n- Refactored slightly views.py.\n- Started work on chainable querysets.\n\n2.7 (2013-10-27)\n----------------\n\nUpgrade notes:\n\n1. All settings are now prefixed with ``PHOTOLOGUE_``. Please check that you are\n   not affected by this.\n\nList of changes:\n\n- Fixed issue #56, Gallery pagination is broken.\n- Photologue now works with Python 3.\n- Added a set of templates that work well with Twitter-Bootstrap 3, and used\n  them for the 'example_project'.\n- Fixed issue #64 (allow installation without installing Pillow).\n- Optional use of CKEditor.\n- Updated/new translations for Polish, Slovak and German.\n- Bugfix: allow viewing latest galleries/latest photos pages even if they\n  are empty.\n- Started using factory-boy - makes unit tests a bit easier to read.\n- Added settings to customise pagination count on list pages.\n- Documented all settings.\n- All settings are now prefixed with ``PHOTOLOGUE_``.\n\n2.6.1 (2013-05-19)\n------------------\n\nList of changes:\n\n- Fixed broken packaging in release 2.6.\n\n2.6 (2013-05-19)\n----------------\n\nUpgrade notes:\n\n1. Photologue now relies on Pillow instead of PIL. The easiest way to upgrade\n   is to remove PIL completely, then install the new version of Photologue.\n2. Photologue, in line with Django itself, has dropped support for Django 1.3.\n\nList of changes:\n\n- Switched from PIL to Pillow - hopefully this should make installation\n  easier.\n- Initial setup of data: removed plinit and replaced it with a South data\n  migration.\n- Added feature to allow extending the built-in templates (and documented\n  it!).\n- Allow editing of Photo added date (temp way of sorting photos).\n- Added an example project to help people wanting to contribute to the\n  project.\n- Fixed buggy Travis CI script.\n- fixed issue #52, transactions in migration\n- fixed issue #51, uniqueness collisions in migration\n- Accessing the root url (usually /photologue/ will now redirect you to the\n  gallery list view.\n- Photologue requires min. Django 1.4.\n- Tidied a data validator on PhotoSizes.\n\n2.5 (2012-12-13)\n----------------\n\n- added a sitemap.xml.\n- added some templatetags.\n- started using Sphinx for managing documentation.\n- started using Transifex for managing translations.\n- started using Travis CI.\n- added 12 new translations and improved some of the existing translations.\n- fixed issue #29 (quote URL of resized image properly).\n- misc improvements to clarity of unit tests.\n- added Django 1.4 timezone support.\n\n2.4 (2012-08-13)\n----------------\n\nUpgrade notes:\n\n1. Starting with this version, Photologue uses South to manage the database\n   schema. If you are upgrading an existing Photologue installation, please\n   follow the South instructions at:\n   http://south.readthedocs.org/en/latest/convertinganapp.html#converting-other-installations-and-servers\n\n2. Photologue has dropped support for Django 1.2.\n\nList of changes:\n\n- use South to manage schema changes.\n- updated installation instructions.\n- fixed issue #9 (In Django 1.3, FileField no longer deletes files).\n- switched from function-based generic views to class-based views.\n- fixed PendingDeprecationWarnings seen when running Django 1.3 - this will\n  make the move to Django 1.5 easier.\n- added unit tests.\n- fixed bug where GALLERY_SAMPLE_SIZE setting was not being used.\n- fixed issue #11 (GalleryUpload with len(title) > 50 causes a crash).\n- fixed issue #10 (Increase the size of the name field for photosize).\n"
  },
  {
    "path": "CONTRIBUTORS.txt",
    "content": "Photologue is made possible by all the people who have contributed to it. A non-exhaustive list follows:\n\nJustin Driscoll\nRichard Barran\nMarcos Daniel Petry\nJannis\nmartijnverkleij\nhedleyroos\nCelia Oakley\nJonas Haag\ndrazen\nJasper Maes\nKrilivye\nJakub Dorňák\nAndrew Gerard\nKarol Majta\nUrtzi Odriozola\nAlexey Vasilyev\nkdeebee\nlausek\nAlexandre Iooss\nAlasdair Nicol\nlizwalsh\nSteffen Goertz\nBaptiste Mispelon\nFilippoIOVINE\nferhat elmas\nBenjamin Liles\nEmir Isman\nAdam Piskorek\nr0668522\ni_82\nSteve Wills\nTimothy Hobbs\nChris Frisina\nnickledave\ncblignaut\nJustin Dugger\nMikel Larreategi\nwf94\nGuilhem Saurel\nsaboter\nMathieu Hinderyckx\nThomas Güttler\nTomas Babej\nMartin Sabo\npython-consulting\njscott1971\nVivek Agarwal\nBen Spaulding\nReavis Sutphin-Gray\nHerman Schaaf\nAntti Kaihola\nFederico Maggi\ncubells\nAduchiMergen\nabc Def\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "Copyright (c) 2007-2025, Justin C. Driscoll and all the people named in CONTRIBUTORS.txt.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n    1. Redistributions of source code must retain the above copyright notice,\n       this list of conditions and the following disclaimer.\n\n    2. Redistributions in binary form must reproduce the above copyright\n       notice, this list of conditions and the following disclaimer in the\n       documentation and/or other materials provided with the distribution.\n\n    3. Neither the name of django-photologue nor the names of its contributors may be used\n       to endorse or promote products derived from this software without\n       specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "MANIFEST.in",
    "content": "include CHANGELOG.txt\ninclude CONTRIBUTORS.txt\ninclude LICENSE.txt\ninclude requirements.txt\nrecursive-include photologue/locale *\nrecursive-include photologue/res *.jpg\nrecursive-include photologue/res/zips *.zip\nrecursive-include photologue/templates *.html\nrecursive-include photologue/contrib *\nrecursive-exclude * *.py[co]\nrecursive-exclude * __pycache__\nexclude photologue/res/test_unicode*.jpg\nexclude example_project\nrecursive-exclude example_project *\nexclude tox.ini\n"
  },
  {
    "path": "README.rst",
    "content": "Django-photologue\n=================\n.. image:: https://img.shields.io/pypi/v/django-photologue.svg\n    :target: https://pypi.python.org/pypi/django-photologue/\n    :alt: Latest PyPI version\n\n.. image:: https://github.com/richardbarran/django-photologue/workflows/CI/badge.svg?branch=master\n     :target: https://github.com/richardbarran/django-photologue/actions?workflow=CI\n     :alt: CI Status\n\n.. image:: https://codecov.io/github/richardbarran/django-photologue/coverage.svg?branch=master\n    :target: https://codecov.io/github/richardbarran/django-photologue?branch=master\n\n\nA powerful image management and gallery application for the Django web framework. Upload photos, group them into\ngalleries, apply effects such as watermarks.\n\nProject status\n--------------\nMessage from the current maintainer: I no longer need django-photologue for my own projects, so I've stopped working on it. I will occasionally \nupdate it to run with current Django releases, but that's all. Any help in running this project is welcome.\n\nTake a closer look\n------------------\n- We have a `demo website <http://django-photologue.arbee.design/>`_.\n- We also have some `examples of sites using Photologue\n  <https://github.com/richardbarran/django-photologue/wiki/Examples-and-forks>`_ on the wiki.\n\nDocumentation\n-------------\nPlease head over to our `online documentation at ReadTheDocs <https://django-photologue.readthedocs.io/en/stable/>`_\nfor instructions on installing and configuring this application.\n\nAmazon S3\n---------\n\nS3 also works with the standard BOTO package.\n\nSupport\n-------\nIf you have any questions or need help with any aspect of Photologue then please `join our mailing list\n<http://groups.google.com/group/django-photologue>`_.\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Policy\n\n## Supported Versions\n\nPlease note that in the case of a security issue being reported, only the latest release will be fixed. Users of earlier releases of Photologue can of course patch the version that they use and open an MR - it will be reviewed and a micro-release published.\n\n## Reporting a Vulnerability\n\nPlease report vulnerabilities via the contact form at the personal website of the main project contributor: https://arbee.design/en-gb/contact/\n"
  },
  {
    "path": "docs/.gitignore",
    "content": "_build\n"
  },
  {
    "path": "docs/Makefile",
    "content": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHINXBUILD   = sphinx-build\nPAPER         =\nBUILDDIR      = _build\n\n# Internal variables.\nPAPEROPT_a4     = -D latex_paper_size=a4\nPAPEROPT_letter = -D latex_paper_size=letter\nALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n# the i18n builder cannot share the environment and doctrees with the others\nI18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n\n.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext\n\nhelp:\n\t@echo \"Please use \\`make <target>' where <target> is one of\"\n\t@echo \"  html       to make standalone HTML files\"\n\t@echo \"  dirhtml    to make HTML files named index.html in directories\"\n\t@echo \"  singlehtml to make a single large HTML file\"\n\t@echo \"  pickle     to make pickle files\"\n\t@echo \"  json       to make JSON files\"\n\t@echo \"  htmlhelp   to make HTML files and a HTML help project\"\n\t@echo \"  qthelp     to make HTML files and a qthelp project\"\n\t@echo \"  devhelp    to make HTML files and a Devhelp project\"\n\t@echo \"  epub       to make an epub\"\n\t@echo \"  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\"\n\t@echo \"  latexpdf   to make LaTeX files and run them through pdflatex\"\n\t@echo \"  text       to make text files\"\n\t@echo \"  man        to make manual pages\"\n\t@echo \"  texinfo    to make Texinfo files\"\n\t@echo \"  info       to make Texinfo files and run them through makeinfo\"\n\t@echo \"  gettext    to make PO message catalogs\"\n\t@echo \"  changes    to make an overview of all changed/added/deprecated items\"\n\t@echo \"  linkcheck  to check all external links for integrity\"\n\t@echo \"  doctest    to run all doctests embedded in the documentation (if enabled)\"\n\nclean:\n\t-rm -rf $(BUILDDIR)/*\n\nhtml:\n\t$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/html.\"\n\ndirhtml:\n\t$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/dirhtml.\"\n\nsinglehtml:\n\t$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml\n\t@echo\n\t@echo \"Build finished. The HTML page is in $(BUILDDIR)/singlehtml.\"\n\npickle:\n\t$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle\n\t@echo\n\t@echo \"Build finished; now you can process the pickle files.\"\n\njson:\n\t$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json\n\t@echo\n\t@echo \"Build finished; now you can process the JSON files.\"\n\nhtmlhelp:\n\t$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp\n\t@echo\n\t@echo \"Build finished; now you can run HTML Help Workshop with the\" \\\n\t      \".hhp project file in $(BUILDDIR)/htmlhelp.\"\n\nqthelp:\n\t$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp\n\t@echo\n\t@echo \"Build finished; now you can run \"qcollectiongenerator\" with the\" \\\n\t      \".qhcp project file in $(BUILDDIR)/qthelp, like this:\"\n\t@echo \"# qcollectiongenerator $(BUILDDIR)/qthelp/django-photologue.qhcp\"\n\t@echo \"To view the help file:\"\n\t@echo \"# assistant -collectionFile $(BUILDDIR)/qthelp/django-photologue.qhc\"\n\ndevhelp:\n\t$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp\n\t@echo\n\t@echo \"Build finished.\"\n\t@echo \"To view the help file:\"\n\t@echo \"# mkdir -p $$HOME/.local/share/devhelp/django-photologue\"\n\t@echo \"# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django-photologue\"\n\t@echo \"# devhelp\"\n\nepub:\n\t$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub\n\t@echo\n\t@echo \"Build finished. The epub file is in $(BUILDDIR)/epub.\"\n\nlatex:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo\n\t@echo \"Build finished; the LaTeX files are in $(BUILDDIR)/latex.\"\n\t@echo \"Run \\`make' in that directory to run these through (pdf)latex\" \\\n\t      \"(use \\`make latexpdf' here to do that automatically).\"\n\nlatexpdf:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through pdflatex...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\ntext:\n\t$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text\n\t@echo\n\t@echo \"Build finished. The text files are in $(BUILDDIR)/text.\"\n\nman:\n\t$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man\n\t@echo\n\t@echo \"Build finished. The manual pages are in $(BUILDDIR)/man.\"\n\ntexinfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo\n\t@echo \"Build finished. The Texinfo files are in $(BUILDDIR)/texinfo.\"\n\t@echo \"Run \\`make' in that directory to run these through makeinfo\" \\\n\t      \"(use \\`make info' here to do that automatically).\"\n\ninfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo \"Running Texinfo files through makeinfo...\"\n\tmake -C $(BUILDDIR)/texinfo info\n\t@echo \"makeinfo finished; the Info files are in $(BUILDDIR)/texinfo.\"\n\ngettext:\n\t$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale\n\t@echo\n\t@echo \"Build finished. The message catalogs are in $(BUILDDIR)/locale.\"\n\nchanges:\n\t$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes\n\t@echo\n\t@echo \"The overview file is in $(BUILDDIR)/changes.\"\n\nlinkcheck:\n\t$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck\n\t@echo\n\t@echo \"Link check complete; look for any errors in the above output \" \\\n\t      \"or in $(BUILDDIR)/linkcheck/output.txt.\"\n\ndoctest:\n\t$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest\n\t@echo \"Testing of doctests in the sources finished, look at the \" \\\n\t      \"results in $(BUILDDIR)/doctest/output.txt.\"\n"
  },
  {
    "path": "docs/conf.py",
    "content": "#\n# django-photologue documentation build configuration file, created by\n# sphinx-quickstart on Mon Sep  3 16:31:44 2012.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# Note that not all possible configuration values are present in this\n# autogenerated file.\n#\n# All configuration values have a default; values that are commented out\n# serve to show the default.\n\nimport datetime\nimport os\nimport sys\n\nimport django\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\nsys.path.insert(0, os.path.abspath('..'))\nsys.path.append('../example_project/')\nos.environ['DJANGO_SETTINGS_MODULE'] = 'example_project.settings'\ndjango.setup()\n\n# -- General configuration -----------------------------------------------------\n\n# If your documentation needs a minimal Sphinx version, state it here.\n#needs_sphinx = '1.0'\n\n# Add any Sphinx extension module names here, as strings. They can be extensions\n# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nextensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['_templates']\n\n# The suffix of source filenames.\nsource_suffix = '.rst'\n\n# The encoding of source files.\n#source_encoding = 'utf-8-sig'\n\n# The master toctree document.\nmaster_doc = 'index'\n\n# General information about the project.\nproject = 'django-photologue'\ncopyright = f'{datetime.datetime.now().year}, Justin Driscoll/Richard Barran'\n\n# The version info for the project you're documenting, acts as replacement for\n# |version| and |release|, also used in various other places throughout the\n# built documents.\n#\n\n# Dynamically get the version number from the photologue package.\nparent_dir = os.path.join(os.path.dirname(__file__), '..')\nsys.path.append(parent_dir)\nimport photologue\n\n# The short X.Y version.\nversion = '.'.join(photologue.__version__.split('.')[:1])\n# The full version, including alpha/beta/rc tags.\nrelease = photologue.__version__\n\n# The language for content autogenerated by Sphinx. Refer to documentation\n# for a list of supported languages.\n#language = None\n\n# There are two options for replacing |today|: either, you set today to some\n# non-false value, then it is used:\n#today = ''\n# Else, today_fmt is used as the format for a strftime call.\n#today_fmt = '%B %d, %Y'\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\nexclude_patterns = ['_build']\n\n# The reST default role (used for this markup: `text`) to use for all documents.\n#default_role = None\n\n# If true, '()' will be appended to :func: etc. cross-reference text.\n#add_function_parentheses = True\n\n# If true, the current module name will be prepended to all description\n# unit titles (such as .. function::).\n#add_module_names = True\n\n# If true, sectionauthor and moduleauthor directives will be shown in the\n# output. They are ignored by default.\n#show_authors = False\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = 'sphinx'\n\n# A list of ignored prefixes for module index sorting.\n#modindex_common_prefix = []\n\n\n# -- Options for HTML output ---------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\nhtml_theme = 'sphinx_rtd_theme'\n\n# Theme options are theme-specific and customize the look and feel of a theme\n# further.  For a list of options available for each theme, see the\n# documentation.\n#html_theme_options = {}\n\n# Add any paths that contain custom themes here, relative to this directory.\n#html_theme_path = []\n\n# The name for this set of Sphinx documents.  If None, it defaults to\n# \"<project> v<release> documentation\".\n#html_title = None\n\n# A shorter title for the navigation bar.  Default is the same as html_title.\n#html_short_title = None\n\n# The name of an image file (relative to this directory) to place at the top\n# of the sidebar.\n#html_logo = None\n\n# The name of an image file (within the static path) to use as favicon of the\n# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32\n# pixels large.\n#html_favicon = None\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\n#html_static_path = ['_static']\n\n# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,\n# using the given strftime format.\n#html_last_updated_fmt = '%b %d, %Y'\n\n# If true, SmartyPants will be used to convert quotes and dashes to\n# typographically correct entities.\n#html_use_smartypants = True\n\n# Custom sidebar templates, maps document names to template names.\n#html_sidebars = {}\n\n# Additional templates that should be rendered to pages, maps page names to\n# template names.\n#html_additional_pages = {}\n\n# If false, no module index is generated.\n#html_domain_indices = True\n\n# If false, no index is generated.\n#html_use_index = True\n\n# If true, the index is split into individual pages for each letter.\n#html_split_index = False\n\n# If true, links to the reST sources are added to the pages.\n#html_show_sourcelink = True\n\n# If true, \"Created using Sphinx\" is shown in the HTML footer. Default is True.\n#html_show_sphinx = True\n\n# If true, \"(C) Copyright ...\" is shown in the HTML footer. Default is True.\n#html_show_copyright = True\n\n# If true, an OpenSearch description file will be output, and all pages will\n# contain a <link> tag referring to it.  The value of this option must be the\n# base URL from which the finished HTML is served.\n#html_use_opensearch = ''\n\n# This is the file name suffix for HTML files (e.g. \".xhtml\").\n#html_file_suffix = None\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = 'django-photologuedoc'\n\n\n# -- Options for LaTeX output --------------------------------------------------\n\nlatex_elements = {\n    # The paper size ('letterpaper' or 'a4paper').\n    #'papersize': 'letterpaper',\n\n    # The font size ('10pt', '11pt' or '12pt').\n    #'pointsize': '10pt',\n\n    # Additional stuff for the LaTeX preamble.\n    #'preamble': '',\n}\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, documentclass [howto/manual]).\nlatex_documents = [\n    ('index', 'django-photologue.tex', 'django-photologue Documentation',\n     'Justin Driscoll/Richard Barran', 'manual'),\n]\n\n# The name of an image file (relative to this directory) to place at the top of\n# the title page.\n#latex_logo = None\n\n# For \"manual\" documents, if this is true, then toplevel headings are parts,\n# not chapters.\n#latex_use_parts = False\n\n# If true, show page references after internal links.\n#latex_show_pagerefs = False\n\n# If true, show URL addresses after external links.\n#latex_show_urls = False\n\n# Documents to append as an appendix to all manuals.\n#latex_appendices = []\n\n# If false, no module index is generated.\n#latex_domain_indices = True\n\n\n# -- Options for manual page output --------------------------------------------\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [\n    ('index', 'django-photologue', 'django-photologue Documentation',\n     ['Justin Driscoll/Richard Barran'], 1)\n]\n\n# If true, show URL addresses after external links.\n#man_show_urls = False\n\n\n# -- Options for Texinfo output ------------------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n#  dir menu entry, description, category)\ntexinfo_documents = [\n    ('index', 'django-photologue', 'django-photologue Documentation',\n     'Justin Driscoll/Richard Barran', 'django-photologue', 'One line description of project.',\n     'Miscellaneous'),\n]\n\n# Documents to append as an appendix to all manuals.\n#texinfo_appendices = []\n\n# If false, no module index is generated.\n#texinfo_domain_indices = True\n\n# How to display URL addresses: 'footnote', 'no', or 'inline'.\n#texinfo_show_urls = 'footnote'\n"
  },
  {
    "path": "docs/index.rst",
    "content": ".. django-photologue documentation master file, created by\n   sphinx-quickstart on Mon Sep  3 16:31:44 2012.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nWelcome to django-photologue's documentation!\n=============================================\n\n.. include:: ../README.rst\n   :start-line: 0\n   :end-line: 25\n\n.. include:: ../README.rst\n   :start-line: 31\n   :end-line: 46\n\nContents:\n=========\n\n.. toctree::\n    :maxdepth: 2\n\n    pages/installation\n    pages/usage\n    pages/customising/templates\n    pages/customising/settings\n    pages/customising/admin\n    pages/customising/views\n    pages/customising/models\n    pages/contributing\n    pages/changelog_page\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n\n"
  },
  {
    "path": "docs/make.bat",
    "content": "@ECHO OFF\n\nREM Command file for Sphinx documentation\n\nif \"%SPHINXBUILD%\" == \"\" (\n\tset SPHINXBUILD=sphinx-build\n)\nset BUILDDIR=_build\nset ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .\nset I18NSPHINXOPTS=%SPHINXOPTS% .\nif NOT \"%PAPER%\" == \"\" (\n\tset ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%\n\tset I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%\n)\n\nif \"%1\" == \"\" goto help\n\nif \"%1\" == \"help\" (\n\t:help\n\techo.Please use `make ^<target^>` where ^<target^> is one of\n\techo.  html       to make standalone HTML files\n\techo.  dirhtml    to make HTML files named index.html in directories\n\techo.  singlehtml to make a single large HTML file\n\techo.  pickle     to make pickle files\n\techo.  json       to make JSON files\n\techo.  htmlhelp   to make HTML files and a HTML help project\n\techo.  qthelp     to make HTML files and a qthelp project\n\techo.  devhelp    to make HTML files and a Devhelp project\n\techo.  epub       to make an epub\n\techo.  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\n\techo.  text       to make text files\n\techo.  man        to make manual pages\n\techo.  texinfo    to make Texinfo files\n\techo.  gettext    to make PO message catalogs\n\techo.  changes    to make an overview over all changed/added/deprecated items\n\techo.  linkcheck  to check all external links for integrity\n\techo.  doctest    to run all doctests embedded in the documentation if enabled\n\tgoto end\n)\n\nif \"%1\" == \"clean\" (\n\tfor /d %%i in (%BUILDDIR%\\*) do rmdir /q /s %%i\n\tdel /q /s %BUILDDIR%\\*\n\tgoto end\n)\n\nif \"%1\" == \"html\" (\n\t%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/html.\n\tgoto end\n)\n\nif \"%1\" == \"dirhtml\" (\n\t%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.\n\tgoto end\n)\n\nif \"%1\" == \"singlehtml\" (\n\t%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.\n\tgoto end\n)\n\nif \"%1\" == \"pickle\" (\n\t%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can process the pickle files.\n\tgoto end\n)\n\nif \"%1\" == \"json\" (\n\t%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can process the JSON files.\n\tgoto end\n)\n\nif \"%1\" == \"htmlhelp\" (\n\t%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can run HTML Help Workshop with the ^\n.hhp project file in %BUILDDIR%/htmlhelp.\n\tgoto end\n)\n\nif \"%1\" == \"qthelp\" (\n\t%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can run \"qcollectiongenerator\" with the ^\n.qhcp project file in %BUILDDIR%/qthelp, like this:\n\techo.^> qcollectiongenerator %BUILDDIR%\\qthelp\\django-photologue.qhcp\n\techo.To view the help file:\n\techo.^> assistant -collectionFile %BUILDDIR%\\qthelp\\django-photologue.ghc\n\tgoto end\n)\n\nif \"%1\" == \"devhelp\" (\n\t%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished.\n\tgoto end\n)\n\nif \"%1\" == \"epub\" (\n\t%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The epub file is in %BUILDDIR%/epub.\n\tgoto end\n)\n\nif \"%1\" == \"latex\" (\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; the LaTeX files are in %BUILDDIR%/latex.\n\tgoto end\n)\n\nif \"%1\" == \"text\" (\n\t%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The text files are in %BUILDDIR%/text.\n\tgoto end\n)\n\nif \"%1\" == \"man\" (\n\t%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The manual pages are in %BUILDDIR%/man.\n\tgoto end\n)\n\nif \"%1\" == \"texinfo\" (\n\t%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.\n\tgoto end\n)\n\nif \"%1\" == \"gettext\" (\n\t%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The message catalogs are in %BUILDDIR%/locale.\n\tgoto end\n)\n\nif \"%1\" == \"changes\" (\n\t%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.The overview file is in %BUILDDIR%/changes.\n\tgoto end\n)\n\nif \"%1\" == \"linkcheck\" (\n\t%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Link check complete; look for any errors in the above output ^\nor in %BUILDDIR%/linkcheck/output.txt.\n\tgoto end\n)\n\nif \"%1\" == \"doctest\" (\n\t%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Testing of doctests in the sources finished, look at the ^\nresults in %BUILDDIR%/doctest/output.txt.\n\tgoto end\n)\n\n:end\n"
  },
  {
    "path": "docs/pages/changelog_page.rst",
    "content": ".. We want the CHANGELOG to also appear in the docs but we don't want to break\n   the DRY principle. So we simply include the CHANGELOG from the base directory.\n\n.. include:: ../../CHANGELOG.txt\n"
  },
  {
    "path": "docs/pages/contributing.rst",
    "content": "##########################\nContributing to Photologue\n##########################\n\nContributions are always very welcome. Even if you have never contributed to an\nopen-source project before - please do not hesitate to offer help. Fixes for typos in the\ndocumentation, extra unit tests, etc... are welcome. And look in the issues\nlist for anything tagged \"easy_win\".\n\nExample project\n---------------\nPhotologue includes an example project under ``/example_project/`` to get you quickly ready for\ncontributing to the project - do not hesitate to use it! Please refer to ``/example_project/README.rst``\nfor installation instructions.\n\nYou'll probably also want to manually install\n`Sphinx <http://sphinx.pocoo.org/>`_ if you're going to update the documentation.\n\nWorkflow\n--------\nPhotologue is hosted on Github, so if you have not already done so, read the excellent\n`Github help pages <https://help.github.com/articles/fork-a-repo>`_. We try to keep the workflow\nas simple as possible; most pull requests are merged straight into the master branch. Please\nensure your pull requests are on separate branches, and please try to only include one new\nfeature per pull request!\n\nFeatures that will take a while to develop might warrant a separate branch in the project;\nat present only the ImageKit integration project is run on a separate branch.\n\nCoding style\n------------\nNo surprises here - just try to `follow the conventions used by Django itself\n<https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/>`_.\n\nUnit tests\n----------\nIncluding unit tests with your contributions will earn you bonus points, maybe even a beer. So write\nplenty of tests, and run them from the ``/example_project/`` with a\n``python manage.py test photologue``.\n\nThere's also a `Tox <https://tox.readthedocs.io/en/latest/index.html>`_ configuration file - so if\nyou have tox installed, run ``tox`` from the ``/example_project/`` folder, and it will run the entire\ntest suite against all versions of Python and Django that are supported.\n\nDocumentation\n-------------\nKeeping the documentation up-to-date is very important - so if your code changes\nhow Photologue works, or adds a new feature, please check that the documentation is still accurate, and\nupdate it if required.\n\nWe use `Sphinx <http://sphinx.pocoo.org/>`_ to prepare the documentation; please refer to the excellent docs\non that site for help.\n\n.. note::\n\n    The CHANGELOG is part of the documentation, so if your patch needs the\n    end user to do something - e.g. run a database migration - don't forget to update\n    it!\n\nTranslations\n------------\n`Photologue manages string translations with Transifex\n<https://www.transifex.com/projects/p/django-photologue/>`_. The easiest way to help is\nto add new/updated translations there.\n\nOnce you've added translations, give the maintainer a wave and he will pull the updated\ntranslations into the master branch, so that you can install Photologue directly from the\nGithub repository (see :ref:`installing-photologue-label`) and use your translations straight away. Or you can do nothing - just before a release\nany new/updated translations get pulled from Transifex and added to the Photologue project.\n\nNew features\n------------\nIn the wiki there is a `wishlist of new features already planned\nfor Photologue <https://github.com/richardbarran/django-photologue/wiki/Photologue-3.X-wishlist>`_ - you are welcome to suggest other useful improvements.\n\nIf you’re interested in developing a new feature, it is recommended that you first\ndiscuss it on the `mailing list <http://groups.google.com/group/django-photologue>`_\nor open a new ticket in Github, in order to avoid working on a feature that will\nnot get accepted as it is judged to not fit in with the goals of Photologue.\n\nA bit of history\n~~~~~~~~~~~~~~~~\nPhotologue was started by Justin Driscoll in 2007. He quickly built it into a powerful\nphoto gallery and image processing application, and it became successful.\n\nJustin then moved onto other projects, and no longer had the time required to maintain\nPhotologue - there was only one commit between August 2009 and August 2012, and\napproximately 70 open tickets on the Google Code project page.\n\nAt this point Richard Barran took over as maintainer of the project. First priority\nwas to improve the infrastructure of the project: moving to Github, adding South,\nSphinx for documentation, Transifex for translations, Travis for continuous integration,\nzest.releaser.\n\nThe codebase has not changed much so far - and it needs quite a bit of TLC\n(Tender Loving Care), and new features are waiting to be added. This is where you step in...\n\nAnd finally...\n--------------\nPlease remember that the maintainer looks after Photologue in his spare time -\nso it might be a few weeks before your pull request gets looked at... and the pull\nrequests that are nicely formatted, with code, tests and docs included, will\nalways get reviewed first ;-)\n"
  },
  {
    "path": "docs/pages/customising/admin.rst",
    "content": ".. _customisation-admin-label:\n\n####################\nCustomisation: Admin\n####################\n\nThe Photologue admin can easily be customised to your project's requirements. The technique described on this page\nis not specific to Photologue - it can be applied to any 3rd party library. \n\nCreate a customisation application\n----------------------------------\nFor clarity, it's best to put our customisation code in a new application; let's call it\n``photologue_custom``; create the application and add it to your ``INSTALLED_APPS`` setting.\n\n\nChanging the admin\n------------------\nIn the new ``photologue_custom`` application, create a new empty ``admin.py`` file. In this file we\ncan replace the admin configuration supplied by Photologue, with a configuration specific to your project.\nFor example:\n\n.. code-block:: python\n\n    from django import forms\n    from django.contrib import admin\n\n    from photologue.admin import GalleryAdmin as GalleryAdminDefault\n    from photologue.models import Gallery\n\n\n    class GalleryAdminForm(forms.ModelForm):\n        \"\"\"Users never need to enter a description on a gallery.\"\"\"\n\n        class Meta:\n            model = Gallery\n            exclude = ['description']\n\n\n    class GalleryAdmin(GalleryAdminDefault):\n        form = GalleryAdminForm\n\n    admin.site.unregister(Gallery)\n    admin.site.register(Gallery, GalleryAdmin)\n\n\nThis snippet will define a new Gallery admin class based on Photologue's own. The only change we make\nis to exclude the ``description`` field from the change form.\n\nWe then unregister the default admin for the Gallery model and replace it with our new class.\n\nPossible uses\n-------------\n\nThe technique outlined above can be used to make many changes to the admin; here are a couple of suggestions.\n\nCustom rich text editors\n~~~~~~~~~~~~~~~~~~~~~~~~\nThe description field on the Gallery model (and the caption field on the Photo model) are plain text fields.\nWith the above technique, it's easy to use a rich text editor to manage these fields in the admin. For example,\nif you have `django-ckeditor <https://github.com/shaunsephton/django-ckeditor>`_ installed:\n\n.. code-block:: python\n\n    from django import forms\n    from django.contrib import admin\n\n    from ckeditor.widgets import CKEditorWidget\n    from photologue.admin import GalleryAdmin as GalleryAdminDefault\n    from photologue.models import Gallery\n\n\n    class GalleryAdminForm(forms.ModelForm):\n        \"\"\"Replace the default description field, with one that uses a custom widget.\"\"\"\n\n        description = forms.CharField(widget=CKEditorWidget())\n\n        class Meta:\n            model = Gallery\n            exclude = ['']\n\n\n    class GalleryAdmin(GalleryAdminDefault):\n        form = GalleryAdminForm\n\n    admin.site.unregister(Gallery)\n    admin.site.register(Gallery, GalleryAdmin)\n\n"
  },
  {
    "path": "docs/pages/customising/models.rst",
    "content": ".. _customising-models-label:\n\n#####################\nCustomisation: Models\n#####################\n\nThe photologue models can be extended to better suit your project. The technique described on this page\nis not specific to Photologue - it can be applied to any 3rd party library. \n\nThe models within Photologue cannot be directly modified (unlike, for example, Django's own User model).\nThere are a number of reasons behind this decision, including:\n\n- If code within a project modifies directly the Photologue models' fields, it leaves the Photologue\n  schema migrations in an ambiguous state.\n- Likewise, model methods can no longer be trusted to behave as intended (as fields on which they\n  depend may have been overridden).\n\nHowever, it's easy to create new models linked by one-to-one relationships to Photologue's own\n``Gallery`` and ``Photo`` models.\n\nOn this page we will show how you can add tags to the ``Gallery`` model. For this we will use\nthe popular 3rd party application `django-taggit <https://github.com/alex/django-taggit>`_.\n\n.. note::\n\n    The ``Gallery`` and ``Photo`` models currently have tag fields, however these are based on the\n    abandonware `django-tagging <https://github.com/brosner/django-tagging>`_ application. Instead,\n    tagging is being entirely removed from Photologue, as it is a non-core functionality of a\n    gallery application, and is easy to add back in - as this page shows!\n\nCreate a customisation application\n----------------------------------\nFor clarity, it's best to put our customisation code in a new application; let's call it\n``photologue_custom``; create the application and add it to your ``INSTALLED_APPS`` setting.\n\nExtending\n---------\n\nWithin the ``photologue_custom`` application, we will edit 2 files:\n\nModels.py\n~~~~~~~~~\n\n.. code-block:: python\n\n    from django.db import models\n\n    from taggit.managers import TaggableManager\n\n    from photologue.models import Gallery\n\n\n    class GalleryExtended(models.Model):\n\n        # Link back to Photologue's Gallery model.\n        gallery = models.OneToOneField(Gallery, related_name='extended')\n\n        # This is the important bit - where we add in the tags.\n        tags = TaggableManager(blank=True)\n\n        # Boilerplate code to make a prettier display in the admin interface.\n        class Meta:\n            verbose_name = u'Extra fields'\n            verbose_name_plural = u'Extra fields'\n\n        def __str__(self):\n            return self.gallery.title\n\n\nAdmin.py\n~~~~~~~~\n\n.. code-block:: python\n\n    from django.contrib import admin\n\n    from photologue.admin import GalleryAdmin as GalleryAdminDefault\n    from photologue.models import Gallery\n    from .models import GalleryExtended\n\n\n    class GalleryExtendedInline(admin.StackedInline):\n        model = GalleryExtended\n        can_delete = False\n\n\n    class GalleryAdmin(GalleryAdminDefault):\n\n        \"\"\"Define our new one-to-one model as an inline of Photologue's Gallery model.\"\"\"\n\n        inlines = [GalleryExtendedInline, ]\n\n    admin.site.unregister(Gallery)\n    admin.site.register(Gallery, GalleryAdmin)\n\nThe above code is enough to start entering tags in the admin interface. To use/display them in the front\nend, you will also need to override Photologue's own templates - as the templates are likely to be\nheavily customised for your specific project, an example is not included here.\n\n\n"
  },
  {
    "path": "docs/pages/customising/settings.rst",
    "content": "#######################\nCustomisation: Settings\n#######################\n\n\nPhotologue has several settings to customise behaviour.\n\nPHOTOLOGUE_GALLERY_LATEST_LIMIT\n-------------------------------\n\n    Default: ``None``\n\nDefault limit for gallery.latest\n\n\nPHOTOLOGUE_GALLERY_SAMPLE_SIZE\n------------------------------\n\n    Default: ``5``\n\nNumber of random images from the gallery to display.\n\n\nPHOTOLOGUE_IMAGE_FIELD_MAX_LENGTH\n---------------------------------\n\n    Default: ``100``\n\nmax_length setting for the ImageModel ImageField\n\n\nPHOTOLOGUE_SAMPLE_IMAGE_PATH\n----------------------------\n\n    Default: ``os.path.join(os.path.dirname(__file__), 'res', 'sample.jpg'))``\n\nPath to sample image\n\n\nPHOTOLOGUE_MAXBLOCK\n-------------------\n\n    Default: ``256 * 2 ** 10``\n\nModify image file buffer size.\n\n\nPHOTOLOGUE_DIR\n--------------\n\n    Default: ``'photologue'``\n\nThe relative path from your ``MEDIA_ROOT`` setting where Photologue will save image files. If your ``MEDIA_ROOT`` is set to \"/home/user/media\", photologue will upload your images to \"/home/user/media/photologue\"\n\n\nPHOTOLOGUE_PATH\n---------------\n\n    Default: ``None``\n\nLook for user function to define file paths. Specifies a \"callable\" that takes a model instance and the original uploaded filename and returns a relative path from your ``MEDIA_ROOT`` that the file will be saved. This function can be set directly.\n\nFor example you could use the following code in a util module::\n\n    # myapp/utils.py:\n\n    import os\n\n    def get_image_path(instance, filename):\n        return os.path.join('path', 'to', 'my', 'files', filename)\n\nThen set in settings::\n\n    # settings.py:\n\n    from utils import get_image_path\n\n    PHOTOLOGUE_PATH = get_image_path\n\nOr instead, pass a string path::\n\n    # settings.py:\n\n    PHOTOLOGUE_PATH = 'myapp.utils.get_image_path'\n\n.. _settings-photologue-multisite-label:\n\nPHOTOLOGUE_MULTISITE\n--------------------\n\n    Default: ``False``\n\nPhotologue can integrate galleries and photos with `Django's site framework`_.\nThe default is for this feature to be switched off, and new galleries and photos to be automatically\nlinked to the current site (``SITE_ID = 1``). The Sites many-to-many field is hidden is the admin, as there is no\nneed for a user to see it.\n\nIf the setting is ``True``, the admin interface is slightly changed:\n\n* The Sites many-to-many field is displayed on Gallery and Photos models.\n* The Gallery Upload allows you to associate one more sites to the uploaded photos (and gallery).\n\n.. note:: Gallery Uploads (zip archives) are always associated with the current site. Pull requests to\n   fix this would be welcome!\n\n.. _Django's site framework: http://django.readthedocs.org/en/latest/ref/contrib/sites.html\n"
  },
  {
    "path": "docs/pages/customising/templates.rst",
    "content": "##################################\nCustomisation: extending templates\n##################################\n\nPhotologue comes with a set of basic templates to get you started quickly - you\ncan of course replace them with your own. That said, it is possible to extend the basic templates in \nyour own project and override various blocks, for example to add css classes.\nOften this will be enough.\n\nThe trick to extending the templates is not special to Photologue, it's used\nin other projects such as `Oscar <http://django-oscar.readthedocs.io/en/latest/howto/how_to_customise_templates.html>`_.\n\nFirst, set up your template configuration as so:\n\n.. code-block:: python\n\n    # for Django versions < 1.8 \n    TEMPLATE_LOADERS = (\n        'django.template.loaders.filesystem.Loader',\n        'django.template.loaders.app_directories.Loader',\n    )\n\n    from photologue import PHOTOLOGUE_APP_DIR\n    TEMPLATE_DIRS = (\n        ...other template folders...,\n        PHOTOLOGUE_APP_DIR\n    )\n    \n    # for Django versions >= 1.8\n    TEMPLATES = [\n        {\n            'BACKEND': 'django.template.backends.django.DjangoTemplates',\n            'DIRS': [os.path.join(BASE_DIR, 'templates')],\n            # note: if you set APP_DIRS to True, you won't need to add 'loaders' under OPTIONS\n            # proceeding as if APP_DIRS is False\n            'APP_DIRS': False,\n            'OPTIONS': {\n                'context_processors': [\n                    ... context processors ...,\n                ],\n                # start - please add only if APP_DIRS is False\n                'loaders': [\n                    'django.template.loaders.filesystem.Loader',\n                    'django.template.loaders.app_directories.Loader',\n                ],   \n                # end - please add only if APP_DIRS is False\n            },\n        },\n    ]\n\nThe ``PHOTOLOGUE_APP_DIR`` points to the directory above Photologue's normal\ntemplates directory.  This means that ``path/to/photologue/template.html`` can also\nbe reached via ``templates/path/to/photologue/template.html``.\n\nFor example, to customise ``photologue/gallery_list.html``, you can have an implementation like:\n\n.. code-block:: html+django\n\n    # Create your own photologue/gallery_list.html\n    {% extends \"templates/photologue/gallery_list.html\" %}\n\n    ... we are now extending the built-in gallery_list.html and we can override\n    the content blocks that we want to customise ...\n\n\n"
  },
  {
    "path": "docs/pages/customising/views.rst",
    "content": ".. _customisation-views-label:\n\n#############################\nCustomisation: Views and Urls\n#############################\n\nThe photologue views and urls can be tweaked to better suit your project. The technique described on this page\nis not specific to Photologue - it can be applied to any 3rd party library.\n\nCreate a customisation application\n----------------------------------\nFor clarity, it's best to put our customisation code in a new application; let's call it\n``photologue_custom``; create the application and add it to your ``INSTALLED_APPS`` setting.\n\nWe will also want to customise urls:\n\n1. Create a urls.py that will contain our customised urls:\n\n\n.. code-block:: python\n\n    from django.conf.urls import *\n\n    urlpatterns = [\n        # Nothing to see here... for now.\n    ]\n\n\n2. These custom urls will override the main Photologue urls, so place them just before Photologue\nin the project's main urls.py file:\n\n.. code-block:: python\n\n    ... other code\n    (r'^photologue/', include('photologue_custom.urls')),\n    url(r'^photologue/', include('photologue.urls', namespace='photologue')),\n\n    ... other code\n\nNow we're ready to make some changes.\n\nChanging pagination from our new urls.py\n----------------------------------------\n\nThe list pages of Photologue (both Gallery and Photo) display 20 objects per page. Let's change this value.\nEdit our new urls.py file, and add:\n\n\n.. code-block:: python\n\n    from django.conf.urls import *\n\n    from photologue.views import GalleryListView\n\n    urlpatterns = [\n        url(r'^gallerylist/$',\n            GalleryListView.as_view(paginate_by=5),\n            name='photologue_custom-gallery-list'),\n    ]\n\n\nWe've copied the urlpattern for\n`the gallery list view from Photologue itself <https://github.com/richardbarran/django-photologue/blob/master/photologue/urls.py>`_,\nand changed it slightly by passing in ``paginate_by=5``.\n\nAnd that's it - now when that page is requested, our customised urls.py will be called first, with pagination\nset to 5 items.\n\nValues that can be overridden from urls.py\n------------------------------------------\n\nGalleryListView\n~~~~~~~~~~~~~~~\n\n* paginate_by: number of items to display per page.\n\nPhotoListView\n~~~~~~~~~~~~~\n\n* paginate_by: number of items to display per page.\n\nChanging views.py to create a RESTful api\n-----------------------------------------\nMore substantial customisation can be carried out by writing custom views. For example,\nit's easy to change a Photologue view to return JSON objects rather than html webpages. For this\nquick demo, we'll use the\n`django-braces library <http://django-braces.readthedocs.org/en/latest/index.html>`_\nto override the view returning a list of all photos.\n\nAdd the following code to views.py in ``photologue_custom``:\n\n.. code-block:: python\n\n    from photologue.views import PhotoListView\n\n    from braces.views import JSONResponseMixin\n\n\n    class PhotoJSONListView(JSONResponseMixin, PhotoListView):\n\n        def render_to_response(self, context, **response_kwargs):\n            return self.render_json_object_response(context['object_list'],\n                                                    **response_kwargs)\n\nAnd call this new view from urls.py; here we are replacing the standard Photo list page provided by Photologue:\n\n.. code-block:: python\n\n    from .views import PhotoJSONListView\n\n    urlpatterns = [\n        # Other urls...\n        url(r'^photolist/$',\n            PhotoJSONListView.as_view(),\n            name='photologue_custom-photo-json-list'),\n        # Other urls as required...\n    ]\n\n\nAnd that's it! Of course, this is simply a demo and a real RESTful api would be rather more complex.\n\n\n\n\n\n"
  },
  {
    "path": "docs/pages/installation.rst",
    "content": "############################\nInstallation & configuration\n############################\n\n\n.. _installing-photologue-label:\n\nInstallation\n------------\nThe easiest way to install Photologue is with `pip <https://pip.pypa.io/en/latest/>`_; this will give you the latest\nversion available on `PyPi <https://pypi.python.org/pypi>`_::\n\n    pip install django-photologue\n\nYou can also take risks and install the latest code directly from the\nGithub repository::\n\n    pip install -e git+https://github.com/richardbarran/django-photologue.git#egg=django-photologue\n\nThis code should work ok - like `Django <https://www.djangoproject.com/>`_\nitself, we try to keep the master branch bug-free. However, we strongly recommend that you\nstick with a release from the PyPi repository, unless if you're confident in your abilities\nto fix any potential bugs on your own!\n\nPython 3\n~~~~~~~~\nPhotologue is compatible with Python 3 (3.3 or later).\n\nDependencies\n------------\n3 apps that will be installed automatically if required.\n\n* `Django <https://www.djangoproject.com/>`_.\n* `Pillow <https://pillow.readthedocs.io/>`_.\n* `Django-sortedm2m <https://pypi.python.org/pypi/django-sortedm2m>`_.\n\nAnd 1 dependency that you will have to manage yourself:\n\n* `Pytz <https://pypi.python.org/pypi/pytz>`_. See the Django release notes `for more information\n  <https://docs.djangoproject.com/en/1.6/releases/1.6/#time-zone-aware-day-month-and-week-day-lookups>`_.\n\n.. note::\n\n    Photologue tries to support the same Django version as are supported by the Django\n    project itself.\n\nThat troublesome Pillow...\n~~~~~~~~~~~~~~~~~~~~~~~~~~\nPillow can be tricky to install; sometimes it will install smoothly\nout of the box, sometimes you can spend hours figuring it out - installation\nissues vary from platform to platform, and from one OS release to the next, so listing\nthem all here would not be realistic. Google\nis your friend!\n\n#. Pillow is a fork of PIL; you should not have installed both - this can cause strange bugs.\n\n#. Sometimes Pillow will install... but is not actually installed. This 'undocumented feature' has been\n   reported by a user on Windows. If you can't get Photologue to display any images, check\n   that you can actually import Pillow::\n\n     $ python manage.py shell\n     Python 3.3.1 (default, Sep 25 2013, 19:29:01)\n     [GCC 4.7.3] on linux\n     Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n     (InteractiveConsole)\n     >>> from PIL import Image\n     >>>\n\n\nConfigure Your Django Settings file\n-----------------------------------\n\nFollow these 4 steps:\n\n#. Add to your ``INSTALLED_APPS`` setting::\n\n    INSTALLED_APPS = (\n         # ...other installed applications...\n         'photologue',\n         'sortedm2m',\n    )\n\n#. Confirm that your `MEDIA_ROOT <https://docs.djangoproject.com/en/dev/ref/settings/#media-root>`_ and\n   `MEDIA_URL <https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-MEDIA_URL>`_ settings\n   are correct (Photologue will store uploaded files in a folder called 'photologue' under your ``MEDIA_ROOT``).\n\n#. `Enable the admin app <https://docs.djangoproject.com/en/dev/ref/contrib/admin/>`_ if you have not already done so.\n\n#. `Enable the Django sites framework <https://docs.djangoproject.com/en/dev/ref/contrib/sites/#enabling-the-sites-framework>`_\n   if you have not already done so. This is not enabled by default in Django, but is required by Photologue.\n\nAdd the urls\n------------\n\nAdd photologue to your projects urls.py file::\n\n    urlpatterns += [\n        ...\n        url(r'^photologue/', include('photologue.urls', namespace='photologue')),\n    ]\n\nSync Your Database\n------------------\n\nYou can now sync your database::\n\n    python manage.py migrate photologue\n\nIf you are installing Photologue for the first time, this will set up some\ndefault PhotoSizes to get you started - you are free to change them of course!\n\nInstant templates\n-----------------\n\nPhotologue comes with basic templates for galleries and photos, which are designed\nto work well with `Twitter-Bootstrap <http://twitter.github.io/bootstrap/index.html>`_.\nYou can of course use them, or override them, or completely replace them. Note that all\nPhotologue templates inherit from ``photologue/root.html``, which itself expects your site's\nbase template to be called ``base.html`` - you can change this to use a different base template.\n\nSitemap\n-------\n\n.. automodule:: photologue.sitemaps\n\nSites\n-----\n\nPhotologue supports `Django's site framework`_ since version 2.8. That means\nthat each Gallery and each Photo can be displayed on one or more sites.\n\nPlease bear in mind that photos don't necessarily have to be assigned to the\nsame sites as the gallery they're belonging to: each gallery will only display\nthe photos that are on its site. When a gallery does not belong the current site\nbut a single photo is, that photo is only accessible directly as the gallery\nwon't be shown in the index.\n\n.. note:: If you're upgrading from a version earlier than 2.8 you don't need to\n   worry about the assignment of already existing objects to a site because a\n   datamigration will assign all your objects to the current site automatically.\n\n.. note:: This feature is switched off by default. :ref:`See here to enable it\n   <settings-photologue-multisite-label>` and for more information.\n\n.. _Django's site framework: http://django.readthedocs.org/en/latest/ref/contrib/sites.html\n\nAmazon S3\n---------\n\nPhotologue can use a custom file storage system, for example\n`Amazon's S3 <http://aws.amazon.com/s3/>`_.\n\nYou will need to configure your Django project to use Amazon S3 for storing files; a full discussion of\nhow to do this is outside the scope of this page.\n\nHowever, there is a quick demo of using Photologue with S3 in the ``example_project`` directory; if you look\nat these files:\n\n* ``example_project/example_project/settings.py``\n* ``example_project/requirements.txt``\n\nAt the end of each file you will commented-out lines for configuring S3 functionality. These point to extra files\nstored under ``example_project/example_storages/``. Uncomment these lines, run the example\nproject, then study these files for inspiration! After that, setting up S3 will consist of\n(at minimum) the following steps:\n\n#. Signup for Amazon AWS S3 at http://aws.amazon.com/s3/.\n#. Create a Bucket on S3 to store your media and static files.\n#. Set the environment variables:\n\n   * ``AWS_ACCESS_KEY_ID`` - issued to your account by S3.\n   * ``AWS_SECRET_ACCESS_KEY`` - issued to your account by S3.\n   * ``AWS_STORAGE_BUCKET_NAME`` - name of your bucket on S3.\n\n#. To copy your static files into your S3 Bucket, type ``python manage.py collectstatic`` in the ``example_project`` directory.\n\n.. note:: This simple setup does not handle S3 regions.\n\n\n\n\n\n\n"
  },
  {
    "path": "docs/pages/usage.rst",
    "content": "#####\nUsage\n#####\n\nNow that you've installed Photologue, here are a few suggestions on how to use it:\n\nUpload some photos in the admin\n-------------------------------\nThe ``Photo`` model in the admin allows you to add new photos to Photologue. You can add photos one by one - and\nit the top-right corner there is a 'Upload a Zip archive' button that will allow you to upload many photos at once.\n\nDefine some Photosizes\n----------------------\nPhotologue will create thumbnails of the photos that you upload, and the thumbnails are what is displayed in the\npublic website. By default Photologue comes with a few Photosizes to get you started - feel free to tweak them, or\nto create new ones.\n\nJust note that the ``admin_thumbnail`` size is used by the admin pages, so it's not a good idea to delete it!\n\nBuilt-in pages and templates\n----------------------------\n\nIf you've followed all the instructions in the installation page, you will have included Photologue's\nurls at ``/photologue/`` - you can use these, tweak them, or discard them if they do not fit in with your website's\nrequirements.\n\nCustom usage\n------------\nThe base of Photologue is the ``Photo`` model. When an instance is created, we automatically add methods to retrieve\nphotos at various photosizes. E.g. if you have an instance of ``Photo`` called ``photo``, then the\nfollowing methods will have been added automatically::\n\n    photo.get_thumbnail_url()\n    photo.get_display_url()\n    photo.get_admin_thumbnail_url()\n\nThese can be used in a custom template to display a thumbnail, e.g.::\n\n    <a href=\"{{ photo.image.url }}\">\n        <img src=\"{{ photo.get_display_url }}\" alt=\"{{ photo.title }}\">\n    </a>\n\nThis will display an image, sized to the dimensions specified in the Photosize ``display``,\nand provide a clickable link to the raw image. Please refer to the example templates for ideas on how to use\n``Photo`` and ``Gallery`` instances!\n\nData integrity\n--------------\nPhotologue will store 'as-is' any data stored for galleries and photos.\nYou may want to enforce some data integrity rules - e.g. to sanitise\nany javascript injected into a ``Photo`` ``caption`` field. An easy way to do this\nwould be to add extra processing on a ``post-save`` signal.\n\nPhotologue does not sanitise data itself as you may legitimately want to store html and\njavascript in a caption field e.g. if you use a rich-text editor.\n\n"
  },
  {
    "path": "docs/requirements.txt",
    "content": "django\n-r ../requirements.txt\n"
  },
  {
    "path": "example_project/README.rst",
    "content": "#######################\nPhotologue Demo Project\n#######################\n\nAbout\n=====\nThis project serves 3 purposes:\n\n- It's a quick demo of django-photologue for people who wish to try it out.\n- It's an easy way for contributors to the project to have both django-photologue,\n  and a project that uses it.\n- It's used for Travis CI testing of django-photologue.\n\nIt uses the Bootstrap-friendly templates that come with Photologue.\n\nThe rest of the README will assume that you want to set up the test project in\norder to work on django-photologue itself.\n\nPrerequisites\n=============\n\n- python 3.\n- virtualenvwrapper makes it easy to manage your virtualenvs. Strongly recommended!\n\nInstallation\n============\n**Note**: the project is configured so that it can run immediately with zero configuration\n(especially of settings files).\n\nCreate a virtual python environment for the project. The use of virtualenvwrapper\nis strongly recommended::\n\n\tmkproject --no-site-packages django-photologue\n\tor for more sophisticated setups:\n\tmkvirtualenv --no-site-packages django-photologue\n\n\nClone this code into your project folder::\n\n\t(cd to the new virtualenv)\n\tgit clone https://github.com/richardbarran/django-photologue.git .\n\n**Note**: if you plan to contribute code back to django-photologue, then you'll\nprobably want instead to fork the project on Github, and clone your fork instead.\n\nInstall requirements::\n\n\tcd example_project\n\tpip install -r requirements.txt\n\n**Note**: this will install Pillow, which is not always straightforward; sometimes it\nwill install smoothly out of the box, sometimes you can spend hours figuring it out - installation\nissues vary from platform to platform, and from one OS release to the next. Google\nis your friend here, and it's worth noting that Pillow is a fork of PIL,\nso googling 'PIL installation <your platform>' can also help.\n\nThe project is set up to run SQLite in dev so that it can be quickly started\nwith no configuration required (you can of course specify another database in\nthe settings file). To setup the database::\n\n\t./manage.py migrate\n\nFollow the instructions to configure photologue here: `Photologue Docs <http://django-photologue.readthedocs.org/en/latest/pages/installation.html>`_\n\nAnd finally run the project (it defaults to a safe set of settings for a dev\nenvironment)::\n\n\t./manage.py runserver\n\nOpen browser to http://127.0.0.1:8000\n\nThank you\n=========\nThis example project is based on the earlier `photologue_demo project <https://github.com/richardbarran/photologue_demo>`_.\nThis project included contributions and input from: crainbf, tomkingston, bmcorser.\n\n\n..\n\tNote: this README is formatted as reStructuredText so that it's in the same\n\tformat as the Sphinx docs.\n"
  },
  {
    "path": "example_project/example_project/__init__.py",
    "content": ""
  },
  {
    "path": "example_project/example_project/example_storages/README.txt",
    "content": "In this folder we keep configuration files for non-default media stores, e.g. Amazon S3."
  },
  {
    "path": "example_project/example_project/example_storages/__init__.py",
    "content": ""
  },
  {
    "path": "example_project/example_project/example_storages/s3_requirements.txt",
    "content": "boto>=2.29.1\ndjango-storages>=1.1.8\n"
  },
  {
    "path": "example_project/example_project/example_storages/s3utils.py",
    "content": "from storages.backends.s3boto import S3BotoStorage\n\nStaticS3BotoStorage = lambda: S3BotoStorage(location='static')\nMediaS3BotoStorage = lambda: S3BotoStorage(location='media')\n"
  },
  {
    "path": "example_project/example_project/example_storages/settings_s3boto.py",
    "content": "# S3Boto storage settings for photologue example project.\n\nimport os\n\nDEFAULT_FILE_STORAGE = 'example_project.example_storages.s3utils.MediaS3BotoStorage'\nSTATICFILES_STORAGE = 'example_project.example_storages.s3utils.StaticS3BotoStorage'\n\ntry:\n    # If you want to test the example_project with S3, you'll have to configure the\n    # environment variables as specified below.\n    # (Secret keys are stored in environment variables for security - you don't want to\n    # accidentally commit and push them to a public repository).\n    AWS_ACCESS_KEY_ID = os.environ['AWS_ACCESS_KEY_ID']\n    AWS_SECRET_ACCESS_KEY = os.environ['AWS_SECRET_ACCESS_KEY']\n    AWS_STORAGE_BUCKET_NAME = os.environ['AWS_STORAGE_BUCKET_NAME']\nexcept KeyError:\n    raise KeyError('Need to define AWS environment variables: '\n                   'AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and AWS_STORAGE_BUCKET_NAME')\n\n# Default Django Storage API behavior - don't overwrite files with same name\nAWS_S3_FILE_OVERWRITE = False\n\nMEDIA_ROOT = '/media/'\nMEDIA_URL = 'http://%s.s3.amazonaws.com/media/' % AWS_STORAGE_BUCKET_NAME\n\nSTATIC_ROOT = '/static/'\nSTATIC_URL = 'http://%s.s3.amazonaws.com/static/' % AWS_STORAGE_BUCKET_NAME\n\nADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'\n"
  },
  {
    "path": "example_project/example_project/fixtures/.gitdirectory",
    "content": "Placeholder so that this directory will be added to the git repository.\n"
  },
  {
    "path": "example_project/example_project/settings.py",
    "content": "# Global settings for photologue example project.\n\nimport os\nimport sys\n\nBASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\n\n\nSECRET_KEY = '=_v6sfp8u2uuhdncdz9t1_nu8(#8q4=40$f$4rorj4q3)f-nlc'\n\nDEBUG = True\n\nALLOWED_HOSTS = ['*']\n\n\nINSTALLED_APPS = (\n    'django.contrib.admin',\n    'django.contrib.auth',\n    'django.contrib.contenttypes',\n    'django.contrib.sessions',\n    'django.contrib.sites',\n    'django.contrib.messages',\n    'django.contrib.staticfiles',\n    # Note: added sitemaps to the INSTALLED_APPS just so that unit tests run,\n    # but not actually added a sitemap in urls.py.\n    'django.contrib.sitemaps',\n    'photologue',\n    'sortedm2m',\n    'example_project',\n)\n\nMIDDLEWARE = (\n    'django.contrib.sessions.middleware.SessionMiddleware',\n    'django.middleware.common.CommonMiddleware',\n    'django.middleware.csrf.CsrfViewMiddleware',\n    'django.contrib.auth.middleware.AuthenticationMiddleware',\n    'django.contrib.messages.middleware.MessageMiddleware',\n    'django.middleware.clickjacking.XFrameOptionsMiddleware',\n)\n\nROOT_URLCONF = 'example_project.urls'\n\nTEMPLATES = [\n    {\n        'BACKEND': 'django.template.backends.django.DjangoTemplates',\n        'DIRS': [os.path.join(BASE_DIR, 'example_project/templates'), ],\n        'APP_DIRS': True,\n        'OPTIONS': {\n            'context_processors': [\n                'django.template.context_processors.debug',\n                'django.template.context_processors.request',\n                'django.contrib.auth.context_processors.auth',\n                'django.contrib.messages.context_processors.messages',\n                'django.template.context_processors.i18n',\n                'django.template.context_processors.media',\n                'django.template.context_processors.static',\n            ],\n            'debug': True,\n        },\n    },\n]\n\nWSGI_APPLICATION = 'example_project.wsgi.application'\n\n\n# Database\n# https://docs.djangoproject.com/en/1.8/ref/settings/#databases\n\nDATABASES = {\n    'default': {\n        'ENGINE': 'django.db.backends.sqlite3',\n        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),\n    }\n}\n\n\n# Internationalization\n# https://docs.djangoproject.com/en/1.8/topics/i18n/\n\nLANGUAGE_CODE = 'en-gb'\n\nTIME_ZONE = 'UTC'\n\nUSE_I18N = True\n\nUSE_TZ = True\n\n\n# Static files (CSS, JavaScript, Images)\n# https://docs.djangoproject.com/en/1.8/howto/static-files/\n\nSTATIC_ROOT = os.path.join(BASE_DIR, 'public', 'static')\nSTATIC_URL = '/static/'\n\nMEDIA_ROOT = os.path.join(BASE_DIR, 'public', 'media')\nMEDIA_URL = '/media/'\n\nSTATICFILES_DIRS = (\n    os.path.join(BASE_DIR, 'example_project/static'),\n)\n\nSITE_ID = 1\n\n# LOGGING CONFIGURATION\n# A logging configuration that writes log messages to the console.\nLOGGING = {\n    'version': 1,\n    'disable_existing_loggers': True,\n    # Formatting of messages.\n    'formatters': {\n        # Don't need to show the time when logging to console.\n        'console': {\n            'format': '%(levelname)s %(name)s.%(funcName)s (%(lineno)d) %(message)s'\n        }\n    },\n    # The handlers decide what we should do with a logging message - do we email\n    # it, ditch it, or write it to a file?\n    'handlers': {\n        # Writing to console. Use only in dev.\n        'console': {\n            'level': 'DEBUG',\n            'class': 'logging.StreamHandler',\n            'formatter': 'console'\n        },\n        # Send logs to /dev/null.\n        'null': {\n            'level': 'DEBUG',\n            'class': 'logging.NullHandler',\n        },\n    },\n    # Loggers decide what is logged.\n    'loggers': {\n        '': {\n            # Default (suitable for dev) is to log to console.\n            'handlers': ['console'],\n            'level': 'INFO',\n            'propagate': False,\n        },\n        'photologue': {\n            # Default (suitable for dev) is to log to console.\n            'handlers': ['console'],\n            'level': 'DEBUG',\n            'propagate': False,\n        },\n        # logging of SQL statements. Default is to ditch them (send them to\n        # null). Note that this logger only works if DEBUG = True.\n        'django.db.backends': {\n            'handlers': ['null'],\n            'level': 'DEBUG',\n            'propagate': False,\n        },\n    }\n}\n\n# Don't display logging messages to console during unit test runs.\nif len(sys.argv) > 1 and sys.argv[1] == 'test':\n    LOGGING['loggers']['']['handlers'] = ['null']\n    LOGGING['loggers']['photologue']['handlers'] = ['null']\n\n# Uncomment this for Amazon S3 file storage\n# from example_storages.settings_s3boto import *\n"
  },
  {
    "path": "example_project/example_project/static/css/styles.css",
    "content": "/* Some customisation for the Photologue demo site. */\n\n/* Page structure */\n\nh1 {\n    margin-top: 1rem;\n    margin-bottom: 2rem;\n    border-bottom: 1px solid lightgray;\n    padding-bottom: 0.25rem;\n}\n\n/* Photo galleries */\n\n.gallery-sample {\n    margin-bottom: 2rem;\n}\n\na.btn {\n    margin-top: 2rem;\n}\n\ntd {\n    width: 100px;\n}\n\n.gallery-sample a {\n    text-decoration: none;\n}\n\n.gallery-list a {\n    text-decoration: none;\n}\n\n.photo-list a {\n    text-decoration: none;\n}\n\nul.pagination {\n    margin-top: 2rem;\n}\n\n.img-thumbnail {\n    margin-bottom: 0.25rem;\n}\n"
  },
  {
    "path": "example_project/example_project/static/js/jquery-3.5.1.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "example_project/example_project/templates/base.html",
    "content": "{% load static %}\n<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Photologue Demo - {% block title %}{% endblock title %}</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n    <link href=\"{% static 'css/bootstrap.min.css' %}\" rel=\"stylesheet\">\n    <link href=\"{% static 'css/styles.css' %}\" rel=\"stylesheet\">\n\n  </head>\n\n  <body class=\"{% block page_class %}{% endblock %}\">\n\n<nav class=\"navbar navbar-expand-lg navbar-light bg-light\">\n    <div class=\"container-fluid\">\n        <a class=\"navbar-brand\" href=\"/\">Photologue Demo</a>\n        <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNavDropdown\" aria-controls=\"navbarNavDropdown\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n            <span class=\"navbar-toggler-icon\"></span>\n        </button>\n        <div class=\"collapse navbar-collapse\" id=\"navbarNavDropdown\">\n            <ul class=\"navbar-nav\">\n                <li class=\"nav-item nav_home\">\n                    <a class=\"nav-link\" href=\"/\">Home</a>\n                </li>\n                <li class=\"nav-item dropdown\">\n                    <a class=\"nav-link dropdown-toggle\" href=\"#\" id=\"navbarDropdownMenuLink\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n                        Gallery views\n                    </a>\n                    <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdownMenuLink\">\n                        <a class=\"dropdown-item\" href=\"{% url 'photologue:pl-gallery-archive' %}\">Date views</a>\n                        <a class=\"dropdown-item\" href=\"{% url 'photologue:gallery-list' %}\">List views</a>\n                    </div>\n                </li>\n                <li class=\"nav-item dropdown\">\n                    <a class=\"nav-link dropdown-toggle\" href=\"#\" id=\"navbarDropdownMenuLink\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n                        Photo views\n                    </a>\n                    <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdownMenuLink\">\n                        <a class=\"dropdown-item\" href=\"{% url 'photologue:pl-photo-archive' %}\">Date views</a>\n                        <a class=\"dropdown-item\" href=\"{% url 'photologue:photo-list' %}\">List views</a>\n                    </div>\n                </li>\n            </ul>\n        </div>\n    </div>\n</nav>\n\n    <div class=\"container\">\n\n       <div id=\"page_content\">\n          {% block content %}{% endblock content %}\n        </div>\n\n    </div> <!-- /container -->\n\n    <script src=\"{% static 'js/jquery-3.5.1.js' %}\"></script>\n    <script src=\"{% static 'js/bootstrap.bundle.min.js' %}\"></script>\n\n  </body>\n</html>\n\n\n"
  },
  {
    "path": "example_project/example_project/templates/homepage.html",
    "content": "{% extends 'base.html' %}\n\n{% block title %}Photologue example project{% endblock %}\n\n{% block content %}\n\t<div class=\"row\">\n\t\t<div class=\"col-lg-12\">\n\t\t\t<div class=\"page-header\">\n\t\t\t  <h1>Welcome to the Photologue example project</h1>\n\t\t\t</div>\n\t\t\t<p>This is a quick demo of the Photologue application - just click on\n\t\t\tthe menu options above.</p>\n\t\t\t<p>It uses the built-in <a href=\"http://getbootstrap.com/\">Bootstrap</a>-compatible\n\t\t\ttemplates that you can use to get you quickly up and running, or completely\n\t\t\treplace with your own templates.</p>\n\t\t</div>\n\t</div>\n{% endblock %}\n"
  },
  {
    "path": "example_project/example_project/urls.py",
    "content": "from django.conf import settings\nfrom django.conf.urls.static import static\nfrom django.contrib import admin\nfrom django.urls import include, path\nfrom django.views.generic import TemplateView\n\nurlpatterns = [path('admin/', admin.site.urls),\n               path('photologue/', include('photologue.urls')),\n               path('', TemplateView.as_view(template_name=\"homepage.html\"), name='homepage'),\n               ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)\n"
  },
  {
    "path": "example_project/example_project/wsgi.py",
    "content": "import os\n\nfrom django.core.wsgi import get_wsgi_application\n\nos.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"example_project.settings\")\n\napplication = get_wsgi_application()\n"
  },
  {
    "path": "example_project/manage.py",
    "content": "#!/usr/bin/env python\nimport os\nimport sys\n\nif __name__ == '__main__':\n    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'example_project.settings')\n\n    # Add parent folder to path so that we can import Photologue itself.\n    PROJECT_PATH = os.path.abspath(os.path.split(__file__)[0])\n    sys.path.append(os.path.join(PROJECT_PATH, \"..\"))\n\n    from django.core.management import execute_from_command_line\n    execute_from_command_line(sys.argv)\n"
  },
  {
    "path": "example_project/public/.gitdirectory",
    "content": "Placeholder so that this directory will be added to the git repository.\n"
  },
  {
    "path": "example_project/public/media/.gitignore",
    "content": "# Ignore everything in this directory\n*\n# Except this file\n!.gitignore\n"
  },
  {
    "path": "example_project/public/static/.gitdirectory",
    "content": "Placeholder so that this directory will be added to the git repository.\n"
  },
  {
    "path": "example_project/requirements.txt",
    "content": "-r ../requirements.txt\n# The following is only required if developing for Photologue.\nfactory-boy>=3.3.2 # Note: version that formally supports Dj5.2 not yet released.\n# The following is only required if you plan on using Amazon AWS S3\n# -r example_storages/s3_requirements.txt\n\n"
  },
  {
    "path": "photologue/__init__.py",
    "content": "import os\n\n__version__ = '3.19.dev0'\n\nPHOTOLOGUE_APP_DIR = os.path.dirname(os.path.abspath(__file__))\n"
  },
  {
    "path": "photologue/admin.py",
    "content": "from django import forms\r\nfrom django.conf import settings\r\nfrom django.contrib import admin, messages\r\nfrom django.contrib.admin import helpers\r\nfrom django.contrib.sites.models import Site\r\nfrom django.http import HttpResponseRedirect\r\nfrom django.shortcuts import render\r\nfrom django.urls import path\r\nfrom django.utils.translation import gettext_lazy as _\r\nfrom django.utils.translation import ngettext\r\n\r\nfrom .forms import UploadZipForm\r\nfrom .models import Gallery, Photo, PhotoEffect, PhotoSize, Watermark\r\n\r\nMULTISITE = getattr(settings, 'PHOTOLOGUE_MULTISITE', False)\r\n\r\n\r\nclass GalleryAdminForm(forms.ModelForm):\r\n    class Meta:\r\n        model = Gallery\r\n        if MULTISITE:\r\n            exclude = []\r\n        else:\r\n            exclude = ['sites']\r\n\r\n\r\nclass GalleryAdmin(admin.ModelAdmin):\r\n    list_display = ('title', 'date_added', 'photo_count', 'is_public')\r\n    list_filter = ['date_added', 'is_public']\r\n    if MULTISITE:\r\n        list_filter.append('sites')\r\n    date_hierarchy = 'date_added'\r\n    prepopulated_fields = {'slug': ('title',)}\r\n    form = GalleryAdminForm\r\n    if MULTISITE:\r\n        filter_horizontal = ['sites']\r\n    if MULTISITE:\r\n        actions = [\r\n            'add_to_current_site',\r\n            'add_photos_to_current_site',\r\n            'remove_from_current_site',\r\n            'remove_photos_from_current_site'\r\n        ]\r\n\r\n    def formfield_for_manytomany(self, db_field, request, **kwargs):\r\n        \"\"\" Set the current site as initial value. \"\"\"\r\n        if db_field.name == \"sites\":\r\n            kwargs[\"initial\"] = [Site.objects.get_current()]\r\n        return super().formfield_for_manytomany(db_field, request, **kwargs)\r\n\r\n    def save_related(self, request, form, *args, **kwargs):\r\n        \"\"\"\r\n        If the user has saved a gallery with a photo that belongs only to\r\n        different Sites - it might cause much confusion. So let them know.\r\n        \"\"\"\r\n        super().save_related(request, form, *args, **kwargs)\r\n        orphaned_photos = form.instance.orphaned_photos()\r\n        if orphaned_photos:\r\n            msg = ngettext(\r\n                'The following photo does not belong to the same site(s)'\r\n                ' as the gallery, so will never be displayed: %(photo_list)s.',\r\n                'The following photos do not belong to the same site(s)'\r\n                ' as the gallery, so will never be displayed: %(photo_list)s.',\r\n                len(orphaned_photos)\r\n            ) % {'photo_list': \", \".join([photo.title for photo in orphaned_photos])}\r\n            messages.warning(request, msg)\r\n\r\n    def add_to_current_site(modeladmin, request, queryset):\r\n        current_site = Site.objects.get_current()\r\n        current_site.gallery_set.add(*queryset)\r\n        msg = ngettext(\r\n            \"The gallery has been successfully added to %(site)s\",\r\n            \"The galleries have been successfully added to %(site)s\",\r\n            len(queryset)\r\n        ) % {'site': current_site.name}\r\n        messages.success(request, msg)\r\n\r\n    add_to_current_site.short_description = \\\r\n        _(\"Add selected galleries to the current site\")\r\n\r\n    def remove_from_current_site(modeladmin, request, queryset):\r\n        current_site = Site.objects.get_current()\r\n        current_site.gallery_set.remove(*queryset)\r\n        msg = ngettext(\r\n            \"The gallery has been successfully removed from %(site)s\",\r\n            \"The selected galleries have been successfully removed from %(site)s\",\r\n            len(queryset)\r\n        ) % {'site': current_site.name}\r\n        messages.success(request, msg)\r\n\r\n    remove_from_current_site.short_description = \\\r\n        _(\"Remove selected galleries from the current site\")\r\n\r\n    def add_photos_to_current_site(modeladmin, request, queryset):\r\n        photos = Photo.objects.filter(galleries__in=queryset)\r\n        current_site = Site.objects.get_current()\r\n        current_site.photo_set.add(*photos)\r\n        msg = ngettext(\r\n            'All photos in gallery %(galleries)s have been successfully added to %(site)s',\r\n            'All photos in galleries %(galleries)s have been successfully added to %(site)s',\r\n            len(queryset)\r\n        ) % {'site': current_site.name,\r\n             'galleries': \", \".join([f\"'{gallery.title}'\" for gallery in queryset])}\r\n        messages.success(request, msg)\r\n\r\n    add_photos_to_current_site.short_description = \\\r\n        _(\"Add all photos of selected galleries to the current site\")\r\n\r\n    def remove_photos_from_current_site(modeladmin, request, queryset):\r\n        photos = Photo.objects.filter(galleries__in=queryset)\r\n        current_site = Site.objects.get_current()\r\n        current_site.photo_set.remove(*photos)\r\n        msg = ngettext(\r\n            'All photos in gallery %(galleries)s have been successfully removed from %(site)s',\r\n            'All photos in galleries %(galleries)s have been successfully removed from %(site)s',\r\n            len(queryset)\r\n        ) % {'site': current_site.name,\r\n             'galleries': \", \".join([f\"'{gallery.title}'\" for gallery in queryset])}\r\n        messages.success(request, msg)\r\n\r\n    remove_photos_from_current_site.short_description = \\\r\n        _(\"Remove all photos in selected galleries from the current site\")\r\n\r\n\r\nadmin.site.register(Gallery, GalleryAdmin)\r\n\r\n\r\nclass PhotoAdminForm(forms.ModelForm):\r\n    class Meta:\r\n        model = Photo\r\n        if MULTISITE:\r\n            exclude = []\r\n        else:\r\n            exclude = ['sites']\r\n\r\n\r\nclass PhotoAdmin(admin.ModelAdmin):\r\n    list_display = ('title', 'date_taken', 'date_added',\r\n                    'is_public', 'view_count', 'admin_thumbnail')\r\n    list_filter = ['date_added', 'is_public']\r\n    if MULTISITE:\r\n        list_filter.append('sites')\r\n    search_fields = ['title', 'slug', 'caption']\r\n    list_per_page = 10\r\n    prepopulated_fields = {'slug': ('title',)}\r\n    readonly_fields = ('date_taken',)\r\n    form = PhotoAdminForm\r\n    if MULTISITE:\r\n        filter_horizontal = ['sites']\r\n    if MULTISITE:\r\n        actions = ['add_photos_to_current_site', 'remove_photos_from_current_site']\r\n\r\n    def formfield_for_manytomany(self, db_field, request, **kwargs):\r\n        \"\"\" Set the current site as initial value. \"\"\"\r\n        if db_field.name == \"sites\":\r\n            kwargs[\"initial\"] = [Site.objects.get_current()]\r\n        return super().formfield_for_manytomany(db_field, request, **kwargs)\r\n\r\n    def add_photos_to_current_site(modeladmin, request, queryset):\r\n        current_site = Site.objects.get_current()\r\n        current_site.photo_set.add(*queryset)\r\n        msg = ngettext(\r\n            'The photo has been successfully added to %(site)s',\r\n            'The selected photos have been successfully added to %(site)s',\r\n            len(queryset)\r\n        ) % {'site': current_site.name}\r\n        messages.success(request, msg)\r\n\r\n    add_photos_to_current_site.short_description = \\\r\n        _(\"Add selected photos to the current site\")\r\n\r\n    def remove_photos_from_current_site(modeladmin, request, queryset):\r\n        current_site = Site.objects.get_current()\r\n        current_site.photo_set.remove(*queryset)\r\n        msg = ngettext(\r\n            'The photo has been successfully removed from %(site)s',\r\n            'The selected photos have been successfully removed from %(site)s',\r\n            len(queryset)\r\n        ) % {'site': current_site.name}\r\n        messages.success(request, msg)\r\n\r\n    remove_photos_from_current_site.short_description = \\\r\n        _(\"Remove selected photos from the current site\")\r\n\r\n    def get_urls(self):\r\n        urls = super().get_urls()\r\n        custom_urls = [\r\n            path('upload_zip/',\r\n                 self.admin_site.admin_view(self.upload_zip),\r\n                 name='photologue_upload_zip')\r\n        ]\r\n        return custom_urls + urls\r\n\r\n    def upload_zip(self, request):\r\n\r\n        context = {\r\n            'title': _('Upload a zip archive of photos'),\r\n            'app_label': self.model._meta.app_label,\r\n            'opts': self.model._meta,\r\n            'has_change_permission': self.has_change_permission(request)\r\n        }\r\n\r\n        # Handle form request\r\n        if request.method == 'POST':\r\n            form = UploadZipForm(request.POST, request.FILES)\r\n            if form.is_valid():\r\n                form.save(request=request)\r\n                return HttpResponseRedirect('..')\r\n        else:\r\n            form = UploadZipForm()\r\n        context['form'] = form\r\n        context['adminform'] = helpers.AdminForm(form,\r\n                                                 list([(None, {'fields': form.base_fields})]),\r\n                                                 {})\r\n        return render(request, 'admin/photologue/photo/upload_zip.html', context)\r\n\r\n\r\nadmin.site.register(Photo, PhotoAdmin)\r\n\r\n\r\nclass PhotoEffectAdmin(admin.ModelAdmin):\r\n    list_display = ('name', 'description', 'color', 'brightness',\r\n                    'contrast', 'sharpness', 'filters', 'admin_sample')\r\n    fieldsets = (\r\n        (None, {\r\n            'fields': ('name', 'description')\r\n        }),\r\n        ('Adjustments', {\r\n            'fields': ('color', 'brightness', 'contrast', 'sharpness')\r\n        }),\r\n        ('Filters', {\r\n            'fields': ('filters',)\r\n        }),\r\n        ('Reflection', {\r\n            'fields': ('reflection_size', 'reflection_strength', 'background_color')\r\n        }),\r\n        ('Transpose', {\r\n            'fields': ('transpose_method',)\r\n        }),\r\n    )\r\n\r\n\r\nadmin.site.register(PhotoEffect, PhotoEffectAdmin)\r\n\r\n\r\nclass PhotoSizeAdmin(admin.ModelAdmin):\r\n    list_display = ('name', 'width', 'height', 'crop', 'pre_cache', 'effect', 'increment_count')\r\n    fieldsets = (\r\n        (None, {\r\n            'fields': ('name', 'width', 'height', 'quality')\r\n        }),\r\n        ('Options', {\r\n            'fields': ('upscale', 'crop', 'pre_cache', 'increment_count')\r\n        }),\r\n        ('Enhancements', {\r\n            'fields': ('effect', 'watermark',)\r\n        }),\r\n    )\r\n\r\n\r\nadmin.site.register(PhotoSize, PhotoSizeAdmin)\r\n\r\n\r\nclass WatermarkAdmin(admin.ModelAdmin):\r\n    list_display = ('name', 'opacity', 'style')\r\n\r\n\r\nadmin.site.register(Watermark, WatermarkAdmin)\r\n"
  },
  {
    "path": "photologue/apps.py",
    "content": "from django.apps import AppConfig\n\n\nclass PhotologueConfig(AppConfig):\n    default_auto_field = 'django.db.models.AutoField'\n    name = 'photologue'\n"
  },
  {
    "path": "photologue/forms.py",
    "content": "import logging\nimport os\nimport zipfile\nfrom io import BytesIO\nfrom typing import List\nfrom zipfile import BadZipFile\n\nfrom django import forms\nfrom django.conf import settings\nfrom django.contrib import messages\nfrom django.contrib.messages import constants\nfrom django.contrib.sites.models import Site\nfrom django.core.files.base import ContentFile\nfrom django.template.defaultfilters import slugify\nfrom django.utils.encoding import force_str\nfrom django.utils.translation import gettext_lazy as _\nfrom PIL import Image\n\nfrom .models import Gallery, Photo\n\nlogger = logging.getLogger('photologue.forms')\n\nMessageSeverity = int\nMessageContent = str\n\n\nclass PhotoDefaults:\n    title: str\n    caption: str\n    is_public: bool\n\n    def __init__(self, title: str, caption: str, is_public: bool) -> \"PhotoDefaults\":\n        self.title = title\n        self.caption = caption\n        self.is_public = is_public\n\n\nclass UploadMessage:\n    severity: MessageSeverity\n    content: MessageContent\n\n    def __init__(self, severity: MessageSeverity, content: MessageContent) -> \"UploadMessage\":\n        self.severity = severity\n        self.content = content\n\n    def success(content: MessageContent):\n        return UploadMessage(severity=constants.SUCCESS, content=content)\n\n    def warning(content: MessageContent):\n        return UploadMessage(severity=constants.WARNING, content=content)\n\n\nclass UploadZipForm(forms.Form):\n    zip_file = forms.FileField()\n\n    title = forms.CharField(label=_('Title'),\n                            max_length=250,\n                            required=False,\n                            help_text=_('All uploaded photos will be given a title made up of this title + a '\n                                        'sequential number.<br>This field is required if creating a new '\n                                        'gallery, but is optional when adding to an existing gallery - if '\n                                        'not supplied, the photo titles will be creating from the existing '\n                                        'gallery name.'))\n    gallery = forms.ModelChoiceField(Gallery.objects.all(),\n                                     label=_('Gallery'),\n                                     required=False,\n                                     help_text=_('Select a gallery to add these images to. Leave this empty to '\n                                                 'create a new gallery from the supplied title.'))\n    caption = forms.CharField(label=_('Caption'),\n                              required=False,\n                              help_text=_('Caption will be added to all photos.'))\n    description = forms.CharField(label=_('Description'),\n                                  required=False,\n                                  help_text=_('A description of this Gallery. Only required for new galleries.'))\n    is_public = forms.BooleanField(label=_('Is public'),\n                                   initial=True,\n                                   required=False,\n                                   help_text=_('Uncheck this to make the uploaded '\n                                               'gallery and included photographs private.'))\n\n    def clean_zip_file(self):\n        \"\"\"Open the zip file a first time, to check that it is a valid zip archive.\n        We'll open it again in a moment, so we have some duplication, but let's focus\n        on keeping the code easier to read!\n        \"\"\"\n        zip_file = self.cleaned_data['zip_file']\n        try:\n            zip = zipfile.ZipFile(zip_file)\n        except BadZipFile as e:\n            raise forms.ValidationError(str(e))\n        bad_file = zip.testzip()\n        if bad_file:\n            zip.close()\n            raise forms.ValidationError('\"%s\" in the .zip archive is corrupt.' % bad_file)\n        zip.close()  # Close file in all cases.\n        return zip_file\n\n    def clean_title(self):\n        title = self.cleaned_data['title']\n        if title and Gallery.objects.filter(title=title).exists():\n            raise forms.ValidationError(_('A gallery with that title already exists.'))\n        return title\n\n    def clean(self):\n        cleaned_data = super().clean()\n        if not self['title'].errors:\n            # If there's already an error in the title, no need to add another\n            # error related to the same field.\n            if not cleaned_data.get('title', None) and not cleaned_data['gallery']:\n                raise forms.ValidationError(\n                    _('Select an existing gallery, or enter a title for a new gallery.'))\n        return cleaned_data\n\n    def save(self, request=None, zip_file=None):\n        if not zip_file:\n            zip_file = self.cleaned_data['zip_file']\n\n        zip = zipfile.ZipFile(zip_file)\n        photo_defaults = PhotoDefaults(\n            title=self.cleaned_data[\"title\"], caption=self.cleaned_data[\"caption\"],\n            is_public=self.cleaned_data[\"is_public\"])\n        current_site = Site.objects.get(id=settings.SITE_ID)\n\n        gallery = self._reuse_or_create_gallery_in_site(current_site)\n\n        upload_messages = upload_photos_to_site(current_site, zip, gallery, photo_defaults)\n\n        if request:\n            for upload_message in upload_messages:\n                messages.add_message(request, upload_message.severity, upload_message.content, fail_silently=True)\n\n    def _reuse_or_create_gallery_in_site(self, current_site):\n        if self.cleaned_data['gallery']:\n            logger.debug('Using pre-existing gallery.')\n            gallery = self.cleaned_data['gallery']\n        else:\n            logger.debug(\n                force_str('Creating new gallery \"{0}\".').format(self.cleaned_data['title']))\n            gallery = create_gallery_in_site(current_site,\n                                             title=self.cleaned_data['title'],\n                                             description=self.cleaned_data['description'],\n                                             is_public=self.cleaned_data['is_public'])\n\n        return gallery\n\n\ndef create_gallery_in_site(site: Site, title: str, description: str = \"\", is_public: bool = False) -> Gallery:\n    gallery = Gallery.objects.create(title=title,\n                                     slug=slugify(title),\n                                     description=description,\n                                     is_public=is_public)\n    gallery.sites.add(site)\n    return gallery\n\n\ndef upload_photos_to_site(site: Site, zip: zipfile.ZipFile, gallery: Gallery, photo_defaults: PhotoDefaults)\\\n        -> List[UploadMessage]:\n    upload_messages = []\n    count = 1\n\n    for filename in sorted(zip.namelist()):\n\n        logger.debug(f'Reading file \"{filename}\".')\n\n        if filename.startswith('__') or filename.startswith('.'):\n            logger.debug(f'Ignoring file \"{filename}\".')\n            continue\n\n        if os.path.dirname(filename):\n            logger.warning('Ignoring file \"{}\" as it is in a subfolder; all images should be in the top '\n                           'folder of the zip.'.format(filename))\n            upload_messages.append(UploadMessage.warning(\n                _('Ignoring file \"{filename}\" as it is in a subfolder; all images should be in the top folder of the '\n                  'zip.').format(filename=filename)))\n            continue\n\n        data = zip.read(filename)\n\n        if not len(data):\n            logger.debug(f'File \"{filename}\" is empty.')\n            continue\n\n        photo_title_root = photo_defaults.title if photo_defaults.title else gallery.title\n\n        # A photo might already exist with the same slug. So it's somewhat inefficient,\n        # but we loop until we find a slug that's available.\n        while True:\n            photo_title = ' '.join([photo_title_root, str(count)])\n            slug = slugify(photo_title)\n            if Photo.objects.filter(slug=slug).exists():\n                count += 1\n                continue\n            break\n\n        photo = Photo(title=photo_title,\n                      slug=slug,\n                      caption=photo_defaults.caption,\n                      is_public=photo_defaults.is_public)\n\n        # Basic check that we have a valid image.\n        try:\n            file = BytesIO(data)\n            opened = Image.open(file)\n            opened.verify()\n        except Exception:\n            # Pillow doesn't recognize it as an image.\n            # If a \"bad\" file is found we just skip it.\n            # But we do flag this both in the logs and to the user.\n            logger.error('Could not process file \"{}\" in the .zip archive.'.format(\n                filename))\n            upload_messages.append(UploadMessage.warning(\n                _('Could not process file \"{0}\" in the .zip archive.').format(filename)))\n            continue\n\n        contentfile = ContentFile(data)\n        photo.image.save(filename, contentfile)\n        photo.save()\n        photo.sites.add(site)\n        gallery.photos.add(photo)\n        count += 1\n\n    zip.close()\n\n    upload_messages.append(UploadMessage.success(\n        _('The photos have been added to gallery \"{0}\".').format(gallery.title)))\n\n    return upload_messages\n"
  },
  {
    "path": "photologue/locale/ca/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# cubells <info@obertix.net>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2018-04-21 15:47+0000\\n\"\n\"Last-Translator: cubells <info@obertix.net>\\n\"\n\"Language-Team: Catalan (http://www.transifex.com/richardbarran/django-photologue/language/ca/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ca\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"La següent fotografia no pertany al mateix lloc o llocs que la galeria, així que no es mostrarà mai: %(photo_list)s.\"\nmsgstr[1] \"Les següents fotografies no pertanyen al mateix lloc o llocs que la galeria, així que no es mostraran mai: %(photo_list)s.\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"S'ha afegit la galeria correctament a %(site)s\"\nmsgstr[1] \"S'han afegit les galeries correctament a %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Afegeix les galeries seleccionades al lloc web actual\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"S'ha suprimit correctament la galeria de %(site)s\"\nmsgstr[1] \"S'han suprimit correctament les galeries de %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Suprimeix les galeries seleccionades del lloc web actual\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Totes les fotos de la galeria %(galleries)s s'han afegit amb èxit a %(site)s\"\nmsgstr[1] \"Totes les fotos de les galeries %(galleries)s s'han afegit amb èxit a %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Afegeix totes les fotos de les galeries seleccionades al lloc web actual\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Totes les fotos de la galeria %(galleries)s s'han suprimit amb èxit de %(site)s\"\nmsgstr[1] \"Totes les fotos de les galeries %(galleries)s s'han suprimit amb èxit de %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Suprimeix totes les fotos de les galeries seleccionades del lloc web actual\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"La foto s'ha afegit amb èxit a %(site)s\"\nmsgstr[1] \"Les fotos seleccionades s'ha afegit amb èxit a %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Afegeix les fotografies seleccionades al lloc web actual\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"La fotografia s'ha suprimit amb èxit de %(site)s\"\nmsgstr[1] \"Les fotografies seleccionades s'han suprimit amb èxit de %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Suprimeix les fotos seleccionades del lloc web actual\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Penja un fitxer zip de fotografies\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Títol\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"A totes les fotografies penjades se li posarà un títol compost pel títol + un número seqüencial.<br>Aquest camp és necessari si es crea una galeria nova, però és opcional en afegir a una galeria existent - si no es posa, el títols de les fotografies es crearan del nom de la galeria existent.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galeria\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Selecciona una galeria a la qual afegir aquestes imatges. Deixa en blanc per crear una galeria nova amb el títol subministrat.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Títol\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"El títol s'afegirà a totes les fotografies.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Descripció\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Una descripció d'aquesta galeria. Solament és necessari per a noves galeries.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"És pública\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Desmarca per fer privades la galeria penjada i les fotografies incloses.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Una galeria amb aquest títol ja existeix.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Seleccioneu una galeria existent, o introduïu un títol per a la galeria nova.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"S'està ignorant el fitxer \\\"{filename}\\\" ja que està en una subcarpeta; totes les imatges haurien d'estar en la carpeta superior del fitxer zip.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"No s'ha pogut processar el fitxer \\\"{0}\\\" del fitxer zip.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Les fotografies s'han afegit a la galeria \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Molt baixa\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Baixa\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Mitja-baix\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Mitjana\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Mitja-alta\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Molt alta\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Principi\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Dreta\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"A baix\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Esquerra\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Centrada (predeterminat)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Gira d'esquerra a dreta\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Gira de dalt a baix\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rota 90 graus en sentit contrari al de les agulles del rellotge\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rota 90 graus en el sentit de les agulles del rellotge\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rota 180 graus\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Mosaic\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Escala\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Encadeneu múltiple filtres fent servir el següent patró \\\"FILTRE_UN->FILTRE_DOS->FILTRE_TRES\\\". Els filtres d'imatge s'aplicaran en ordre. Estan disponibles els filtres següents: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"data de publicació\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"títol\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"url del títol\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"L'url del títol és un URL sense espais per a un objecte.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"descripció\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"és pública\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Les galeries públiques es mostraran en les vistes predeterminades.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"llocs web\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galeria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galeries\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"compta\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"imatge\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"data en la què es va fer\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"La data en què la imatge es va fer; s'obté de la informació EXIF de la imatge.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"vistes\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"escapça des de\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efecte\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"No s'ha definit una mida de fotografia de la miniatura d'administració.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniatura\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"url\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"títol\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"data en què s'ha afegit\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Les fotografies públiques es mostraran en les vistes predeterminades.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nom\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rota o gira\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"color\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Un factor de 0.0 proporciona una imatge en blanc i negre, un factor d'1.0 proporciona la imatge original.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"brillantor\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un factor de 0.0 proporciona una imatge en negre, un factor d'1.0 proporciona la imatge original.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Un factor de 0.0 proporciona una imatge en gris sòlid, un factor d'1.0 proporciona la imatge original.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"nitidesa\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un factor de 0.0 proporciona una imatge borrosa, un factor d'1.0 proporciona la imatge original.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtres\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"mida\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"L'alçada del reflex com un percentatge de la imatge original. Un factor de 0.0 no afegeix reflex, un factor d'1.0 afegeix un reflex igual a l'alçada de la imatge original.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"reforçament\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"L'opacitat inicial del gradient de reflex.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"El color de fons del gradient de reflex. Definiu això per coincidir amb el color de fons de la pàgina web.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efecte\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efectes\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"estil\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacitat\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"L'opacitat de la superposició.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"marca d'aigua\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"marques d'aigua\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"El nom de la mida de la foto solament deu contenir lletres, nombres i guions baixos. Exemples: \\\"miniatura\\\", \\\"pantalla\\\", \\\"petita\\\", \\\"giny_de_la_pagina_principal\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"amplada\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Si l'amplada està definida a \\\"0\\\", la imatge s'escalarà a l'altura proporcionada.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"alçada\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Si l'alçada està definida a \\\"0\\\", la imatge s'escalarà a l'amplada proporcionada\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"qualitat\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"Qualitat de la imatge JPEG.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"millorem les imatges?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Si la imatge s'escalarà el que calgui per ajustar-se a les dimensions proporcionades. Les mides escapçades s'escalaran tenint em compte aquest paràmetre. \"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"escapcem per ajustar?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Si la imatge seleccionada s'escalarà i escapçarà per ajustar-se a les dimensions proporcionades.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pre-cache?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Si se selecciona, la mida d'aquesta fotografia es posarà en la memòria cau conforme s'afegeixen.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"incrementem el comptador de vistes?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Si se selecciona, el comptador de vistes de la imatge s'incrementarà quan la fotografia es mostre.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"imatge de la marca d'aigua\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"mida de la foto\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"mides de les fotos\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Solament es poden escapçar imatges si l'amplada i l'altura estan definides.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Penja un fitxer zip\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Inici\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Penja\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>En aquesta pàgina podeu penjar tantes fotos com tingueu, d'una sola vegada\\n\\t\\tposeu-les totes en un fitxer zip. Les fotos es podran o bé:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Afegir a una galeria existent.</li>\\n\\t\\t\\t<li>O bé, es crearà una galeria nova amb el títol que poseu.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Corregiu l'error següent.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Corregiu els error següents.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Darreres galeries\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtra pe any\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"No s'han trobat galeries\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galeries de %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"No s'han trobat galeries.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Mostra totes les galeries per mesos\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galeries del mes de %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtra per dia\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Mostra totes les galeries per any\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galeries de %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtra per mes\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Mostra totes les galeries\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Publicada\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Totes les galeries\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Anterior\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    pàgina %(page_number)s de %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Següent\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Les darreres fotos\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"No s'han trobat fotos\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Fotos de%(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Mostra totes les fotos per mesos\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Fotos del mes de %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Mostra totes les fotos per any\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Fotos de %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Mostra totes les fotos\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Aquesta foto es troba en les següents galeries\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Totes les fotos\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/cs/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Jakub Dorňák <jakub.dornak@misli.cz>, 2013\n# Jakub Dorňák <jakub.dornak@misli.cz>, 2013\n# Jakub Dorňák <jakub.dornak@misli.cz>, 2013\n# Viktor Matys <v.matys@seznam.cz>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-23 19:18+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Czech (http://www.transifex.com/richardbarran/django-photologue/language/cs/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: cs\\n\"\n\"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Vyberte fotogalerii, do které se mají tyto obrázky přidat. Ponechte prázdné pro vytvoření nové fotogalerie s daným názvem.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Titulek bude přidán ke všem fotografiím.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Popis\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Je veřejné\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Zrušte zaškrtnutí, pokud chcete, aby byla nově nahraná fotogalerie neveřejná.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Již existuje galerie s tímto titulkem.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Vyberte existující galerii, nebo zadejte titulek pro novou galerii.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Nešlo zpracovat soubor \\\"{0}\\\" v zip archivu.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Fotografie byly přidány do galerie  \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Velmi nízká\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Nízká\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Nížší střední\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Střední\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Vyšší střední\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Vysoká\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Velmi vysoká\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Nahoře\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Vpravo\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Dole\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Vlevo\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Uprostřed (výchozí)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Obrátit vodorovně\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Obrátit svisle\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Otočit o 90 stupňů vlevo\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Otočit o 90 stupňů vpravo\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Otočit o 180 stupňů\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Dláždit\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Přizpůsobit velikost\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Zřetězte více filtrů použitím vzoru „PRVNI_FILTR->DRUHY_FILTR->TRETI_FILTR“.\\nFiltry budou aplikovány v daném pořadí. K dispozici jsou tyto filtry: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"datum zveřejnění\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"název\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"identifikátor\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Unikátní název, který bude použit v URL adrese (bez diakritiky).\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"popis\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"veřejné\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Veřejné fotogalerie budou zobrazeny ve výchozích pohledech.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotografie\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"fotogalerie\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"fotogalerie\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"počet\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"obrázek\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"datum pořízení\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"počet zobrazení\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"oříznout\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Velikost „admin_thumbnail“ není definovaná.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Náhled\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"identifikátor\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"titulek\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"datum přidání\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Veřejné fotografie budou zobrazeny ve výchozích pohledech.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"fotografie\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"název\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"obrátit nebo otočit\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"barva\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Hodnota 0,0 udělá černobílý obrázek, hodnota 1,0 zachová původní barvy.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"jas\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Hodnota 0,0 udělá černý obrázek, hodnota 1,0 zachová původní jas.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Hodnota 0,0 udělá šedý obrázek, hodnota 1,0 zachová původní kontrast.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"ostrost\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Hodnota 0,0 udělá rozmazaný obrázek, hodnota 1,0 zachová původní ostrost.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtry\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"velikost\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Výška odrazu jako podíl výšky původního obrázku. Hodnota 0.0 nepřidá žádný odraz, hodnota 1.0 přidá odraz stejně vysoký, jako původní obrázek.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"intenzita\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Počáteční intenzita postupně slábnoucího odrazu.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Barva pozadí odrazu. Nastavte na barvu pozadí stránky.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efekt\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efekty\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"styl\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"krytí\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Neprůhlednost překrývajícího obrázku.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"vodotisk\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"vodotisky\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Název velikosti by měl obsahovat pouze písmena, číslice a podtržítka. Například: „nahled“, „male_zobrazeni“, „velke_zobrazeni“.\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"šířka\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Pokud je šířka nastavena na 0, velikost obrázku bude upravena podle zadané výšky.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"výška\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Pokud je výška nastavena na 0, velikost obrázku bude upravena podle zadané šířky.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kvalita\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"Kvalita JPEG.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"zvětšit obrázky?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Pokud je vybráno, obrázek bude podle potřeby zvětšen, aby odpovídal požadovaným rozměrům. Pokud má být obrázek oříznutý, bude podle potřeby zvětšen bez ohledu na toto nastavení.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"oříznout?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Pokud je vybráno, obrázek bude oříznutý, aby odpovídal požadovaným proporcím.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"vytvářet předem?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Pokud je vybráno, bude pro každý obrázek vytvořena varianta v této velikosti předem, místo až v době zobrazení.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"navyšovat počet zobrazení?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Pokud je vybráno, bude hodnota „view_count“ obrázku navyšována s každým zobrazením obrázku této velikosti.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"obrázek s vodotiskem\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"velikost obrázku\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"velikosti obrázků\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Ořezávat fotografie je možné, pouze pokud je zadána výška i šířka.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Domů\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Nahrát\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Prosím opravte chybu dole.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Prosím opravte chyby dole.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Nejnovější fotogalerie\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtrovat dle roku\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Žádné fotogalerie nebyly nalezeny\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Žádné fotogalerie nebyly nalezeny.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtovat dle dne\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtrovat dle měsíce\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Prohlédnout všechny fotogalerie\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Zveřejněné\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Všechny fotogalerie\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"předchozí\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"další\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Tato fotografie se nachází v následujících fotogaleriích\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/da/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Michael Lind Mortensen <illio@cs.au.dk>, 2009\n# Rasmus Klett <Rasmus.klett@gmail.com>, 2015\n# Rasmus Klett <Rasmus.klett@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:46+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Danish (http://www.transifex.com/richardbarran/django-photologue/language/da/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: da\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Galleriet er blevet tilføjet til %(site)s\"\nmsgstr[1] \"Gallerierne er blevet tilføjet til %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Tilføj valgte gallerier til den nuværende webside\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Det valgte galleri er blevet fjernet fra %(site)s\"\nmsgstr[1] \"De valgte gallerier er blevet fjernet fra %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Fjern valgte gallerier fra den nuværende webside\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Alle billeder i galleriet %(galleries)s er blevet tilføjet til %(site)s\"\nmsgstr[1] \"Alle billeder i gallerierne %(galleries)s er blevet tilføjet til %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Tilføj alle billeder fra de valgte gallerier til den nuværende webside\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Alle billeder i galleriet %(galleries)s er blevet slettet fra %(site)s\"\nmsgstr[1] \"Alle billeder i gallerierne %(galleries)s er blevet slettet fra %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Fjern alle billeder i valgte gallerier fra den nuværende webside\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Billedet er blevet tilføjet til %(site)s\"\nmsgstr[1] \"De valgte billeder er blevet tilføjet til %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Tilføj valgte billeder til den nuværende webside\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Billedet er blevet fjernet fra %(site)s\"\nmsgstr[1] \"De valgte billeder er blevet fjernet fra %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Fjern valgte billeder fra den nuværende webside\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Upload et zip-arkiv af billeder\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galleri\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Vælg et galleri at tilføje disse billeder til. Lad feltet være tomt for at oprette et nyt galleri med den valgte title\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Billedtekst\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Billedeteksten vil blive tilføjet til alle billeder.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Er offentlig\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Fjern afkrydsningen her for at gøre det uploadede galleri og alle inkluderede billeder private.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Et galleri med den titel eksisterer allerede\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Vælg et eksisterende galleri, eller skriv en titel til et nyt galleri\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Ignorerer fil \\\"{filename}\\\", da det er en undermappe; alle billeder bør være i topmappen af zip-filen\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Kunne ikke behandle fil \\\"{0}\\\" i zip-arkivet.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Billederne er blevet tilføjet til galleri \\\"{0}\\\"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Meget Lav\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Lav\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Medium Lav\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Medium\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Medium Høj\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Høj\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Meget Høj\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Top\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Højre\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Bund\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Venstre\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Center (Standard)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Flip venstre til højre\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Flip top til bund\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Roter 90 grader mod uret\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Roter 90 grader med uret\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Roter 180 grader\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Tile\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Skala\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Sæt adskillige filtre i kæde vha. følgende mønster \\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Billedefiltre vil blive påført i den anførte rækkefølge. De følgende filtre er tilgænglige: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"dato offentliggjort\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"titel\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"titel slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"En \\\"slug\\\" er en unik URL-venlig titel for et objekt\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"beskrivelse\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"er offentlig\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Offentlige gallerier vil blive vist i standard views.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"billeder\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"websider\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galleri\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"gallerier\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"tæller\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"billede\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"dato taget\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"set tæller\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"beskær fra\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"En \\\"admin_thumbnail\\\" billedestørrelse er ikke blevet defineret.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Thumbnail\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"billedetekst\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"dato tilføjet\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Offentlige billeder vil blive vist i standard views.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"billede\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"navn\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"roter eller flip\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"farve\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"En faktor af 0.0 giver et sort og hvidt billede, en faktor af 1.0 giver det originale billede.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"lysstyrke\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"En faktor af 0.0 giver et sort billede, en faktor af 1.0 giver det originale billede.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"En faktor af 0.0 giver et solidt gråt billede, en faktor af 1.0 giver det originale billede.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"skarphed\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"En faktor af 0.0 giver et sløret billede, en faktor af 1.0 giver det originale billede.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtre\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"størrelse\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Højden af reflektionen som en procentdel af det originale billede. En faktor af 0.0 tilføjer ingen reflektion, en faktor af 1.0 tilføjer en reflektion lig med højden af det oprindelige billede.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"styrke\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Den initielle uigennemsigtighed af den reflektive gradient.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Baggrundsfarven af den reflektive gradient. Sæt dette til at passe med baggrundsfarven af din side.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"billedeeffekt\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"billedeeffekter\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"stil\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"uigennemsigtighed\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Uigennemsigtigheden af overlaget.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"vandmærke\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"vandmærker\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Billede størrelse navn må kun indeholde bogstaver, numre og underscores. Eksempler: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"bredde\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Hvis bredden er sat til \\\"0\\\" vil billede blive skaleret til den givne højde.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"højde\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Hvis højden er sat til \\\"0\\\" vil billede blive skaleret til den givne bredde.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kvalitet\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG billedekvalitet\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"opskaler billeder?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Hvis valgt, vil billedet blive skaleret op såfremt det er nødvendigt for at passe til de givne dimensioner. Beskårede størrelser vil blive opskaleret uanset denne indstilling.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"beskær til at passe?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Hvis valgt, vil billedet blive skaleret og beskåret for at passe til de givne dimensioner.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pre-cache?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Hvis valgt, vil dette billedes størrelse blive pre-cached som billeder bliver tilføjet.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"inkrementer set tæller?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Hvis valgt, vil billedets \\\"view_count\\\" blive inkrementeret når billedets størrelse vises.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"vandmærkebillede\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"billedestørrelse\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"billedestørrelser\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Kan kun beskære billeder hvis både bedde og højde er specificeret.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Upload et zip-arkiv\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Hjem\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Upload\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>På denne side can du uploade flere billeder på én gang, så længe du har\\n\\t\\tsamlet dem i et zip-arkiv. Billederne kan enten blive:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Tilføjet til et eksisterende galleri.<li>\\n\\t\\t\\t<li>Ellers bliver et nyt galleri oprettet med den valgte titel.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Ret venligst fejlen nedenfor\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Ret venligst fejlene nedenfor\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Seneste billedgallerier\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtrer efter år\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Ingen gallerier fundet\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Gallerier for %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Ingen gallerier fundet\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Se alle gallerier i måned\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Gallerier i %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtrer efter dag\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Se alle gallerier i året\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Gallerier i %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtrer efter måned\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Se alle gallerier\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Offentliggjort\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Alle gallerier\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Forrige\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t side %(page_number)s af %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Næste\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Seneste billeder\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Ingen billeder fundet\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Billeder for %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Se alle billeder i måned\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Billeder i %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Se alle billeder i år\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Billeder i %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Se alle billeder\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Dette billede findes i følgende gallerier\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Alle billeder\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/de/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n# Jannis, 2012\n# Jannis , 2012\n# Jannis Vajen, 2012-2013\n# Jannis Vajen, 2012\n# Jannis Vajen, 2012,2015\n# Jannis Vajen, 2015-2016\n# Martin Darmüntzel <martin@trivialanalog.de>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:47+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: German (http://www.transifex.com/richardbarran/django-photologue/language/de/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: de\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"Dieses Foto gehört nicht zur selben Seite wie seine Galerie und wird daher nie angezeigt werden: %(photo_list)s.\"\nmsgstr[1] \"Diese Fotos gehören nicht zur selben Seite wie ihre Galerie und werden daher nie angezeigt werden: %(photo_list)s.\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Die Galerie wurden erfolgreich zu %(site)s hinzugefügt.\"\nmsgstr[1] \"Die Galerien wurden erfolgreich zu %(site)s hinzugefügt.\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Ausgewählte Galerien zur aktuellen Site hinzufügen\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Die ausgewählte Galerie wurde erfolgreich von %(site)s entfernt.\"\nmsgstr[1] \"Die ausgewählten Galerien wurden erfolgreich von %(site)s entfernt.\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Entferne ausgewählte Galerien von der aktuellen Site.\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Alle Fotos der Galerie %(galleries)s wurden zu %(site)s hinzugefügt.\"\nmsgstr[1] \"Alle Fotos der Galerien %(galleries)s wurden zu %(site)s hinzugefügt.\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Alle Fotos der ausgewählten Galerien zur aktuellen Site hinzufügen.\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Alle Fotos der Galerie %(galleries)s wurden erfolgreich von %(site)s entfernt.\"\nmsgstr[1] \"Alle Fotos der Galerien %(galleries)s wurden erfolgreich von %(site)s entfernt.\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Entferne alle Fotos der ausgewählten Gallerien von der aktuellen Seite\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Das Foto wurde erfolgreich zu %(site)s hinzugefügt.\"\nmsgstr[1] \"Die gewählten Fotos wurden erfolgreich zu %(site)s hinzugefügt.\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Füge ausgewählte Fotos zur aktuellen Seite hinzu\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Das Foto wurde erfolgreich von %(site)s entfernt.\"\nmsgstr[1] \"Die gewählten Fotos wurden erfolgreich von %(site)s entfernt\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Entferne ausgewählte Fotos von der aktuellen Seite\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Lade ein Zip-Archiv an Fotos hoch\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Für alle hochgeladenen Fotos wird ein Titel aus diesem Titel und einer fortlaufenden Nummer generiert.<br>Dieses Feld muss nur ausgefüllt werden, wenn eine neue Galerie angelegt wird, andernfalls ist es optional – wenn keine Angabe getätigt wird der Name der Galerie als Titel für die Einzelbilder herangezogen.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galerie\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Wähle eine Galerie aus, zu der diese Bilder hinzugefügt werden sollen. Lasse dieses Feld leer, um eine neue Galerie mit dem angegeben Titel zu erzeugen.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Bildunterschrift\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Die Bildunterschrift wird allen Fotos hinzugefügt.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Eine Beschreibung dieser Galerie. Nur erforderlich bei neuen Galerien.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Ist öffentlich\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Schalte dies aus, um die hochgeladene Galerie und alle enthaltenen Bilder privat zu machen.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Es existiert bereits eine Gallerie mit diesem Titel.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Wähle eine existierende Galerie aus oder gib einen Titel für eine neue Galerie ein.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Ignoriere die Datei \\\"{filename}\\\", da sie sich in einem Unterordner befindet; alle Bilder sollten sich im Wurzelverzeichnis der Zip-Datei befinden.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Konnte die Datei \\\"{0}\\\" aus dem Zip-Archiv nicht verarbeiten.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Die Fotos wurden zur Galerie \\\"{0}\\\" hinzugefügt.\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Sehr niedrig\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Niedrig\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Mittel-niedrig\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Mittel\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Mittel-hoch\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Hoch\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Sehr hoch\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Oben\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Rechts\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Unten\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Links\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Mitte (Standard)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Horizontal spiegeln\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Vertikal spiegeln\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Um 90° nach links drehen\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Um 90° nach rechts drehen\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Um 180° drehen\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Kacheln\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Skalieren\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Verkette mehrere Filter in der Art \\\"FILTER_EINS->FILTER_ZWEI->FILTER_DREI\\\". Bildfilter werden nach der Reihe angewendet. Folgende Filter sind verfügbar: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"Veröffentlichungsdatum\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"Titel\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"Kurztitel\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Ein Kurztitel (\\\"slug\\\") ist ein eindeutiger, URL-geeigneter Titel für ein Objekt.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"Beschreibung\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"ist öffentlich\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Öffentliche Galerien werden in den Standard-Views angezeigt.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"Fotos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"Seiten\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"Galerie\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"Galerien\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"Anzahl\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"Bild\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"Aufnahmedatum\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"Datum, an dem das Foto geschossen wurde; ausgelesen aus den EXIF-Daten.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"Anzahl an Aufrufen\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"Beschneiden von\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"Effekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Es ist keine Fotogröße \\\"admin_thumbnail\\\" definiert.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Vorschaubild\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"Kurztitel\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"Bildunterschrift\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"Datum des Eintrags\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Öffentliche Fotos werden in den Standard-Views angezeigt.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"Foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"Name\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"drehen oder spiegeln\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"Farbe\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Ein Faktor von 0.0 erzeugt ein Schwarzweißbild, ein Faktor von 1.0 erhält das Originalbild.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"Helligkeit\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Ein Faktor von 0.0 erzeugt ein schwarzes Bild, ein Faktor von 1.0 erhält das Originalbild.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"Kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Ein Faktor von 0.0 erzeugt ein opak graues Bild, ein Faktor von 1.0 erhält das Originalbild.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"Schärfe\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Ein Faktor von 0.0 erzeugt ein sehr unscharfes Bild, ein Faktor von 1.0 erhält das Originalbild.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"Filter\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"Größe\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Die Höhe der Reflexion als Prozentwert des Originalbildes. Ein Faktor von 0.0 erzeugt keine Reflexion, ein Faktor von 1.0 ergibt eine Reflexion von der Höhe des Originalbildes.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"Stärke\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Die Anfangs-Deckung des Reflexions-Verlaufs.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Die Hintergrundfarbe des Reflexions-Verlaufs. Setze dies auf die Hintergrundfarbe deiner Seite.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"Foto-Effekt\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"Foto-Effekte\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"Stil\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"Deckung\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Deckung (Opazität) der Überlagerung\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"Wasserzeichen\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"Wasserzeichen\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Der Name der Fotogröße darf nur Buchstaben, Zahlen und Unterstriche enthalten. Beispiele: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"Breite\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Wenn die Breite auf \\\"0\\\" gesetzt ist, wird das Bild proportional auf die angebene Höhe skaliert.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"Höhe\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Wenn die Höhe auf \\\"0\\\" gesetzt ist, wird das Bild proportional auf die angebene Breite skaliert.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"Qualität\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG-Bildqualität\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"Bilder hochskalieren?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Soll das Bild hochskaliert werden, um das angegebene Format zu erreichen? Beschnittene Größen werden unabhängig von dieser Einstellung bei Bedarf hochskaliert.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"Zuschneiden?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Soll das Bild auf das angegebene Format skaliert und beschnitten werden?\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"Vorausspeichern?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Soll diese Bildgröße im Voraus gespeichert (pre-cached) werden, wenn Fotos hinzugefügt werden?\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"Bildzähler?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Soll der Ansichts-Zähler (view-count) hochgezählt werden, wenn ein Foto dieser Größe angezeigt wird?\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"Wasserzeichen-Bild\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"Foto-Größe\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"Foto-Größen\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Fotos können nur zugeschnitten werden, wenn Breite und Höhe angegeben sind.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Lade ein Zip-Archiv hoch\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Start\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Hochladen\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n<p>Auf dieser Seite können mehrere Fotos auf einmal hochgeladen werden, sofern sie alle in einem Zip-Archiv vorliegen. Die Fotos können entweder:</p>\\n<ul>\\n<li>einer existierenden Galerie zugeordnet werden</li>\\n<li>oder eine neue Galerie wird durch Angabe eines Titels angelegt</li>\\n</ul>\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Bitte korrigiere den unten aufgeführten Fehler.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Bitte korrigiere die unten aufgeführten Fehler.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Aktuelle Fotogalerien\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtere nach Jahr\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Es wurden keine Galerien gefunden.\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Gallerien vom %(show_day)s.\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Es wurden keine Galerien gefunden.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Zeige alle Gallerien vom Monat\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Gallerien von %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtere nach Tag\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Zeige alle Gallerien vom Jahr\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Gallerien von %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtere nach Monat\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Zeige alle Galerien.\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Veröffentlicht\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Alle Galerien\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Vorherige\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\nSeite %(page_number)s von %(total_pages)s\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Nächste\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Aktuelle Fotos\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Keine Fotos gefunden\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Fotos vom %(show_day)s.\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Zeige alle Fotos vom Monat\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Fotos von %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Zeige alle Fotos vom Jahr\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Fotos von %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Zeige alle Fotos\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Dieses Foto befindet sich in folgenden Galerien\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Alle Fotos\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/en/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2015-12-23 14:50+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: English (http://www.transifex.com/richardbarran/django-photologue/language/en/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: en\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/en_US/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2013-11-20 11:06+0000\\n\"\n\"Last-Translator: richardbarran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: English (United States) (http://www.transifex.com/projects/p/\"\n\"django-photologue/language/en_US/)\\n\"\n\"Language: en_US\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#, fuzzy\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"title\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#, fuzzy\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"gallery\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\n\n#: forms.py:40\n#, fuzzy\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"caption\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Caption will be added to all photos.\"\n\n#: forms.py:43\n#, fuzzy\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"description\"\n\n#: forms.py:45\n#, fuzzy\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"A description of this Gallery.\"\n\n#: forms.py:46\n#, fuzzy\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"is public\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#, fuzzy\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Select a .zip file of images to upload into a new Gallery.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Very Low\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Low\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Medium-Low\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Medium\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Medium-High\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"High\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Very High\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Top\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Right\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Bottom\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Left\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Center (Default)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Flip left to right\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Flip top to bottom\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotate 90 degrees counter-clockwise\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotate 90 degrees clockwise\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotate 180 degrees\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Tile\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Scale\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \\\"FILTER_ONE->FILTER_TWO-\"\n\">FILTER_THREE\\\". Image filters will be applied in order. The following \"\n\"filters are available: %s.\"\nmsgstr \"\"\n\"Chain multiple filters using the following pattern \\\"FILTER_ONE->FILTER_TWO-\"\n\">FILTER_THREE\\\". Image filters will be applied in order. The following \"\n\"filters are available: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"date published\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"title\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"title slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"description\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"is public\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Public galleries will be displayed in the default views.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"photos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"gallery\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galleries\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"count\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"image\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"date taken\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"view count\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"crop from\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effect\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Thumbnail\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"caption\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"date added\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Public photographs will be displayed in the default views.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"photo\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"name\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotate or flip\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"color\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"brightness\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original \"\n\"image.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"sharpness\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filters\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"size\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"strength\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"The initial opacity of the reflection gradient.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"photo effect\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"photo effects\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"style\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacity\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"The opacity of the overlay.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"watermark\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"watermarks\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"width\"\n\n#: models.py:785\nmsgid \"\"\n\"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"\"\n\"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"height\"\n\n#: models.py:789\nmsgid \"\"\n\"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"\"\n\"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"quality\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG image quality.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"upscale images?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"crop to fit?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pre-cache?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"If selected this photo size will be pre-cached as photos are added.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"increment view count?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"watermark image\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"photo size\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"photo sizes\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Can only crop photos if both width and height dimensions are set.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\n#, fuzzy\nmsgid \"Latest photo galleries\"\nmsgstr \"Latest Photo Galleries\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"No galleries were found\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\n#, fuzzy\nmsgid \"No galleries were found.\"\nmsgstr \"No galleries were found\"\n\n#: templates/photologue/gallery_archive_day.html:22\n#, fuzzy\nmsgid \"View all galleries for month\"\nmsgstr \"View all galleries\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\n#, fuzzy\nmsgid \"View all galleries for year\"\nmsgstr \"View all galleries\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"View all galleries\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Published\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\n#, fuzzy\nmsgid \"All galleries\"\nmsgstr \"All Galleries\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Previous\"\n\n#: templates/photologue/includes/paginator.html:11\n#, fuzzy, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Next\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\n#, fuzzy\nmsgid \"Latest photos\"\nmsgstr \"Latest Photo Galleries\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\n#, fuzzy\nmsgid \"No photos were found\"\nmsgstr \"No galleries were found\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\n#, fuzzy\nmsgid \"View all photos\"\nmsgstr \"View all galleries\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"This photo is found in the following galleries\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\n#, fuzzy\nmsgid \"All photos\"\nmsgstr \"photos\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery \"\n#~ \"title + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/es_ES/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# dmalisani <dmalisani@gmail.com>, 2014\n# dmalisani <dmalisani@gmail.com>, 2014\n# Rafa Muñoz Cárdenas <bymenda@gmail.com>, 2009\n# salvador ortiz <chava.door@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:46+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Spanish (Spain) (http://www.transifex.com/richardbarran/django-photologue/language/es_ES/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: es_ES\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"La galería ha sido agregada exitosamente a %(site)s\"\nmsgstr[1] \"Las galerías han sido agregadas exitosamente a %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Agregar galerías al sitio\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"La galería ha sido eliminada correctamente de %(site)s\"\nmsgstr[1] \"Las galerías seleccionadas han sido eliminadas correctamente de %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Eliminar las galerías seleccionadas del sitio actual\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Todas las fotos en la galería %(galleries)s han sido correctamente agregadas a %(site)s\"\nmsgstr[1] \"Todas las fotos en las galerías %(galleries)s han sido correctamente agregadas a %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Agregar todas las fotos de las galerías seleccionadas al sitio actual\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Todas las fotos en la galería %(galleries)s han sido correctamente eliminadas de %(site)s\"\nmsgstr[1] \"Todas las fotos en las galerías %(galleries)s han sido correctamente eliminadas de %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Eliminar todas las fotos seleccionadas en las galerías del sito actual\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"La foto a sido agregada correctamente a %(site)s\"\nmsgstr[1] \"Las fotos seleccionadas han sido agregadas correctamente a %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Agregar las fotos seleccionadas al sitio actual\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"La foto ha sido eliminada correctamente de %(site)s\"\nmsgstr[1] \"Las fotos han sido correctamente eliminadas de %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Eliminar la foto seleccionada del sitio actual\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Subir un archivo ZIP de fotos\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titulo\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galería\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Seleccione una galería para agregarle estas imágenes. Déjelo vacío para crear una nueva galería a partir de este título.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Pie de foto\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"El pie de foto se añadirá a todas las fotos.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Una descripción para esta galería. Solo es requerido para nuevas galerías.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Es público\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Desactive esto para hacer que la galería subida y fotos incluidas sean privadas.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Ya existe una galería con ese título.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Seleccione una galería existente o ingrese un nuevo nombre para la galería.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Ignorando archivos \\\"{filename}\\\" por estar en subcarpetas, todas las imágenes deben estar en la carpeta de primer nivel del zip.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"No se pudo procesar el archivo \\\"{0}\\\" en el archivo zip.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"La foto a sido agregada correctamente a \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Muy bajo\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Bajo\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Medio-bajo\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Medio\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Medio-alto\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Alto\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Muy alto\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Arriba\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Derecha\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Abajo\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Izquierda\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Centro (por defecto)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Voltear de izquerda a derecha\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Voltear de arriba a abajo\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotar 90 grados en sentido horario\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotar 90 grados en sentido antihorario\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotar 180 grados\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Mosaico\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Escalar\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Encadene múltiples filtros usando el siguiente patrón \\\"FILTRO_UNO->FILTRO_DOS->FILTRO_TRES\\\". Los filtros de imagen se aplicarán en orden. Los siguientes filtros están disponibles: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"fecha de publicación\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"título\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"título slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Un \\\"slug\\\" es un único título URL-amigable para un objeto.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"descripción\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"es público\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Las galerías públicas serán mostradas en las vistas por defecto.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"sitios\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galería\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galerías\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"contar\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"imagen\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"fecha en la que se tomó\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"La fecha de la imagen fue obtenida por información EXIF de la imagen.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"Contador de visitas\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"Recortar desde\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efecto\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"El tamaño de foto de \\\"miniatura de admin\\\" no ha sido definido.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniatura\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"pie de foto\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"fecha añadida\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Las fotos públicas serán mostradas en las vistas por defecto.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nombre\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotar o voltear\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"color\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Un factor de 0.0 proporciona una imagen blanca y negra. Un factor de 1.0 proporciona la imagen original.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"iluminación\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un factor de 0.0 proporciona una imagen negra. Un factor de 1.0 proporciona la imagen original.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contraste\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Un factor de 0.0 proporciona una imagen sólida gris. Un factor de 1.0 proporciona la imagen original.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"Resaltado\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un factor de 0.0 proporciona una imagen desenfocada, un factor de 1.0 proporciona la imagen original.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtros\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"tamaño\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"La altura de la reflexión como porcentaje de la imagen original. Un factor de 0.0 no da ninguna reflexión, un factor de 1.0 añade una reflexión igual a la altura de la imagen original.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"fortaleza\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"La opacidad inicial del gradiente de reflexión.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"El color de fondo del gradiente de reflexión. Establezca esto para hacer coincidir el color de fondo con el color de tu página.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efecto de foto\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efectos de foto\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"estilo\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacidad\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"La opacidad de la superposición\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"marca de agua\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"marcas de agua\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"El nombre del tamaño solo puede contener letras, números y subrayados. Por ejemplo:\\\"miniaturas\\\", \\\"muestra\\\", \\\"muestra_principal\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"anchura\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Si la anchura se establece a \\\"0\\\" la imagen será escalada hasta la altura proporcionada\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"altura\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Si la altura se establece a \\\"0\\\" la imagen será escalada hasta la anchura proporcionada\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"calidad\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"Calidad de imagen JPEG.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"¿Aumentar imágenes?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Si se selecciona la imagen será aumentada si es necesario para ajustarse a las dimensiones proporcionadas. Los tamaños recortados serán aumentados de acuerdo a esta opción.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"¿Recortar hasta ajustar?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Si se selecciona la imagen será escalada y recortada para ajustarse a las dimensiones proporcionadas.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"¿pre-cachear?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Si se selecciona, este tamaño de foto será pre-cacheado cuando se añadan nuevas fotos.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"¿incrementar contador de visualizaciones?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Si se selecciona el \\\"contador de visualizaciones\\\" se incrementará cuando esta foto sea visualizada.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"marca de agua\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"tamaño de foto\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"tamaños de foto\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Solo puede recortar las fotos si ancho y alto están establecidos.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Subir archivo ZIP\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Inicio\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Subir\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>En esta página puedes subir las fotos que gustes al mismo tiempo, siemprew y cuando tengas\\n\\t\\tponer todas en un archivo zip. las fotos pueden ser:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Agregadas a una galería existente.</li>\\n\\t\\t\\t<li>O, crear una nueva galería con un titulo.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Favor de corregir los errores.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Favor de corregir los errores.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Fotos de galerías mas recientes\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtrar por año\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"No se encontraron galerías\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galerías por  %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"No se encontraron galerías\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Ver todas las galerías por mes\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galerías para %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtrar por día\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Ver todas las galerías por año\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galerías por %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtrar por mes\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Ver todas las galerías\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Publicado\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Todas las Galerías\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Anterior\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t página %(page_number)s de %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Próximo\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Fotos más recientes\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"No se encontraron fotos\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Fotos por %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Ver todas las fotos por mes\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Fotos por %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Ver todas las fotos por año\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Fotos por  %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Ver todas las fotos\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Esta foto se encontró en las siguientes galerías\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Todas las fotos\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/eu/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Urtzi Odriozola <urtzi.odriozola@gmail.com>, 2016,2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2018-03-15 09:14+0000\\n\"\n\"Last-Translator: Urtzi Odriozola <urtzi.odriozola@gmail.com>\\n\"\n\"Language-Team: Basque (http://www.transifex.com/richardbarran/django-photologue/language/eu/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: eu\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Galeria arrakastaz gehitu da %(site)s-(e)n\"\nmsgstr[1] \"Galeriak arrakastaz gehitu dira %(site)s-(e)n\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Gehitu aukeratutako galeriak uneko webgunera\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Aukeratutako galeria arrakastaz ezabatu da %(site)s-(e)tik\"\nmsgstr[1] \"Aukeratutako galeriak arrakastaz ezabatu dira %(site)s-(e)tik\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Ezabatu aukeratutako galeriak uneko webgunetik\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"%(galleries)s galeriako argazki guztiak arrakastaz gehitu dira %(site)s-(e)ra\"\nmsgstr[1] \"%(galleries)s galerietako argazki guztiak arrakastaz gehitu dira %(site)s-(e)ra\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Gehitu aukeratutako gealerietako argazki guztiak uneko webgunera\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"%(galleries)s galeriako argazki guztiak arrakastaz ezabatu dira %(site)s-(e)tik\"\nmsgstr[1] \"%(galleries)s galerietako argazki guztiak arrakastaz ezabatu dira %(site)s-(e)tik\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Ezabatu aukeratutako galeriako argazki guztiak uneko webgunetik \"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Argazkia arrakastaz gehitu da %(site)s-(e)n\"\nmsgstr[1] \"Aukeratutako argazkiak arrakastaz gehitu dira %(site)s-(e)n\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Gehitu aukeratutako argazkiak uneko webgunera\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Argazkia arrakastaz ezabatu da %(site)s-(e)tik\"\nmsgstr[1] \"Aukeratutako argazkiak arrakastaz ezabatu dira %(site)s-(e)tik\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Ezabatu aukeratutako argazkiak uneko webgunetik.\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Igo argazkien zip artxiboa\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Izenburua\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galeria\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Aukeratu irudi hau gehitzeko galeria. Utzi hau hutsik emandako izenburutik galeria berri bat sortzeko.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Irudi testua\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Irudi testua argazki guztiei gehituko zaie.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Deskribapena\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Galeria honen deskribapena. Galeria berrientzat bakarrik da beharrezkoa.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Publikoa da\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Ez markatu hau igotako galeria eta bertako argazkiak pribatu izatea nahi baduzu.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Izenburu hori duen galeria existitzen da.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Aukeratu existitzen den galeria edo sartu galeria berri baten izenburua.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Ezin izan da .zip artxiboko \\\"{0}\\\" fitxategia prozesatu.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Argazkiak \\\"{0}\\\" galeriara gehitu dira.\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Oso baxua\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Baxua\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Ertaina-Baxua\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Ertaina\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Ertaina-Altua\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Altua\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Oso altua\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Goia\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Eskuina\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Behea\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Ezkerra\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Erdia (Lehenetsia)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Itzuli eskerretik eskuinera\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Itzuli goitik behera\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Biratu 90 gradu erlojuaren kontrako norantzan\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Biratu 90 gradu erloju norantzan\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Biratu 180 gradu\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Lauza\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Tamaina\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"argitaratze data\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"izenburua\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"izenburuaren sluga\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"deskribapena\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"publikoa da\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"argazkiak\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"webguneak\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galeria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galeriak\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"zenbatu\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"irudia\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"Irudia atera zeneko data; irudiaren EXIF datutik hartzen da.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"moztu hemendik\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efektua\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"irudi testua\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"argazkia\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"izena\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"biratu edo itzuli\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"kolorea\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"dizdira\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrastea\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"zorroztasuna\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtroak\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"tamaina\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"indarra\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"argazki efektua\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"argazki efektuak\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"estiloa\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opakutasun\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Estalkiaren opakutasuna.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"ur marka\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"ur markak\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Irudiaren tamaina izenak hizkiak, zenbakiak eta beheko marrak bakarrik izan ditzake. Adibidez: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"zabalera\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Zabaleran \\\"0\\\" jarriz gero, irudiaren tamaina altueraren arabera ezarriko da.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"altuera\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Altueran \\\"0\\\" jarriz gero, irudiaren tamaina zabaleraren arabera ezarriko da.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kalitatea\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG irudi kalitatea.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"irudiak handitu?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"neurrira moztu?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"aurrez katxeatu?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"ikustaldi kopurua zenbatu?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"jarri ur marka irudiari\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"argazki tamaina\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"argazki tamainak\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Zabalera eta altuera definituta badaude bakarrik moztu daitezke irudiak.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Igo zip fitxategia\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Sarrera\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Igo\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Mesedez zuzendu beheko errorea.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Mesedez zuzendu beheko erroreak.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Azken argazki galeriak\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtratu urteka\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Ez da galeriarik aurkitu\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galeriak %(show_day)s egunetan\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Ez da galeriarik aurkitu.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Ikusi hilabeteko galeria guztiak\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galeriak %(show_month)s hilabetetan\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtratu eguneka\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Ikusi urteko galeria guztiak\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galeriak %(show_year)s urtetan\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtratu hilabeteka\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Ikusi galeria guztiak\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Argitaratuta\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Galeria guztiak\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Aurrekoa\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    %(page_number)s/%(total_pages)s orri\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Hurrengoa\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Azken argazkiak\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Ez da argazkirik aurkitu\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Argazkiak %(show_day)s egunetan\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Ikusi hilabeteko argazki guztiak\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Argazkiak %(show_month)s hilabetetan\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Ikusi urteko argazki guztiak\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Argazkiak %(show_year)s urtetan\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Ikusi argazki guztiak\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Argazki hau ondorengo galerietan aurkitu da\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Argazki guztiak\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/fr/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Matthieu Payet <matthieu.payet4@gmail.com>, 2017\n# Théophane Hufschmitt <huf31@gmx.fr>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:47+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: French (http://www.transifex.com/richardbarran/django-photologue/language/fr/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fr\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"La photo suivante ne provient pas du même site(s) que la galerie et donc ne sera pas affichée : %(photo_list)s.\"\nmsgstr[1] \"Les photos suivantes n’appartiennent pas au même site(s) que la galerie et donc ne seront pas affichées : %(photo_list)s.\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"La gallerie a été ajoutée avec succès à %(site)s\"\nmsgstr[1] \"Les galeries ont été ajoutées avec succès à %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Ajouter les galeries sélectionnées au site actuel\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"La galerie a été supprimée avec succès de %(site)s\"\nmsgstr[1] \"Les galeries ont été supprimées avec succès de %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Supprimer les galeries sélectionnées du site courant\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Toutes les photos dans la gallerie %(galleries)s ont été ajoutées avec succès à %(site)s\"\nmsgstr[1] \"Toutes les photos dans les galeries %(galleries)s ont été ajoutées avec succès à %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Ajouter les photos de la galerie sélectionnée au site courant\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Toutes les photos dans la gallerie %(galleries)s ont été supprimées avec succès de %(site)s\"\nmsgstr[1] \"Toutes les photos dans les galeries %(galleries)s ont été supprimées avec succès de %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Supprimer toutes les photos dans la galerie sélectionnée du site courant\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"La photo a été ajoutée avec succès à %(site)s\"\nmsgstr[1] \"Les photos sélectionnées ont été ajoutées avec succès à %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Ajouter les photos sélectionnées au site courant\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"La photo a été supprimée avec succès de %(site)s\"\nmsgstr[1] \"Les photos ont été supprimées avec succès de %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Supprimer les photos séléctionnées du site courant\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Télécharger une archive de photos au format *.zip\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titre\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Ce titre + un nombre incrémental sera donné à toutes les photos téléchargées.<br/> Ce champ est requis lors de la création d'une nouvelle galerie mais est facultatif lors d'un ajout à une galerie existante. S'il n'est pas fourni, les titres des photos seront créés à partir du nom de la galerie existante.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galerie\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Sélectionner une galerie à laquelle ajouter ces images. Laisser ce champ vide pour créer une nouvelle galerie à partir du titre indiqué.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Légende\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"La légende sera ajoutée a toutes les photos.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Une description de cette galerie. Requise seulement pour les nouvelles galeries.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Est publique\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Décochez cette case pour rendre la galerie des photos envoyées sur le serveur et son contenu privés.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Une galerie portant ce nom existe déjà.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Sélectionner une galerie existante ou entrer un titre pour une nouvelle galerie.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Fichier \\\"{filename}\\\" ignoré car il apparaît dans un sous-dossier. Toutes les images doivent être à la racine du fichier zip.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Impossible de traîter le fichier \\\"{0}\\\" dans l'archive zip.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Les photos ont été ajoutés à la galerie \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Très Bas\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Bas\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Moyen-Bas\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Moyen\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Moyen-Haut\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Haut\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Très Haut\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Sommet\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Droite\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Bas\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Gauche\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Centré (par défaut)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Inversion de gauche à droite\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Inversion de haut en bas\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotation de 90 degrés dans le sens anti-horloger\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotation de 90 degrés dans le sens horloger\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotation de 180 degrés\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Mosaïque\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Redimensionner\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Faite suivre de multiple filtres en utilisant la forme suivante \\\"FILTRE_UN->FILTRE_DEUX->FILTRE_TROIS\\\". Les filtres d'image seront appliqués dans l'ordre. Les filtres suivants sont disponibles: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"date de publication\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"titre\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"version abrégée du titre\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Un \\\"slug\\\" est un titre abrégé et unique, compatible avec les URL, pour un objet.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"description\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"est public\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Les galeries publiques seront affichée dans les vues par défaut.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"photos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"sites\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galerie\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galleries\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"nombre\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"image\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"date de prise de vue\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"La date à laquelle l'image a été prise ; obtenue à partir des données EXIF de l'image.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"nombre\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"découper à partir de\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effet\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Une taille de photo \\\"admin_thumbnail\\\" n'a pas encore été définie.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniature\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"libellé court\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"légende\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"date d'ajout\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Les photographies publique seront affichées dans les vues par défaut.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"photo\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nom\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotation ou inversion\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"couleur\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Un facteur de 0.0 donne une image en noir et blanc, un facteur de 1.0 donne l'image originale.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"brillance\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un facteur de 0.0 donne une image noire, un facteur de 1.0 donne l'image originale.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contraste\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Un facteur de 0.0 donne une image grise, un facteur de 1.0 donne l'image originale.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"netteté\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Une facteur de 0.0 donne une image floue, un facteur de 1.0 donne l'image d'origine.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtres\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"taille\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"La hauteur de la réflection sous la forme d'un pourcentage de l'image d'origine. Un facteur de 0.0 n'ajoute aucune réflection, un facteur de 1.0 ajoute une réflection égale à la hauteur de l'image d'origine.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"force\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"L'opacité initial du gradient de reflet.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"La couleur de fond du gradient de reflet. Faites correspondre ce paramètre avec la couleur de fond de votre page.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"effet photo\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"effets photo\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"style\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacité\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"L'opacité de la surcouche.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"filigrane\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"filigranes\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Le nom de la taille de la photo ne doit contenir que des lettres, des chiffres et des caractères de soulignement. Exemples: \\\"miniature\\\", \\\"affichage\\\", \\\"petit\\\", \\\"widget_page_principale\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"largeur\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Si la largeur est réglée à \\\"0\\\" l l'image sera redimensionnée par rapport à la hauteur fournie.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"hauteur\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Si la hauteur est réglée à \\\"0\\\" l l'image sera redimensionnée par rapport à la largeur fournie.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"qualité\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"Qualité JPEG de l'image.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"agrandir les images ?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Si sélectionné l'image sera agrandie si nécessaire pour coïncider avec les dimensions fournies. Les dimensions ajustées seront agrandies sans prendre en compte ce paramètre.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"découper pour adapter à la taille ?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Si sélectionné l'image sera redimensionnée et recadrée pour coïncider avec les dimensions fournies.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"mise en cache ?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Si sélectionné cette taille de photo sera mise en cache au moment au les photos sont ajoutées.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"incrémenter le nombre d'affichages ?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Si sélectionné le \\\"view_count\\\" (nombre d'affichage) de l'image sera incrémenté quand cette taille de photo sera affichée.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"placer un filigrane sur l'image\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"taille de la photo\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"tailles des photos\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"La hauteur et la largeur doivent être toutes les deux définies pour retailler des photos.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Télécharger une archive au format *.zip\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Accueil\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Télécharger\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n⇥⇥<p>Sur cette page vous pouvez télécharger plusieurs photos à la fois, du moment\\n⇥⇥qu'elles sont rassemblées dans une archive au format *.zip. Les photos peuvent être soit :</p>\\n⇥⇥<ul>\\n⇥⇥⇥<li>Ajoutées à une galerie existante,</li>\\n⇥⇥⇥<li>sinon, une nouvelle galerie est créée avec le titre fourni.</li>\\n⇥⇥</ul>\\n⇥\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Veuillez corriger l'erreur ci-dessous, svp.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Veuillez corriger les erreurs ci-dessous, svp.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Dernières galeries de photos\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtrer par année\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Aucune galerie trouvée\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galeries du %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Aucune galerie trouvée.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Afficher toutes les galeries du mois\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galeries de %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtrer par date\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Afficher toutes les galeries de l'année\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galeries de %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtrer par mois\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Afficher toutes les galeries\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Publiée le\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Toutes les galeries\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Précedent\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n⇥⇥⇥⇥ page %(page_number)s sur %(total_pages)s\\n⇥⇥⇥⇥\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Suivant\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Dernières photos\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Aucune photo trouvée\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Photos du %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Afficher toutes les photos du mois\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Photos du %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Afficher toutes les photos de l'année\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Photos de %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Afficher toutes les photos\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Cette photo se trouve dans les galeries suivantes\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Toutes les photos\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/hu/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# David Smith, 2015\n# David Smith, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:47+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Hungarian (http://www.transifex.com/richardbarran/django-photologue/language/hu/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: hu\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"A következő fot nem ugyanahhoz a webhely(ek)hez tartozik, mint az album, ezért soha nem fog megjelenni: %(photo_list)s\"\nmsgstr[1] \"A következő fotók nem ugyanahhoz a webhely(ek)hez tartoznak, mint az album, ezért soha nem fognak megjelenni: %(photo_list)s\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Az album sikeresen hozzáadva a(z) %(site)s webhelyhez\"\nmsgstr[1] \"Az albumok sikeresen hozzáadva a(z) %(site)s webhelyhez\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Kiválasztott albumok hozzáadása jelen webhelyhez\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Album sikeresen eltávolítva a(z) %(site)s webhelyről\"\nmsgstr[1] \"Kiválasztott albumok sikeresen eltávolítva a(z) %(site)s webhelyről\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Kiválasztott albumok eltávolítása jelen webhelyről\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"%(galleries)s album összes fotója sikeresen hozzáadva a(z) %(site)s webhelyhez\"\nmsgstr[1] \"%(galleries)s albumok összes fotója sikeresen hozzáadva a(z) %(site)s webhelyhez\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Kiválasztott albumok összes fotójának hozzáadása jelen webhelyhez\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"%(galleries)s album összes fotója sikeresen eltávolítva a(z) %(site)s webhelyről\"\nmsgstr[1] \"%(galleries)s albumok összes fotója sikeresen eltávolítva a(z) %(site)s webhelyről\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Kiválasztott albumok összes fotójának törlése jelen webhelyről\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Fotó sikeresen hozzáadva a(z) %(site)s webhelyhez\"\nmsgstr[1] \"Kiválasztott fotók sikeresen hozzáadva a(z) %(site)s webhelyhez\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Kiválasztott fotók hozzáadása jelen webhelyhez\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Fotó sikeresen eltávolítva a(z) %(site)s webhelyről\"\nmsgstr[1] \"Kiválasztott fotók sikeresen eltávolítva a(z) %(site)s webhelyről\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Kiválasztott fotók eltávolítása jelen webhelyről\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Fotókat tartalmazó zip fájl feltöltése\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Cím\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Az összes feltöltött fotó címe ebből a címből + egy sorszámból fog állni.<br>Új album létrehozása esetén ezt a mezőt kötelező kitölteni, meglévő album esetén elhagyható - utóbbi esetben a fotók címe a meglévő album nevéből fog képződni.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Album\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Válasszon ki egy albumot, amelyhez a fotók hozzáadásra kerüljenek! Hagyja üresen, ha új albumot akar létrehozni a megadott címmel!\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Képaláírás\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"A képaláírás minden új fotóra érvényes lesz.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Leírás\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Album leírása. Csak új albumok esetén kötelező.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Nyilvános\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Vegye ki a pipát, ha a feltöltött albumot és a benne lévő fotókat priváttá akarja tenni.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Ezzel a címmel már létezik album.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Válasszon egy meglévő albumot, vagy írjon be egy címet új album létrehozásához.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"„{filename}” fájl mellőzve lett, mivel valamely mappában van. A fotóknak közvetlenül kell a zip fájlban lenniük.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"zip fájlban lévő „{0}” fájl feldolgozása sikertelen.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Fotók hozzáadva a(z) „{0}” albumhoz.\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Nagyon alacsony\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Alacsony\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Közepesen alacsony\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Közepes\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Közepesen magas\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Magas\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Nagyon magas\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Teteje\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Jobb oldala\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Alja\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Bal oldala\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Közepe (Alapértelmezett)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Függőleges tengely mentén tükrözés\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Vízszintes tengely mentén tükrözés\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Óramutató járásával ellenkező irányba 90 fok forgatása\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Óramutató járásával megegyező irányba 90 fok forgatás\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"180 fokos forgtás\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Cím\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Méretezés\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Több szűrőt is alkalmazhat egymás után a következő mintára: „SZŰRŐ_EGY->SZŰRŐ_KETTŐ->SZŰRŐ_HÁROM”. A szűrők a megadott sorrendben, egymás után lesznek a képre alkalmazva. A következő szűrők állnak  rendelkezésére: %s\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"publikálás dátuma\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"cím\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"cím slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"A \\\"slug\\\" egy objektum egyedi, URL-be ágyazható leírása.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"leírás\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"nyilvános\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Nyilvános albumok láthatóak lesznek az alapértelmezett nézetekben.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotók\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"webhelyek\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"album\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"albumok\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"számláló\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"kép\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"készítés dátuma\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"Fotó készítésének dátuma (kép EXIF adataiból kinyerve).\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"nézettségi számláló\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"kivágás\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"szűrő\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Nincs definiálva \\\"admin_thumbnail\\\" fotóméret.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Kicsinyített kép\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"képaláírás\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"hozzáadva\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Nyilvános fotók láthatóak lesznek az alapértelmezett nézetekben.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"fotó\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"név\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"forgatás vagy türközés\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"szín\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"A 0.0-ás érték fekete-fehér képet, az 1.0-ás pedig az eredeti, színes képet eredményezi\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"fényerő\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"A 0.0-ás érték egy fekete képet, az 1.0-ás pedig az eredeti képet eredményezi.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontraszt\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"A 0.0-ás érték egy egyszínű, szürke képet, az 1.0-ás érték pedig az eredeti képet eredményezi.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"élesség\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"A 0.0-ás érték egy elmosott képet, az 1.0-ás érték pedig az eredeti képet eredményezi.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"szűrők\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"méret\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"A tükröződés magasságát az eredeti kép magasságának százalékában kell megadni. A 0.0-ás érték egy tükröződés nélküli képet, az 1.0-ás érték pedig egy, Az eredeti kép magasságával megegyező magasságú tükröződést tartalmazó képet eremdényez.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"erősség\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"A tükröződés elhalványodásának kezdő átlátszósága.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"A tükröződés színátmenetének háttérszíne. Állítsa be olyan színűre, amilyen színű háttérre kerül a kép!\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"fotó effekt\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"fotó effektek\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"stílus\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"átlátszóság\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"A felső réteg átlátszósága.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"vízjel\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"vízjelek\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"A fotóméretek neve csak kis betűket, számokat és aláhúzásjeleket tartalmazhat. Pl.: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"szélesség\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Ha a szélességet 0-ra állítja, a kép a megadott magasság alapján arányosan fog méreteződni.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"magasság\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Ha a magasságot 0-ra állítja, a kép a megadott magasság alapján arányosan fog méreteződni.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"minőség\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG minőség\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"képek felméretezése?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Ha be van állítva, akkor a megadott méretnél kisebb képek fel lesznek nagyítva, hogy kitöltsék a rendelkezésre álló helyet. Képkivágás esetén ettől az opciótól függetlenül mindenképpen fel lesznek nagyítva a képek szükség esetén.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"képkivágás?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Ha be van állítva, akkor a képek úgy lesznek átméretezve a megadott képarárnyra, hogy egy részük le lesz vágva.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"előre generálás?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Ha be van állítva, akkor a hozzáadáskor előre le lesz generálva a fotó erre a méretre.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"nézettségi számláló növelése?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Ha be van állítva, akkor a kép „nézettségi számláló” mezőjében lévő érték minden megjelenítés után egyel növekedni fog.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"vízjelhez felhasznált kép\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"fotóméret\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"fotóméretek\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Képkivágás csak szélesség és magasság megadása után lehetséges.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Zip fájl feltöltése\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Kezdőlap\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Feltölt\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>Ezen az oldalon egyszerre több fotó tölthető fel, amennyiben azok\\n\\t\\tegy zip fájlba lettek csomagolva. A fotókat:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Meglévő albumba lehet tenni.</li>\\n\\t\\t\\t<li>Vagy a megadott címmel új album is létrehozható.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Kérem, javítsa ki az alábbi hibát.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Kérem, javítsa ki az alábbi hibákat.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Legfrissebb albumok\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Szűrés év szerint\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Nem található album\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"%(show_day)s albumai\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Nem található album\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Hónap összes albuma\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"%(show_month)s albumai\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Szűrés nap szerint\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Év összes albuma\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"%(show_year)s albumai\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Szűrés hónap szerint\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Összes album\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Publikálva\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Összes album\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Előző\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    %(page_number)s/%(total_pages)s. oldal \\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Következő\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Legfrissebb fotók\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Nem található fotó\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"%(show_day)s fotói\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Hónap összes fotója\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"%(show_month)s fotói\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Év összes fotója\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"%(show_year)s fotói\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Összes fotó\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"A fotó a következő albumokban található meg\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Összes fotó\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/it/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Italian (http://www.transifex.com/richardbarran/django-photologue/language/it/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: it\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"La didascalia verrà aggiunta a tutte le foto\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Deseleziona l'opzione per rendere private le immagini e la galleria una volta caricata.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Molto Bassa\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Bassa\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Medio-Bassa\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Media\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Medio-Alta\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Molto Alta\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"In alto\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"A destra\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"In basso\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"A sinistra\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Al centro (Default)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Inverti destra con sinistra\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Inverti alto con basso\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Ruota di 90 gradi in senso anti-orario\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Ruota di 90 gradi in senso orario\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Ruota di 180 gradi\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Affianca\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Ridimensiona\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Collega filtri multipli in cascata con il seguente schema \\\"FILTRO_UNO->FILTRO_DUE->FILTER_TRE\\\". I filtri saranno applicati in ordine alle immagini. I seguenti filtri sono disponibili: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"data di pubblicazione\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"titolo\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Uno \\\"Slug\\\" è un titolo univoco per un oggetto, usabile come URL.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"descrizione\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"è pubblica\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Le gallerie pubbliche verranno visualizzate nelle viste di default.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"foto\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galleria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"gallerie\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"numero\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"immagine\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"data dello scatto\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"ritagliata da\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effetto\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"La dimensione \\\"admin_thumbnail\\\" non è ancora stata creata.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniatura\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"didascalia\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"data di inserimento\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Le fotografie pubbliche verranno visualizzate nelle viste di default.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"fotografia\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nome\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"ruota o inverti\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"colore\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Un fattore di 0.0 restituisce un'immagine in bianco e nero, un fattore di 1.0 restituisce l'immagine originale.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"luminosità\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un fattore di 0.0 restituisce un'immagine nera, un fattore di 1.0 restituisce l'immagine originale.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contrasto\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Un fattore di 0.0 restituisce un'immagine grigia, un fattore di 1.0 restituisce l'immagine originale.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"nitidezza\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Un fattore di 0.0 restituisce un'immagine sfuocata, un fattore di 1.0 restituisce l'immagine originale.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtri\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"dimensione\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"L'altezza del riflesso come percentuale dell'immagine originale. Un fattore di 0.0 non aggiunge nessun riflesso, un fattore di 1.0 aggiunge un riflesso della stessa altezza dell'immagine originale.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"intensità\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Opacità iniziale del gradiente del riflesso.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Il colore di sfondo del gradiente di riflesso. Sceglilo in modo che corrisponda al colore dello sfondo della tua immagine.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"effetto fotografico\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"effetti fotografici\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"stile\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacità\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Opacità della copertura\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"watermark\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"watermark\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Le dimensioni fotografiche devono contenere solo lettere, numeri o caratteri di sottolineatura. Per esempio: : \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"larghezza\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Se la dimensione è \\\"0\\\", l'immagine verrà ridimensionata all'altezza specificata.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"altezza\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Se l'altezza è \\\"0\\\", l'immagine verrà ridimensionata alla larghezza specificata.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"qualità\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"qualità dell'immagine JPEG\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"ingrandisco le immagini?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Se selezionato, l'immagine verrà ingrandita (se necessario) per corrispondere alle dimensioni specificate. Dimensioni ritagliate verranno ridimensionate senza tenere conto di questa configurazione.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"Ritaglio per stare nelle dimensioni?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Se selezionato, l'immagine verrà ridimensionata e ritagliata per rientrare nelle dimensioni specificate.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pre-cache?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Se selezionato, questa dimensione di foto verrà pre-salvata mentre le foto sono inserite.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"incrementa il contatore di visualizzazioni?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Se selezionato, il \\\"contatore di visualizzazioni\\\" dell'immagine sarà incrementato ad ogni visualizzazione dell'immagine.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"immagine di watermark\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"dimensione della foto\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"dimensioni delle foto\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/nl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Peter-Paul van Gemerden <info@ppvg.nl>, 2009\n# Reint T. Kamp <reint@fastmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2020-07-30 19:09+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Dutch (http://www.transifex.com/richardbarran/django-photologue/language/nl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: nl\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"De volgende foto hoort niet tot dezelfde site(s) als de galerij, dus zal nooit getoond worden: %(photo_list)s.\"\nmsgstr[1] \"De volgende foto's horen niet tot dezelfde site(s) als de galerij, dus zullen nooit getoond worden: %(photo_list)s.\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"De galerij is met succes toegevoegd aan %(site)s\"\nmsgstr[1] \"De galerijen zijn met succes toegevoegd aan %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Voeg geselecteerde galerij toe aan de huidige pagina\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"De geselecteerde galerij is met succes verwijderd van %(site)s\"\nmsgstr[1] \"De geselecteerde galerijen zijn met succes verwijderd van %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Verwijder geselecteerde galerijen van de huidige pagina\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Alle foto's in galerij %(galleries)s zijn met succes toegevoegd aan %(site)s\"\nmsgstr[1] \"Alle foto's in galerijen %(galleries)s zijn met succes toegevoegd aan %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Voeg alle foto's van de gelecteerde galerij toe aan de huidige pagina\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Alle foto's in galerij %(galleries)s zijn met succes verwijderd van %(site)s\"\nmsgstr[1] \"Alle foto's in galerijen %(galleries)s zijn met succes verwijderd van %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Verwijder alle foto's in de geselecteerde galerijen van de huidige pagina\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"De foto is met succes toegevoegd aan %(site)s\"\nmsgstr[1] \"De geselecteerde foto's zijn met succes toegevoegd aan %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Voeg geselecteerde foto's toe aan de huidige pagina\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"De foto is met succes verwijderd van %(site)s\"\nmsgstr[1] \"De geselecteerde foto's zijn met succes verwijderd van %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Verwijder geselecteerde foto van de huidige pagina\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Upload een zip-archief met foto's\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Alle geüploade foto's krijgen een titel gevormd door deze titel + een nummer.<br>Dit veld is verplicht als je een nieuwe galerij aanmaakt, maar optioneel bij het toevoegen aan een bestaande galerij. Indien niet ingevuld, krijgen alle foto's een titel gebaseerd op de bestaande galerij-naam.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galerij\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Selecteer een galerij om deze foto's aan toe te voegen. Laat dit leeg om een nieuwe galerij aan te maken met de gegeven titel. \"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Onderschrift\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Onderschrift wordt toegevoegd aan alle foto's.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Omschrijving\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Een beschrijving van deze galerij. Enkel verplicht voor nieuwe galerijen.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Is publiek toegankelijk\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Haal dit vinkje weg om de geüploade galerij en foto's privé te maken.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Een galerij met deze titel bestaat al.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Selecteer een bestaande galerij of vul de titel in van een nieuwe galerij\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Bestand \\\"{filename}\\\" ligt in een onderliggende map. Alleen afbeeldingen in de bovenste folder van de zip worden gebruikt. \"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Kon bestand \\\"{0}\\\" in het zip-archief niet verwerken.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"De foto's zijn toegevoegd aan galerij \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Zeer laag\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Laag\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Middel-laag\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Gemiddeld\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Middel-hoog\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Hoog\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Zeer hoog\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Boven\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Rechts\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Onder\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Links\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Midden (standaard)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Spiegel horizontaal\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Spiegel verticaal\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Roteer 90 graden tegen de klok in\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Roteer 90 graden met de klok mee\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Roteer 180 graden\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Tegelen\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Schalen\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Keten meerdere filters aan elkaar met het patroon: \\\"FILTER_EEN->FILTER_TWEE->FILTER_DRIE\\\". Afbeeldingsfilters worden in volgorde toegepast. De volgende filters zijn beschikbaar: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"datum gepubliceerd\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"titel\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"titel 'zetsel'\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Een \\\"zetsel\\\" is een unieke URL-vriendelijke titel voor een object.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"beschrijving\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"is openbaar\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Openbare galerijen worden weergegeven in de standaardviews.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"foto's\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"sites\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galerij\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galerijen\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"aantal\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"afbeelding\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"datum genomen\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"Datum afbeelding is ingenomen; is verkregen van de afbeelding zijn EXIF data.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"weergave teller\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"afknippen vanaf\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effect\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Er is geen \\\"admin_thumbnail\\\" foto-maat vastgelegd.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniatuur\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"zetsel\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"onderschrift\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"datum toegevoegd\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Openbare foto's worden weergegeven in de standaardviews.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"naam\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"roteer of spiegel\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"kleur\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Een factor van 0.0 geeft een zwart-wit afbeelding, een factor van 1.0 geeft de originele afbeelding.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"helderheid\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Een factor van 0.0 geeft een zwarte afbeelding, een factor van 1.0 geeft de originele afbeelding.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Een factor van 0.0 geeft een egaal grijze afbeelding, een factor van 1.0 geeft de originele afbeelding.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"scherpte\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Een factor van 0.0 geeft een vervaagde afbeelding, een factor van 1.0 geeft de originele afbeelding.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filters\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"afmeting\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"De hoogte van de reflectie als precentage van de originele afbeelding. Een factor van 0.0 voegt geen reflectie toe, een factor van 1.0 voegt een reflectie toe met een gelijke hoogte als de originele afbeelding.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"sterkte\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"De initiële doorzichtigheid van de reflectie-gradatie.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"De achtergrondkleur van de reflectie-gradatie. Stel dit in als hetzelfde als de achtergrondkleur van je pagina.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"foto-effect\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"foto-effecten\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"stijl\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"doorzichtigheid\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"De doorzichtigheid van overliggende afbeelding.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"watermerk\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"watermerken\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"De naam van de foto-maat mag alleen letters, nummers en underscores bevatten. Voorbeelden: \\\"miniatuur\\\", \\\"weergave\\\", \\\"klein\\\", \\\"hoofdpagina_zijbalk_miniatuur\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"breedte\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Als de breedte op \\\"0\\\" wordt gezet zal de afbeelding geschaald worden naar de opgegeven hoogte.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"hoogte\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Als de hoogte op \\\"0\\\" wordt gezet zal de afbeelding geschaald worden naar de opgegeven breedte.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kwaliteit\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG afbeeldingskwaliteit\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"afbeeldingen opschalen?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Als dit is gekozen, zal de afbeelding, indien nodig, opgeschaald worden naar opgegeven afmetingen. Afgeknipte maten worden altijd opgeschaald, ongeacht deze instelling.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"gepast afknippen?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Als dit is gekozen, zal de afbeelding geschaald en afgeknipt worden naar de opgegeven afmetingen.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"vooraf cachen?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Als dit is gekozen, zullen foto's met deze foto-maat van te voren worden gecached wanneer ze worden toegevoegd.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"aantal vertoningen ophogen?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Als dit is gekozen, zal het aantal vertoningen van de afbeelding worden opgehoogd wanneer deze foto-maat wordt weergegeven.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"watermerk-afbeelding\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"foto-maat\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"foto-maten\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Kan alleen foto's uitsnijden als zowel de waarde van de breedte en de hoogte zijn ingesteld.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Upload een zip-archief\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Home\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Upload\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>Op deze pagina kun je meerdere foto's tegelijk uploaden indien ze allen\\n\\t\\tin een zip-archief zitten. De foto's kunnen:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Toegevoegd worden aan een bestaande galerij</li>\\n\\t\\t\\t<li>Of er wordt een galerij aangemaakt met de gegeven titel.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Gelieve de fout hieronder te verbeteren.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Gelieve de fouten hieronder te verbeteren.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Meest recente fotogalerijen\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filter op jaar\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Er zijn geen galerijen gevonden\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galerijen van %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Er zijn geen galerijen gevonden.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Bekijk alle galerijen uit maand\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galerijen uit %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filter op dag\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Bekijk all galerijen uit jaar\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galerijen uit %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filter op maand\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Bekijk alle galerijen\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Gepubliceerd\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Alle galerijen\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Vorige\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    pagina %(page_number)s van %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Volgende\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Laatste foto's\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Er zijn geen foto's gevonden\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Foto's van %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Bekijk alle foto's van maand\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Foto's van  %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Bekijk alle foto's uit het jaar\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Foto's uit %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Bekijk alle foto's\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Deze foto staat in de volgende galerijen\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Alle foto's\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/no/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Norwegian (http://www.transifex.com/richardbarran/django-photologue/language/no/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: no\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Undertitler blir lagt til på alle bilder.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Avmarker dette for å gjøre galleriet og dets bilder private.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Veldig lav\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Lav\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Middels-lav\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Middels\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Middels-høy\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Høy\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Veldig høy\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Topp\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Høyre\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Bunn\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Venstre\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Senter (forhåndsvalgt)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Snu venstre mot høyre\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Snu topp mot bunn\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotér 90 grader mot klokka\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotér 90 grader med klokka\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotér 180 grader\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Flislegg\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Skalér\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"publiseringsdato\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"tittel\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"tittel (slug)\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"En \\\"slug\\\" er en unik URL-vennlig tittel for et objekt.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"beskrivelse\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"publisert\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Publiserte gallerier vil bli vist på vanlig vis.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"bilder\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galleri\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"gallerier\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"visninger\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"bilde\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"dato tatt\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"kutt fra\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"effekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"En \\\"admin_thumbnail\\\"-bildestørrelse har ikke blitt opprettet.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniatyrbilde\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"undertittel\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"opplastingsdato\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Publiserte bilder vil bli vist på vanlig måte.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"bilde\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"navn\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotér og snu\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"farge\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"En verdi på 0.0 gir et sort/hvitt-bilde, en verdi på 1.0 gir originalbildet.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"lyshet\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"En verdi på 0.0 gir et sort bilde, en verdi på 1.0 gir originalbildet.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"En verdi på 0.0 gir et grått bilde, en verdi på 1.0 gir originalbildet.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"skarphet\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"En verdi på 0.0 gir et utydlig bilde, en verdi på 1.0 gir originalbildet.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filter\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"størrelse\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Høyden av refleksjonen som prosent av originalbildet. En verdi på 0.0 gir ingen refleksjon, en verdi på 1.0 gir en refleksjon tilsvarende høyden på originalbildet.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"styrke\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"bildeeffekt\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"bildeeffekter\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"stil\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"gjennomsiktighet\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Gjennomsiktigheten av overlegget.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"vannmerke\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"vannmerker\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Navn på bildestørrelse kan kun inneholde bokstaver, tall og understreker. Eksempler: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"bredde\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Hvis bredden er satt til \\\"0\\\" blir bildet skalert til den oppgitte høyden.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"høyde\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Hvis høyden er satt til \\\"0\\\" blir bildet skalert til den oppgitte bredden.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kvalitet\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG bildekvalitet\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"oppskalér bilder?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Hvis valgt, blir bildet vil bli skalert opp om det er nødvendig. Kuttede størrelser vil bli oppskalert uansett innstilling.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"kutt for tilpasning?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Hvis valgt blir bildet skalert og kuttet for å passe med den oppgitte størrelsen.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"mellomlagre på forhånd?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Hvis valgt blir denne bildestørrelsen mellomlagret på forhånd når nye bilder blir lagt til.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"øke visningstelleren?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Hvis valgt vil \\\"visningstelleren\\\" øke hver gang denne bildestørrelsen vises.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"vannmerke på bilde\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"bildestørrelse\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"bildestørrelser\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/pl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Polish (http://www.transifex.com/richardbarran/django-photologue/language/pl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pl\\n\"\n\"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Podpis będzie dodany do wszystkich zdjęć.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Odznacz aby uczynić wrzucaną galerię oraz zawarte w niej zdjęcia prywatnymi.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Bardzo niska\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Niska\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Niższa średnia\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Średnia\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Wyższa średnia\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Wysoka\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Bardzo wysoka\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Góra\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Prawo\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Dół\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Lewo\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Środek (Domyślnie)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Odbij w poziomie\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Odbij w pionie\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Odwróć 90 stopni w lewo\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Odwróć 90 stopni w prawo\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Obróć o 180 stopni\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Kafelki\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Skaluj\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"data publikacji\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"tytuł\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"tytuł - slug \"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\\\"Slug\\\" jest unikalnym, zgodnym z formatem dla URL-i tytułem obiektu.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"opis\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"jest publiczna\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Galerie publiczne będą wyświetlana w domyślnych widokach.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"zdjęcia\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galeria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galerie\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"ilość\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"obraz\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"data wykonania\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"obetnij z\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Rozmiar zdjęcia \\\"admin_thumbnail\\\" nie został zdefiniowany.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Miniaturka\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"podpis\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"data dodania\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Publiczne zdjęcia będą wyświetlane w domyślnych widokach.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"zdjęcie\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nazwa\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"obróć lub odbij\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"kolor\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Współczynnik 0.0 daje czarno-biały obraz, współczynnik 1.0 daje obraz oryginalny.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"jasność\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Współczynnik 0.0 daje czarny obraz, współczynnik 1.0 daje obraz oryginalny.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Współczynnik 0.0 daje jednolity szary obraz, współczynnik 1.0 daje obraz oryginalny.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"ostrość\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Współczynnik 0.0 daje rozmazany obraz, współczynnik 1.0 daje obraz oryginalny.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtry\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"rozmiar\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Wysokość odbicia jako procent oryginalnego obrazu. Współczynnik 0.0 nie dodaje odbicia, współczynnik 1.0 dodaje odbicie równe wysokości oryginalnego obrazu.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"intensywność\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efekt zdjęcia\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efekty zdjęć\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"styl\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"przeźroczystość\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Poziom przezroczystości\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"znak wodny\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"znaki wodne\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Nazwa rozmiaru zdjęcia powinna zawierać tylko litery, cyfry i podkreślenia. Przykłady: \\\"miniatura\\\", \\\"wystawa\\\", \\\"male\\\", \\\"widget_strony_glownej\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"szerokość\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Jeśli szerokość jest ustawiona na \\\"0\\\" to obraz będzie skalowany do podanej wysokości.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"wysokość\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Jeśli wysokość jest ustawiona na \\\"0\\\" to obraz będzie skalowany do podanej szerokości.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"jakość\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"Jakość obrazu JPEG\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"skalować obrazy w górę?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Jeśli zaznaczone to obraz będzie skalowany w górę tak aby pasował do podanych wymiarów. Obcinane rozmiary będą skalowane niezależnie od tego ustawienia.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"przyciąć aby pasował?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Jeśli zaznaczone to obraz będzie skalowany i przycinany tak aby pasował do podanych wymiarów.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"wstępnie cachować?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Jesli zaznaczone to ten rozmiar zdjęć będzie wstępnie cachowany przy dodawaniu zdjęć.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"zwiększyć licznik odsłon?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Jeśli zaznaczone to \\\"licznik_odslon\\\" będzie zwiększany gdy ten rozmiar zdjęcia będzie wyświetlany.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"oznacz kluczem wodnym\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"rozmiar zdjęcia\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"rozmiary zdjęć\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/pt/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# David Kwast <david.kwast@gmail.com>, 2009\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Portuguese (http://www.transifex.com/richardbarran/django-photologue/language/pt/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pt\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"A legenda será adicionada para todas as fotos\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Desmarque esta opção para tornar a galeria, incluindo suas fotos, não pública.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Muito Baixa\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Baixa\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Média-Baixa\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Média\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Média-Alta\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Muito Alta\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Cima\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Direita\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Baixo\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Esquerda\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Centro (Padrão)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Inverter da direita para a esquerda\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Inverter de cima para baixo\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotacionar 90 graus no sentido anti-horário\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotacionar 90 graus no sentido horário\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotacionar 180 graus\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Título\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Escala\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Encadeie multiplos filtros usando o seguinte padrão \\\"FILTRO_UM->FILTRO_DOIS->FILTRO_TRÊS\\\". Os filtors serão aplicados na ordem em que foram encadeados. Os seguintes filtros estão disponíveis: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"data de publicação\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"título\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"slug do título\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Um \\\"slug\\\" é um título único compatível com uma URL.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"descrição\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"é publico\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Galerias públicas serão mostradas nas views padrões.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"Galeria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"Galerias\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"contagem\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"imagem\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"data em que a foto foi tirada\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"cortar\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efeito\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Um tamanho para a foto do \\\"admin_thumbnail\\\" ainda não foi definido.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Thumbnail\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"legenda\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"data que foi adicionado(a)\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Fotos públicas serão mostradas nas views padrões.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nome\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotacionar ou inverter\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"cor\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"O valor 0.0 deixará a imagem em preto e branco, o fator 1.0 não alterará a mesma.A factor of 0.0 gives a black and white image, a factor of 1.0 gives the original image.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"brilho\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"O valor 0.0 deixará a imagem totalmente preta, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contraste\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"O valor 0.0 deixará a imagem totalmente cinza, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"nitidez\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"O valor 0.0 deixará a imagem embaçada, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtros\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"tamanho\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Valor entre 0 e 1. O reflexo será proporcional a altura da imagem. O valor 0.0 não produzirá um reflexo e o valor 1.0 produzirá um reflexo com a mesma altura da imagem original.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"força\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"O valor inicial da opacidade do gradiente de reflexão.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"A cor de fundo do gradiente de reflexão. Ajuste de acordo com a cor de fundo de sua página.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efeito de foto\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efeitos de foto\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"estilo\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacidade\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"A opacidade da sobre-imagem (overlay)\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"marca d'água\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"marcas d'água\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"O nome do tamanho da foto somente poderá conter letras, números e underscores. Exemplos: \\\"thumbnail\\\", \\\"tela\\\", \\\"pequeno\\\", \\\"grande\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"largura\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Se o valor da largura for \\\"0\\\", a imagem será redimensionada de acordo com a altura informada\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"altura\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Se o valor da altura for \\\"0\\\", a imagem será redimensionada de acordo com a largura informada\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"qualidade\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"qualidade da imagem JPEG\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"Aumentar a dimensão das imagens?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Se selecionado, a imagem terá sua dimensão aumentada. Imagens cortadas serão redimensionadas independentemente desta configuração.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"cortar para conformar?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Se selecionado, a imagem será redimensionada e cortada para se conformar de acordo com as dimensões fornecidas.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pré-cachear?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Se selecionado, o tamanho da foto será pré-cacheado logo após sua inclusão.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"Incrementar o contador de visualizações?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Se selecionado, o \\\"view_count\\\" desta imagem será incrementado quando o tamanho da mesma for mostrado.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"imagem para marca d'água\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"tamanho da foto\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"tamanhos das fotos\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/pt_BR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# David Kwast <david.kwast@gmail.com>, 2009\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/richardbarran/django-photologue/language/pt_BR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pt_BR\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"A legenda será adicionada para todas as fotos\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Desmarque esta opção para tornar a galeria, incluindo suas fotos, não pública.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Muito Baixa\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Baixa\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Média-Baixa\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Média\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Média-Alta\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Muito Alta\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Cima\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Direita\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Baixo\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Esquerda\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Centro (Padrão)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Inverter da direita para a esquerda\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Inverter de cima para baixo\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Rotacionar 90 graus no sentido anti-horário\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Rotacionar 90 graus no sentido horário\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Rotacionar 180 graus\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Título\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Escala\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Encadeie multiplos filtros usando o seguinte padrão \\\"FILTRO_UM->FILTRO_DOIS->FILTRO_TRÊS\\\". Os filtors serão aplicados na ordem em que foram encadeados. Os seguintes filtros estão disponíveis: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"data de publicação\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"título\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"slug do título\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"Um \\\"slug\\\" é um título único compatível com uma URL.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"descrição\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"é publico\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Galerias públicas serão mostradas nas views padrões.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotos\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"Galeria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"Galerias\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"contagem\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"imagem\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"data em que a foto foi tirada\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"cortar\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efeito\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Um tamanho para a foto do \\\"admin_thumbnail\\\" ainda não foi definido.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Thumbnail\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"legenda\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"data que foi adicionado(a)\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Fotos públicas serão mostradas nas views padrões.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"nome\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"rotacionar ou inverter\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"cor\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"O valor 0.0 deixará a imagem em preto e branco, o fator 1.0 não alterará a mesma.A factor of 0.0 gives a black and white image, a factor of 1.0 gives the original image.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"brilho\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"O valor 0.0 deixará a imagem totalmente preta, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"contraste\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"O valor 0.0 deixará a imagem totalmente cinza, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"nitidez\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"O valor 0.0 deixará a imagem embaçada, o valor 1.0 não alterará a mesma.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtros\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"tamanho\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Valor entre 0 e 1. O reflexo será proporcional a altura da imagem. O valor 0.0 não produzirá um reflexo e o valor 1.0 produzirá um reflexo com a mesma altura da imagem original.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"força\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"O valor inicial da opacidade do gradiente de reflexão.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"A cor de fundo do gradiente de reflexão. Ajuste de acordo com a cor de fundo de sua página.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efeito de foto\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efeitos de foto\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"estilo\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opacidade\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"A opacidade da sobre-imagem (overlay)\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"marca d'água\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"marcas d'água\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"O nome do tamanho da foto somente poderá conter letras, números e underscores. Exemplos: \\\"thumbnail\\\", \\\"tela\\\", \\\"pequeno\\\", \\\"grande\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"largura\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Se o valor da largura for \\\"0\\\", a imagem será redimensionada de acordo com a altura informada\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"altura\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Se o valor da altura for \\\"0\\\", a imagem será redimensionada de acordo com a largura informada\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"qualidade\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"qualidade da imagem JPEG\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"Aumentar a dimensão das imagens?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Se selecionado, a imagem terá sua dimensão aumentada. Imagens cortadas serão redimensionadas independentemente desta configuração.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"cortar para conformar?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Se selecionado, a imagem será redimensionada e cortada para se conformar de acordo com as dimensões fornecidas.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pré-cachear?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Se selecionado, o tamanho da foto será pré-cacheado logo após sua inclusão.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"Incrementar o contador de visualizações?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Se selecionado, o \\\"view_count\\\" desta imagem será incrementado quando o tamanho da mesma for mostrado.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"imagem para marca d'água\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"tamanho da foto\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"tamanhos das fotos\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/ru/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# AduchiMergen <aduchimergen@gmail.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-09-19 14:01+0000\\n\"\n\"Last-Translator: AduchiMergen <aduchimergen@gmail.com>\\n\"\n\"Language-Team: Russian (http://www.transifex.com/richardbarran/django-photologue/language/ru/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ru\\n\"\n\"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Загрузка Zip архива с фотографиями\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Название\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Всем загруженным фотографиям будет присвоено название составленное из этого названия и порядкового номера изображения.<br> Это поле является обязательным, для создания новой галереи, но не является обязательным при добавлении к существующей галерее - если не указано, названия фото будут созданы из имени галереи.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Галерея\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Выберете галерею для загрузки фотографий. Оставьте поле пустым для создания новой галереи с соответствующим названием.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Описание\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Описание будет добавлено ко всем фотографиям.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Описание галереи\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Описание для этой галереи. Необходимо только для новой галереи.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Опубликовать\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Снимите эту галку, чтобы сделать загруженную галерею и включенные в нее фотографии приватными.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Уже существует галерея с таким названием\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Выберете существующую галерею, или введите название новой галереи\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Файл \\\"{filename}\\\" пропущен, так как находится в поддиректории; все изображения должны находиться в корневой директории архива.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Не удалось обработать файл  \\\"{0}\\\" в .zip архиве.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Фотографии были добавлены в галерею \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Очень низкое\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Низкое\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Чуть хуже среднего\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Среднее\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Чуть лучше среднего\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Высокое\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Очень высокое\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Верхняя сторона\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Правая сторона\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Нижняя сторона\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Левая сторона\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Центр (По-умолчанию)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Зеркально отобразить слева направо\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Зеркально отобразить сверху вниз\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Повернуть на 90 градусов против часовой стрелке\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Повернуть на 90 градусов по часовой стрелке\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Повернуть на 180 градусов\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Разместить мозайкой\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Масштабировать\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Цепочка фильтров для изображений (\\\"ФИЛЬТР_1->ФИЛЬТР_2->ФИЛЬТР_3\\\"). Фильтры будут применены по порядку. Доступны следующие фильтры: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"дата публикации\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"название\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"слаг название\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\\\"слаг\\\" - это уникальное читаемое название для объекта в адресной строке.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"описание\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"публично\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Публичные галереи будут отображены в представлениях по-умолчанию.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"фотографии\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"галерея\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"галереи\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"количество\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"изображение\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"дата наложения\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"кол-во просмотров\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"обрезанный из\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"эффект\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Размер миниатюры \\\"admin_thumbnail\\\" не определен.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Миниатюра\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"слаг\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"Описание\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"дата добавления\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Публичные фотографии будут отображены в используемых представлениях по умолчанию.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"фотография\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"имя\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"повернуть или зеркально отобразить\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"цвет\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Значение коэффициента 0.0 дает черно-белое изображение, а значение  коэффициента 1.0 дает оригинальное изображение.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"яркость\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Значение коэффициента 0.0 дает черное изображение, а значение  коэффициента 1.0 дает оригинальное изображение.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"контраст\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Значение коэффициента 0.0 дает сплошное серое изображение, а значение  коэффициента 1.0 дает оригинальное изображение.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"резкость\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Значение коэффициента 0.0 дает расплывчатое изображение, а значение  коэффициента 1.0 дает оригинальное изображение.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"фильтры\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"размер\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Высота отражения как процент от оригинального изображения. Значение коэффициента 0.0 не добавляет отображения, а значение коэффициента 1.0 добавляет отражение равное высоте оригинального изображения.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"сила\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Начальная непрозрачность градиента отражения.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Цвет фона градиента отражения. Отметьте это для соответствия цвету фона Вашей страницы.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"фотоэффект\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"фотоэффекты\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"стиль\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"непрозрачность\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Непрозрачность подложки.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"водяной знак\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"водяные знаки\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Название размера фотографии должно содержать только буквы, числа и символы подчеркивания. Примеры: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"ширина\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Если ширина выставлена в \\\"0\\\", то изображение будет мастштабировано по высоте.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"высота\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Если высота выставлена в \\\"0\\\", то изображение будет мастштабировано по ширине\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"качество\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"качество JPEG изображения.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"увеличивать изображения?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Если выбранно, то изображение будет масштабировано в случае необходимости, чтобы соответствовать габаритам. Обрезанные размеры будут увеличены в масштабе независимо от этой настройки.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"обрезать?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Если выбранно, то изображение будет масштабировано и обрезано, чтобы подходить по габаритам.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"кэшировать?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Если выбранно, то размер фотографии будет закэширован при добавлении фотографий\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"увеличивать счетчик просмотров?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Если выбрано, то \\\"view_count\\\" изображения будет увеличено когда показывается этот размер фотографии.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"изображение водяного знака\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"размер фотографии\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"размеры фотографий\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Можно обрезать фото только если установленны длинна и ширина.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Загрузить zip архив\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Главная\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Загрузить\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n<p>На этой странице вы можете загрузить несколько изображений за один раз, положив их все в zip архив. Вы можете:</p>\\n<ul>\\n<li>Добавить фото в новую галерею.</li>\\n<li>Или, создать новую галерею с указанным названием.</li>\\n</ul>\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Пожалуйста исправьте ошибку ниже.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Пожалуйста исправьте ошибки ниже.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Последнии фото-галереи\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Фильтр по годам\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Галереи не найдены\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Галереи за %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Галереи не найдены\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Посмотреть все галереи за месяц\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Галереи за %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Фильтр по дням\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Посмотреть все галереи за год\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Галереи за %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Фильтр по месяцам\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Посмотреть все галереи\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Опубликованно\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Все галереи\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Предыдущая\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\nстраница %(page_number)s из %(total_pages)s\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Следующая\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Последнии фотографии\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Фотографии не найдены\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Фотографии за %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Все фотографии за месяц\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Фотографии за %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Все фотографии за год\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Фотографии за %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Посмотреть все фотографии\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Эта фотография найдена в следующих галереях\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Все фотографии\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/sk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# 18f25ad6fa9930fc67cb11aca9d16a27, 2012-2013\n# saboter <translations@pymutan.com>, 2014\n# saboter <translations@pymutan.com>, 2014\n# saboter <translations@pymutan.com>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:47+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Slovak (http://www.transifex.com/richardbarran/django-photologue/language/sk/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: sk\\n\"\n\"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\nmsgstr[2] \"\"\nmsgstr[3] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Galéria bola úspešne pridaná na %(site)s\"\nmsgstr[1] \"Galérie boli úspešne pridané na %(site)s\"\nmsgstr[2] \"Galérie boli úspešne pridané na %(site)s\"\nmsgstr[3] \"Galérie boli úspešne pridané na %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Pridať vybrané galérie na aktuálnu stránku\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Galéria bola úspešne odobratá zo %(site)s\"\nmsgstr[1] \"Označené galérie boli úspešne odobrané zo %(site)s\"\nmsgstr[2] \"Označené galérie boli úspešne odobrané zo %(site)s\"\nmsgstr[3] \"Označené galérie boli úspešne odobrané zo %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Odobrať označené galérie z aktuálnej stránky\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Všetky fotografie z galérie %(galleries)s boli úspešne pridané na stránku %(site)s\"\nmsgstr[1] \"Všetky fotografie z galérií %(galleries)s boli úspešne pridané na stránku %(site)s\"\nmsgstr[2] \"Všetky fotografie z galérií %(galleries)s boli úspešne pridané na stránku %(site)s\"\nmsgstr[3] \"Všetky fotografie z galérií %(galleries)s boli úspešne pridané na stránku %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Pridať všetky fotografie z označených galérií do aktuálnej stránky\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Všetky fotografie z galérie %(galleries)s boli úspešne odobraté zo stránky %(site)s\"\nmsgstr[1] \"Všetky fotografie z galérií %(galleries)s boli úspešne odobraté zo stránky %(site)s\"\nmsgstr[2] \"Všetky fotografie z galérií %(galleries)s boli úspešne odobraté zo stránky %(site)s\"\nmsgstr[3] \"Všetky fotografie z galérií %(galleries)s boli úspešne odobraté zo stránky %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Odobrať všetky fotografie z vybraných galérií z aktuálnej stránky\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Fotografia bola úspešne pridaná na %(site)s\"\nmsgstr[1] \"Označené fotografie boli úspešne pridané na %(site)s\"\nmsgstr[2] \"Označené fotografie boli úspešne pridané na %(site)s\"\nmsgstr[3] \"Označené fotografie boli úspešne pridané na %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Pridať označené fotografie na aktuálnu stránku\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Fotografia bola úspešne odobratá zo %(site)s\"\nmsgstr[1] \"Označené fotografie boli úspešne odobraté zo %(site)s\"\nmsgstr[2] \"Označené fotografie boli úspešne odobraté zo %(site)s\"\nmsgstr[3] \"Označené fotografie boli úspešne odobraté zo %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \" Odobrať označené fotografie z aktuálnej stránky\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Nahrať ZIP archív s fotkami\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Titulok\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galéria\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Vyberte galériu do ktorej chcete pridať tieto obrázky. Pre vytvorenie novej galérie so zadaným názvom ponechajte toto pole prázdne.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Titulok\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Titulok bude pridaný do všetkých fotografií.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Popis\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Je verejná\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Odškrtnite, aby odovzdané galérie a zahrnuté fotografie boli súkromné.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Galéria s týmto názvom už existuje.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Vyberte existujúcu galériu, alebo vyplnte názov pre novú.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Ignorujem súbor \\\"{filename}\\\" nakoľko je v podadresári, všetky obrázky by mali byť priamo v zip archíve bez vnorenej adresárovej štruktúry.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Nepodarilo sa spracovať súbor \\\"{0}\\\" v .zip archíve.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Fotografie boli pridané do galérie \\\"{0}\\\". \"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Veľmi Nízka\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Nízka\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Stredne-Nízka\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Stredná\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Stredne-Vysoká\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Vysoká\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Veľmi Vysoká\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Hore\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Vpravo\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Dole\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Vľavo\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Stred (Štandardne)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Prevrátiť zľava doprava\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Prevrátiť zhora nadol\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Otočiť o 90 stupňov proti smeru hodinových ručičiek\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Otočiť o 90 stupňov v smere hodinových ručičiek\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Otočiť o 180 stupňov\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Dláždiť\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Dodržať mierku\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Zreťazte viac filtrov pomocou nasledovného vzoru \\\"FILTER_JEDNA->FILTER_DVA->FILTER_TRI\\\". Obrázkové filtre budú použité v poradí. Nasledujúce filtre sú k dispozícii: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"dátum zverejnenia\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"názov\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"identifikátor názvu\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\\\"Identifikátor\\\" je unikátny názov objektu vhodný pre použitie v URL.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"popis\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"je verejný\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Verejné galérie budú zobrazené v štandardných zobrazeniach.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotografie\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"stránky\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galéria\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galérie\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"počet\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"obrázok\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"dátum odfotenia\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"počet zobrazení\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"orezať od\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Veľkosť fotografie \\\"admin_thumbnail\\\" nebola definovaná.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Náhľad\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"identifikátor\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"titulok\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"dátum pridania\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Verejné fotografie budú zobrazené v štandardných zobrazeniach.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"fotografia\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"meno\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"otočiť alebo prevrátiť\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"farba\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Faktor 0.0 dáva čiernobiely obrázok, faktor 1.0 dáva pôvodný obrázok.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"jas\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Faktor 0.0 dáva čierny obrázok, faktor 1.0 dáva pôvodný obrázok.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Faktor 0.0 dáva šedý obrázok, faktor 1.0 dáva pôvodný obrázok.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"ostrosť\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Faktor 0.0 dáva rozmazaný obrázok, faktor 1.0 dáva pôvodný obrázok.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtre\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"veľkosť\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Výška odrazu v percentách pôvodného obrázku. Faktor 0.0 nepridáva žiadny odraz, faktor 1.0 pridáva odraz rovný výśke pôvodného obrázku.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"intenzita\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Počiatočná presvitnosť odrazového gradientu.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Farba pozadia odrazového gradientu. Túto položku nastavte tak, aby sa zhodovala s farbou pozadia vašej stránky.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"efekt fotografie\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"efekty fotografie\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"štýl\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"priesvitnosť\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Priesvitnosť prekrytia.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"vodoznak\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"vodoznaky\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Názov veľkosti fotografie by mal obsahovať len písmená, čísla a podčiarky. Príklady:  \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"šírka\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Ak je šírka nastavená na \\\"0\\\" obrázok bude podľa mierky upravený na zadanú výšku.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"výška\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Ak je výška nastavená na \\\"0\\\" obrázok bude podľa mierky upravený na zadanú šírku\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kvalita\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG kvalita obrázku.\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"prispôsobiť obzázky?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Ak je táto položka vybratá a je to potrebné, obrázok bude prispôsobený tak, aby sa zmestil do zadaných rozmerov.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"orezať ak je to potrebné ?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Ak je táto položka vybratá, obrázok bude upravený a orezaný, aby sa zmestil do zadaných rozmerov.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"pred-generovať ?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Ak je táto položka vybratá, veľkosť fotografie bude pred-generovaná počas pridávania fotografií.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"zvýšiť počet zobrazení?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Ak je táto položka vybratá, \\\"view_count\\\" obrázku bude zvýšený, keď sa zobrazí veľkosť tohto obrázku.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"použiť vodoznak na obrázok\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"veľkosť fotografie\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"veľkosti fotografie\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Fotky môžete orezať len vtedy, ak je nastavená šírka a výška.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Nahrať ZIP archív\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Domov\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Nahrať\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>Na tejto stránke môžete nahrať viacero fotiek naraz, pokiaľ ich\\n\\t\\tumiestnite do jedného ZIP archívu. Fotografie môžu byť:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Pridané do existujúcej galérie.</li>\\n\\t\\t\\t<li>Alebo bude vytvorená nová galérie so zadaným názvom.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Prosím opravte chybu uvedenú nižšie.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Prosím opravte chyby uvedené nižšie.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Nedávno pridané galérie\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Filtrovať podľa roku\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Neboli nájdené žiadne galérie\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Galérie pre %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Nenašli sa žiadne galérie.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Zobraziť všetky galérie pre daný mesiac\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Galérie pre %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Filtrovať podľa dní\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Zobraziť všetky galérie pre rok\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Galérie pre %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Filtrovať po mesiacoch\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Zobraziť všetky galérie\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Zverejnené\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Všetky galérie\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Predchádzajúci\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    stránka %(page_number)s z %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Nasledujúci\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Nedávno pridané fotografie\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Nenašli sa žiadne fotografie\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Fotografie pre %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Zobraziť všetky fotografie pre mesiac\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Fotografie pre %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Zobraziť všetky fotografie pre rok\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Fotografie pre %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Zobraziť všetky fotografie\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Táto fotka sa nachádza v nasledujúcich galériách\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Všetky fotografie\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/tr/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# abc Def <hdogan1974@gmail.com>, 2020\n# ali rıza keleş <ali.r.keles@gmail.com>, 2009\n# ali rıza keleş <ali.r.keles@gmail.com>, 2009,2014\n# ali rıza keleş <ali.r.keles@gmail.com>, 2009\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2020-04-15 19:14+0000\\n\"\n\"Last-Translator: abc Def <hdogan1974@gmail.com>\\n\"\n\"Language-Team: Turkish (http://www.transifex.com/richardbarran/django-photologue/language/tr/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: tr\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Galeri başarıyla şu siteye yüklendi: %(site)s\"\nmsgstr[1] \"Galeriler başarıyla şu siteye yüklendi: %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Seçili galerileri mevcut siteye ekle\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Galeri şu sitelerden başarıyla silindi: %(site)s\"\nmsgstr[1] \"Seçili galeriler şu sitelerden başarıyla silindi: %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Seçili galerileri mevcut siteden çıkar\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Seçili galerilerin tüm fotolarını mevcut siteye ekle\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Seçili galerilerin tüm fotolarını mevcut siteden çıkar\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Seçili fotoları mevcut siteye ekle\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Seçili fotoları siteden kaldır\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Başlık\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Galeri\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Bu resimleri eklemek için bir galeri seçin. Verilen başlıktan yeni bir galeri oluşturmak için boş bırakın.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Altbaşlık\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Altyazı tüm fotolara eklenecektir.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Tanım\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Halka açık\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Yüklenen bu galeriyi ve içerisindeki tüm fotoları özel yapmak için işaretlemeyin.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Bu başlıkta bir galeri zaten var.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Mevcut bir galeriyi seçin veya yeni bir galeri için bir başlık girin.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\\\"{filename}\\\" alt bir klasör içinde olduğu için gözardı edilecek; zip içindeki tüm fotolar en üst klasörde yer almalı. \"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Zip arşivindeki \\\"{0}\\\" dosyası işlenemedi.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Çok düşük\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Düşük\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Orta-Düşük\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Orta\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Orta-Yüksek\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Yüksek\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Çok Yüksek\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Üst\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Sağ\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Alt\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Sol\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Merkez (Varsayılan)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Soldan sağa ayna aksi\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Yukardan aşağıya ayna aksi\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"90 derece saat yönü tersine döndür\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"90 derece saat yönüne döndür\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"180 derece döndür\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Kutu-kutu, kiremit tarzı\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Ölçekle\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Birden çok filtreyi şu şekilde uygulayabilirsin: \\\"ILK_FILTRE->IKINCI_FILTRE->UCUNCU_FILTRE\\\". Filtreler sırayla uygulanacaktır. Etkin filtreler: %s\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"yayınlama tarihi\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"başlık\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"başlık slug\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\\\"Slug\\\" bir nesne için url dostu eşsiz bir başlıktır.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"tanım\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"Görünür mü?\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Görülebilir galeriler varsayılan görünümlerde sergilenirler.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"fotolar\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"siteler\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"galeri\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"galeriler\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"sayaç\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"imaj\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"çekilme tarihi\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"görüntüleme sayısı\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"şuradan kes\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"efekt\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Bir \\\"admin_thumbnail\\\" foto ölçüleri tanımlanmamış.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Minyatür\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"slug\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"alt yazı\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"eklenme tarihi\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Görülebilir fotolar varsayılan görünümlerde sergilenirler.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"foto\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"isim\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"döndür ya da ayna aksi\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"renk\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"0.0 siyah beyaz bir imaj, 1.0 orjinal imajı verir.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"parlaklık\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"0.0 siyah bir imaj, 1.0 orjinal imajı verir.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"kontrast\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"0.0 katı gri bir imaj, 1.0 orjinal imajı verir.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"keskinlik\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"0.0 blanık bir imaj, 1.0 orjinal imajı verir.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"filtreler\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"boyutlar\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Yansımanın yüksekliği, orjinal imajın yüzdelik oranıdır. 0.0 hiç yansıma vermezken, 1.0 orjinal imaj yüksekliği kadar bir yansıma sağlar.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"gerilim\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Yansıma gradyantının başlangıç opaklığı.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Yansıma gradyantının arkaplan rengi. Bu ayarı sayfanızın arka plan rengine eş seçin.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"foto efekti\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"foto efektleri\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"tarz\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"opaklık\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Katmanın opaklığı.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"su damga\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"su damgaları\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Foto ebat isimleri sadece hafler, rakamlar ve alt tireler içerebilir. Örnekler: \\\"minyaturler\\\", \\\"sergi\\\", \\\"kucuk\\\", \\\"ana_sayfa_vinyeti\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"genişlik\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Eğer genişlik 0 verilirse, verilen yüksekliğe göre ölçeklenecek.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"yükseklik\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Eğer yükseklik 0 verilirse, verilen genişliğe göre ölçeklenecek. \"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"kalite\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG kalitesi\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"imajı büyüt?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Eğer seçilirse, imaj verilen ölçülere göre gerekli ise büyütülecek.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"sığdırmak için kes?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Eğer seçilirse imaj ölçeklenecek ve verilen ebatlara sığdırmak için ölçeklenecek.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"wstępnie cachować?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Eğer seçilirse, fotolar eklenirken, ön belleklenecek.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"görüntüleme sayısını arttır?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Eğer seçilirse, imajın \\\"görüntülenme sayısı\\\", foto görüntülendikçe artacak.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"su damgası imajı\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"photo ebadı\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"photo ebadları\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Eğer hem yükseklik hem de genişlik belirtilirse fotoğraf kırpılır.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Anasayfa\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Yükle\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Lütfen aşağıdaki hatayı düzeltin.\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Lütfen aşağıdaki hataları düzeltin.\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Son foto galeriler\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Yıla göre filtrele\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Hiç galeri bulunamadı\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"%(show_day)s galerileri\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Hiç galeri bulunamadı.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Ayın tüm galerileri\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"%(show_month)s galerileri\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Güne göre filtrele\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Yılın tüm galerilerini görüntüle\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"%(show_year)s galerileri\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Aya göre filtrele\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Tüm galerileri görüntüle\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Yayında\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Tüm galeriler\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Önceki\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    sayfa %(page_number)s / %(total_pages)s\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Sonraki\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Son fotolar\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Foto bulunamadı\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"%(show_day)s galerileri\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Ayın tüm fotoları\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"%(show_month)s fotoları\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Yılın tüm fotoları\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"%(show_year)s fotoları\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Tüm fotoları görüntüle\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Bu fotonun bulunduğu galeriler\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Tüm fotolar\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/tr_TR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2012-09-03 20:28+0000\\n\"\n\"Last-Translator: richardbarran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Turkish (Turkey) (http://www.transifex.com/richardbarran/django-photologue/language/tr_TR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: tr_TR\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/uk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\n# Dmytro Litvinov <litvinov.dmytro.it@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2017-12-03 14:47+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Ukrainian (http://www.transifex.com/richardbarran/django-photologue/language/uk/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: uk\\n\"\n\"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"Наступна фотографія не відноситься до того ж сайту(сайтам), що і галерея, то ж вона не буде відображена %(photo_list)s\"\nmsgstr[1] \"Наступні фотографії не відносяться до того ж сайту(сайтам), що і галерея, то ж вони не будуть відображені %(photo_list)s.\"\nmsgstr[2] \"Наступні фотографії не відносяться до того ж сайту(сайтам), що і галерея, то ж вони не будуть відображені %(photo_list)s\"\nmsgstr[3] \"Наступні фотографії не відносяться до того ж сайту(сайтам), що і галерея, то ж вони не будуть відображені %(photo_list)s\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"Галерея була успішно додана до %(site)s\"\nmsgstr[1] \"Галереї були успішно додані до%(site)s\"\nmsgstr[2] \"Галереї були успішно додані до %(site)s\"\nmsgstr[3] \"Галереї були успішно додані до %(site)s\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"Додати вибрані галереї до поточного сайту\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"Галерея була успішно видалена з %(site)s\"\nmsgstr[1] \"Вибрані галереї були успішно видалені з %(site)s\"\nmsgstr[2] \"Вибрані галереї були успішно видалені з %(site)s\"\nmsgstr[3] \"Вибрані галереї були успішно видалені з %(site)s\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"Видалити вибрані галереї з поточного сайту\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"Всі фото в галереї %(galleries)s були успішно додані до %(site)s\"\nmsgstr[1] \"Всі фото в галереях %(galleries)sбули успішно додані до %(site)s\"\nmsgstr[2] \"Всі фото в галереях %(galleries)s були успішно додані до %(site)s\"\nmsgstr[3] \"Всі фото в галереях %(galleries)s були успішно додані до %(site)s\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"Додати всі фото з вибраних галерей до поточного сайту\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"Усі фото з галереї %(galleries)s були упішно видели з%(site)s\"\nmsgstr[1] \"Усі фото в галереях %(galleries)s були успішно видалені з %(site)s\"\nmsgstr[2] \"Усі фото в галереях %(galleries)s були успішно видалені з %(site)s\"\nmsgstr[3] \"Усі фото в галереях %(galleries)s були успішно видалені з %(site)s\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"Видалити всі фото у вибраних галереях з поточного сайту\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"Вибрані фото були успішно додані до сайту %(site)s\"\nmsgstr[1] \"Вибрані фото були успішно додані до сайтів %(site)s\"\nmsgstr[2] \"Вибрані фото були успішно додані до сайтів %(site)s\"\nmsgstr[3] \"Вибрані фото були успішно додані до сайтів %(site)s\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"Додати вибрані фото до поточного сайту\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"Фото було успішно видалено з %(site)s\"\nmsgstr[1] \"Вибрані фотографії було успішно видалено з %(site)s\"\nmsgstr[2] \"Вибрані фотографії було успішно видалено з %(site)s\"\nmsgstr[3] \"Вибрані фотографії було успішно видалено з %(site)s\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"Видатили вибрані фото з поточного сайту\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"Завантажити Zip архів з фотографіями\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"Назва\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"Всім завантаженим фото отримають назву, яка складається з цієї назви + послідовний номер.  Це поле необхідне для створення нової галереї, але воно необов'язкове, коли додаєшь до існуючої галереї - якщо назва не вказана, назва фотографій буде складана з існюючого ім'я галереї.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"Галерея\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"Виберіть галерею для завантаження фотографій. Залиште поле пустим, щоб створити нову галерею з відповідною назвою.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"Підпис\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"Підпис був додав до всіх фотографій.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"Опис\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"Опис цієї Галереї. Необхідно тільки для нових галерей.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"Чи є загальнодоступним\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"Зніміть цю галку, щоб зробити завантажену галерею і всі фото в ній приватними.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"Вже є така галерея з такою назвою.\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"Виберіть існуюючу галерею чи введіть назву для нової галереї.\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"Файл \\\"{filename}\\\" був пропущений, так як знаходиться в піддиректорії; всі фото повинні бути в кореневій директорії архіву.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"Не вдалось опрацювати файл \\\"{0}\\\" в .zip архіві.\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"Фото були додані до галереї \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"Дуже низьке\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"Низьке\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"Чуть гірше за середнє\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"Середнє\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"Чуть краще середнього\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"Високе\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"Дуже високе\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"Верхня сторона\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"Права сторона\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"Нижня сторона\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"Ліва сторона\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"Центр (за замовчуванням)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"Зеркально відобразити зліва направо\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"Зеркально відобразити зверху вниз\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"Повернути на 90 градусів проти годинникової стрілки\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"Повернути на 90 градусів за годинниковою стрілкою\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"Повернути на 180 градусів\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"Розмістити мозайкою\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"Масштабувати\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"Ланцюг з багатьма фільтрами використовує наступний шаблон \\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Фільтри для зображень будуть прийматись у порядку черги. Наступні фільтри доступні: %s\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"дата публікації\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"назва\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"слаг назви\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"\\\"слаг\\\" - унікальна читабельна назва для об'єкта в адресній стрічці.\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"опис\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"публічно\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"Публічні галереї будуть відображенні на сторінках по замовчуванням.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"фотографії\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"сайти\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"галерея\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"галереї\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"кількість\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"зображення\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"вибрана дата\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"Дані зображення були використані; воно утриється із зображення EXIF даних.\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"кількість просмотрів\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"обрізаний з\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"ефект\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"Розмір \\\"admin_thumbnal\\\" не визначен.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"Мініатюра\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"слаг\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"підпис\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"дата завантаження\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"Публічні фотографії будуть відображатись у використовуваємих уявленнях по замовчуванню.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"фото\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"ім'я\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"повернути чи зеркально відобразити\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"колір\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"Значення 0.0 дає чорно-біле відображення, а 1.0 віддає оригінальне зображення.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"яскравість\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Значення 0.0 дає чорне зображення, а 1.0 - оригінальне зображення.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"контраст\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"Значення 0.0 дає суцільно сіре відображення, а 1.0 віддає оригінальне зображення.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"різкість\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"Значення 0.0 дає розмите відображення, а 1.0 віддає оригінальне зображення.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"фільтри\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"розмір\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"Висота відбиття у відсотках від оригінального зображення. Коефіцієнт 0.0 не додає відбиття, коефіціент 1.0 додає відбиття рівний висоті оригінального зображення.  \"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"сила\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"Початкова непрозорість градієнта відблиска.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"Колір фона градієнта відображення. Відмітьте це для відповідності кольора фона вашої сторінки.\"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"фото-ефект\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"фото-ефекти\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"стиль\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"непрозорість\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"Непрозорість накладення.\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"водяний знак\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"водяні знаки\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"Название размера фотографии должно содержать только буквы, числа и символы подчеркивания. Примеры: \\\\\\\"thumbnail\\\\\\\", \\\\\\\"display\\\\\\\", \\\\\\\"small\\\\\\\", \\\\\\\"main_page_widget\\\\\\n\\nНазва розміра фотографії повинно мати тільки букви, числа та символи підкреслення. Наприклад: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"ширина\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"Якщо ширина виставлено в \\\"0\\\", то зображення буде масштабоване по висоті.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"висота\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"Якщо висота виставлено в \\\"0\\\", то зображення буде масштабоване по ширині\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"якість\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"якість JPEG зображення\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"збільшити фото?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"Якщо вибрано, то зображення буде масштабоване у випадку необхідності, щоб відповідати розмірам.  Обрізані розміри будуть масшабовані незалежно від цієї настройки.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"обрізати?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"Якщо вибрано, то зображення буде замаштабоване та обрізано по розміру.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"кешувати?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"Якщо вибрано, то розмір фото буде закешован при додаванні фото.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"збільшити лічильник просмотрів?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"Якщо вибрано, то \\\"view_count\\\" зображення  буде збільшено, коли показується цей розмір фотографії\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"Водяний знак\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"розмір фотографії\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"Розміри фотографій\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"Можна обрізати фотографії, якщо встановлені ширина на висота.\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"Завантажити zip архів\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"Головна\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"Завантажити\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p> На цій сторінці Ви можете загрузити багато фото за раз, поклавши їх у zip архів. Ви можете:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>Додати до існуючої галереї.</li>\\n\\t\\t\\t<li>Або, створити нову галерею з вказаною назвою.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"Будь ласка, виправте помилку нижче\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"Будь ласка, виправте помилки нижче\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"Останні фото-галереї\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"Фільтр по рокам\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"Галерей не знайдено\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"Галереї за %(show_day)s\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"Галерей не знайдено.\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"Продивитись всі галереї за місяць\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"Галереї за %(show_month)s\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"Фільтр по дням\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"Продивитись всі галереї за місяць\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"Галереї за %(show_year)s\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"Фільтр по місяцям\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"Продивитись всі галереї\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"Опубліковано\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"Всі галереї\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"Попередня\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t сторінка %(page_number)s з %(total_pages)s\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"Наступна\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"Останні фотографії\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"Фотографій не знайдено\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"Фото за %(show_day)s\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"Всі фото за місяць\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"Фото за %(show_month)s\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"Всі фото за рік\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"Фото за %(show_year)s\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"Продивись всі фотографії\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"Це фото знайдено у наступних галереях\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"Всі фото\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/locale/zh_Hans/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Photologue\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-03 21:22+0000\\n\"\n\"PO-Revision-Date: 2020-04-20 21:11+0000\\n\"\n\"Last-Translator: Richard Barran <richard@arbee-design.co.uk>\\n\"\n\"Language-Team: Chinese Simplified (http://www.transifex.com/richardbarran/django-photologue/language/zh-Hans/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: zh-Hans\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: admin.py:61\n#, python-format\nmsgid \"\"\n\"The following photo does not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgid_plural \"\"\n\"The following photos do not belong to the same site(s) as the gallery, so \"\n\"will never be displayed: %(photo_list)s.\"\nmsgstr[0] \"\"\n\n#: admin.py:73\n#, python-format\nmsgid \"The gallery has been successfully added to %(site)s\"\nmsgid_plural \"The galleries have been successfully added to %(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:80\nmsgid \"Add selected galleries to the current site\"\nmsgstr \"添加选中图库到当前站点\"\n\n#: admin.py:86\n#, python-format\nmsgid \"The gallery has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected galleries have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:93\nmsgid \"Remove selected galleries from the current site\"\nmsgstr \"从当前站点中移除选中图库\"\n\n#: admin.py:100\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully added to %(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully added to \"\n\"%(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:108\nmsgid \"Add all photos of selected galleries to the current site\"\nmsgstr \"添加选中图库中的所有照片至当前站点\"\n\n#: admin.py:115\n#, python-format\nmsgid \"\"\n\"All photos in gallery %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgid_plural \"\"\n\"All photos in galleries %(galleries)s have been successfully removed from \"\n\"%(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:123\nmsgid \"Remove all photos in selected galleries from the current site\"\nmsgstr \"从当前站点中移除选中图库中的所有照片\"\n\n#: admin.py:164\n#, python-format\nmsgid \"The photo has been successfully added to %(site)s\"\nmsgid_plural \"The selected photos have been successfully added to %(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:171\nmsgid \"Add selected photos to the current site\"\nmsgstr \"添加选中照片至当前站点\"\n\n#: admin.py:177\n#, python-format\nmsgid \"The photo has been successfully removed from %(site)s\"\nmsgid_plural \"\"\n\"The selected photos have been successfully removed from %(site)s\"\nmsgstr[0] \"\"\n\n#: admin.py:184\nmsgid \"Remove selected photos from the current site\"\nmsgstr \"从当前站点中移除选中照片\"\n\n#: admin.py:198 templates/admin/photologue/photo/upload_zip.html:27\nmsgid \"Upload a zip archive of photos\"\nmsgstr \"上传照片的 zip 存档\"\n\n#: forms.py:27\n#| msgid \"title\"\nmsgid \"Title\"\nmsgstr \"标题\"\n\n#: forms.py:30\nmsgid \"\"\n\"All uploaded photos will be given a title made up of this title + a \"\n\"sequential number.<br>This field is required if creating a new gallery, but \"\n\"is optional when adding to an existing gallery - if not supplied, the photo \"\n\"titles will be creating from the existing gallery name.\"\nmsgstr \"所有已上传的照片将被冠以一个由 此标题 + 有序数字  组成的新标题.<br>此字段在创建新图库时是必需的, 但是在被添加到某个已经存在的图库时则是可选的 - 如果未填写此字段, 照片标题将由这个已经存在的图库标题按上述规则组合而成.\"\n\n#: forms.py:36\n#| msgid \"gallery\"\nmsgid \"Gallery\"\nmsgstr \"图库\"\n\n#: forms.py:38\nmsgid \"\"\n\"Select a gallery to add these images to. Leave this empty to create a new \"\n\"gallery from the supplied title.\"\nmsgstr \"选择一个图库以将这些图片添加进去. 如若留空, 则以所提供的标题来创建一个新图库.\"\n\n#: forms.py:40\n#| msgid \"caption\"\nmsgid \"Caption\"\nmsgstr \"副标题\"\n\n#: forms.py:42\nmsgid \"Caption will be added to all photos.\"\nmsgstr \"副标题将会被添加到所有照片中.\"\n\n#: forms.py:43\n#| msgid \"description\"\nmsgid \"Description\"\nmsgstr \"描述信息\"\n\n#: forms.py:45\n#| msgid \"A description of this Gallery.\"\nmsgid \"A description of this Gallery. Only required for new galleries.\"\nmsgstr \"此图库的描述信息. 此字段只有对新创建的图库是必需的.\"\n\n#: forms.py:46\n#| msgid \"is public\"\nmsgid \"Is public\"\nmsgstr \"是否公开\"\n\n#: forms.py:49\nmsgid \"\"\n\"Uncheck this to make the uploaded gallery and included photographs private.\"\nmsgstr \"反选此处将使得上传的图库及包含的照片设为私有.\"\n\n#: forms.py:72\nmsgid \"A gallery with that title already exists.\"\nmsgstr \"已经存在一个名称相同的图库\"\n\n#: forms.py:82\n#| msgid \"Select a .zip file of images to upload into a new Gallery.\"\nmsgid \"Select an existing gallery, or enter a title for a new gallery.\"\nmsgstr \"选择一个现有图库, 或者键入标题以创建一个新图库\"\n\n#: forms.py:115\n#, python-brace-format\nmsgid \"\"\n\"Ignoring file \\\"{filename}\\\" as it is in a subfolder; all images should be \"\n\"in the top folder of the zip.\"\nmsgstr \"忽略文件 \\\"{filename}\\\" 因为它存在于子目录当中; 所有图像应当存在于 zip 存档的顶层目录中.\"\n\n#: forms.py:156\n#, python-brace-format\nmsgid \"Could not process file \\\"{0}\\\" in the .zip archive.\"\nmsgstr \"无法处理 .zip 存档当中的文件 \\\"{0}\\\".\"\n\n#: forms.py:172\n#, python-brace-format\nmsgid \"The photos have been added to gallery \\\"{0}\\\".\"\nmsgstr \"照片已被添加至图库 \\\"{0}\\\".\"\n\n#: models.py:98\nmsgid \"Very Low\"\nmsgstr \"非常低\"\n\n#: models.py:99\nmsgid \"Low\"\nmsgstr \"低\"\n\n#: models.py:100\nmsgid \"Medium-Low\"\nmsgstr \"较低\"\n\n#: models.py:101\nmsgid \"Medium\"\nmsgstr \"中等\"\n\n#: models.py:102\nmsgid \"Medium-High\"\nmsgstr \"较高\"\n\n#: models.py:103\nmsgid \"High\"\nmsgstr \"高\"\n\n#: models.py:104\nmsgid \"Very High\"\nmsgstr \"非常高\"\n\n#: models.py:109\nmsgid \"Top\"\nmsgstr \"顶部\"\n\n#: models.py:110\nmsgid \"Right\"\nmsgstr \"右侧\"\n\n#: models.py:111\nmsgid \"Bottom\"\nmsgstr \"底部\"\n\n#: models.py:112\nmsgid \"Left\"\nmsgstr \"左侧\"\n\n#: models.py:113\nmsgid \"Center (Default)\"\nmsgstr \"居中 (默认)\"\n\n#: models.py:117\nmsgid \"Flip left to right\"\nmsgstr \"左右翻转\"\n\n#: models.py:118\nmsgid \"Flip top to bottom\"\nmsgstr \"上下翻转\"\n\n#: models.py:119\nmsgid \"Rotate 90 degrees counter-clockwise\"\nmsgstr \"逆时针旋转 90 度\"\n\n#: models.py:120\nmsgid \"Rotate 90 degrees clockwise\"\nmsgstr \"顺时针旋转 90 度\"\n\n#: models.py:121\nmsgid \"Rotate 180 degrees\"\nmsgstr \"旋转 180 度\"\n\n#: models.py:125\nmsgid \"Tile\"\nmsgstr \"平铺\"\n\n#: models.py:126\nmsgid \"Scale\"\nmsgstr \"缩放\"\n\n#: models.py:136\n#, python-format\nmsgid \"\"\n\"Chain multiple filters using the following pattern \"\n\"\\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\". Image filters will be applied in \"\n\"order. The following filters are available: %s.\"\nmsgstr \"请按 \\\"FILTER_ONE->FILTER_TWO->FILTER_THREE\\\" 的格式来串联多个滤镜. 将按照顺序应用图像滤镜. 可用的滤镜有: %s.\"\n\n#: models.py:158\nmsgid \"date published\"\nmsgstr \"发布日期\"\n\n#: models.py:160 models.py:513\nmsgid \"title\"\nmsgstr \"标题\"\n\n#: models.py:163\nmsgid \"title slug\"\nmsgstr \"标题缩写\"\n\n#: models.py:166 models.py:519\nmsgid \"A \\\"slug\\\" is a unique URL-friendly title for an object.\"\nmsgstr \"标题缩写是一个唯一的、易于在 URL 当中使用和解析一个对象的标题\"\n\n#: models.py:167 models.py:596\nmsgid \"description\"\nmsgstr \"描述\"\n\n#: models.py:169 models.py:524\nmsgid \"is public\"\nmsgstr \"是否公开\"\n\n#: models.py:171\nmsgid \"Public galleries will be displayed in the default views.\"\nmsgstr \"公开图库将被显示在默认视图中.\"\n\n#: models.py:175 models.py:536\nmsgid \"photos\"\nmsgstr \"照片\"\n\n#: models.py:177 models.py:527\nmsgid \"sites\"\nmsgstr \"站点\"\n\n#: models.py:185\nmsgid \"gallery\"\nmsgstr \"图库\"\n\n#: models.py:186\nmsgid \"galleries\"\nmsgstr \"图库\"\n\n#: models.py:224\nmsgid \"count\"\nmsgstr \"数量\"\n\n#: models.py:240 models.py:741\nmsgid \"image\"\nmsgstr \"图像\"\n\n#: models.py:243\nmsgid \"date taken\"\nmsgstr \"拍摄日期\"\n\n#: models.py:246\nmsgid \"Date image was taken; is obtained from the image EXIF data.\"\nmsgstr \"图像拍摄时的日期; 包含在图像的 EXIF 元数据中\"\n\n#: models.py:247\nmsgid \"view count\"\nmsgstr \"浏览次数\"\n\n#: models.py:250\nmsgid \"crop from\"\nmsgstr \"裁剪自\"\n\n#: models.py:259\nmsgid \"effect\"\nmsgstr \"效果\"\n\n#: models.py:279\nmsgid \"An \\\"admin_thumbnail\\\" photo size has not been defined.\"\nmsgstr \"\\\"admin_thumbnail\\\" 图像尺寸尚未定义.\"\n\n#: models.py:286\nmsgid \"Thumbnail\"\nmsgstr \"缩略图\"\n\n#: models.py:516\nmsgid \"slug\"\nmsgstr \"缩写\"\n\n#: models.py:520\nmsgid \"caption\"\nmsgstr \"副标题\"\n\n#: models.py:522\nmsgid \"date added\"\nmsgstr \"添加日期\"\n\n#: models.py:526\nmsgid \"Public photographs will be displayed in the default views.\"\nmsgstr \"公开照片将被显示在默认视图中.\"\n\n#: models.py:535\nmsgid \"photo\"\nmsgstr \"照片\"\n\n#: models.py:593 models.py:771\nmsgid \"name\"\nmsgstr \"名称\"\n\n#: models.py:672\nmsgid \"rotate or flip\"\nmsgstr \"旋转或翻转\"\n\n#: models.py:676 models.py:704\nmsgid \"color\"\nmsgstr \"色彩\"\n\n#: models.py:678\nmsgid \"\"\n\"A factor of 0.0 gives a black and white image, a factor of 1.0 gives the \"\n\"original image.\"\nmsgstr \"数值为 0.0 时将产生黑白图像, 数值为 1.0 时将产生原图.\"\n\n#: models.py:680\nmsgid \"brightness\"\nmsgstr \"亮度\"\n\n#: models.py:682\nmsgid \"\"\n\"A factor of 0.0 gives a black image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"数值为 0.0 时将产生纯黑色图像, 数值为 1.0 时将产生原图.\"\n\n#: models.py:684\nmsgid \"contrast\"\nmsgstr \"对比度\"\n\n#: models.py:686\nmsgid \"\"\n\"A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original\"\n\" image.\"\nmsgstr \"数值为 0.0 时将产生纯灰色图像, 数值为 1.0 时将产生原图.\"\n\n#: models.py:688\nmsgid \"sharpness\"\nmsgstr \"锐度\"\n\n#: models.py:690\nmsgid \"\"\n\"A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original \"\n\"image.\"\nmsgstr \"数值为 0.0 时将产生模糊图像, 数值为 1.0 时将产生原图.\"\n\n#: models.py:692\nmsgid \"filters\"\nmsgstr \"滤镜\"\n\n#: models.py:696\nmsgid \"size\"\nmsgstr \"尺寸\"\n\n#: models.py:698\nmsgid \"\"\n\"The height of the reflection as a percentage of the orignal image. A factor \"\n\"of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the \"\n\"height of the orignal image.\"\nmsgstr \"倒影的高度占原图高度的百分比. 数值为 0.0 时将不添加倒影, 数值为 1.0 时将添加一个与原图高度相同的倒影.\"\n\n#: models.py:701\nmsgid \"strength\"\nmsgstr \"拉伸\"\n\n#: models.py:703\nmsgid \"The initial opacity of the reflection gradient.\"\nmsgstr \"倒影渐变的初始不透明度.\"\n\n#: models.py:707\nmsgid \"\"\n\"The background color of the reflection gradient. Set this to match the \"\n\"background color of your page.\"\nmsgstr \"倒影渐变的背景色. 请将其设置为展示页面的背景色. \"\n\n#: models.py:711 models.py:815\nmsgid \"photo effect\"\nmsgstr \"照片效果\"\n\n#: models.py:712\nmsgid \"photo effects\"\nmsgstr \"照片效果\"\n\n#: models.py:743\nmsgid \"style\"\nmsgstr \"样式\"\n\n#: models.py:747\nmsgid \"opacity\"\nmsgstr \"不透明度\"\n\n#: models.py:749\nmsgid \"The opacity of the overlay.\"\nmsgstr \"遮罩的不透明度\"\n\n#: models.py:752\nmsgid \"watermark\"\nmsgstr \"水印\"\n\n#: models.py:753\nmsgid \"watermarks\"\nmsgstr \"水印\"\n\n#: models.py:775\nmsgid \"\"\n\"Photo size name should contain only letters, numbers and underscores. \"\n\"Examples: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\nmsgstr \"照片尺寸名称应当仅包含字母, 数字和下划线. 示例: \\\"thumbnail\\\", \\\"display\\\", \\\"small\\\", \\\"main_page_widget\\\".\"\n\n#: models.py:782\nmsgid \"width\"\nmsgstr \"宽度\"\n\n#: models.py:785\nmsgid \"If width is set to \\\"0\\\" the image will be scaled to the supplied height.\"\nmsgstr \"如果宽度设置为 \\\"0\\\" 则图像将以高度为准进行缩放.\"\n\n#: models.py:786\nmsgid \"height\"\nmsgstr \"高度\"\n\n#: models.py:789\nmsgid \"If height is set to \\\"0\\\" the image will be scaled to the supplied width\"\nmsgstr \"如果高度设置为 \\\"0\\\" 则图像将以宽度为准进行缩放.\"\n\n#: models.py:790\nmsgid \"quality\"\nmsgstr \"质量\"\n\n#: models.py:793\nmsgid \"JPEG image quality.\"\nmsgstr \"JPEG 图像质量\"\n\n#: models.py:794\nmsgid \"upscale images?\"\nmsgstr \"放大图像?\"\n\n#: models.py:796\nmsgid \"\"\n\"If selected the image will be scaled up if necessary to fit the supplied \"\n\"dimensions. Cropped sizes will be upscaled regardless of this setting.\"\nmsgstr \"如果勾选此项, 图像将按需放大以适应所提供的尺寸.裁剪后的尺寸将忽略此项设定并被放大.\"\n\n#: models.py:800\nmsgid \"crop to fit?\"\nmsgstr \"裁剪以适应?\"\n\n#: models.py:802\nmsgid \"\"\n\"If selected the image will be scaled and cropped to fit the supplied \"\n\"dimensions.\"\nmsgstr \"如果勾选此项, 图像将被缩放并裁剪以适应所提供的尺寸.\"\n\n#: models.py:804\nmsgid \"pre-cache?\"\nmsgstr \"预缓存?\"\n\n#: models.py:806\nmsgid \"If selected this photo size will be pre-cached as photos are added.\"\nmsgstr \"如果勾选此项, 当添加照片被添加时, 将被处理为该尺寸并预先缓存.\"\n\n#: models.py:807\nmsgid \"increment view count?\"\nmsgstr \"累计预览次数?\"\n\n#: models.py:809\nmsgid \"\"\n\"If selected the image's \\\"view_count\\\" will be incremented when this photo \"\n\"size is displayed.\"\nmsgstr \"如果勾选此项, 图像的 \\\"预览次数\\\" 将在该尺寸的图像被显示时一并累计.\"\n\n#: models.py:821\nmsgid \"watermark image\"\nmsgstr \"水印图像\"\n\n#: models.py:826\nmsgid \"photo size\"\nmsgstr \"图像尺寸\"\n\n#: models.py:827\nmsgid \"photo sizes\"\nmsgstr \"图像尺寸\"\n\n#: models.py:844\nmsgid \"Can only crop photos if both width and height dimensions are set.\"\nmsgstr \"仅当宽度和高度都被设置时裁剪照片\"\n\n#: templates/admin/photologue/photo/change_list.html:9\nmsgid \"Upload a zip archive\"\nmsgstr \"上传 zip 存档\"\n\n#: templates/admin/photologue/photo/upload_zip.html:15\nmsgid \"Home\"\nmsgstr \"首页\"\n\n#: templates/admin/photologue/photo/upload_zip.html:19\n#: templates/admin/photologue/photo/upload_zip.html:53\nmsgid \"Upload\"\nmsgstr \"上传\"\n\n#: templates/admin/photologue/photo/upload_zip.html:28\nmsgid \"\"\n\"\\n\"\n\"\\t\\t<p>On this page you can upload many photos at once, as long as you have\\n\"\n\"\\t\\tput them all in a zip archive. The photos can be either:</p>\\n\"\n\"\\t\\t<ul>\\n\"\n\"\\t\\t\\t<li>Added to an existing gallery.</li>\\n\"\n\"\\t\\t\\t<li>Otherwise, a new gallery is created with the supplied title.</li>\\n\"\n\"\\t\\t</ul>\\n\"\n\"\\t\"\nmsgstr \"\\n\\t\\t<p>在此页面, 你可以一次性上传包含多张图片的 zip 存档,\\n\\t\\t上传的图片可以被:</p>\\n\\t\\t<ul>\\n\\t\\t\\t<li>添加至现有图库.</li>\\n\\t\\t\\t<li>或者, 以提供的标题创建一个新图库.</li>\\n\\t\\t</ul>\\n\\t\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the error below.\"\nmsgstr \"请更正以下错误\"\n\n#: templates/admin/photologue/photo/upload_zip.html:39\nmsgid \"Please correct the errors below.\"\nmsgstr \"请更正以下错误\"\n\n#: templates/photologue/gallery_archive.html:4\n#: templates/photologue/gallery_archive.html:9\nmsgid \"Latest photo galleries\"\nmsgstr \"最新照片图库\"\n\n#: templates/photologue/gallery_archive.html:16\n#: templates/photologue/photo_archive.html:16\nmsgid \"Filter by year\"\nmsgstr \"按年过滤\"\n\n#: templates/photologue/gallery_archive.html:32\n#: templates/photologue/gallery_list.html:26\nmsgid \"No galleries were found\"\nmsgstr \"未找到图库\"\n\n#: templates/photologue/gallery_archive_day.html:4\n#: templates/photologue/gallery_archive_day.html:9\n#, python-format\nmsgid \"Galleries for %(show_day)s\"\nmsgstr \"%(show_day)s 的图库\"\n\n#: templates/photologue/gallery_archive_day.html:18\n#: templates/photologue/gallery_archive_month.html:32\n#: templates/photologue/gallery_archive_year.html:32\nmsgid \"No galleries were found.\"\nmsgstr \"未找到图库\"\n\n#: templates/photologue/gallery_archive_day.html:22\nmsgid \"View all galleries for month\"\nmsgstr \"按月份浏览所有图库\"\n\n#: templates/photologue/gallery_archive_month.html:4\n#: templates/photologue/gallery_archive_month.html:9\n#, python-format\nmsgid \"Galleries for %(show_month)s\"\nmsgstr \"%(show_month)s 的图库\"\n\n#: templates/photologue/gallery_archive_month.html:16\n#: templates/photologue/photo_archive_month.html:16\nmsgid \"Filter by day\"\nmsgstr \"按天过滤\"\n\n#: templates/photologue/gallery_archive_month.html:35\nmsgid \"View all galleries for year\"\nmsgstr \"按年份浏览所有图库\"\n\n#: templates/photologue/gallery_archive_year.html:4\n#: templates/photologue/gallery_archive_year.html:9\n#, python-format\nmsgid \"Galleries for %(show_year)s\"\nmsgstr \"%(show_year)s 的图库\"\n\n#: templates/photologue/gallery_archive_year.html:16\n#: templates/photologue/photo_archive_year.html:17\nmsgid \"Filter by month\"\nmsgstr \"按月过滤\"\n\n#: templates/photologue/gallery_archive_year.html:35\n#: templates/photologue/gallery_detail.html:17\nmsgid \"View all galleries\"\nmsgstr \"浏览所有图库\"\n\n#: templates/photologue/gallery_detail.html:10\n#: templates/photologue/gallery_list.html:16\n#: templates/photologue/includes/gallery_sample.html:8\n#: templates/photologue/photo_detail.html:10\nmsgid \"Published\"\nmsgstr \"已发布的\"\n\n#: templates/photologue/gallery_list.html:4\n#: templates/photologue/gallery_list.html:9\nmsgid \"All galleries\"\nmsgstr \"所有图库\"\n\n#: templates/photologue/includes/paginator.html:6\n#: templates/photologue/includes/paginator.html:8\nmsgid \"Previous\"\nmsgstr \"上一页\"\n\n#: templates/photologue/includes/paginator.html:11\n#, python-format\nmsgid \"\"\n\"\\n\"\n\"\\t\\t\\t\\t    page %(page_number)s of %(total_pages)s\\n\"\n\"\\t\\t\\t\\t\"\nmsgstr \"\\n\\t\\t\\t\\t    第 %(page_number)s / %(total_pages)s 页\\n\\t\\t\\t\\t\"\n\n#: templates/photologue/includes/paginator.html:16\n#: templates/photologue/includes/paginator.html:18\nmsgid \"Next\"\nmsgstr \"下一页\"\n\n#: templates/photologue/photo_archive.html:4\n#: templates/photologue/photo_archive.html:9\nmsgid \"Latest photos\"\nmsgstr \"最新照片\"\n\n#: templates/photologue/photo_archive.html:34\n#: templates/photologue/photo_archive_day.html:21\n#: templates/photologue/photo_archive_month.html:36\n#: templates/photologue/photo_archive_year.html:37\n#: templates/photologue/photo_list.html:21\nmsgid \"No photos were found\"\nmsgstr \"未找到照片\"\n\n#: templates/photologue/photo_archive_day.html:4\n#: templates/photologue/photo_archive_day.html:9\n#, python-format\nmsgid \"Photos for %(show_day)s\"\nmsgstr \"%(show_day)s 的照片\"\n\n#: templates/photologue/photo_archive_day.html:24\nmsgid \"View all photos for month\"\nmsgstr \"按月份浏览所有照片\"\n\n#: templates/photologue/photo_archive_month.html:4\n#: templates/photologue/photo_archive_month.html:9\n#, python-format\nmsgid \"Photos for %(show_month)s\"\nmsgstr \"%(show_month)s 的照片\"\n\n#: templates/photologue/photo_archive_month.html:39\nmsgid \"View all photos for year\"\nmsgstr \"按年份浏览所有照片\"\n\n#: templates/photologue/photo_archive_year.html:4\n#: templates/photologue/photo_archive_year.html:10\n#, python-format\nmsgid \"Photos for %(show_year)s\"\nmsgstr \"%(show_year)s 的照片\"\n\n#: templates/photologue/photo_archive_year.html:40\nmsgid \"View all photos\"\nmsgstr \"浏览所有照片\"\n\n#: templates/photologue/photo_detail.html:22\nmsgid \"This photo is found in the following galleries\"\nmsgstr \"此照片在下列图库中被找到\"\n\n#: templates/photologue/photo_list.html:4\n#: templates/photologue/photo_list.html:9\nmsgid \"All photos\"\nmsgstr \"所有照片\"\n\n#~ msgid \"\"\n#~ \"All uploaded photos will be given a title made up of this title + a \"\n#~ \"sequential number.\"\n#~ msgstr \"\"\n#~ \"All photos in the gallery will be given a title made up of the gallery title\"\n#~ \" + a sequential number.\"\n\n#~ msgid \"Separate tags with spaces, put quotes around multiple-word tags.\"\n#~ msgstr \"Separate tags with spaces, put quotes around multiple-word tags.\"\n\n#~ msgid \"Django-tagging was not found, tags will be treated as plain text.\"\n#~ msgstr \"Django-tagging was not found, tags will be treated as plain text.\"\n\n#~ msgid \"tags\"\n#~ msgstr \"tags\"\n\n#~ msgid \"images file (.zip)\"\n#~ msgstr \"images file (.zip)\"\n\n#~ msgid \"gallery upload\"\n#~ msgstr \"gallery upload\"\n\n#~ msgid \"gallery uploads\"\n#~ msgstr \"gallery uploads\"\n"
  },
  {
    "path": "photologue/management/__init__.py",
    "content": ""
  },
  {
    "path": "photologue/management/commands/__init__.py",
    "content": "from photologue.models import PhotoSize\n\n\ndef get_response(msg, func=int, default=None):\n    while True:\n        resp = input(msg)\n        if not resp and default is not None:\n            return default\n        try:\n            return func(resp)\n        except:\n            print('Invalid input.')\n\n\ndef create_photosize(name, width=0, height=0, crop=False, pre_cache=False, increment_count=False):\n    try:\n        size = PhotoSize.objects.get(name=name)\n        exists = True\n    except PhotoSize.DoesNotExist:\n        size = PhotoSize(name=name)\n        exists = False\n    if exists:\n        msg = 'A \"%s\" photo size already exists. Do you want to replace it? (yes, no):' % name\n        if not get_response(msg, lambda inp: inp == 'yes', False):\n            return\n    print('\\nWe will now define the \"%s\" photo size:\\n' % size)\n    w = get_response('Width (in pixels):', lambda inp: int(inp), width)\n    h = get_response('Height (in pixels):', lambda inp: int(inp), height)\n    c = get_response('Crop to fit? (yes, no):', lambda inp: inp == 'yes', crop)\n    p = get_response('Pre-cache? (yes, no):', lambda inp: inp == 'yes', pre_cache)\n    i = get_response('Increment count? (yes, no):', lambda inp: inp == 'yes', increment_count)\n    size.width = w\n    size.height = h\n    size.crop = c\n    size.pre_cache = p\n    size.increment_count = i\n    size.save()\n    print('\\nA \"%s\" photo size has been created.\\n' % name)\n    return size\n"
  },
  {
    "path": "photologue/management/commands/plcache.py",
    "content": "from django.core.management.base import BaseCommand, CommandError\n\nfrom photologue.models import ImageModel, PhotoSize\n\n\nclass Command(BaseCommand):\n\n    help = 'Manages Photologue cache file for the given sizes.'\n\n    def add_arguments(self, parser):\n        parser.add_argument('sizes',\n                            nargs='*',\n                            type=str,\n                            help='Name of the photosize.')\n        parser.add_argument('--reset',\n                            action='store_true',\n                            default=False,\n                            dest='reset',\n                            help='Reset photo cache before generating.')\n\n    def handle(self, *args, **options):\n        reset = options['reset']\n        sizes = options['sizes']\n\n        if not sizes:\n            photosizes = PhotoSize.objects.all()\n        else:\n            photosizes = PhotoSize.objects.filter(name__in=sizes)\n\n        if not len(photosizes):\n            raise CommandError('No photo sizes were found.')\n\n        print('Caching photos, this may take a while...')\n\n        for cls in ImageModel.__subclasses__():\n            for photosize in photosizes:\n                print('Cacheing %s size images' % photosize.name)\n                for obj in cls.objects.all():\n                    if reset:\n                        obj.remove_size(photosize)\n                    obj.create_size(photosize)\n"
  },
  {
    "path": "photologue/management/commands/plcreatesize.py",
    "content": "from django.core.management.base import BaseCommand\r\n\r\nfrom photologue.management.commands import create_photosize\r\n\r\n\r\nclass Command(BaseCommand):\r\n    help = ('Creates a new Photologue photo size interactively.')\r\n    requires_model_validation = True\r\n    can_import_settings = True\r\n\r\n    def add_arguments(self, parser):\r\n        parser.add_argument('name',\r\n                            type=str,\r\n                            help='Name of the new photo size')\r\n\r\n    def handle(self, *args, **options):\r\n        create_photosize(options['name'])\r\n"
  },
  {
    "path": "photologue/management/commands/plflush.py",
    "content": "from django.core.management.base import BaseCommand, CommandError\n\nfrom photologue.models import ImageModel, PhotoSize\n\n\nclass Command(BaseCommand):\n    help = 'Clears the Photologue cache for the given sizes.'\n\n    def add_arguments(self, parser):\n        parser.add_argument('sizes',\n                            nargs='*',\n                            type=str,\n                            help='Name of the photosize.')\n\n    def handle(self, *args, **options):\n        sizes = options['sizes']\n\n        if not sizes:\n            photosizes = PhotoSize.objects.all()\n        else:\n            photosizes = PhotoSize.objects.filter(name__in=sizes)\n\n        if not len(photosizes):\n            raise CommandError('No photo sizes were found.')\n\n        print('Flushing cache...')\n\n        for cls in ImageModel.__subclasses__():\n            for photosize in photosizes:\n                print('Flushing %s size images' % photosize.name)\n                for obj in cls.objects.all():\n                    obj.remove_size(photosize)\n"
  },
  {
    "path": "photologue/managers.py",
    "content": "from django.conf import settings\nfrom django.db.models.query import QuerySet\n\n\nclass SharedQueries:\n\n    \"\"\"Some queries that are identical for Gallery and Photo.\"\"\"\n\n    def is_public(self):\n        \"\"\"Trivial filter - will probably become more complex as time goes by!\"\"\"\n        return self.filter(is_public=True)\n\n    def on_site(self):\n        \"\"\"Return objects linked to the current site only.\"\"\"\n        return self.filter(sites__id=settings.SITE_ID)\n\n\nclass GalleryQuerySet(SharedQueries, QuerySet):\n    pass\n\n\nclass PhotoQuerySet(SharedQueries, QuerySet):\n    pass\n"
  },
  {
    "path": "photologue/migrations/0001_initial.py",
    "content": "from django.db import models, migrations\nimport photologue.models\nimport django.utils.timezone\nimport django.core.validators\nimport sortedm2m.fields\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('sites', '0001_initial'),\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name='Gallery',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('date_added', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date published')),\n                ('title', models.CharField(max_length=50, verbose_name='title', unique=True)),\n                ('slug', models.SlugField(help_text='A \"slug\" is a unique URL-friendly title for an object.', verbose_name='title slug', unique=True)),\n                ('description', models.TextField(blank=True, verbose_name='description')),\n                ('is_public', models.BooleanField(help_text='Public galleries will be displayed in the default views.', verbose_name='is public', default=True)),\n                ('tags', photologue.models.TagField(max_length=255, help_text='Django-tagging was not found, tags will be treated as plain text.', blank=True, verbose_name='tags')),\n                ('sites', models.ManyToManyField(blank=True, verbose_name='sites', null=True, to='sites.Site')),\n            ],\n            options={\n                'get_latest_by': 'date_added',\n                'verbose_name': 'gallery',\n                'ordering': ['-date_added'],\n                'verbose_name_plural': 'galleries',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.CreateModel(\n            name='GalleryUpload',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('zip_file', models.FileField(help_text='Select a .zip file of images to upload into a new Gallery.', verbose_name='images file (.zip)', upload_to='photologue/temp')),\n                ('title', models.CharField(max_length=50, help_text='All uploaded photos will be given a title made up of this title + a sequential number.', verbose_name='title')),\n                ('caption', models.TextField(help_text='Caption will be added to all photos.', blank=True, verbose_name='caption')),\n                ('description', models.TextField(help_text='A description of this Gallery.', blank=True, verbose_name='description')),\n                ('is_public', models.BooleanField(help_text='Uncheck this to make the uploaded gallery and included photographs private.', verbose_name='is public', default=True)),\n                ('tags', models.CharField(max_length=255, help_text='Django-tagging was not found, tags will be treated as plain text.', blank=True, verbose_name='tags')),\n                ('gallery', models.ForeignKey(blank=True, verbose_name='gallery', null=True, help_text='Select a gallery to add these images to. Leave this empty to create a new gallery from the supplied title.', to='photologue.Gallery', on_delete=models.CASCADE)),\n            ],\n            options={\n                'verbose_name': 'gallery upload',\n                'verbose_name_plural': 'gallery uploads',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.CreateModel(\n            name='Photo',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('image', models.ImageField(upload_to=photologue.models.get_storage_path, verbose_name='image')),\n                ('date_taken', models.DateTimeField(verbose_name='date taken', blank=True, editable=False, null=True)),\n                ('view_count', models.PositiveIntegerField(verbose_name='view count', default=0, editable=False)),\n                ('crop_from', models.CharField(max_length=10, default='center', blank=True, verbose_name='crop from', choices=[('top', 'Top'), ('right', 'Right'), ('bottom', 'Bottom'), ('left', 'Left'), ('center', 'Center (Default)')])),\n                ('title', models.CharField(max_length=50, verbose_name='title', unique=True)),\n                ('slug', models.SlugField(help_text='A \"slug\" is a unique URL-friendly title for an object.', verbose_name='slug', unique=True)),\n                ('caption', models.TextField(blank=True, verbose_name='caption')),\n                ('date_added', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n                ('is_public', models.BooleanField(help_text='Public photographs will be displayed in the default views.', verbose_name='is public', default=True)),\n                ('tags', photologue.models.TagField(max_length=255, help_text='Django-tagging was not found, tags will be treated as plain text.', blank=True, verbose_name='tags')),\n                ('sites', models.ManyToManyField(blank=True, verbose_name='sites', null=True, to='sites.Site')),\n            ],\n            options={\n                'get_latest_by': 'date_added',\n                'verbose_name': 'photo',\n                'ordering': ['-date_added'],\n                'verbose_name_plural': 'photos',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.AddField(\n            model_name='gallery',\n            name='photos',\n            field=sortedm2m.fields.SortedManyToManyField(blank=True, verbose_name='photos', null=True, to='photologue.Photo'),\n            preserve_default=True,\n        ),\n        migrations.CreateModel(\n            name='PhotoEffect',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('name', models.CharField(max_length=30, verbose_name='name', unique=True)),\n                ('description', models.TextField(blank=True, verbose_name='description')),\n                ('transpose_method', models.CharField(max_length=15, blank=True, verbose_name='rotate or flip', choices=[('FLIP_LEFT_RIGHT', 'Flip left to right'), ('FLIP_TOP_BOTTOM', 'Flip top to bottom'), ('ROTATE_90', 'Rotate 90 degrees counter-clockwise'), ('ROTATE_270', 'Rotate 90 degrees clockwise'), ('ROTATE_180', 'Rotate 180 degrees')])),\n                ('color', models.FloatField(help_text='A factor of 0.0 gives a black and white image, a factor of 1.0 gives the original image.', verbose_name='color', default=1.0)),\n                ('brightness', models.FloatField(help_text='A factor of 0.0 gives a black image, a factor of 1.0 gives the original image.', verbose_name='brightness', default=1.0)),\n                ('contrast', models.FloatField(help_text='A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original image.', verbose_name='contrast', default=1.0)),\n                ('sharpness', models.FloatField(help_text='A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original image.', verbose_name='sharpness', default=1.0)),\n                ('filters', models.CharField(max_length=200, help_text='Chain multiple filters using the following pattern \"FILTER_ONE->FILTER_TWO->FILTER_THREE\". Image filters will be applied in order. The following filters are available: BLUR, CONTOUR, DETAIL, EDGE_ENHANCE, EDGE_ENHANCE_MORE, EMBOSS, FIND_EDGES, SHARPEN, SMOOTH, SMOOTH_MORE.', blank=True, verbose_name='filters')),\n                ('reflection_size', models.FloatField(help_text='The height of the reflection as a percentage of the orignal image. A factor of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the height of the orignal image.', verbose_name='size', default=0)),\n                ('reflection_strength', models.FloatField(help_text='The initial opacity of the reflection gradient.', verbose_name='strength', default=0.6)),\n                ('background_color', models.CharField(max_length=7, help_text='The background color of the reflection gradient. Set this to match the background color of your page.', verbose_name='color', default='#FFFFFF')),\n            ],\n            options={\n                'verbose_name': 'photo effect',\n                'verbose_name_plural': 'photo effects',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.AddField(\n            model_name='photo',\n            name='effect',\n            field=models.ForeignKey(blank=True, verbose_name='effect', null=True, to='photologue.PhotoEffect', on_delete=models.CASCADE),\n            preserve_default=True,\n        ),\n        migrations.CreateModel(\n            name='PhotoSize',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('name', models.CharField(max_length=40, help_text='Photo size name should contain only letters, numbers and underscores. Examples: \"thumbnail\", \"display\", \"small\", \"main_page_widget\".', verbose_name='name', unique=True, validators=[django.core.validators.RegexValidator(regex='^[a-z0-9_]+$', message='Use only plain lowercase letters (ASCII), numbers and underscores.')])),\n                ('width', models.PositiveIntegerField(help_text='If width is set to \"0\" the image will be scaled to the supplied height.', verbose_name='width', default=0)),\n                ('height', models.PositiveIntegerField(help_text='If height is set to \"0\" the image will be scaled to the supplied width', verbose_name='height', default=0)),\n                ('quality', models.PositiveIntegerField(help_text='JPEG image quality.', verbose_name='quality', choices=[(30, 'Very Low'), (40, 'Low'), (50, 'Medium-Low'), (60, 'Medium'), (70, 'Medium-High'), (80, 'High'), (90, 'Very High')], default=70)),\n                ('upscale', models.BooleanField(help_text='If selected the image will be scaled up if necessary to fit the supplied dimensions. Cropped sizes will be upscaled regardless of this setting.', verbose_name='upscale images?', default=False)),\n                ('crop', models.BooleanField(help_text='If selected the image will be scaled and cropped to fit the supplied dimensions.', verbose_name='crop to fit?', default=False)),\n                ('pre_cache', models.BooleanField(help_text='If selected this photo size will be pre-cached as photos are added.', verbose_name='pre-cache?', default=False)),\n                ('increment_count', models.BooleanField(help_text='If selected the image\\'s \"view_count\" will be incremented when this photo size is displayed.', verbose_name='increment view count?', default=False)),\n                ('effect', models.ForeignKey(blank=True, verbose_name='photo effect', null=True, to='photologue.PhotoEffect', on_delete=models.CASCADE)),\n            ],\n            options={\n                'verbose_name': 'photo size',\n                'ordering': ['width', 'height'],\n                'verbose_name_plural': 'photo sizes',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.CreateModel(\n            name='Watermark',\n            fields=[\n                ('id', models.AutoField(primary_key=True, verbose_name='ID', serialize=False, auto_created=True)),\n                ('name', models.CharField(max_length=30, verbose_name='name', unique=True)),\n                ('description', models.TextField(blank=True, verbose_name='description')),\n                ('image', models.ImageField(upload_to='photologue/watermarks', verbose_name='image')),\n                ('style', models.CharField(max_length=5, default='scale', verbose_name='style', choices=[('tile', 'Tile'), ('scale', 'Scale')])),\n                ('opacity', models.FloatField(help_text='The opacity of the overlay.', verbose_name='opacity', default=1)),\n            ],\n            options={\n                'verbose_name': 'watermark',\n                'verbose_name_plural': 'watermarks',\n            },\n            bases=(models.Model,),\n        ),\n        migrations.AddField(\n            model_name='photosize',\n            name='watermark',\n            field=models.ForeignKey(blank=True, verbose_name='watermark image', null=True, to='photologue.Watermark', on_delete=models.CASCADE),\n            preserve_default=True,\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0002_photosize_data.py",
    "content": "from django.db import models, migrations\n\n\ndef initial_photosizes(apps, schema_editor):\n\n    PhotoSize = apps.get_model('photologue', 'PhotoSize')\n\n    # If there are already Photosizes, then we are upgrading an existing\n    # installation, we don't want to auto-create some PhotoSizes.\n    if PhotoSize.objects.all().count() > 0:\n        return\n    PhotoSize.objects.create(name='admin_thumbnail',\n                             width=100,\n                             height=75,\n                             crop=True,\n                             pre_cache=True,\n                             increment_count=False)\n    PhotoSize.objects.create(name='thumbnail',\n                             width=100,\n                             height=75,\n                             crop=True,\n                             pre_cache=True,\n                             increment_count=False)\n    PhotoSize.objects.create(name='display',\n                             width=400,\n                             crop=False,\n                             pre_cache=True,\n                             increment_count=True)\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0001_initial'),\n        ('contenttypes', '0002_remove_content_type_name'),\n    ]\n\n    operations = [\n        migrations.RunPython(initial_photosizes),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0003_auto_20140822_1716.py",
    "content": "from django.db import models, migrations\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0002_photosize_data'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='galleryupload',\n            name='title',\n            field=models.CharField(null=True, help_text='All uploaded photos will be given a title made up of this title + a sequential number.', max_length=50, verbose_name='title', blank=True),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0004_auto_20140915_1259.py",
    "content": "from django.db import models, migrations\nimport sortedm2m.fields\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0003_auto_20140822_1716'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='gallery',\n            name='photos',\n            field=sortedm2m.fields.SortedManyToManyField(to='photologue.Photo', related_name='galleries', null=True, verbose_name='photos', blank=True, help_text=None),\n        ),\n        migrations.AlterField(\n            model_name='photo',\n            name='effect',\n            field=models.ForeignKey(to='photologue.PhotoEffect', blank=True, related_name='photo_related', verbose_name='effect', null=True, on_delete=models.CASCADE),\n        ),\n        migrations.AlterField(\n            model_name='photosize',\n            name='effect',\n            field=models.ForeignKey(to='photologue.PhotoEffect', blank=True, related_name='photo_sizes', verbose_name='photo effect', null=True, on_delete=models.CASCADE),\n        ),\n        migrations.AlterField(\n            model_name='photosize',\n            name='watermark',\n            field=models.ForeignKey(to='photologue.Watermark', blank=True, related_name='photo_sizes', verbose_name='watermark image', null=True, on_delete=models.CASCADE),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0005_auto_20141027_1552.py",
    "content": "from django.db import models, migrations\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0004_auto_20140915_1259'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='photo',\n            name='title',\n            field=models.CharField(unique=True, max_length=60, verbose_name='title'),\n            preserve_default=True,\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0006_auto_20141028_2005.py",
    "content": "from django.db import models, migrations\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0005_auto_20141027_1552'),\n    ]\n\n    operations = [\n        migrations.RemoveField(\n            model_name='galleryupload',\n            name='gallery',\n        ),\n        migrations.DeleteModel(\n            name='GalleryUpload',\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0007_auto_20150404_1737.py",
    "content": "from django.db import models, migrations\nimport sortedm2m.fields\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0006_auto_20141028_2005'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='gallery',\n            name='photos',\n            field=sortedm2m.fields.SortedManyToManyField(help_text=None, related_name='galleries', verbose_name='photos', to='photologue.Photo', blank=True),\n        ),\n        migrations.AlterField(\n            model_name='gallery',\n            name='sites',\n            field=models.ManyToManyField(to='sites.Site', verbose_name='sites', blank=True),\n        ),\n        migrations.AlterField(\n            model_name='photo',\n            name='sites',\n            field=models.ManyToManyField(to='sites.Site', verbose_name='sites', blank=True),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0008_auto_20150509_1557.py",
    "content": "from django.db import models, migrations\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0007_auto_20150404_1737'),\n    ]\n\n    operations = [\n        migrations.RemoveField(\n            model_name='gallery',\n            name='tags',\n        ),\n        migrations.RemoveField(\n            model_name='photo',\n            name='tags',\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0009_auto_20160102_0904.py",
    "content": "# Generated by Django 1.9 on 2016-01-02 09:04\n\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0008_auto_20150509_1557'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='photo',\n            name='date_taken',\n            field=models.DateTimeField(blank=True, help_text='Date image was taken; is obtained from the image EXIF data.', null=True, verbose_name='date taken'),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0010_auto_20160105_1307.py",
    "content": "# Generated by Django 1.9 on 2016-01-05 13:07\n\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0009_auto_20160102_0904'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='gallery',\n            name='slug',\n            field=models.SlugField(help_text='A \"slug\" is a unique URL-friendly title for an object.', max_length=250, unique=True, verbose_name='title slug'),\n        ),\n        migrations.AlterField(\n            model_name='gallery',\n            name='title',\n            field=models.CharField(max_length=250, unique=True, verbose_name='title'),\n        ),\n        migrations.AlterField(\n            model_name='photo',\n            name='slug',\n            field=models.SlugField(help_text='A \"slug\" is a unique URL-friendly title for an object.', max_length=250, unique=True, verbose_name='slug'),\n        ),\n        migrations.AlterField(\n            model_name='photo',\n            name='title',\n            field=models.CharField(max_length=250, unique=True, verbose_name='title'),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0011_auto_20190223_2138.py",
    "content": "# Generated by Django 2.1.7 on 2019-02-23 21:38\n\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0010_auto_20160105_1307'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='photoeffect',\n            name='filters',\n            field=models.CharField(blank=True, help_text='Chain multiple filters using the following pattern \"FILTER_ONE->FILTER_TWO->FILTER_THREE\". Image filters will be applied in order. The following filters are available: BLUR, CONTOUR, DETAIL, EDGE_ENHANCE, EDGE_ENHANCE_MORE, EMBOSS, FIND_EDGES, Kernel, SHARPEN, SMOOTH, SMOOTH_MORE.', max_length=200, verbose_name='filters'),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0012_alter_photo_effect.py",
    "content": "# Generated by Django 4.0.2 on 2022-02-23 09:50\n\nfrom django.db import migrations, models\nimport django.db.models.deletion\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0011_auto_20190223_2138'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='photo',\n            name='effect',\n            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_related', to='photologue.photoeffect', verbose_name='effect'),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/0013_alter_watermark_image.py",
    "content": "# Generated by Django 4.2.3 on 2023-07-28 18:39\n\nfrom django.db import migrations, models\nimport pathlib\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('photologue', '0012_alter_photo_effect'),\n    ]\n\n    operations = [\n        migrations.AlterField(\n            model_name='watermark',\n            name='image',\n            field=models.ImageField(upload_to=pathlib.PurePosixPath('photologue/watermarks'), verbose_name='image'),\n        ),\n    ]\n"
  },
  {
    "path": "photologue/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "photologue/models.py",
    "content": "import logging\nimport os\nimport pathlib\nimport random\nimport unicodedata\nfrom datetime import datetime\nfrom functools import partial\nfrom importlib import import_module\nfrom inspect import isclass\nfrom io import BytesIO\n\nimport exifread\nfrom django.conf import settings\nfrom django.contrib.sites.models import Site\nfrom django.core.exceptions import ValidationError\nfrom django.core.files.base import ContentFile\nfrom django.core.files.storage import default_storage\nfrom django.core.validators import RegexValidator\nfrom django.db import models\nfrom django.db.models.signals import post_save\nfrom django.template.defaultfilters import slugify\nfrom django.urls import reverse\nfrom django.utils.encoding import filepath_to_uri, force_str, smart_str\nfrom django.utils.safestring import mark_safe\nfrom django.utils.timezone import now\nfrom django.utils.translation import gettext_lazy as _\nfrom PIL import Image, ImageEnhance, ImageFile, ImageFilter\nfrom sortedm2m.fields import SortedManyToManyField\n\nfrom .managers import GalleryQuerySet, PhotoQuerySet\nfrom .utils.reflection import add_reflection\nfrom .utils.watermark import apply_watermark\n\nlogger = logging.getLogger('photologue.models')\n\n# Default limit for gallery.latest\nLATEST_LIMIT = getattr(settings, 'PHOTOLOGUE_GALLERY_LATEST_LIMIT', None)\n\n# Number of random images from the gallery to display.\nSAMPLE_SIZE = getattr(settings, 'PHOTOLOGUE_GALLERY_SAMPLE_SIZE', 5)\n\n# max_length setting for the ImageModel ImageField\nIMAGE_FIELD_MAX_LENGTH = getattr(settings, 'PHOTOLOGUE_IMAGE_FIELD_MAX_LENGTH', 100)\n\n# Path to sample image\nSAMPLE_IMAGE_PATH = getattr(settings, 'PHOTOLOGUE_SAMPLE_IMAGE_PATH', os.path.join(\n    os.path.dirname(__file__), 'res', 'sample.jpg'))\n\n# Modify image file buffer size.\nImageFile.MAXBLOCK = getattr(settings, 'PHOTOLOGUE_MAXBLOCK', 256 * 2 ** 10)\n\n# Photologue image path relative to media root\nPHOTOLOGUE_DIR = getattr(settings, 'PHOTOLOGUE_DIR', 'photologue')\n\n# Look for user function to define file paths\nPHOTOLOGUE_PATH = getattr(settings, 'PHOTOLOGUE_PATH', None)\nif PHOTOLOGUE_PATH is not None:\n    if callable(PHOTOLOGUE_PATH):\n        get_storage_path = PHOTOLOGUE_PATH\n    else:\n        parts = PHOTOLOGUE_PATH.split('.')\n        module_name = '.'.join(parts[:-1])\n        module = import_module(module_name)\n        get_storage_path = getattr(module, parts[-1])\nelse:\n    def get_storage_path(instance, filename):\n        fn = unicodedata.normalize('NFKD', force_str(filename)).encode('ascii', 'ignore').decode('ascii')\n        return os.path.join(PHOTOLOGUE_DIR, 'photos', fn)\n\n# Support CACHEDIR.TAG spec for backups for ignoring cache dir.\n# See http://www.brynosaurus.com/cachedir/spec.html\nPHOTOLOGUE_CACHEDIRTAG = os.path.join(PHOTOLOGUE_DIR, \"photos\", \"cache\", \"CACHEDIR.TAG\")\nif not default_storage.exists(PHOTOLOGUE_CACHEDIRTAG):\n    default_storage.save(PHOTOLOGUE_CACHEDIRTAG, ContentFile(\n        b\"Signature: 8a477f597d28d172789f06886806bc55\"))\n\n# Exif Orientation values\n# Value 0thRow\t0thColumn\n#   1\ttop     left\n#   2\ttop     right\n#   3\tbottom\tright\n#   4\tbottom\tleft\n#   5\tleft\ttop\n#   6\tright   top\n#   7\tright   bottom\n#   8\tleft    bottom\n\n# Image Orientations (according to EXIF informations) that needs to be\n# transposed and appropriate action\nIMAGE_EXIF_ORIENTATION_MAP = {\n    2: Image.Transpose.FLIP_LEFT_RIGHT,\n    3: Image.Transpose.ROTATE_180,\n    6: Image.Transpose.ROTATE_270,\n    8: Image.Transpose.ROTATE_90,\n}\n\n# Quality options for JPEG images\nJPEG_QUALITY_CHOICES = (\n    (30, _('Very Low')),\n    (40, _('Low')),\n    (50, _('Medium-Low')),\n    (60, _('Medium')),\n    (70, _('Medium-High')),\n    (80, _('High')),\n    (90, _('Very High')),\n)\n\n# choices for new crop_anchor field in Photo\nCROP_ANCHOR_CHOICES = (\n    ('top', _('Top')),\n    ('right', _('Right')),\n    ('bottom', _('Bottom')),\n    ('left', _('Left')),\n    ('center', _('Center (Default)')),\n)\n\nIMAGE_TRANSPOSE_CHOICES = (\n    ('FLIP_LEFT_RIGHT', _('Flip left to right')),\n    ('FLIP_TOP_BOTTOM', _('Flip top to bottom')),\n    ('ROTATE_90', _('Rotate 90 degrees counter-clockwise')),\n    ('ROTATE_270', _('Rotate 90 degrees clockwise')),\n    ('ROTATE_180', _('Rotate 180 degrees')),\n)\n\nWATERMARK_STYLE_CHOICES = (\n    ('tile', _('Tile')),\n    ('scale', _('Scale')),\n)\n\n# Prepare a list of image filters\nfilter_names = []\nfor n in dir(ImageFilter):\n    klass = getattr(ImageFilter, n)\n    if isclass(klass) and issubclass(klass, ImageFilter.BuiltinFilter) and \\\n            hasattr(klass, 'name'):\n        filter_names.append(klass.__name__)\nIMAGE_FILTERS_HELP_TEXT = _('Chain multiple filters using the following pattern \"FILTER_ONE->FILTER_TWO->FILTER_THREE\"'\n                            '. Image filters will be applied in order. The following filters are available: %s.'\n                            % (', '.join(filter_names)))\n\nsize_method_map = {}\n\n\nclass TagField(models.CharField):\n    \"\"\"Tags have been removed from Photologue, but the migrations still refer to them so this\n    Tagfield definition is left here.\n    \"\"\"\n\n    def __init__(self, **kwargs):\n        default_kwargs = {'max_length': 255, 'blank': True}\n        default_kwargs.update(kwargs)\n        super().__init__(**default_kwargs)\n\n    def get_internal_type(self):\n        return 'CharField'\n\n\nclass Gallery(models.Model):\n    date_added = models.DateTimeField(_('date published'),\n                                      default=now)\n    title = models.CharField(_('title'),\n                             max_length=250,\n                             unique=True)\n    slug = models.SlugField(_('title slug'),\n                            unique=True,\n                            max_length=250,\n                            help_text=_('A \"slug\" is a unique URL-friendly title for an object.'))\n    description = models.TextField(_('description'),\n                                   blank=True)\n    is_public = models.BooleanField(_('is public'),\n                                    default=True,\n                                    help_text=_('Public galleries will be displayed '\n                                                'in the default views.'))\n    photos = SortedManyToManyField('photologue.Photo',\n                                   related_name='galleries',\n                                   verbose_name=_('photos'),\n                                   blank=True)\n    sites = models.ManyToManyField(Site, verbose_name=_('sites'),\n                                   blank=True)\n\n    objects = GalleryQuerySet.as_manager()\n\n    class Meta:\n        ordering = ['-date_added']\n        get_latest_by = 'date_added'\n        verbose_name = _('gallery')\n        verbose_name_plural = _('galleries')\n\n    def __str__(self):\n        return self.title\n\n    def get_absolute_url(self):\n        return reverse('photologue:pl-gallery', args=[self.slug])\n\n    def latest(self, limit=LATEST_LIMIT, public=True):\n        if not limit:\n            limit = self.photo_count()\n        if public:\n            return self.public()[:limit]\n        else:\n            return self.photos.filter(sites__id=settings.SITE_ID)[:limit]\n\n    def sample(self, count=None, public=True):\n        \"\"\"Return a sample of photos, ordered at random.\n        If the 'count' is not specified, it will return a number of photos\n        limited by the GALLERY_SAMPLE_SIZE setting.\n        \"\"\"\n        if not count:\n            count = SAMPLE_SIZE\n        if count > self.photo_count():\n            count = self.photo_count()\n        if public:\n            photo_set = self.public()\n        else:\n            photo_set = self.photos.filter(sites__id=settings.SITE_ID)\n        return random.sample(list(set(photo_set)), count)\n\n    def photo_count(self, public=True):\n        \"\"\"Return a count of all the photos in this gallery.\"\"\"\n        if public:\n            return self.public().count()\n        else:\n            return self.photos.filter(sites__id=settings.SITE_ID).count()\n\n    photo_count.short_description = _('count')\n\n    def public(self):\n        \"\"\"Return a queryset of all the public photos in this gallery.\"\"\"\n        return self.photos.is_public().filter(sites__id=settings.SITE_ID)\n\n    def orphaned_photos(self):\n        \"\"\"\n        Return all photos that belong to this gallery but don't share the\n        gallery's site.\n        \"\"\"\n        return self.photos.filter(is_public=True) \\\n            .exclude(sites__id__in=self.sites.all())\n\n\nclass ImageModel(models.Model):\n    image = models.ImageField(_('image'),\n                              max_length=IMAGE_FIELD_MAX_LENGTH,\n                              upload_to=get_storage_path)\n    date_taken = models.DateTimeField(_('date taken'),\n                                      null=True,\n                                      blank=True,\n                                      help_text=_('Date image was taken; is obtained from the image EXIF data.'))\n    view_count = models.PositiveIntegerField(_('view count'),\n                                             default=0,\n                                             editable=False)\n    crop_from = models.CharField(_('crop from'),\n                                 blank=True,\n                                 max_length=10,\n                                 default='center',\n                                 choices=CROP_ANCHOR_CHOICES)\n    effect = models.ForeignKey('photologue.PhotoEffect',\n                               null=True,\n                               blank=True,\n                               related_name=\"%(class)s_related\",\n                               verbose_name=_('effect'),\n                               on_delete=models.CASCADE)\n\n    class Meta:\n        abstract = True\n\n    def EXIF(self, file=None):\n        try:\n            if file:\n                tags = exifread.process_file(file)\n            else:\n                with self.image.storage.open(self.image.name, 'rb') as file:\n                    tags = exifread.process_file(file, details=False)\n            return tags\n        except:\n            return {}\n\n    def admin_thumbnail(self):\n        func = getattr(self, 'get_admin_thumbnail_url', None)\n        if func is None:\n            return _('An \"admin_thumbnail\" photo size has not been defined.')\n        else:\n            if hasattr(self, 'get_absolute_url'):\n                return mark_safe(f'<a href=\"{self.get_absolute_url()}\"><img src=\"{func()}\"></a>')\n            else:\n                return mark_safe(f'<a href=\"{self.image.url}\"><img src=\"{func()}\"></a>')\n\n    admin_thumbnail.short_description = _('Thumbnail')\n    admin_thumbnail.allow_tags = True\n\n    def cache_path(self):\n        return os.path.join(os.path.dirname(self.image.name), \"cache\")\n\n    def cache_url(self):\n        return '/'.join([os.path.dirname(self.image.url), \"cache\"])\n\n    def image_filename(self):\n        return os.path.basename(force_str(self.image.name))\n\n    def _get_filename_for_size(self, size):\n        size = getattr(size, 'name', size)\n        base, ext = os.path.splitext(self.image_filename())\n        return ''.join([base, '_', size, ext])\n\n    def _get_SIZE_photosize(self, size):\n        return PhotoSizeCache().sizes.get(size)\n\n    def _get_SIZE_size(self, size):\n        photosize = PhotoSizeCache().sizes.get(size)\n        if not self.size_exists(photosize):\n            self.create_size(photosize)\n        try:\n            return Image.open(self.image.storage.open(\n                self._get_SIZE_filename(size))).size\n        except:\n            return None\n\n    def _get_SIZE_url(self, size):\n        photosize = PhotoSizeCache().sizes.get(size)\n        if not self.size_exists(photosize):\n            self.create_size(photosize)\n        if photosize.increment_count:\n            self.increment_count()\n        return '/'.join([\n            self.cache_url(),\n            filepath_to_uri(self._get_filename_for_size(photosize.name))])\n\n    def _get_SIZE_filename(self, size):\n        photosize = PhotoSizeCache().sizes.get(size)\n        return smart_str(os.path.join(self.cache_path(),\n                                      self._get_filename_for_size(photosize.name)))\n\n    def increment_count(self):\n        self.view_count += 1\n        models.Model.save(self)\n\n    def __getattr__(self, name):\n        global size_method_map  # noqa: F824\n        if not size_method_map:\n            init_size_method_map()\n        di = size_method_map.get(name, None)\n        if di is not None:\n            result = partial(getattr(self, di['base_name']), di['size'])\n            setattr(self, name, result)\n            return result\n        else:\n            raise AttributeError\n\n    def size_exists(self, photosize):\n        func = getattr(self, \"get_%s_filename\" % photosize.name, None)\n        if func is not None:\n            if self.image.storage.exists(func()):\n                return True\n        return False\n\n    def resize_image(self, im, photosize):\n        cur_width, cur_height = im.size\n        new_width, new_height = photosize.size\n        if photosize.crop:\n            ratio = max(float(new_width) / cur_width, float(new_height) / cur_height)\n            x = (cur_width * ratio)\n            y = (cur_height * ratio)\n            xd = abs(new_width - x)\n            yd = abs(new_height - y)\n            x_diff = int(xd / 2)\n            y_diff = int(yd / 2)\n            if self.crop_from == 'top':\n                box = (int(x_diff), 0, int(x_diff + new_width), new_height)\n            elif self.crop_from == 'left':\n                box = (0, int(y_diff), new_width, int(y_diff + new_height))\n            elif self.crop_from == 'bottom':\n                # y - yd = new_height\n                box = (int(x_diff), int(yd), int(x_diff + new_width), int(y))\n            elif self.crop_from == 'right':\n                # x - xd = new_width\n                box = (int(xd), int(y_diff), int(x), int(y_diff + new_height))\n            else:\n                box = (int(x_diff), int(y_diff), int(x_diff + new_width), int(y_diff + new_height))\n            im = im.resize((int(x), int(y)), Image.Resampling.LANCZOS).crop(box)\n        else:\n            if not new_width == 0 and not new_height == 0:\n                ratio = min(float(new_width) / cur_width,\n                            float(new_height) / cur_height)\n            else:\n                if new_width == 0:\n                    ratio = float(new_height) / cur_height\n                else:\n                    ratio = float(new_width) / cur_width\n            new_dimensions = (int(round(cur_width * ratio)),\n                              int(round(cur_height * ratio)))\n            if new_dimensions[0] > cur_width or \\\n                    new_dimensions[1] > cur_height:\n                if not photosize.upscale:\n                    return im\n            im = im.resize(new_dimensions, Image.Resampling.LANCZOS)\n        return im\n\n    def create_size(self, photosize, recreate=False):\n        if self.size_exists(photosize) and not recreate:\n            return\n        try:\n            im = Image.open(self.image.storage.open(self.image.name))\n        except OSError:\n            return\n        # Save the original format\n        im_format = im.format\n        # Apply effect if found\n        if self.effect is not None:\n            im = self.effect.pre_process(im)\n        elif photosize.effect is not None:\n            im = photosize.effect.pre_process(im)\n        # Rotate if found & necessary\n        if 'Image Orientation' in self.EXIF() and \\\n                self.EXIF().get('Image Orientation').values[0] in IMAGE_EXIF_ORIENTATION_MAP:\n            im = im.transpose(\n                IMAGE_EXIF_ORIENTATION_MAP[self.EXIF().get('Image Orientation').values[0]])\n        # Resize/crop image\n        if (im.size != photosize.size and photosize.size != (0, 0)) or recreate:\n            im = self.resize_image(im, photosize)\n        # Apply watermark if found\n        if photosize.watermark is not None:\n            im = photosize.watermark.post_process(im)\n        # Apply effect if found\n        if self.effect is not None:\n            im = self.effect.post_process(im)\n        elif photosize.effect is not None:\n            im = photosize.effect.post_process(im)\n        # Save file\n        im_filename = getattr(self, \"get_%s_filename\" % photosize.name)()\n        try:\n            buffer = BytesIO()\n            if im_format != 'JPEG':\n                im.save(buffer, im_format)\n            else:\n                # Issue #182 - test fix from https://github.com/bashu/django-watermark/issues/31\n                if im.mode.endswith('A'):\n                    im = im.convert(im.mode[:-1])\n                im.save(buffer, 'JPEG', quality=int(photosize.quality),\n                        optimize=True)\n            buffer_contents = ContentFile(buffer.getvalue())\n            self.image.storage.save(im_filename, buffer_contents)\n        except OSError as e:\n            if self.image.storage.exists(im_filename):\n                self.image.storage.delete(im_filename)\n            raise e\n\n    def remove_size(self, photosize, remove_dirs=True):\n        if not self.size_exists(photosize):\n            return\n        filename = getattr(self, \"get_%s_filename\" % photosize.name)()\n        if self.image.storage.exists(filename):\n            self.image.storage.delete(filename)\n\n    def clear_cache(self):\n        cache = PhotoSizeCache()\n        for photosize in cache.sizes.values():\n            self.remove_size(photosize, False)\n\n    def pre_cache(self, recreate=False):\n        cache = PhotoSizeCache()\n        if recreate:\n            self.clear_cache()\n        for photosize in cache.sizes.values():\n            if photosize.pre_cache:\n                self.create_size(photosize, recreate)\n\n    def __init__(self, *args, **kwargs):\n        super().__init__(*args, **kwargs)\n        self._old_image = self.image\n\n    def save(self, *args, **kwargs):\n        recreate = kwargs.pop('recreate', False)\n        image_has_changed = False\n        if self._get_pk_val() and (self._old_image != self.image):\n            image_has_changed = True\n            # If we have changed the image, we need to clear from the cache all instances of the old\n            # image; clear_cache() works on the current (new) image, and in turn calls several other methods.\n            # Changing them all to act on the old image was a lot of changes, so instead we temporarily swap old\n            # and new images.\n            new_image = self.image\n            self.image = self._old_image\n            self.clear_cache()\n            self.image = new_image  # Back to the new image.\n            self._old_image.storage.delete(self._old_image.name)  # Delete (old) base image.\n        if self.date_taken is None or image_has_changed:\n            # Attempt to get the date the photo was taken from the EXIF data.\n            try:\n                exif_date = self.EXIF(self.image.file).get('EXIF DateTimeOriginal', None)\n                if exif_date is not None:\n                    d, t = exif_date.values.split()\n                    year, month, day = d.split(':')\n                    hour, minute, second = t.split(':')\n                    self.date_taken = datetime(int(year), int(month), int(day),\n                                               int(hour), int(minute), int(second))\n            except:\n                logger.error('Failed to read EXIF DateTimeOriginal', exc_info=True)\n        super().save(*args, **kwargs)\n        self.pre_cache(recreate)\n\n    def delete(self):\n        assert self._get_pk_val() is not None, \\\n            \"%s object can't be deleted because its %s attribute is set to None.\" % \\\n            (self._meta.object_name, self._meta.pk.attname)\n        self.clear_cache()\n        # Files associated to a FileField have to be manually deleted:\n        # https://docs.djangoproject.com/en/dev/releases/1.3/#deleting-a-model-doesn-t-delete-associated-files\n        # http://haineault.com/blog/147/\n        # The data loss scenarios mentioned in the docs hopefully do not apply\n        # to Photologue!\n        super().delete()\n        self.image.storage.delete(self.image.name)\n\n\nclass Photo(ImageModel):\n    title = models.CharField(_('title'),\n                             max_length=250,\n                             unique=True)\n    slug = models.SlugField(_('slug'),\n                            unique=True,\n                            max_length=250,\n                            help_text=_('A \"slug\" is a unique URL-friendly title for an object.'))\n    caption = models.TextField(_('caption'),\n                               blank=True)\n    date_added = models.DateTimeField(_('date added'),\n                                      default=now)\n    is_public = models.BooleanField(_('is public'),\n                                    default=True,\n                                    help_text=_('Public photographs will be displayed in the default views.'))\n    sites = models.ManyToManyField(Site, verbose_name=_('sites'),\n                                   blank=True)\n\n    objects = PhotoQuerySet.as_manager()\n\n    class Meta:\n        ordering = ['-date_added']\n        get_latest_by = 'date_added'\n        verbose_name = _(\"photo\")\n        verbose_name_plural = _(\"photos\")\n\n    def __str__(self):\n        return self.title\n\n    def save(self, *args, **kwargs):\n        # If crop_from or effect property has been changed on existing image,\n        # update kwargs to force image recreation in parent class\n        current = Photo.objects.get(pk=self.pk) if self.pk else None\n        if current and (current.crop_from != self.crop_from or current.effect != self.effect):\n            kwargs.update(recreate=True)\n\n        if self.slug is None:\n            self.slug = slugify(self.title)\n        super().save(*args, **kwargs)\n\n    def get_absolute_url(self):\n        return reverse('photologue:pl-photo', args=[self.slug])\n\n    def public_galleries(self):\n        \"\"\"Return the public galleries to which this photo belongs.\"\"\"\n        return self.galleries.filter(is_public=True)\n\n    def get_previous_in_gallery(self, gallery):\n        \"\"\"Find the neighbour of this photo in the supplied gallery.\n        We assume that the gallery and all its photos are on the same site.\n        \"\"\"\n        if not self.is_public:\n            raise ValueError('Cannot determine neighbours of a non-public photo.')\n        photos = gallery.photos.is_public()\n        if self not in photos:\n            raise ValueError('Photo does not belong to gallery.')\n        previous = None\n        for photo in photos:\n            if photo == self:\n                return previous\n            previous = photo\n\n    def get_next_in_gallery(self, gallery):\n        \"\"\"Find the neighbour of this photo in the supplied gallery.\n        We assume that the gallery and all its photos are on the same site.\n        \"\"\"\n        if not self.is_public:\n            raise ValueError('Cannot determine neighbours of a non-public photo.')\n        photos = gallery.photos.is_public()\n        if self not in photos:\n            raise ValueError('Photo does not belong to gallery.')\n        matched = False\n        for photo in photos:\n            if matched:\n                return photo\n            if photo == self:\n                matched = True\n        return None\n\n\nclass BaseEffect(models.Model):\n    name = models.CharField(_('name'),\n                            max_length=30,\n                            unique=True)\n    description = models.TextField(_('description'),\n                                   blank=True)\n\n    class Meta:\n        abstract = True\n\n    def sample_dir(self):\n        return os.path.join(PHOTOLOGUE_DIR, 'samples')\n\n    def sample_url(self):\n        return settings.MEDIA_URL + '/'.join([PHOTOLOGUE_DIR, 'samples',\n                                              '{} {}.jpg'.format(self.name.lower(), 'sample')])\n\n    def sample_filename(self):\n        return os.path.join(self.sample_dir(), '{} {}.jpg'.format(self.name.lower(), 'sample'))\n\n    def create_sample(self):\n        try:\n            im = Image.open(SAMPLE_IMAGE_PATH)\n        except OSError:\n            raise OSError(\n                'Photologue was unable to open the sample image: %s.' % SAMPLE_IMAGE_PATH)\n        im = self.process(im)\n        buffer = BytesIO()\n        # Issue #182 - test fix from https://github.com/bashu/django-watermark/issues/31\n        if im.mode.endswith('A'):\n            im = im.convert(im.mode[:-1])\n        im.save(buffer, 'JPEG', quality=90, optimize=True)\n        buffer_contents = ContentFile(buffer.getvalue())\n        default_storage.save(self.sample_filename(), buffer_contents)\n\n    def admin_sample(self):\n        return '<img src=\"%s\">' % self.sample_url()\n\n    admin_sample.short_description = 'Sample'\n    admin_sample.allow_tags = True\n\n    def pre_process(self, im):\n        return im\n\n    def post_process(self, im):\n        return im\n\n    def process(self, im):\n        im = self.pre_process(im)\n        im = self.post_process(im)\n        return im\n\n    def __str__(self):\n        return self.name\n\n    def save(self, *args, **kwargs):\n        try:\n            default_storage.delete(self.sample_filename())\n        except:\n            pass\n        models.Model.save(self, *args, **kwargs)\n        self.create_sample()\n        for size in self.photo_sizes.all():\n            size.clear_cache()\n        # try to clear all related subclasses of ImageModel\n        for prop in [prop for prop in dir(self) if prop[-8:] == '_related']:\n            for obj in getattr(self, prop).all():\n                obj.clear_cache()\n                obj.pre_cache()\n\n    def delete(self):\n        try:\n            default_storage.delete(self.sample_filename())\n        except:\n            pass\n        models.Model.delete(self)\n\n\nclass PhotoEffect(BaseEffect):\n    \"\"\" A pre-defined effect to apply to photos \"\"\"\n    transpose_method = models.CharField(_('rotate or flip'),\n                                        max_length=15,\n                                        blank=True,\n                                        choices=IMAGE_TRANSPOSE_CHOICES)\n    color = models.FloatField(_('color'),\n                              default=1.0,\n                              help_text=_('A factor of 0.0 gives a black and white image, a factor of 1.0 gives the '\n                                          'original image.'))\n    brightness = models.FloatField(_('brightness'),\n                                   default=1.0,\n                                   help_text=_('A factor of 0.0 gives a black image, a factor of 1.0 gives the '\n                                               'original image.'))\n    contrast = models.FloatField(_('contrast'),\n                                 default=1.0,\n                                 help_text=_('A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the '\n                                             'original image.'))\n    sharpness = models.FloatField(_('sharpness'),\n                                  default=1.0,\n                                  help_text=_('A factor of 0.0 gives a blurred image, a factor of 1.0 gives the '\n                                              'original image.'))\n    filters = models.CharField(_('filters'),\n                               max_length=200,\n                               blank=True,\n                               help_text=_(IMAGE_FILTERS_HELP_TEXT))\n    reflection_size = models.FloatField(_('size'),\n                                        default=0,\n                                        help_text=_('The height of the reflection as a percentage of the orignal '\n                                                    'image. A factor of 0.0 adds no reflection, a factor of 1.0 adds a'\n                                                    ' reflection equal to the height of the orignal image.'))\n    reflection_strength = models.FloatField(_('strength'),\n                                            default=0.6,\n                                            help_text=_('The initial opacity of the reflection gradient.'))\n    background_color = models.CharField(_('color'),\n                                        max_length=7,\n                                        default=\"#FFFFFF\",\n                                        help_text=_('The background color of the reflection gradient. Set this to '\n                                                    'match the background color of your page.'))\n\n    class Meta:\n        verbose_name = _(\"photo effect\")\n        verbose_name_plural = _(\"photo effects\")\n\n    def pre_process(self, im):\n        if self.transpose_method != '':\n            method = getattr(Image, self.transpose_method)\n            im = im.transpose(method)\n        if im.mode != 'RGB' and im.mode != 'RGBA':\n            return im\n        for name in ['Color', 'Brightness', 'Contrast', 'Sharpness']:\n            factor = getattr(self, name.lower())\n            if factor != 1.0:\n                im = getattr(ImageEnhance, name)(im).enhance(factor)\n        for name in self.filters.split('->'):\n            image_filter = getattr(ImageFilter, name.upper(), None)\n            if image_filter is not None:\n                try:\n                    im = im.filter(image_filter)\n                except ValueError:\n                    pass\n        return im\n\n    def post_process(self, im):\n        if self.reflection_size != 0.0:\n            im = add_reflection(im, bgcolor=self.background_color,\n                                amount=self.reflection_size, opacity=self.reflection_strength)\n        return im\n\n\nclass Watermark(BaseEffect):\n    image = models.ImageField(_('image'),\n                              upload_to=pathlib.Path(PHOTOLOGUE_DIR) / \"watermarks\")\n    style = models.CharField(_('style'),\n                             max_length=5,\n                             choices=WATERMARK_STYLE_CHOICES,\n                             default='scale')\n    opacity = models.FloatField(_('opacity'),\n                                default=1,\n                                help_text=_(\"The opacity of the overlay.\"))\n\n    class Meta:\n        verbose_name = _('watermark')\n        verbose_name_plural = _('watermarks')\n\n    def delete(self):\n        assert self._get_pk_val() is not None, \"%s object can't be deleted because its %s attribute is set to None.\" \\\n                                               % (self._meta.object_name, self._meta.pk.attname)\n        super().delete()\n        self.image.storage.delete(self.image.name)\n\n    def post_process(self, im):\n        mark = Image.open(self.image.storage.open(self.image.name))\n        return apply_watermark(im, mark, self.style, self.opacity)\n\n\nclass PhotoSize(models.Model):\n    \"\"\"About the Photosize name: it's used to create get_PHOTOSIZE_url() methods,\n    so the name has to follow the same restrictions as any Python method name,\n    e.g. no spaces or non-ascii characters.\"\"\"\n\n    name = models.CharField(_('name'),\n                            max_length=40,\n                            unique=True,\n                            help_text=_(\n                                'Photo size name should contain only letters, numbers and underscores. Examples: '\n                                '\"thumbnail\", \"display\", \"small\", \"main_page_widget\".'),\n                            validators=[RegexValidator(regex='^[a-z0-9_]+$',\n                                                       message='Use only plain lowercase letters (ASCII), numbers and '\n                                                               'underscores.'\n                                                       )]\n                            )\n    width = models.PositiveIntegerField(_('width'),\n                                        default=0,\n                                        help_text=_(\n                                            'If width is set to \"0\" the image will be scaled to the supplied height.'))\n    height = models.PositiveIntegerField(_('height'),\n                                         default=0,\n                                         help_text=_(\n                                             'If height is set to \"0\" the image will be scaled to the supplied width'))\n    quality = models.PositiveIntegerField(_('quality'),\n                                          choices=JPEG_QUALITY_CHOICES,\n                                          default=70,\n                                          help_text=_('JPEG image quality.'))\n    upscale = models.BooleanField(_('upscale images?'),\n                                  default=False,\n                                  help_text=_('If selected the image will be scaled up if necessary to fit the '\n                                              'supplied dimensions. Cropped sizes will be upscaled regardless of this '\n                                              'setting.')\n                                  )\n    crop = models.BooleanField(_('crop to fit?'),\n                               default=False,\n                               help_text=_('If selected the image will be scaled and cropped to fit the supplied '\n                                           'dimensions.'))\n    pre_cache = models.BooleanField(_('pre-cache?'),\n                                    default=False,\n                                    help_text=_('If selected this photo size will be pre-cached as photos are added.'))\n    increment_count = models.BooleanField(_('increment view count?'),\n                                          default=False,\n                                          help_text=_('If selected the image\\'s \"view_count\" will be incremented when '\n                                                      'this photo size is displayed.'))\n    effect = models.ForeignKey('photologue.PhotoEffect',\n                               null=True,\n                               blank=True,\n                               related_name='photo_sizes',\n                               verbose_name=_('photo effect'),\n                               on_delete=models.CASCADE)\n    watermark = models.ForeignKey('photologue.Watermark',\n                                  null=True,\n                                  blank=True,\n                                  related_name='photo_sizes',\n                                  verbose_name=_('watermark image'),\n                                  on_delete=models.CASCADE)\n\n    class Meta:\n        ordering = ['width', 'height']\n        verbose_name = _('photo size')\n        verbose_name_plural = _('photo sizes')\n\n    def __str__(self):\n        return self.name\n\n    def clear_cache(self):\n        for cls in ImageModel.__subclasses__():\n            for obj in cls.objects.all():\n                obj.remove_size(self)\n                if self.pre_cache:\n                    obj.create_size(self)\n        PhotoSizeCache().reset()\n\n    def clean(self):\n        if self.crop is True:\n            if self.width == 0 or self.height == 0:\n                raise ValidationError(\n                    _(\"Can only crop photos if both width and height dimensions are set.\"))\n\n    def save(self, *args, **kwargs):\n        super().save(*args, **kwargs)\n        PhotoSizeCache().reset()\n        self.clear_cache()\n\n    def delete(self):\n        assert self._get_pk_val() is not None, \"%s object can't be deleted because its %s attribute is set to None.\" \\\n                                               % (self._meta.object_name, self._meta.pk.attname)\n        self.clear_cache()\n        super().delete()\n\n    def _get_size(self):\n        return (self.width, self.height)\n\n    def _set_size(self, value):\n        self.width, self.height = value\n\n    size = property(_get_size, _set_size)\n\n\nclass PhotoSizeCache:\n    __state = {\"sizes\": {}}\n\n    def __init__(self):\n        self.__dict__ = self.__state\n        if not len(self.sizes):\n            sizes = PhotoSize.objects.all()\n            for size in sizes:\n                self.sizes[size.name] = size\n\n    def reset(self):\n        global size_method_map  # noqa: F824\n        size_method_map = {}\n        self.sizes = {}\n\n\ndef init_size_method_map():\n    global size_method_map  # noqa: F824\n    for size in PhotoSizeCache().sizes.keys():\n        size_method_map['get_%s_size' % size] = \\\n            {'base_name': '_get_SIZE_size', 'size': size}\n        size_method_map['get_%s_photosize' % size] = \\\n            {'base_name': '_get_SIZE_photosize', 'size': size}\n        size_method_map['get_%s_url' % size] = \\\n            {'base_name': '_get_SIZE_url', 'size': size}\n        size_method_map['get_%s_filename' % size] = \\\n            {'base_name': '_get_SIZE_filename', 'size': size}\n\n\ndef add_default_site(instance, created, **kwargs):\n    \"\"\"\n    Called via Django's signals when an instance is created.\n    In case PHOTOLOGUE_MULTISITE is False, the current site (i.e.\n    ``settings.SITE_ID``) will always be added to the site relations if none are\n    present.\n    \"\"\"\n    if not created:\n        return\n    if getattr(settings, 'PHOTOLOGUE_MULTISITE', False):\n        return\n    if instance.sites.exists():\n        return\n    instance.sites.add(Site.objects.get_current())\n\n\npost_save.connect(add_default_site, sender=Gallery)\npost_save.connect(add_default_site, sender=Photo)\n"
  },
  {
    "path": "photologue/sitemaps.py",
    "content": "\"\"\"\nThe `Sitemaps protocol <http://en.wikipedia.org/wiki/Sitemaps>`_ allows a webmaster\nto inform search engines about URLs on a website that are available for crawling.\nDjango comes with a high-level framework that makes generating sitemap XML files easy.\n\nInstall the sitemap application as per the `instructions in the django documentation\n<https://docs.djangoproject.com/en/dev/ref/contrib/sitemaps/>`_, then edit your\nproject's ``urls.py`` and add a reference to Photologue's Sitemap classes in order to\nincluded all the publicly-viewable Photologue pages:\n\n.. code-block:: python\n\n    ...\n    from photologue.sitemaps import GallerySitemap, PhotoSitemap\n\n    sitemaps = {...\n                'photologue_galleries': GallerySitemap,\n                'photologue_photos': PhotoSitemap,\n                ...\n                }\n    etc...\n\nThere are 2 sitemap classes, as in some cases you may want to have gallery pages,\nbut no photo detail page (e.g. if all photos are displayed via a javascript\nlightbox).\n\n\"\"\"\nfrom django.contrib.sitemaps import Sitemap\n\nfrom .models import Gallery, Photo\n\n# Note: Gallery and Photo are split, because there are use cases for having galleries\n# in the sitemap, but not photos (e.g. if the photos are displayed with a lightbox).\n\n\nclass GallerySitemap(Sitemap):\n\n    def items(self):\n        # The following code is very basic and will probably cause problems with\n        # large querysets.\n        return Gallery.objects.on_site().is_public()\n\n    def lastmod(self, obj):\n        return obj.date_added\n\n\nclass PhotoSitemap(Sitemap):\n\n    def items(self):\n        # The following code is very basic and will probably cause problems with\n        # large querysets.\n        return Photo.objects.on_site().is_public()\n\n    def lastmod(self, obj):\n        return obj.date_added\n"
  },
  {
    "path": "photologue/templates/admin/photologue/photo/change_list.html",
    "content": "{% extends \"admin/change_list.html\" %}\n{% load i18n %}\n\n\n{% block object-tools-items %}\n  {{ block.super }}\n  <li>\n    <a href=\"{% url \"admin:photologue_upload_zip\" %}\" class=\"addlink\">\n      {% trans \"Upload a zip archive\" %}\n    </a>\n  </li>\n{% endblock %}\n\n"
  },
  {
    "path": "photologue/templates/admin/photologue/photo/upload_zip.html",
    "content": "{% extends \"admin/base_site.html\" %}\n{% load i18n admin_urls static %}\n\n{# Admin styling code largely taken from http://www.dmertl.com/blog/?p=116 #}\n\n{% block extrastyle %}\n\t{{ block.super }}\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"admin/css/forms.css\" %}\"/>\n{% endblock %}\n\n{% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %}\n\n{% block breadcrumbs %}\n    <div class=\"breadcrumbs\">\n        <a href=\"{% url 'admin:index' %}\">{% trans 'Home' %}</a>\n        &rsaquo; <a href=\"{% url 'admin:app_list' app_label=opts.app_label %}\">{{ app_label|capfirst|escape }}</a>\n        &rsaquo; {% if has_change_permission %}<a href=\"{% url opts|admin_urlname:'changelist' %}\">\n        {{ opts.verbose_name_plural|capfirst }}</a>{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %}\n        &rsaquo; {% trans 'Upload' %}\n    </div>\n{% endblock %}\n\n{% block content_title %}{% endblock %}\n\n{% block content %}\n\n\t<h1>{% trans \"Upload a zip archive of photos\" %}</h1>\n\t{% blocktrans %}\n\t\t<p>On this page you can upload many photos at once, as long as you have\n\t\tput them all in a zip archive. The photos can be either:</p>\n\t\t<ul>\n\t\t\t<li>Added to an existing gallery.</li>\n\t\t\t<li>Otherwise, a new gallery is created with the supplied title.</li>\n\t\t</ul>\n\t{% endblocktrans %}\n\n\t{% if form.errors %}\n\t    <p class=\"errornote\">\n\t    {% if form.errors|length == 1 %}{% trans \"Please correct the error below.\" %}{% else %}{% trans \"Please correct the errors below.\" %}{% endif %}\n\t    </p>\n\t    {{ form.non_field_errors }}\n\t{% endif %}\n\n\t<form action=\"{% url 'admin:photologue_upload_zip' %}\" method=\"post\" id=\"zip_upload_form\"\n          {% if form.is_multipart %}enctype=\"multipart/form-data\"{% endif %}>\n        {% csrf_token %}\n        <div>\n            {% for fieldset in adminform %}\n                {% include \"admin/includes/fieldset.html\" %}\n            {% endfor %}\n        </div>\n        <div class=\"submit-row\">\n            <input type=\"submit\" value=\"{% trans 'Upload' %}\" class=\"default\"/>\n        </div>\n    </form>\n\n{% endblock %}\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_archive.html",
    "content": "{% extends \"photologue/root.html\" %}\n{% load i18n %}\n\n{% block title %}{% trans \"Latest photo galleries\" %}{% endblock %}\n\n{% block content %}\n\n<div class=\"row\">\n    <div class=\"col-lg-12\">\n        <h1>{% trans \"Latest photo galleries\" %}</h1>\n    </div>\n</div>\n\n<div class=\"row\">\n\n    <aside class=\"col-md-2\">\n\n        <h4>{% trans \"Filter by year\" %}</h4>\n        <ul>\n            {% for date in date_list %}\n            <li><a href=\"{% url 'photologue:pl-gallery-archive-year' date.year %}\">{{ date|date:\"Y\" }}</a></li>\n            {% endfor %}\n        </ul>\n\n    </aside>\n\n    <main class=\"col-md-10\">\n\n        {% if latest %}\n        {% for gallery in latest %}\n        {% include \"photologue/includes/gallery_sample.html\" %}\n        {% endfor %}\n        {% else %}\n        <p>{% trans \"No galleries were found\" %}.</p>\n        {% endif %}\n\n    </main>\n\n</div>\n\n{% endblock %}\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_archive_day.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_day=day|date:\"d F Y\" %}Galleries for {{ show_day }}{% endblocktrans %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n        <div class=\"col-lg-12\">\r\n            <h1>{% blocktrans with show_day=day|date:\"d F Y\" %}Galleries for {{ show_day }}{% endblocktrans %}</h1>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"row\">\r\n        <div class=\"col-lg-12\">\r\n        {% if object_list %}\r\n            {% for gallery in object_list %}\r\n                {% include \"photologue/includes/gallery_sample.html\" %}\r\n            {% endfor %}\r\n        {% else %}\r\n            <p>{% trans \"No galleries were found.\" %}</p>\r\n        {% endif %}\r\n        </div>\r\n    </div>\r\n\r\n    <div><a href=\"{% url 'photologue:gallery-archive-month' day.year day|date:\"m\"|lower %}\" class=\"btn btn-outline-secondary\">{% trans \"View all galleries for month\" %}</a></div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_archive_month.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_month=month|date:\"F Y\" %}Galleries for {{ show_month }}{% endblocktrans %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n        <div class=\"col-lg-12\">\r\n            <h1>{% blocktrans with show_month=month|date:\"F Y\" %}Galleries for {{ show_month }}{% endblocktrans %}</h1>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"row\">\r\n\r\n        <aside class=\"col-md-2\">\r\n\r\n            <h4>{% trans \"Filter by day\" %}</h4>\r\n            <ul>\r\n            {% for date in date_list %}\r\n                <li><a href=\"{% url 'photologue:gallery-archive-day' date.year date|date:\"m\"|lower date.day %}\">{{ date|date:\"d\" }}</a></li>\r\n            {% endfor %}\r\n            </ul>\r\n\r\n        </aside>\r\n\r\n        <main class=\"col-md-10\">\r\n\r\n            {% if object_list %}\r\n                {% for gallery in object_list %}\r\n                    {% include \"photologue/includes/gallery_sample.html\" %}\r\n                {% endfor %}\r\n            {% else %}\r\n                <p>{% trans \"No galleries were found.\" %}</p>\r\n            {% endif %}\r\n\r\n            <div><a href=\"{% url 'photologue:pl-gallery-archive-year' month.year %}\" class=\"btn btn-outline-secondary\">{% trans \"View all galleries for year\" %}</a></div>\r\n\r\n        </main>\r\n\r\n    </div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_archive_year.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_year=year|date:\"Y\" %}Galleries for {{ show_year }}{% endblocktrans %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n\t\t<div class=\"col-lg-12\">\r\n        \t<h1>{% blocktrans with show_year=year|date:\"Y\" %}Galleries for {{ show_year }}{% endblocktrans %}</h1>\r\n    \t</div>\r\n\t</div>\r\n\t<div class=\"row\">\r\n\r\n\t\t<aside class=\"col-md-2\">\r\n\r\n\t\t\t<h4>{% trans \"Filter by month\" %}</h4>\r\n\t\t\t<ul>\r\n\t\t\t\t{% for date in date_list %}\r\n\t\t\t\t\t<li><a href=\"{% url 'photologue:gallery-archive-month' date.year date|date:\"m\"|lower %}\">{{ date|date:\"F\" }}</a></li>\r\n\t\t\t\t{% endfor %}\r\n\t\t\t</ul>\r\n\r\n\t\t</aside>\r\n\r\n\t\t<main class=\"col-md-10\">\r\n\r\n\t\t\t{% if object_list %}\r\n\t\t\t\t{% for gallery in object_list %}\r\n\t\t\t        {% include \"photologue/includes/gallery_sample.html\" %}\r\n\t\t\t    {% endfor %}\r\n\t\t\t{% else %}\r\n\t\t\t    <p>{% trans \"No galleries were found.\" %}</p>\r\n\t\t\t{% endif %}\r\n\r\n\t\t    <div><a href=\"{% url 'photologue:pl-gallery-archive' %}\" class=\"btn btn-outline-secondary\">{% trans \"View all galleries\" %}</a></div>\r\n\r\n\t\t</main>\r\n\r\n\t</div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_detail.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{{ gallery.title }}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        <h1>{{ gallery.title }}</h1>\r\n        <p class=\"text-muted small\">{% trans \"Published\" %} {{ gallery.date_added }}</p>\r\n        {% if gallery.description %}{{ gallery.description|safe }}{% endif %}\r\n        <div class=\"gallery-list\">\r\n            {% for photo in gallery.public %}\r\n            <a href=\"{{ photo.get_absolute_url }}\">\r\n                <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n            </a>\r\n            {% endfor %}\r\n        </div>\r\n        <div>\r\n            <a href=\"{% url 'photologue:gallery-list' %}\" class=\"btn btn-outline-secondary\">{% trans \"View all galleries\" %}</a>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/gallery_list.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% trans \"All galleries\" %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        <h1>{% trans \"All galleries\" %}</h1>\r\n    </div>\r\n</div>\r\n\r\n{% if object_list %}\r\n{% for gallery in object_list %}\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        {% include \"photologue/includes/gallery_sample.html\" %}\r\n    </div>\r\n</div>\r\n{% endfor %}\r\n{% else %}\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">{% trans \"No galleries were found\" %}.</div>\r\n</div>\r\n{% endif %}\r\n\r\n{% include \"photologue/includes/paginator.html\" %}\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/includes/gallery_sample.html",
    "content": "{% load i18n %}\n\n{# Display a randomnly-selected set of photos from a given gallery #}\n\n<div class=\"gallery-sample\">\n\n    <h2><a href=\"{{ gallery.get_absolute_url }}\">{{ gallery.title }}</a></h2>\n    <p class=\"text-muted small\">{% trans \"Published\" %} {{ gallery.date_added }}</p>\n    {% if gallery.description %}<p>{{ gallery.description|safe }}</p>{% endif %}\n\n    {% for photo in gallery.sample %}\n    <a href=\"{{ photo.get_absolute_url }}\">\n        <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\n    </a>\n    {% endfor %}\n\n</div>\n"
  },
  {
    "path": "photologue/templates/photologue/includes/paginator.html",
    "content": "{% load i18n %}\n{% if is_paginated %}\n<div class=\"row\">\n    <div class=\"col-lg-12\">\n        <nav aria-label=\"Page navigation\">\n            <ul class=\"pagination\">\n                {% if page_obj.has_previous %}\n                <li class=\"page-item\">\n                    <a class=\"page-link\" href=\"?page={{ page_obj.previous_page_number }}\">{% trans \"Previous\" %}</a>\n                </li>\n                {% else %}\n                <li class=\"page-item disabled\"><a class=\"page-link\" href=\"#\">{% trans \"Previous\" %}</a></li>\n                {% endif %}\n                <li class=\"page-item disabled\">\n                    <span class=\"page-link\">\n                    {% blocktrans with page_number=page_obj.number total_pages=page_obj.paginator.num_pages %}\n                    page {{ page_number }} of {{ total_pages }}\n                    {% endblocktrans %}\n                    </span>\n                </li>\n                {% if page_obj.has_next %}\n                <li class=\"page-item\">\n                    <a class=\"page-link\" href=\"?page={{ page_obj.next_page_number }}\">{% trans \"Next\" %}</a></li>\n                {% else %}\n                <li class=\"page-item disabled\"><a class=\"page-link\" href=\"#\">{% trans \"Next\" %}</a></li>\n                {% endif %}\n            </ul>\n        </nav>\n\n    </div>\n</div>\n{% endif %}\n"
  },
  {
    "path": "photologue/templates/photologue/photo_archive.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% trans \"Latest photos\" %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        <h1>{% trans \"Latest photos\" %}</h1>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"row\">\r\n\r\n    <aside class=\"col-md-2\">\r\n\r\n        <h4>{% trans \"Filter by year\" %}</h4>\r\n        <ul>\r\n            {% for date in date_list %}\r\n            <li><a href=\"{% url 'photologue:pl-photo-archive-year' date.year %}\">{{ date|date:\"Y\" }}</a></li>\r\n            {% endfor %}\r\n        </ul>\r\n\r\n    </aside>\r\n\r\n    <main class=\"col-md-10 photo-list\">\r\n\r\n        {% if latest %}\r\n        {% for photo in latest %}\r\n        <a href=\"{{ photo.get_absolute_url }}\">\r\n            <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n        </a>\r\n        {% endfor %}\r\n        {% else %}\r\n        <p>{% trans \"No photos were found\" %}.</p>\r\n        {% endif %}\r\n\r\n    </main>\r\n\r\n</div>\r\n\r\n{% endblock %}\r\n\r\n\r\n"
  },
  {
    "path": "photologue/templates/photologue/photo_archive_day.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_day=day|date:\"d F Y\" %}Photos for {{ show_day }}{% endblocktrans %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n\t\t<div class=\"col-lg-12\">\r\n        \t<h1>{% blocktrans with show_day=day|date:\"d F Y\" %}Photos for {{ show_day }}{% endblocktrans %}</h1>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t{% if object_list %}\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-lg-12\">\r\n\t\t    {% for photo in object_list %}\r\n\t\t        <a href=\"{{ photo.get_absolute_url }}\">\r\n\t\t             <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n\t\t        </a>\r\n\t\t    {% endfor %}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t{% else %}\r\n\t\t<p>{% trans \"No photos were found\" %}.</p>\r\n\t{% endif %}\r\n\r\n    <div><a href=\"{% url 'photologue:photo-archive-month' day.year day|date:\"m\"|lower %}\" class=\"btn btn-outline-secondary\">{% trans \"View all photos for month\" %}</a></div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/photo_archive_month.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_month=month|date:\"F Y\" %}Photos for {{ show_month }}{% endblocktrans %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n        <div class=\"col-lg-12\">\r\n            <h1>{% blocktrans with show_month=month|date:\"F Y\" %}Photos for {{ show_month }}{% endblocktrans %}</h1>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"row\">\r\n\r\n        <aside class=\"col-md-2\">\r\n\r\n            <h4>{% trans \"Filter by day\" %}</h4>\r\n            <ul>\r\n            {% for date in date_list %}\r\n                <li><a href=\"{% url 'photologue:photo-archive-day' date.year date|date:\"m\"|lower date.day %}\">{{ date|date:\"d\" }}</a></li>\r\n            {% endfor %}\r\n            </ul>\r\n\r\n        </aside>\r\n\r\n        <main class=\"col-md-10\">\r\n\r\n    \t\t{% if object_list %}\r\n    \t\t\t<div class=\"row\">\r\n                    <div class=\"col-lg-12\">\r\n    \t\t\t    {% for photo in object_list %}\r\n    \t\t\t        <a href=\"{{ photo.get_absolute_url }}\">\r\n    \t\t\t             <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n    \t\t\t        </a>\r\n    \t\t\t    {% endfor %}\r\n                    </div>\r\n    \t\t\t</div>\r\n    \t\t{% else %}\r\n    \t\t\t<p>{% trans \"No photos were found\" %}.</p>\r\n    \t\t{% endif %}\r\n\r\n            <div><a href=\"{% url 'photologue:pl-photo-archive-year' month.year %}\" class=\"btn btn-outline-secondary\">{% trans \"View all photos for year\" %}</a></div>\r\n\r\n        </main>\r\n\r\n    </div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/photo_archive_year.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% blocktrans with show_year=year|date:\"Y\" %}Photos for {{ show_year }}{% endblocktrans %}{% endblock %}\r\n\r\n\r\n{% block content %}\r\n\r\n    <div class=\"row\">\r\n\t\t<div class=\"col-lg-12\">\r\n        \t<h1>{% blocktrans with show_year=year|date:\"Y\" %}Photos for {{ show_year }}{% endblocktrans %}</h1>\r\n    \t</div>\r\n\t</div>\r\n\r\n\t<div class=\"row\">\r\n\r\n\t\t<aside class=\"col-md-2\">\r\n\r\n\t\t\t<h4>{% trans \"Filter by month\" %}</h4>\r\n\t\t\t<ul>\r\n\t\t\t{% for date in date_list %}\r\n\t\t\t\t<li><a href=\"{% url 'photologue:photo-archive-month' date.year date|date:\"m\"|lower %}\">{{ date|date:\"F\" }}</a></li>\r\n\t\t\t{% endfor %}\r\n\t\t\t</ul>\r\n\r\n\t\t</aside>\r\n\r\n\t\t<main class=\"col-md-10\">\r\n\r\n\t\t\t{% if object_list %}\r\n\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t<div class=\"col-lg-12\">\r\n\t\t\t\t    {% for photo in object_list %}\r\n\t\t\t\t        <a href=\"{{ photo.get_absolute_url }}\">\r\n\t\t\t\t             <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n\t\t\t\t        </a>\r\n\t\t\t\t    {% endfor %}\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t{% else %}\r\n\t\t\t\t<p>{% trans \"No photos were found\" %}.</p>\r\n\t\t\t{% endif %}\r\n\r\n\t\t    <div><a href=\"{% url 'photologue:pl-photo-archive' %}\" class=\"btn btn-outline-secondary\">{% trans \"View all photos\" %}</a></div>\r\n\r\n\t\t</main>\r\n\r\n\t</div>\r\n\r\n{% endblock %}\r\n\r\n\r\n\r\n\r\n"
  },
  {
    "path": "photologue/templates/photologue/photo_detail.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load photologue_tags i18n %}\r\n\r\n{% block title %}{{ object.title }}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        <h1>{{ object.title }}</h1>\r\n        <p class=\"text-muted small\">{% trans \"Published\" %} {{ object.date_added }}</p>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-6\">\r\n        {% if object.caption %}<p>{{ object.caption }}</p>{% endif %}\r\n        <a href=\"{{ object.image.url }}\">\r\n            <img src=\"{{ object.get_display_url }}\" class=\"img-thumbnail\" alt=\"{{ object.title }}\">\r\n        </a>\r\n    </div>\r\n    <div class=\"col-md-6\">\r\n        {% if object.public_galleries %}\r\n        <p>{% trans \"This photo is found in the following galleries\" %}:</p>\r\n        <table>\r\n            {% for gallery in object.public_galleries %}\r\n            <tr>\r\n                <td>{% previous_in_gallery object gallery %}</td>\r\n                <td class=\"text-center\"><a href=\"{{ gallery.get_absolute_url }}\">{{ gallery.title }}</a></td>\r\n                <td>{% next_in_gallery object gallery %}</td>\r\n            </tr>\r\n            {% endfor %}\r\n        </table>\r\n        {% endif %}\r\n    </div>\r\n</div>\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/photo_list.html",
    "content": "{% extends \"photologue/root.html\" %}\r\n{% load i18n %}\r\n\r\n{% block title %}{% trans \"All photos\" %}{% endblock %}\r\n\r\n{% block content %}\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12\">\r\n        <h1>{% trans \"All photos\" %}</h1>\r\n    </div>\r\n</div>\r\n{% if object_list %}\r\n<div class=\"row\">\r\n    <div class=\"col-lg-12 photo-list\">\r\n        {% for photo in object_list %}\r\n        <a href=\"{{ photo.get_absolute_url }}\">\r\n            <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\">\r\n        </a>\r\n        {% endfor %}\r\n    </div>\r\n</div>\r\n{% else %}\r\n<div class=\"row\">{% trans \"No photos were found\" %}.</div>\r\n{% endif %}\r\n\r\n{% include \"photologue/includes/paginator.html\" %}\r\n\r\n{% endblock %}\r\n"
  },
  {
    "path": "photologue/templates/photologue/root.html",
    "content": "{% extends \"base.html\" %}\n"
  },
  {
    "path": "photologue/templates/photologue/tags/next_in_gallery.html",
    "content": "{% if photo %}\n<a title=\"{{ photo.title }}\" href=\"{{ photo.get_absolute_url }}\">\n    <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\"/>\n</a>\n{% endif %}\n"
  },
  {
    "path": "photologue/templates/photologue/tags/prev_in_gallery.html",
    "content": "{% if photo %}\n<a title=\"{{ photo.title }}\" href=\"{{ photo.get_absolute_url }}\">\n    <img src=\"{{ photo.get_thumbnail_url }}\" class=\"img-thumbnail\" alt=\"{{ photo.title }}\"/>\n</a>\n{% endif %}\n"
  },
  {
    "path": "photologue/templatetags/__init__.py",
    "content": ""
  },
  {
    "path": "photologue/templatetags/photologue_tags.py",
    "content": "import random\n\nfrom django import template\n\nfrom ..models import Gallery, Photo\n\nregister = template.Library()\n\n\n@register.inclusion_tag('photologue/tags/next_in_gallery.html')\ndef next_in_gallery(photo, gallery):\n    return {'photo': photo.get_next_in_gallery(gallery)}\n\n\n@register.inclusion_tag('photologue/tags/prev_in_gallery.html')\ndef previous_in_gallery(photo, gallery):\n    return {'photo': photo.get_previous_in_gallery(gallery)}\n\n\n@register.simple_tag\ndef cycle_lite_gallery(gallery_title, height, width):\n    \"\"\"Generate image tags for jquery slideshow gallery.\n    See http://malsup.com/jquery/cycle/lite/\"\"\"\n    html = \"\"\n    first = 'class=\"first\"'\n    for p in Gallery.objects.get(title=gallery_title).public():\n        html += '<img src=\"{}\" alt=\"{}\" height=\"{}\" width=\"{}\" {} />'.format(\n            p.get_display_url(), p.title, height, width, first)\n        first = None\n    return html\n\n\n@register.tag\ndef get_photo(parser, token):\n    \"\"\"Get a single photo from the photologue library and return the img tag to display it.\n\n    Takes 3 args:\n    - the photo to display. This can be either the slug of a photo, or a variable that holds either a photo instance or\n      a integer (photo id)\n    - the photosize to use.\n    - a CSS class to apply to the img tag.\n    \"\"\"\n    try:\n        # Split the contents of the tag, i.e. tag name + argument.\n        tag_name, photo, photosize, css_class = token.split_contents()\n    except ValueError:\n        msg = '%r tag requires 3 arguments' % token.contents[0]\n        raise template.TemplateSyntaxError(msg)\n    return PhotoNode(photo, photosize[1:-1], css_class[1:-1])\n\n\nclass PhotoNode(template.Node):\n\n    def __init__(self, photo, photosize, css_class):\n        self.photo = photo\n        self.photosize = photosize\n        self.css_class = css_class\n\n    def render(self, context):\n        try:\n            a = template.Variable(self.photo).resolve(context)\n        except:\n            a = self.photo\n        if isinstance(a, Photo):\n            p = a\n        else:\n            try:\n                p = Photo.objects.get(slug=a)\n            except Photo.DoesNotExist:\n                # Ooops. Fail silently\n                return None\n        if not p.is_public:\n            return None\n        func = getattr(p, 'get_%s_url' % (self.photosize), None)\n        if func is None:\n            return 'A \"%s\" photo size has not been defined.' % (self.photosize)\n        else:\n            return f'<img class=\"{self.css_class}\" src=\"{func()}\" alt=\"{p.title}\" />'\n\n\n@register.tag\ndef get_rotating_photo(parser, token):\n    \"\"\"Pick at random a photo from a given photologue gallery and return the img tag to display it.\n\n    Takes 3 args:\n    - the gallery to pick a photo from. This can be either the slug of a gallery, or a variable that holds either a\n      gallery instance or a gallery slug.\n    - the photosize to use.\n    - a CSS class to apply to the img tag.\n    \"\"\"\n    try:\n        # Split the contents of the tag, i.e. tag name + argument.\n        tag_name, gallery, photosize, css_class = token.split_contents()\n    except ValueError:\n        msg = '%r tag requires 3 arguments' % token.contents[0]\n        raise template.TemplateSyntaxError(msg)\n    return PhotoGalleryNode(gallery, photosize[1:-1], css_class[1:-1])\n\n\nclass PhotoGalleryNode(template.Node):\n\n    def __init__(self, gallery, photosize, css_class):\n        self.gallery = gallery\n        self.photosize = photosize\n        self.css_class = css_class\n\n    def render(self, context):\n        try:\n            a = template.resolve_variable(self.gallery, context)\n        except:\n            a = self.gallery\n        if isinstance(a, Gallery):\n            g = a\n        else:\n            try:\n                g = Gallery.objects.get(slug=a)\n            except Gallery.DoesNotExist:\n                return None\n        photos = g.public()\n        if len(photos) > 1:\n            r = random.randint(0, len(photos) - 1)\n            p = photos[r]\n        elif len(photos) == 1:\n            p = photos[0]\n        else:\n            return None\n        func = getattr(p, 'get_%s_url' % (self.photosize), None)\n        if func is None:\n            return 'A \"%s\" photo size has not been defined.' % (self.photosize)\n        else:\n            return f'<img class=\"{self.css_class}\" src=\"{func()}\" alt=\"{p.title}\" />'\n"
  },
  {
    "path": "photologue/tests/__init__.py",
    "content": ""
  },
  {
    "path": "photologue/tests/factories.py",
    "content": "import datetime\nimport os\n\nfrom django.conf import settings\nfrom django.utils.text import slugify\n\ntry:\n    import factory\nexcept ImportError:\n    raise ImportError(\n        \"No module named factory. To run photologue's tests you need to install factory-boy.\")\n\nfrom ..models import Gallery, ImageModel, Photo, PhotoEffect, PhotoSize\n\nRES_DIR = os.path.join(os.path.dirname(__file__), '../res')\nLANDSCAPE_IMAGE_PATH = os.path.join(RES_DIR, 'test_photologue_landscape.jpg')\nPORTRAIT_IMAGE_PATH = os.path.join(RES_DIR, 'test_photologue_portrait.jpg')\nSQUARE_IMAGE_PATH = os.path.join(RES_DIR, 'test_photologue_square.jpg')\nQUOTING_IMAGE_PATH = os.path.join(RES_DIR, 'test_photologue_&quoting.jpg')\nUNICODE_IMAGE_PATH = os.path.join(RES_DIR, 'test_unicode_®.jpg')\nNONSENSE_IMAGE_PATH = os.path.join(RES_DIR, 'test_nonsense.jpg')\nSAMPLE_ZIP_PATH = os.path.join(RES_DIR, 'zips/sample.zip')\nSAMPLE_NOT_IMAGE_ZIP_PATH = os.path.join(RES_DIR, 'zips/not_image.zip')\nIGNORED_FILES_ZIP_PATH = os.path.join(RES_DIR, 'zips/ignored_files.zip')\n\n\nclass GalleryFactory(factory.django.DjangoModelFactory):\n\n    class Meta:\n        model = Gallery\n\n    title = factory.Sequence(lambda n: f'gallery{n:0>3}')\n    slug = factory.LazyAttribute(lambda a: slugify(a.title))\n\n    @factory.sequence\n    def date_added(n):\n        # Have to cater projects being non-timezone aware.\n        if settings.USE_TZ:\n            sample_date = datetime.datetime(\n                year=2011, month=12, day=23, hour=17, minute=40, tzinfo=datetime.timezone.utc)\n        else:\n            sample_date = datetime.datetime(year=2011, month=12, day=23, hour=17, minute=40)\n        return sample_date + datetime.timedelta(minutes=n)\n\n    @factory.post_generation\n    def sites(self, create, extracted, **kwargs):\n        \"\"\"\n        Associates the object with the current site unless ``sites`` was passed,\n        in which case the each item in ``sites`` is associated with the object.\n\n        Note that if PHOTOLOGUE_MULTISITE is False, all Gallery/Photos are automatically\n        associated with the current site - bear this in mind when writing tests.\n        \"\"\"\n        if not create:\n            return\n        if extracted:\n            for site in extracted:\n                self.sites.add(site)\n\n\nclass ImageModelFactory(factory.django.DjangoModelFactory):\n\n    class Meta:\n        model = ImageModel\n        abstract = True\n\n\nclass PhotoFactory(ImageModelFactory):\n\n    \"\"\"Note: after creating Photo instances for tests, remember to manually\n    delete them.\n    \"\"\"\n\n    class Meta:\n        model = Photo\n\n    title = factory.Sequence(lambda n: f'photo{n:0>3}')\n    slug = factory.LazyAttribute(lambda a: slugify(a.title))\n    image = factory.django.ImageField(from_path=LANDSCAPE_IMAGE_PATH)\n\n    @factory.sequence\n    def date_added(n):\n        # Have to cater projects being non-timezone aware.\n        if settings.USE_TZ:\n            sample_date = datetime.datetime(\n                year=2011, month=12, day=23, hour=17, minute=40, tzinfo=datetime.timezone.utc)\n        else:\n            sample_date = datetime.datetime(year=2011, month=12, day=23, hour=17, minute=40)\n        return sample_date + datetime.timedelta(minutes=n)\n\n    @factory.post_generation\n    def sites(self, create, extracted, **kwargs):\n        \"\"\"\n        Associates the object with the current site unless ``sites`` was passed,\n        in which case the each item in ``sites`` is associated with the object.\n\n        Note that if PHOTOLOGUE_MULTISITE is False, all Gallery/Photos are automatically\n        associated with the current site - bear this in mind when writing tests.\n        \"\"\"\n        if not create:\n            return\n        if extracted:\n            for site in extracted:\n                self.sites.add(site)\n\n\nclass PhotoSizeFactory(factory.django.DjangoModelFactory):\n\n    class Meta:\n        model = PhotoSize\n\n    name = factory.Sequence(lambda n: f'name{n:0>3}')\n\n\nclass PhotoEffectFactory(factory.django.DjangoModelFactory):\n\n    class Meta:\n        model = PhotoEffect\n\n    name = factory.Sequence(lambda n: f'effect{n:0>3}')\n"
  },
  {
    "path": "photologue/tests/helpers.py",
    "content": "import warnings\n\nfrom django.test import TestCase\n\nfrom .factories import PhotoFactory, PhotoSizeFactory\n\n\nclass PhotologueBaseTest(TestCase):\n\n    def setUp(self):\n        self.s = PhotoSizeFactory(name='testPhotoSize',\n                                  width=100,\n                                  height=100)\n        try:\n            # Squash lots of ResourceWarning generated by the Pillow library during unit tests.\n            warnings.simplefilter(\"ignore\", ResourceWarning)\n        except NameError:\n            # Doesn't exist in Python 2.7.\n            pass\n        self.pl = PhotoFactory(title='Landscape',\n                               slug='landscape')\n\n    def tearDown(self):\n        # Need to manually remove the files created during testing.\n        self.pl.delete()\n"
  },
  {
    "path": "photologue/tests/templates/base.html",
    "content": ""
  },
  {
    "path": "photologue/tests/test_effect.py",
    "content": "from ..models import Image, PhotoEffect\nfrom .helpers import PhotologueBaseTest\n\n\nclass PhotoEffectTest(PhotologueBaseTest):\n\n    def test(self):\n        effect = PhotoEffect(name='test')\n        im = Image.open(self.pl.image.storage.open(self.pl.image.name))\n        self.assertIsInstance(effect.pre_process(im), Image.Image)\n        self.assertIsInstance(effect.post_process(im), Image.Image)\n        self.assertIsInstance(effect.process(im), Image.Image)\n"
  },
  {
    "path": "photologue/tests/test_gallery.py",
    "content": "from .. import models\nfrom .factories import GalleryFactory, PhotoFactory\nfrom .helpers import PhotologueBaseTest\n\n\nclass GalleryTest(PhotologueBaseTest):\n\n    def setUp(self):\n        \"\"\"Create a test gallery with 2 photos.\"\"\"\n        super().setUp()\n        self.test_gallery = GalleryFactory()\n        self.pl2 = PhotoFactory()\n        self.test_gallery.photos.add(self.pl)\n        self.test_gallery.photos.add(self.pl2)\n\n    def tearDown(self):\n        super().tearDown()\n        self.pl2.delete()\n\n    def test_public(self):\n        \"\"\"Method 'public' should only return photos flagged as public.\"\"\"\n        self.assertEqual(self.test_gallery.public().count(), 2)\n        self.pl.is_public = False\n        self.pl.save()\n        self.assertEqual(self.test_gallery.public().count(), 1)\n\n    def test_photo_count(self):\n        \"\"\"Method 'photo_count' should return the count of the photos in this\n        gallery.\"\"\"\n        self.assertEqual(self.test_gallery.photo_count(), 2)\n        self.pl.is_public = False\n        self.pl.save()\n        self.assertEqual(self.test_gallery.photo_count(), 1)\n\n        # Method takes an optional 'public' kwarg.\n        self.assertEqual(self.test_gallery.photo_count(public=False), 2)\n\n    def test_sample(self):\n        \"\"\"Method 'sample' should return a random queryset of photos from the\n        gallery.\"\"\"\n\n        # By default we return all photos from the gallery (but ordered at random).\n        _current_sample_size = models.SAMPLE_SIZE\n        models.SAMPLE_SIZE = 5\n        self.assertEqual(len(self.test_gallery.sample()), 2)\n\n        # We can state how many photos we want.\n        self.assertEqual(len(self.test_gallery.sample(count=1)), 1)\n\n        # If only one photo is public then the sample cannot have more than one\n        # photo.\n        self.pl.is_public = False\n        self.pl.save()\n        self.assertEqual(len(self.test_gallery.sample(count=2)), 1)\n\n        self.pl.is_public = True\n        self.pl.save()\n\n        # We can limit the number of photos by changing settings.\n        models.SAMPLE_SIZE = 1\n        self.assertEqual(len(self.test_gallery.sample()), 1)\n\n        models.SAMPLE_SIZE = _current_sample_size\n"
  },
  {
    "path": "photologue/tests/test_photo.py",
    "content": "import os\nimport unittest\nfrom io import BytesIO\nfrom unittest.mock import patch\n\nfrom django import VERSION\nfrom django.conf import settings\nfrom django.core.files.base import ContentFile\nfrom django.core.files.storage import default_storage\n\nfrom ..models import PHOTOLOGUE_CACHEDIRTAG, PHOTOLOGUE_DIR, Image, Photo\nfrom .factories import (LANDSCAPE_IMAGE_PATH, NONSENSE_IMAGE_PATH, QUOTING_IMAGE_PATH, UNICODE_IMAGE_PATH,\n                        GalleryFactory, PhotoEffectFactory, PhotoFactory)\nfrom .helpers import PhotologueBaseTest\n\n\nclass PhotoTest(PhotologueBaseTest):\n\n    def tearDown(self):\n        \"\"\"Delete any extra test files (if created).\"\"\"\n        super().tearDown()\n        try:\n            self.pl2.delete()\n        except:\n            pass\n\n    def test_new_photo(self):\n        self.assertEqual(Photo.objects.count(), 1)\n        self.assertTrue(self.pl.image.storage.exists(self.pl.image.name))\n        self.assertEqual(self.pl.image.storage.size(self.pl.image.name),\n                         os.path.getsize(LANDSCAPE_IMAGE_PATH))\n\n    # def test_exif(self):\n    #    self.assertTrue(len(self.pl.EXIF.keys()) > 0)\n\n    def test_paths(self):\n        self.assertEqual(os.path.normpath(str(self.pl.cache_path())).lower(),\n                         os.path.normpath(os.path.join(PHOTOLOGUE_DIR,\n                                                       'photos',\n                                                       'cache')).lower())\n        self.assertEqual(self.pl.cache_url(),\n                         settings.MEDIA_URL + PHOTOLOGUE_DIR + '/photos/cache')\n\n    def test_cachedir_tag(self):\n        self.assertTrue(default_storage.exists(PHOTOLOGUE_CACHEDIRTAG))\n\n        content = default_storage.open(PHOTOLOGUE_CACHEDIRTAG).read()\n        self.assertEqual(content, b\"Signature: 8a477f597d28d172789f06886806bc55\")\n\n    def test_count(self):\n        for i in range(5):\n            self.pl.get_testPhotoSize_url()\n        self.assertEqual(self.pl.view_count, 0)\n        self.s.increment_count = True\n        self.s.save()\n        for i in range(5):\n            self.pl.get_testPhotoSize_url()\n        self.assertEqual(self.pl.view_count, 5)\n\n    def test_precache(self):\n        # set the thumbnail photo size to pre-cache\n        self.s.pre_cache = True\n        self.s.save()\n        # make sure it created the file\n        self.assertTrue(self.pl.image.storage.exists(\n            self.pl.get_testPhotoSize_filename()))\n        self.s.pre_cache = False\n        self.s.save()\n        # clear the cache and make sure the file's deleted\n        self.pl.clear_cache()\n        self.assertFalse(self.pl.image.storage.exists(\n            self.pl.get_testPhotoSize_filename()))\n\n    def test_accessor_methods(self):\n        self.assertEqual(self.pl.get_testPhotoSize_photosize(), self.s)\n        self.assertEqual(self.pl.get_testPhotoSize_size(),\n                         Image.open(self.pl.image.storage.open(\n                             self.pl.get_testPhotoSize_filename())).size)\n        self.assertEqual(self.pl.get_testPhotoSize_url(),\n                         self.pl.cache_url() + '/' + self.pl._get_filename_for_size(self.s))\n        self.assertEqual(self.pl.get_testPhotoSize_filename(),\n                         os.path.join(self.pl.cache_path(),\n                                      self.pl._get_filename_for_size(self.s)))\n\n    def test_quoted_url(self):\n        \"\"\"Test for issue #29 - filenames of photos are incorrectly quoted when\n        building a URL.\"\"\"\n\n        # Create a Photo with a name that needs quoting.\n        self.pl2 = PhotoFactory(image__from_path=QUOTING_IMAGE_PATH)\n        # Quoting method filepath_to_uri has changed in Django 1.9 - so the string that we're looking\n        # for depends on the Django version.\n        if VERSION[0] == 1 and VERSION[1] <= 8:\n            quoted_string = 'test_photologue_%26quoting_testPhotoSize.jpg'\n        else:\n            quoted_string = 'test_photologue_quoting_testPhotoSize.jpg'\n        self.assertIn(quoted_string,\n                      self.pl2.get_testPhotoSize_url(),\n                      self.pl2.get_testPhotoSize_url())\n\n    def test_unicode(self):\n        \"\"\"Trivial check that unicode titles work.\n        (I was trying to track down an elusive unicode issue elsewhere)\"\"\"\n        self.pl2 = PhotoFactory(title='É',\n                                slug='é')\n\n    @patch('photologue.models.ImageModel.resize_image')\n    def test_update_crop_applied(self, mock_resize_image):\n        self.assertEqual(1, Photo.objects.count())\n        self.assertTrue(self.pl.crop_from != 'right')\n        self.pl.crop_from = 'right'\n        self.pl.save()\n        self.assertTrue(mock_resize_image.called)\n\n    @patch('photologue.models.ImageModel.resize_image')\n    @patch('photologue.models.PhotoEffect.pre_process')\n    @patch('photologue.models.PhotoEffect.post_process')\n    def test_update_effect_applied(self, mock_post_process, mock_pre_process, mock_resize_image):\n        self.assertEqual(1, Photo.objects.count())\n        self.assertIsNone(self.pl.effect)\n        self.pl.effect = PhotoEffectFactory()\n        self.pl.save()\n        self.assertTrue(mock_pre_process.called)\n        self.assertTrue(mock_resize_image.called)\n        self.assertTrue(mock_post_process.called)\n\n\nclass PhotoManagerTest(PhotologueBaseTest):\n    \"\"\"Some tests for the methods on the Photo manager class.\"\"\"\n\n    def setUp(self):\n        \"\"\"Create 2 photos.\"\"\"\n        super().setUp()\n        self.pl2 = PhotoFactory()\n\n    def tearDown(self):\n        super().tearDown()\n        self.pl2.delete()\n\n    def test_public(self):\n        \"\"\"Method 'is_public' should only return photos flagged as public.\"\"\"\n        self.assertEqual(Photo.objects.is_public().count(), 2)\n        self.pl.is_public = False\n        self.pl.save()\n        self.assertEqual(Photo.objects.is_public().count(), 1)\n\n\nclass PreviousNextTest(PhotologueBaseTest):\n    \"\"\"Tests for the methods that provide the previous/next photos in a gallery.\"\"\"\n\n    def setUp(self):\n        \"\"\"Create a test gallery with 2 photos.\"\"\"\n        super().setUp()\n        self.test_gallery = GalleryFactory()\n        self.pl1 = PhotoFactory()\n        self.pl2 = PhotoFactory()\n        self.pl3 = PhotoFactory()\n        self.test_gallery.photos.add(self.pl1)\n        self.test_gallery.photos.add(self.pl2)\n        self.test_gallery.photos.add(self.pl3)\n\n    def tearDown(self):\n        super().tearDown()\n        self.pl1.delete()\n        self.pl2.delete()\n        self.pl3.delete()\n\n    def test_previous_simple(self):\n        # Previous in gallery.\n        self.assertEqual(self.pl1.get_previous_in_gallery(self.test_gallery),\n                         None)\n        self.assertEqual(self.pl2.get_previous_in_gallery(self.test_gallery),\n                         self.pl1)\n        self.assertEqual(self.pl3.get_previous_in_gallery(self.test_gallery),\n                         self.pl2)\n\n    def test_previous_public(self):\n        \"\"\"What happens if one of the photos is not public.\"\"\"\n        self.pl2.is_public = False\n        self.pl2.save()\n\n        self.assertEqual(self.pl1.get_previous_in_gallery(self.test_gallery),\n                         None)\n        self.assertRaisesMessage(ValueError,\n                                 'Cannot determine neighbours of a non-public photo.',\n                                 self.pl2.get_previous_in_gallery,\n                                 self.test_gallery)\n        self.assertEqual(self.pl3.get_previous_in_gallery(self.test_gallery),\n                         self.pl1)\n\n    def test_previous_gallery_mismatch(self):\n        \"\"\"Photo does not belong to the gallery.\"\"\"\n        self.pl4 = PhotoFactory()\n\n        self.assertRaisesMessage(ValueError,\n                                 'Photo does not belong to gallery.',\n                                 self.pl4.get_previous_in_gallery,\n                                 self.test_gallery)\n\n        self.pl4.delete()\n\n    def test_next_simple(self):\n        # Next in gallery.\n        self.assertEqual(self.pl1.get_next_in_gallery(self.test_gallery),\n                         self.pl2)\n        self.assertEqual(self.pl2.get_next_in_gallery(self.test_gallery),\n                         self.pl3)\n        self.assertEqual(self.pl3.get_next_in_gallery(self.test_gallery),\n                         None)\n\n    def test_next_public(self):\n        \"\"\"What happens if one of the photos is not public.\"\"\"\n        self.pl2.is_public = False\n        self.pl2.save()\n\n        self.assertEqual(self.pl1.get_next_in_gallery(self.test_gallery),\n                         self.pl3)\n        self.assertRaisesMessage(ValueError,\n                                 'Cannot determine neighbours of a non-public photo.',\n                                 self.pl2.get_next_in_gallery,\n                                 self.test_gallery)\n        self.assertEqual(self.pl3.get_next_in_gallery(self.test_gallery),\n                         None)\n\n    def test_next_gallery_mismatch(self):\n        \"\"\"Photo does not belong to the gallery.\"\"\"\n        self.pl4 = PhotoFactory()\n\n        self.assertRaisesMessage(ValueError,\n                                 'Photo does not belong to gallery.',\n                                 self.pl4.get_next_in_gallery,\n                                 self.test_gallery)\n\n        self.pl4.delete()\n\n\nclass ImageModelTest(PhotologueBaseTest):\n\n    def setUp(self):\n        super().setUp()\n\n        # Unicode image has unicode in the path\n        # self.pu = TestPhoto(name='portrait')\n        self.pu = PhotoFactory()\n        self.pu.image.save(os.path.basename(UNICODE_IMAGE_PATH),\n                           ContentFile(open(UNICODE_IMAGE_PATH, 'rb').read()))\n\n        # Nonsense image contains nonsense\n        # self.pn = TestPhoto(name='portrait')\n        self.pn = PhotoFactory()\n        self.pn.image.save(os.path.basename(NONSENSE_IMAGE_PATH),\n                           ContentFile(open(NONSENSE_IMAGE_PATH, 'rb').read()))\n\n    def tearDown(self):\n        super().tearDown()\n        self.pu.delete()\n        self.pn.delete()\n\n    @unittest.skipUnless(os.path.exists(UNICODE_IMAGE_PATH),\n                         'Test relies on a file with a non-ascii filename - this cannot be distributed as it breaks '\n                         'under Python 2.7, so the distribution does not include that test file.')\n    def test_create_size(self):\n        \"\"\"Nonsense image must not break scaling\"\"\"\n        self.pn.create_size(self.s)\n\n\ndef raw_image(mode='RGB', fmt='JPEG'):\n    \"\"\"Create raw image.\n    \"\"\"\n    data = BytesIO()\n    Image.new(mode, (100, 100)).save(data, fmt)\n    data.seek(0)\n    return data\n\n\nclass ImageTransparencyTest(PhotologueBaseTest):\n\n    def setUp(self):\n        super().setUp()\n        self.png = PhotoFactory()\n        self.png.image.save(\n            'trans.png', ContentFile(raw_image('RGBA', 'PNG').read()))\n\n    def tearDown(self):\n        super().tearDown()\n        self.png.clear_cache()\n        os.unlink(os.path.join(settings.MEDIA_ROOT, self.png.image.path))\n\n    def test_create_size_png_keep_alpha_channel(self):\n        thumbnail = self.png.get_thumbnail_filename()\n        im = Image.open(\n            os.path.join(settings.MEDIA_ROOT, thumbnail))\n        self.assertEqual('RGBA', im.mode)\n"
  },
  {
    "path": "photologue/tests/test_photosize.py",
    "content": "from django.core.exceptions import ValidationError\n\nfrom .factories import PhotoSizeFactory\nfrom .helpers import PhotologueBaseTest\n\n\nclass PhotoSizeNameTest(PhotologueBaseTest):\n\n    def test_valid_name(self):\n        \"\"\"We are restricted in what names we can enter.\"\"\"\n\n        photosize = PhotoSizeFactory()\n        photosize.name = None\n        with self.assertRaisesMessage(ValidationError, 'This field cannot be null.'):\n            photosize.full_clean()\n\n        photosize = PhotoSizeFactory(name='')\n        with self.assertRaisesMessage(ValidationError, 'This field cannot be blank.'):\n            photosize.full_clean()\n\n        for name in ('a space', 'UPPERCASE', 'bad?chars'):\n            photosize = PhotoSizeFactory(name=name)\n            with self.assertRaisesMessage(ValidationError,\n                                          'Use only plain lowercase letters (ASCII), numbers and underscores.'):\n                photosize.full_clean()\n\n        for name in ('label', '2_words'):\n            photosize = PhotoSizeFactory(name=name)\n            photosize.full_clean()\n"
  },
  {
    "path": "photologue/tests/test_resize.py",
    "content": "import unittest\n\nfrom django.core.exceptions import ValidationError\n\nfrom ..models import PhotoSize, PhotoSizeCache\nfrom .factories import PORTRAIT_IMAGE_PATH, SQUARE_IMAGE_PATH, PhotoFactory\nfrom .helpers import PhotologueBaseTest\n\n\nclass PhotoSizeTest(unittest.TestCase):\n\n    def test_clean_wont_allow_zero_dimension_and_crop(self):\n        \"\"\"Tests if ValidationError is raised by clean method if with or height\n        is set to 0 and crop is set to true\"\"\"\n        s = PhotoSize(name='test', width=400, crop=True)\n        self.assertRaises(ValidationError, s.clean)\n\n\nclass ImageResizeTest(PhotologueBaseTest):\n\n    def setUp(self):\n        super().setUp()\n        # Portrait.\n        self.pp = PhotoFactory(image__from_path=PORTRAIT_IMAGE_PATH)\n        # Square.\n        self.ps = PhotoFactory(image__from_path=SQUARE_IMAGE_PATH)\n\n    def tearDown(self):\n        super().tearDown()\n        self.pp.delete()\n        self.ps.delete()\n\n    def test_resize_to_fit(self):\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (75, 100))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (100, 100))\n\n    def test_resize_to_fit_width(self):\n        self.s.size = (100, 0)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (100, 133))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (100, 100))\n\n    def test_resize_to_fit_width_enlarge(self):\n        self.s.size = (400, 0)\n        self.s.upscale = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (400, 300))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (400, 533))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (400, 400))\n\n    def test_resize_to_fit_height(self):\n        self.s.size = (0, 100)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (133, 100))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (75, 100))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (100, 100))\n\n    def test_resize_to_fit_height_enlarge(self):\n        self.s.size = (0, 400)\n        self.s.upscale = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (533, 400))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (300, 400))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (400, 400))\n\n    def test_resize_and_crop(self):\n        self.s.crop = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), self.s.size)\n        self.assertEqual(self.pp.get_testPhotoSize_size(), self.s.size)\n        self.assertEqual(self.ps.get_testPhotoSize_size(), self.s.size)\n\n    def test_resize_rounding_to_fit(self):\n        self.s.size = (113, 113)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (113, 85))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (85, 113))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (113, 113))\n\n    def test_resize_rounding_cropped(self):\n        self.s.size = (113, 113)\n        self.s.crop = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), self.s.size)\n        self.assertEqual(self.pp.get_testPhotoSize_size(), self.s.size)\n        self.assertEqual(self.ps.get_testPhotoSize_size(), self.s.size)\n\n    def test_resize_one_dimension_width(self):\n        self.s.size = (100, 150)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n\n    def test_resize_one_dimension_height(self):\n        self.s.size = (200, 75)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n\n    def test_resize_no_upscale(self):\n        self.s.size = (1000, 1000)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (200, 150))\n\n    def test_resize_no_upscale_mixed_height(self):\n        self.s.size = (400, 75)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n\n    def test_resize_no_upscale_mixed_width(self):\n        self.s.size = (100, 300)\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (100, 75))\n\n    def test_resize_no_upscale_crop(self):\n        self.s.size = (1000, 1000)\n        self.s.crop = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (1000, 1000))\n\n    def test_resize_upscale(self):\n        self.s.size = (1000, 1000)\n        self.s.upscale = True\n        self.s.save()\n        self.assertEqual(self.pl.get_testPhotoSize_size(), (1000, 750))\n        self.assertEqual(self.pp.get_testPhotoSize_size(), (750, 1000))\n        self.assertEqual(self.ps.get_testPhotoSize_size(), (1000, 1000))\n\n\nclass PhotoSizeCacheTest(PhotologueBaseTest):\n\n    def test(self):\n        cache = PhotoSizeCache()\n        self.assertEqual(cache.sizes['testPhotoSize'], self.s)\n"
  },
  {
    "path": "photologue/tests/test_sitemap.py",
    "content": "import unittest\n\nfrom django.conf import settings\nfrom django.test import override_settings\n\nfrom .factories import GalleryFactory\nfrom .helpers import PhotologueBaseTest\n\n\n@unittest.skipUnless('django.contrib.sitemaps' in settings.INSTALLED_APPS,\n                     'Sitemaps not installed in this project, nothing to test.')\n@override_settings(ROOT_URLCONF='photologue.tests.test_urls')\nclass SitemapTest(PhotologueBaseTest):\n\n    def test_get_photo(self):\n        \"\"\"Default test setup contains one photo, this should appear in the sitemap.\"\"\"\n        response = self.client.get('/sitemap.xml')\n        self.assertContains(response,\n                            '<url><loc>http://example.com/ptests/photo/landscape/</loc>'\n                            '<lastmod>2011-12-23</lastmod></url>')\n\n    def test_get_gallery(self):\n        \"\"\"if we add a gallery to the site, we should see both the gallery and\n        the photo in the sitemap.\"\"\"\n        self.gallery = GalleryFactory(slug='test-gallery')\n\n        response = self.client.get('/sitemap.xml')\n        self.assertContains(response,\n                            '<url><loc>http://example.com/ptests/photo/landscape/</loc>'\n                            '<lastmod>2011-12-23</lastmod></url>')\n        self.assertContains(response,\n                            '<url><loc>http://example.com/ptests/gallery/test-gallery/</loc>'\n                            '<lastmod>2011-12-23</lastmod></url>')\n"
  },
  {
    "path": "photologue/tests/test_sites.py",
    "content": "import unittest\n\nfrom django.conf import settings\nfrom django.contrib.sites.models import Site\nfrom django.test import TestCase, override_settings\n\nfrom .factories import GalleryFactory, PhotoFactory\n\n\n@override_settings(ROOT_URLCONF='photologue.tests.test_urls')\nclass SitesTest(TestCase):\n\n    def setUp(self):\n        \"\"\"\n        Create two example sites that we can use to test what gets displayed\n        where.\n        \"\"\"\n        super().setUp()\n\n        self.site1, created1 = Site.objects.get_or_create(\n            domain=\"example.com\", name=\"example.com\")\n        self.site2, created2 = Site.objects.get_or_create(\n            domain=\"example.org\", name=\"example.org\")\n\n        with self.settings(PHOTOLOGUE_MULTISITE=True):\n            # Be explicit about linking Galleries/Photos to Sites.\"\"\"\n            self.gallery1 = GalleryFactory(slug='test-gallery', sites=[self.site1])\n            self.gallery2 = GalleryFactory(slug='not-on-site-gallery')\n            self.photo1 = PhotoFactory(slug='test-photo', sites=[self.site1])\n            self.photo2 = PhotoFactory(slug='not-on-site-photo')\n            self.gallery1.photos.add(self.photo1, self.photo2)\n\n        # I'd like to use factory_boy's mute_signal decorator but that\n        # will only available once factory_boy 2.4 is released. So long\n        # we'll have to remove the site association manually\n        self.photo2.sites.clear()\n\n    def tearDown(self):\n        super().tearDown()\n        self.gallery1.delete()\n        self.gallery2.delete()\n        self.photo1.delete()\n        self.photo2.delete()\n\n    def test_basics(self):\n        \"\"\" See if objects were added automatically (by the factory) to the current site. \"\"\"\n        self.assertEqual(list(self.gallery1.sites.all()), [self.site1])\n        self.assertEqual(list(self.photo1.sites.all()), [self.site1])\n\n    def test_auto_add_sites(self):\n        \"\"\"\n        Objects should not be automatically associated with a particular site when\n        ``PHOTOLOGUE_MULTISITE`` is ``True``.\n        \"\"\"\n\n        with self.settings(PHOTOLOGUE_MULTISITE=False):\n            gallery = GalleryFactory()\n            photo = PhotoFactory()\n        self.assertEqual(list(gallery.sites.all()), [self.site1])\n        self.assertEqual(list(photo.sites.all()), [self.site1])\n\n        photo.delete()\n\n        with self.settings(PHOTOLOGUE_MULTISITE=True):\n            gallery = GalleryFactory()\n            photo = PhotoFactory()\n        self.assertEqual(list(gallery.sites.all()), [])\n        self.assertEqual(list(photo.sites.all()), [])\n\n        photo.delete()\n\n    def test_gallery_list(self):\n        response = self.client.get('/ptests/gallerylist/')\n        self.assertEqual(list(response.context['object_list']), [self.gallery1])\n\n    def test_gallery_detail(self):\n        response = self.client.get('/ptests/gallery/test-gallery/')\n        self.assertEqual(response.context['object'], self.gallery1)\n\n        response = self.client.get('/ptests/gallery/not-on-site-gallery/')\n        self.assertEqual(response.status_code, 404)\n\n    def test_photo_list(self):\n        response = self.client.get('/ptests/photolist/')\n        self.assertEqual(list(response.context['object_list']), [self.photo1])\n\n    def test_photo_detail(self):\n        response = self.client.get('/ptests/photo/test-photo/')\n        self.assertEqual(response.context['object'], self.photo1)\n\n        response = self.client.get('/ptests/photo/not-on-site-photo/')\n        self.assertEqual(response.status_code, 404)\n\n    def test_photo_archive(self):\n        response = self.client.get('/ptests/photo/')\n        self.assertEqual(list(response.context['object_list']), [self.photo1])\n\n    def test_photos_in_gallery(self):\n        \"\"\"\n        Only those photos are supposed to be shown in a gallery that are\n        also associated with the current site.\n        \"\"\"\n        response = self.client.get('/ptests/gallery/test-gallery/')\n        self.assertEqual(list(response.context['object'].public()), [self.photo1])\n\n    @unittest.skipUnless('django.contrib.sitemaps' in settings.INSTALLED_APPS,\n                         'Sitemaps not installed in this project, nothing to test.')\n    def test_sitemap(self):\n        \"\"\"A sitemap should only show objects associated with the current site.\"\"\"\n        response = self.client.get('/sitemap.xml')\n\n        # Check photos.\n        self.assertContains(response,\n                            '<url><loc>http://example.com/ptests/photo/test-photo/</loc>'\n                            '<lastmod>2011-12-23</lastmod></url>')\n        self.assertNotContains(response,\n                               '<url><loc>http://example.com/ptests/photo/not-on-site-photo/</loc>'\n                               '<lastmod>2011-12-23</lastmod></url>')\n\n        # Check galleries.\n        self.assertContains(response,\n                            '<url><loc>http://example.com/ptests/gallery/test-gallery/</loc>'\n                            '<lastmod>2011-12-23</lastmod></url>')\n        self.assertNotContains(response,\n                               '<url><loc>http://example.com/ptests/gallery/not-on-site-gallery/</loc>'\n                               '<lastmod>2011-12-23</lastmod></url>')\n\n    def test_orphaned_photos(self):\n        self.assertEqual(list(self.gallery1.orphaned_photos()), [self.photo2])\n\n        self.gallery2.photos.add(self.photo2)\n        self.assertEqual(list(self.gallery1.orphaned_photos()), [self.photo2])\n\n        self.gallery1.sites.clear()\n        self.assertEqual(list(self.gallery1.orphaned_photos()), [self.photo1, self.photo2])\n\n        self.photo1.sites.clear()\n        self.photo2.sites.clear()\n        self.assertEqual(list(self.gallery1.orphaned_photos()), [self.photo1, self.photo2])\n"
  },
  {
    "path": "photologue/tests/test_urls.py",
    "content": "from django.contrib.sitemaps.views import sitemap\nfrom django.urls import include, path\n\nfrom ..sitemaps import GallerySitemap, PhotoSitemap\n\nurlpatterns = [\n    path('ptests/', include('photologue.urls', namespace='photologue')),\n]\n\nsitemaps = {'photologue_galleries': GallerySitemap,\n            'photologue_photos': PhotoSitemap,\n            }\n\nurlpatterns += [\n    path('sitemap.xml', sitemap, {'sitemaps': sitemaps}),\n]\n"
  },
  {
    "path": "photologue/tests/test_views_gallery.py",
    "content": "from django.test import TestCase, override_settings\n\nfrom .factories import GalleryFactory\n\n\n@override_settings(ROOT_URLCONF='photologue.tests.test_urls')\nclass RequestGalleryTest(TestCase):\n\n    def setUp(self):\n        super().setUp()\n        self.gallery = GalleryFactory(slug='test-gallery')\n\n    def test_archive_gallery_url_works(self):\n        response = self.client.get('/ptests/gallery/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_gallery_empty(self):\n        \"\"\"If there are no galleries to show, tell the visitor - don't show a\n        404.\"\"\"\n\n        self.gallery.is_public = False\n        self.gallery.save()\n\n        response = self.client.get('/ptests/gallery/')\n        self.assertEqual(response.status_code, 200)\n\n        self.assertEqual(response.context['latest'].count(),\n                         0)\n\n    def test_paginated_gallery_url_works(self):\n        response = self.client.get('/ptests/gallerylist/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_gallery_works(self):\n        response = self.client.get('/ptests/gallery/test-gallery/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_year_gallery_works(self):\n        response = self.client.get('/ptests/gallery/2011/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_month_gallery_works(self):\n        response = self.client.get('/ptests/gallery/2011/12/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_day_gallery_works(self):\n        response = self.client.get('/ptests/gallery/2011/12/23/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_detail_gallery_works(self):\n        response = self.client.get('/ptests/gallery/2011/12/23/test-gallery/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_redirect_to_list(self):\n        \"\"\"Trivial test - if someone requests the root url of the app\n        (i.e. /ptests/'), redirect them to the gallery list page.\"\"\"\n        response = self.client.get('/ptests/')\n        self.assertRedirects(response, '/ptests/gallery/', 301, 200)\n"
  },
  {
    "path": "photologue/tests/test_views_photo.py",
    "content": "from django.test import TestCase, override_settings\n\nfrom ..models import Photo\nfrom .factories import PhotoFactory\n\n\n@override_settings(ROOT_URLCONF='photologue.tests.test_urls')\nclass RequestPhotoTest(TestCase):\n\n    def setUp(self):\n        super().setUp()\n        self.photo = PhotoFactory(slug='fake-photo')\n\n    def tearDown(self):\n        super().tearDown()\n        self.photo.delete()\n\n    def test_archive_photo_url_works(self):\n        response = self.client.get('/ptests/photo/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_photo_empty(self):\n        \"\"\"If there are no photo to show, tell the visitor - don't show a\n        404.\"\"\"\n\n        Photo.objects.all().update(is_public=False)\n\n        response = self.client.get('/ptests/photo/')\n        self.assertEqual(response.status_code, 200)\n\n        self.assertEqual(response.context['latest'].count(),\n                         0)\n\n    def test_paginated_photo_url_works(self):\n        response = self.client.get('/ptests/photolist/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_photo_works(self):\n        response = self.client.get('/ptests/photo/fake-photo/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_year_photo_works(self):\n        response = self.client.get('/ptests/photo/2011/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_month_photo_works(self):\n        response = self.client.get('/ptests/photo/2011/12/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_archive_day_photo_works(self):\n        response = self.client.get('/ptests/photo/2011/12/23/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_detail_photo_works(self):\n        response = self.client.get('/ptests/photo/2011/12/23/fake-photo/')\n        self.assertEqual(response.status_code, 200)\n\n    def test_detail_photo_xss(self):\n        \"\"\"Check that the default templates handle XSS.\"\"\"\n        self.photo.title = '<img src=x onerror=alert(\"title\")>'\n        self.photo.caption = '<img src=x onerror=alert(origin)>'\n        self.photo.save()\n        response = self.client.get('/ptests/photo/2011/12/23/fake-photo/')\n        self.assertContains(response, 'Photologue Demo - &lt;img src=x onerror=alert(&quot;title&quot;)&gt;')\n        self.assertNotContains(response, '<img src=x onerror=alert(\"title\")>')\n        self.assertContains(response, '&lt;img src=x onerror=alert(origin)&gt;')\n        self.assertNotContains(response, '<img src=x onerror=alert(origin)>')\n"
  },
  {
    "path": "photologue/tests/test_zipupload.py",
    "content": "import copy\n\nfrom django import VERSION\nfrom django.contrib.auth.models import User\nfrom django.test import TestCase\n\nfrom ..models import Gallery, Photo\nfrom .factories import (IGNORED_FILES_ZIP_PATH, LANDSCAPE_IMAGE_PATH, SAMPLE_NOT_IMAGE_ZIP_PATH, SAMPLE_ZIP_PATH,\n                        GalleryFactory, PhotoFactory)\n\n\nclass GalleryUploadTest(TestCase):\n\n    \"\"\"Testing the admin page that allows users to upload zips.\"\"\"\n\n    def setUp(self):\n        super().setUp()\n        user = User.objects.create_user('john.doe',\n                                        'john.doe@example.com',\n                                        'secret')\n        user.is_staff = True\n        user.save()\n        self.assertTrue(self.client.login(username='john.doe', password='secret'))\n\n        self.zip_file = open(SAMPLE_ZIP_PATH, mode='rb')\n\n        self.sample_form_data = {'zip_file': self.zip_file,\n                                 'title': 'This is a test title'}\n\n    def tearDown(self):\n        super().tearDown()\n        self.zip_file.close()\n        for photo in Photo.objects.all():\n            photo.delete()\n\n    def test_get(self):\n        \"\"\"We can get the custom admin page.\"\"\"\n\n        response = self.client.get('/admin/photologue/photo/upload_zip/')\n        self.assertEqual(response.status_code, 200)\n        self.assertTemplateUsed(response, 'admin/photologue/photo/upload_zip.html')\n\n        self.assertContains(response, 'Upload a zip archive of photos')\n\n    def test_breadcrumbs(self):\n        \"\"\"Quick check that the breadcrumbs are generated correctly.\"\"\"\n\n        response = self.client.get('/admin/photologue/photo/upload_zip/')\n        self.assertContains(\n            response, \"\"\"<div class=\"breadcrumbs\"><a href=\"/admin/\">Home</a> &rsaquo;\n            <a href=\"/admin/photologue/\">Photologue</a> &rsaquo; Photos &rsaquo; Upload </div>\"\"\", html=True)\n\n    def test_missing_fields(self):\n        \"\"\"Missing fields mean the form is redisplayed with errors.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        del test_data['zip_file']\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(response.status_code, 200)\n        self.assertTrue(response.context['form'].errors)\n\n    def test_good_data(self):\n        \"\"\"Upload a zip with a single file it it: 'sample.jpg'.\n        It gets assigned to a newly created gallery 'Test'.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        # The redirect Location has changed in Django 1.9 - it used to be an absolute URI, now it returns\n        # a relative one.\n        if VERSION[0] == 1 and VERSION[1] <= 8:\n            location = 'http://testserver/admin/photologue/photo/'\n        else:\n            location = '..'\n\n        self.assertEqual(response['Location'], location)\n\n        self.assertQuerySetEqual(Gallery.objects.all(),\n                                 ['<Gallery: This is a test title>'],\n                                 transform=repr)\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 ['<Photo: This is a test title 1>'],\n                                 transform=repr)\n\n        # The photo is attached to the gallery.\n        gallery = Gallery.objects.get(title='This is a test title')\n        self.assertQuerySetEqual(gallery.photos.all(),\n                                 ['<Photo: This is a test title 1>'],\n                                 transform=repr)\n\n    def test_duplicate_gallery(self):\n        \"\"\"If we try to create a Gallery with a title that duplicates an existing title, refuse to load.\"\"\"\n\n        GalleryFactory(title='This is a test title')\n\n        test_data = copy.copy(self.sample_form_data)\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(response.status_code, 200)\n        self.assertTrue(response.context['form']['title'].errors)\n\n    def test_title_or_gallery(self):\n        \"\"\"We should supply either a title field or a gallery.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        del test_data['title']\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(list(response.context['form'].non_field_errors()),\n                         ['Select an existing gallery, or enter a title for a new gallery.'])\n\n    def test_not_image(self):\n        \"\"\"A zip with a file of the wrong format (.txt).\n        That file gets ignored.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        with open(SAMPLE_NOT_IMAGE_ZIP_PATH, mode='rb') as f:\n            test_data['zip_file'] = f\n            response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n            self.assertEqual(response.status_code, 302)\n\n        self.assertQuerySetEqual(Gallery.objects.all(),\n                                 ['<Gallery: This is a test title>'],\n                                 transform=repr)\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 ['<Photo: This is a test title 1>'],\n                                 transform=repr)\n\n    def test_ignored(self):\n        \"\"\"Ignore anything that does not look like a image file.\n        E.g. hidden files, and folders.\n        We have two images: one in the top level of the zip, and one in a subfolder.\n        The second one gets ignored - we only process files at the zip root.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        with open(IGNORED_FILES_ZIP_PATH, mode='rb') as f:\n            test_data['zip_file'] = f\n            response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n            self.assertEqual(response.status_code, 302)\n\n        self.assertQuerySetEqual(Gallery.objects.all(),\n                                 ['<Gallery: This is a test title>'],\n                                 transform=repr)\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 ['<Photo: This is a test title 1>'],\n                                 transform=repr)\n\n    def test_existing_gallery(self):\n        \"\"\"Add the photos in the zip to an existing gallery.\"\"\"\n\n        existing_gallery = GalleryFactory(title='Existing')\n\n        test_data = copy.copy(self.sample_form_data)\n        test_data['gallery'] = existing_gallery.id\n        del test_data['title']\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(response.status_code, 302)\n\n        self.assertQuerySetEqual(Gallery.objects.all(),\n                                 ['<Gallery: Existing>'],\n                                 transform=repr)\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 ['<Photo: Existing 1>'],\n                                 transform=repr)\n\n        # The photo is attached to the existing gallery.\n        self.assertQuerySetEqual(existing_gallery.photos.all(),\n                                 ['<Photo: Existing 1>'],\n                                 transform=repr)\n\n    def test_existing_gallery_custom_title(self):\n        \"\"\"Add the photos in the zip to an existing gallery, but specify a\n        custom title for the photos.\"\"\"\n\n        existing_gallery = GalleryFactory(title='Existing')\n\n        test_data = copy.copy(self.sample_form_data)\n        test_data['gallery'] = existing_gallery.id\n        test_data['title'] = 'Custom title'\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(response.status_code, 302)\n\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 ['<Photo: Custom title 1>'],\n                                 transform=repr)\n\n    def test_duplicate_slug(self):\n        \"\"\"Uploading a zip, but a photo already exists with the target slug.\"\"\"\n\n        PhotoFactory(title='This is a test title 1')\n        PhotoFactory(title='This is a test title 2')\n\n        test_data = copy.copy(self.sample_form_data)\n        response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n        self.assertEqual(response.status_code, 302)\n\n        self.assertQuerySetEqual(Photo.objects.all(),\n                                 [\n                                 '<Photo: This is a test title 1>',\n                                 '<Photo: This is a test title 2>',\n                                 '<Photo: This is a test title 3>'\n                                 ],\n                                 ordered=False,\n                                 transform=repr)\n\n    def test_bad_zip(self):\n        \"\"\"Supplied file is not a zip file - tell user.\"\"\"\n\n        test_data = copy.copy(self.sample_form_data)\n        with open(LANDSCAPE_IMAGE_PATH, mode='rb') as f:\n            test_data['zip_file'] = f\n            response = self.client.post('/admin/photologue/photo/upload_zip/', test_data)\n            self.assertEqual(response.status_code, 200)\n            self.assertTrue(response.context['form']['zip_file'].errors)\n"
  },
  {
    "path": "photologue/urls.py",
    "content": "from django.urls import path, re_path, reverse_lazy\nfrom django.views.generic import RedirectView\n\nfrom .views import (GalleryArchiveIndexView, GalleryDateDetailView, GalleryDayArchiveView, GalleryDetailView,\n                    GalleryListView, GalleryMonthArchiveView, GalleryYearArchiveView, PhotoArchiveIndexView,\n                    PhotoDateDetailView, PhotoDayArchiveView, PhotoDetailView, PhotoListView, PhotoMonthArchiveView,\n                    PhotoYearArchiveView)\n\n\"\"\"NOTE: the url names are changing. In the long term, I want to remove the 'pl-'\nprefix on all urls, and instead rely on an application namespace 'photologue'.\n\nAt the same time, I want to change some URL patterns, e.g. for pagination. Changing the urls\ntwice within a few releases, could be confusing, so instead I am updating URLs bit by bit.\n\nThe new style will coexist with the existing 'pl-' prefix for a couple of releases.\n\n\"\"\"\n\napp_name = 'photologue'\nurlpatterns = [\n    re_path(r'^gallery/(?P<year>\\d{4})/(?P<month>[0-9]{2})/(?P<day>\\w{1,2})/(?P<slug>[\\-\\d\\w]+)/$',\n            GalleryDateDetailView.as_view(month_format='%m'),\n            name='gallery-detail'),\n    re_path(r'^gallery/(?P<year>\\d{4})/(?P<month>[0-9]{2})/(?P<day>\\w{1,2})/$',\n            GalleryDayArchiveView.as_view(month_format='%m'),\n            name='gallery-archive-day'),\n    re_path(r'^gallery/(?P<year>\\d{4})/(?P<month>[0-9]{2})/$',\n            GalleryMonthArchiveView.as_view(month_format='%m'),\n            name='gallery-archive-month'),\n    re_path(r'^gallery/(?P<year>\\d{4})/$',\n            GalleryYearArchiveView.as_view(),\n            name='pl-gallery-archive-year'),\n    path('gallery/',\n         GalleryArchiveIndexView.as_view(),\n         name='pl-gallery-archive'),\n    path('',\n         RedirectView.as_view(\n             url=reverse_lazy('photologue:pl-gallery-archive'), permanent=True),\n         name='pl-photologue-root'),\n    re_path(r'^gallery/(?P<slug>[\\-\\d\\w]+)/$',\n            GalleryDetailView.as_view(), name='pl-gallery'),\n    path('gallerylist/',\n         GalleryListView.as_view(),\n         name='gallery-list'),\n\n    re_path(r'^photo/(?P<year>\\d{4})/(?P<month>[0-9]{2})/(?P<day>\\w{1,2})/(?P<slug>[\\-\\d\\w]+)/$',\n            PhotoDateDetailView.as_view(month_format='%m'),\n            name='photo-detail'),\n    re_path(r'^photo/(?P<year>\\d{4})/(?P<month>[0-9]{2})/(?P<day>\\w{1,2})/$',\n            PhotoDayArchiveView.as_view(month_format='%m'),\n            name='photo-archive-day'),\n    re_path(r'^photo/(?P<year>\\d{4})/(?P<month>[0-9]{2})/$',\n            PhotoMonthArchiveView.as_view(month_format='%m'),\n            name='photo-archive-month'),\n    re_path(r'^photo/(?P<year>\\d{4})/$',\n            PhotoYearArchiveView.as_view(),\n            name='pl-photo-archive-year'),\n    path('photo/',\n         PhotoArchiveIndexView.as_view(),\n         name='pl-photo-archive'),\n\n    re_path(r'^photo/(?P<slug>[\\-\\d\\w]+)/$',\n            PhotoDetailView.as_view(),\n            name='pl-photo'),\n    path('photolist/',\n         PhotoListView.as_view(),\n         name='photo-list'),\n]\n"
  },
  {
    "path": "photologue/utils/__init__.py",
    "content": ""
  },
  {
    "path": "photologue/utils/reflection.py",
    "content": "\"\"\" Function for generating web 2.0 style image reflection effects.\n\nCopyright (c) 2007, Justin C. Driscoll\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n    1. Redistributions of source code must retain the above copyright notice,\n       this list of conditions and the following disclaimer.\n\n    2. Redistributions in binary form must reproduce the above copyright\n       notice, this list of conditions and the following disclaimer in the\n       documentation and/or other materials provided with the distribution.\n\n    3. Neither the name of reflection.py nor the names of its contributors may be used\n       to endorse or promote products derived from this software without\n       specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\"\"\"\n\ntry:\n    import Image\n    import ImageColor\nexcept ImportError:\n    try:\n        from PIL import Image, ImageColor\n    except ImportError:\n        raise ImportError(\"The Python Imaging Library was not found.\")\n\n\ndef add_reflection(im, bgcolor=\"#00000\", amount=0.4, opacity=0.6):\n    \"\"\" Returns the supplied PIL Image (im) with a reflection effect\n\n    bgcolor  The background color of the reflection gradient\n    amount   The height of the reflection as a percentage of the orignal image\n    opacity  The initial opacity of the reflection gradient\n\n    Originally written for the Photologue image management system for Django\n    and Based on the original concept by Bernd Schlapsi\n\n    \"\"\"\n    # convert bgcolor string to rgb value\n    background_color = ImageColor.getrgb(bgcolor)\n\n    # copy orignial image and flip the orientation\n    reflection = im.copy().transpose(Image.FLIP_TOP_BOTTOM)\n\n    # create a new image filled with the bgcolor the same size\n    background = Image.new(\"RGB\", im.size, background_color)\n\n    # calculate our alpha mask\n    start = int(255 - (255 * opacity))  # The start of our gradient\n    steps = int(255 * amount)  # the number of intermedite values\n    increment = (255 - start) / float(steps)\n    mask = Image.new('L', (1, 255))\n    for y in range(255):\n        if y < steps:\n            val = int(y * increment + start)\n        else:\n            val = 255\n        mask.putpixel((0, y), val)\n    alpha_mask = mask.resize(im.size)\n\n    # merge the reflection onto our background color using the alpha mask\n    reflection = Image.composite(background, reflection, alpha_mask)\n\n    # crop the reflection\n    reflection_height = int(im.size[1] * amount)\n    reflection = reflection.crop((0, 0, im.size[0], reflection_height))\n\n    # create new image sized to hold both the original image and the reflection\n    composite = Image.new(\"RGB\", (im.size[0], im.size[1] + reflection_height), background_color)\n\n    # paste the orignal image and the reflection into the composite image\n    composite.paste(im, (0, 0))\n    composite.paste(reflection, (0, im.size[1]))\n\n    # return the image complete with reflection effect\n    return composite\n"
  },
  {
    "path": "photologue/utils/watermark.py",
    "content": "\"\"\" Function for applying watermarks to images.\n\nOriginal found here:\nhttp://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/362879\n\n\"\"\"\n\ntry:\n    import Image\n    import ImageEnhance\nexcept ImportError:\n    try:\n        from PIL import Image, ImageEnhance\n    except ImportError:\n        raise ImportError(\"The Python Imaging Library was not found.\")\n\n\ndef reduce_opacity(im, opacity):\n    \"\"\"Returns an image with reduced opacity.\"\"\"\n    assert opacity >= 0 and opacity <= 1\n    if im.mode != 'RGBA':\n        im = im.convert('RGBA')\n    else:\n        im = im.copy()\n    alpha = im.split()[3]\n    alpha = ImageEnhance.Brightness(alpha).enhance(opacity)\n    im.putalpha(alpha)\n    return im\n\n\ndef apply_watermark(im, mark, position, opacity=1):\n    \"\"\"Adds a watermark to an image.\"\"\"\n    if opacity < 1:\n        mark = reduce_opacity(mark, opacity)\n    if im.mode != 'RGBA':\n        im = im.convert('RGBA')\n    # create a transparent layer the size of the image and draw the\n    # watermark in that layer.\n    layer = Image.new('RGBA', im.size, (0, 0, 0, 0))\n    if position == 'tile':\n        for y in range(0, im.size[1], mark.size[1]):\n            for x in range(0, im.size[0], mark.size[0]):\n                layer.paste(mark, (x, y))\n    elif position == 'scale':\n        # scale, but preserve the aspect ratio\n        ratio = min(\n            float(im.size[0]) / mark.size[0], float(im.size[1]) / mark.size[1])\n        w = int(mark.size[0] * ratio)\n        h = int(mark.size[1] * ratio)\n        mark = mark.resize((w, h))\n        layer.paste(mark, (int((im.size[0] - w) / 2), int((im.size[1] - h) / 2)))\n    else:\n        layer.paste(mark, position)\n    # composite the watermark with the layer\n    return Image.composite(layer, im, layer)\n"
  },
  {
    "path": "photologue/views.py",
    "content": "from django.views.generic.dates import (ArchiveIndexView, DateDetailView, DayArchiveView, MonthArchiveView,\n                                        YearArchiveView)\nfrom django.views.generic.detail import DetailView\nfrom django.views.generic.list import ListView\n\nfrom .models import Gallery, Photo\n\n# Gallery views.\n\n\nclass GalleryListView(ListView):\n    queryset = Gallery.objects.on_site().is_public()\n    paginate_by = 20\n\n\nclass GalleryDetailView(DetailView):\n    queryset = Gallery.objects.on_site().is_public()\n\n\nclass GalleryDateView:\n    queryset = Gallery.objects.on_site().is_public()\n    date_field = 'date_added'\n    allow_empty = True\n\n\nclass GalleryDateDetailView(GalleryDateView, DateDetailView):\n    pass\n\n\nclass GalleryArchiveIndexView(GalleryDateView, ArchiveIndexView):\n    pass\n\n\nclass GalleryDayArchiveView(GalleryDateView, DayArchiveView):\n    pass\n\n\nclass GalleryMonthArchiveView(GalleryDateView, MonthArchiveView):\n    pass\n\n\nclass GalleryYearArchiveView(GalleryDateView, YearArchiveView):\n    make_object_list = True\n\n# Photo views.\n\n\nclass PhotoListView(ListView):\n    queryset = Photo.objects.on_site().is_public()\n    paginate_by = 20\n\n\nclass PhotoDetailView(DetailView):\n    queryset = Photo.objects.on_site().is_public()\n\n\nclass PhotoDateView:\n    queryset = Photo.objects.on_site().is_public()\n    date_field = 'date_added'\n    allow_empty = True\n\n\nclass PhotoDateDetailView(PhotoDateView, DateDetailView):\n    pass\n\n\nclass PhotoArchiveIndexView(PhotoDateView, ArchiveIndexView):\n    pass\n\n\nclass PhotoDayArchiveView(PhotoDateView, DayArchiveView):\n    pass\n\n\nclass PhotoMonthArchiveView(PhotoDateView, MonthArchiveView):\n    pass\n\n\nclass PhotoYearArchiveView(PhotoDateView, YearArchiveView):\n    make_object_list = True\n"
  },
  {
    "path": "requirements.txt",
    "content": "# Note: Specifying django here crashes tox; it's autoinstalled with other packages it\n# so can be removed from this file.\n# Cannot force a precise Pillow version as we need to support Py3.8-Py3.13 and there's\n# no Pillow version that meets both requirements.\nPillow>=10\ndjango-sortedm2m>=4.0.0 # Support for Django 5.1.\nExifRead>=3\n"
  },
  {
    "path": "scripts/__init__.py",
    "content": ""
  },
  {
    "path": "scripts/releaser_hooks.py",
    "content": "import os\nimport subprocess\n\ntry:\n    import polib\nexcept ImportError:\n    print('Msg to the package releaser: prerelease hooks will not work as you have not installed polib.')\n    raise\nimport codecs\nimport copy\n\n\ndef prereleaser_before(data):\n    \"\"\"\n    1. Run the unit tests one last time before we make a release.\n    2. Update the CONTRIBUTORS.txt file.\n\n    Note: Install * polib (https://pypi.python.org/pypi/polib).\n                  * pep8.\n\n    \"\"\"\n    print('Running unit tests.')\n    subprocess.check_output([\"python\", \"example_project/manage.py\", \"test\", \"photologue\"])\n\n    print('Checking that we have no outstanding DB migrations.')\n    output = subprocess.check_output([\"python\", \"example_project/manage.py\", \"makemigrations\", \"--dry-run\",\n                                      \"photologue\"])\n    if not output == b\"No changes detected in app 'photologue'\\n\":\n        raise Exception('There are outstanding migrations for Photologue.')\n\n    print('Updating CONTRIBUTORS.txt')\n\n    # This command will get the author of every commit.\n    output = subprocess.check_output([\"git\", \"log\", \"--format='%aN'\"])\n\n    # Convert to a list.\n    contributors_list = [contributor.strip(\"'\") for contributor in output.decode('utf-8').split('\\n')]\n\n    # Now add info from the translator files. This is incomplete, we can only list\n    # the 'last contributor' to each translation.\n    for language in os.listdir('photologue/locale/'):\n        filename = f'photologue/locale/{language}/LC_MESSAGES/django.po'\n        po = polib.pofile(filename)\n        last_translator = po.metadata['Last-Translator']\n        contributors_list.append(last_translator[:last_translator.find('<') - 1])\n\n    # Now we want to only show each contributor once, and to list them by how many\n    # contributions they have made - a rough guide to the effort they have put in.\n    contributors_dict = {}\n\n    for author in contributors_list:\n        author_copy = copy.copy(author)\n\n        if author_copy in ('', '(no author)', 'FULL NAME'):\n            # Skip bad data.\n            continue\n\n        # The creator of this project should always appear first in the list - so\n        # don't add him to this list, but hard-code his name.\n        if author_copy in ('Justin Driscoll', 'justin.driscoll'):\n            continue\n\n        # Handle contributors who appear under multiple names.\n        if author_copy == 'richardbarran':\n            author_copy = 'Richard Barran'\n\n        if author_copy in contributors_dict:\n            contributors_dict[author_copy] += 1\n        else:\n            contributors_dict[author_copy] = 1\n\n    with codecs.open('CONTRIBUTORS.txt', 'w', encoding='utf8') as f:\n        f.write('Photologue is made possible by all the people who have contributed'\n                ' to it. A non-exhaustive list follows:\\n\\n')\n        f.write('Justin Driscoll\\n')\n        for i in sorted(contributors_dict, key=contributors_dict.get, reverse=True):\n            f.write(i + '\\n')\n\n    # And commit the new contributors file.\n    if subprocess.check_output([\"git\", \"diff\", \"CONTRIBUTORS.txt\"]):\n        subprocess.check_output([\"git\", \"commit\", \"-m\", \"Updated the list of contributors.\", \"CONTRIBUTORS.txt\"])\n"
  },
  {
    "path": "setup.cfg",
    "content": "[zest.releaser]\npython-file-with-version = photologue/__init__.py\nprereleaser.before = scripts.releaser_hooks.prereleaser_before\n\n[flake8]\n# Follow Django style conventions - allow longer lines.\nmax-line-length = 119\nexclude = docs,photologue/migrations,example_project/example_project/example_storages/s3utils.py,.tox\nignore = E265,E722\n\n[bdist_wheel]\nuniversal = 1\n"
  },
  {
    "path": "setup.py",
    "content": "# /usr/bin/env python\nfrom pkg_resources import parse_requirements\nfrom setuptools import find_packages, setup\n\nimport photologue\n\n\ndef get_requirements(source):\n    with open(source) as f:\n        return sorted({str(req) for req in parse_requirements(f.read())})\n\n\nsetup(\n    name=\"django-photologue\",\n    version=photologue.__version__,\n    description=\"Powerful image management for the Django web framework.\",\n    author=\"Justin Driscoll, Marcos Daniel Petry, Richard Barran\",\n    author_email=\"justin@driscolldev.com, marcospetry@gmail.com, richard@arbee-design.co.uk\",\n    url=\"https://github.com/richardbarran/django-photologue\",\n    packages=find_packages(),\n    include_package_data=True,\n    zip_safe=False,\n    classifiers=['Development Status :: 5 - Production/Stable',\n                 'Environment :: Web Environment',\n                 'Framework :: Django',\n                 'Intended Audience :: Developers',\n                 'License :: OSI Approved :: BSD License',\n                 'Operating System :: OS Independent',\n                 'Programming Language :: Python',\n                 'Programming Language :: Python :: 2.7',\n                 'Programming Language :: Python :: 3',\n                 'Programming Language :: Python :: 3.4',\n                 'Programming Language :: Python :: 3.5',\n                 'Programming Language :: Python :: 3.6',\n                 'Topic :: Utilities'],\n    install_requires=get_requirements('requirements.txt'),\n)\n"
  },
  {
    "path": "tox.ini",
    "content": "# tox (https://tox.readthedocs.io/) is a tool for running tests\n# in multiple virtualenvs. This configuration file will run the\n# test suite on all supported python versions. To use it, \"pip install tox\"\n# and then run \"tox\" from this directory.\n\n[tox]\nenvlist =\n    py{38,39,310,311,312}-django42\n    py{310,311,312,313}-django51\n    py{310,311,312,313}-django52\n\n[testenv]\ndeps =\n    django42: Django>=4.2,<5.0\n    django51: Django>=5.1,<5.2\n    django52: Django>=5.2,<6.0\n    -r{toxinidir}/example_project/requirements.txt\nchangedir =\n    {toxinidir}/example_project/\ncommands =\n    python manage.py test photologue\n\n[gh-actions]\npython =\n    3.8: py38\n    3.9: py39\n    3.10: py310\n    3.11: py311\n    3.12: py312\n    3.13: py313\n"
  }
]