Compare commits

...
19 Commits
Author SHA1 Message Date
Angelo Dini 006367b678 Fixes test suite (#6688)
* add information for testing

* fix tests

* updated CHANGELOG

* update

* 1.8.5

* fix tests locally

* update text
2019-06-07 11:02:11 +02:00
Bartosz Płóciennik b810dd4417 Adding support for Django 2.2 LTS (#6655)
* New changes for cms 3.7

* Fix typo

* Fixed issue with force_color

* Removed unused import

* Added docs to index.rst

* Fixed travis jobs

* Fixed force_color command

* Changes after review

* Fixed django version in setup

* Update django-2.2.txt
2019-06-06 10:08:20 +02:00
Craig Anderson 15267a5ddf Add missing parenthesis in code (#6677) 2019-05-28 15:25:18 +02:00
Bartosz Płóciennik eeb1e4712b Restored Django flags in compat file (#6636) 2019-03-19 14:45:07 +01:00
Bartosz Płóciennik c973e9720e Fixed #6615 -- Removed depreciation warnings for imp package (#6637)
* Removed depreciation warnings for imp package

* Change try except
2019-03-19 14:44:44 +01:00
Baptiste Darthenay 91cd10c4a7 typo: added spaces on configuration docs (#6330) 2019-03-11 13:58:44 +01:00
Gourav Chawla(dotgourav) 4b25db2b42 Update copyright year in docs to be dynamic (#6618) 2019-03-11 13:58:11 +01:00
Paweł 4bdbf2b709 Page has no attribute site_id [Docs] (#6614)
* plugin_instance.position = new_plugin.position in CMSPlugin.copy_plugin
fix null position in copy_plugin method. CMSPlugin position not null +
default = 0

* CMSplugin.position not null

Django CMSPlugin.position null raises unorderable types: NoneType() <
int()

* fixed page has not attribute site_id
2019-03-11 13:57:52 +01:00
mobilepattern e9481b3e52 Update install documentation to use re_path (#6613)
* Update install documentation to use re_path 

The example with url(...) no longer works. The correct syntax is re_path(...).

* Changed documentation to based on feedback from Bartosz Płóciennik

The change to use re_path is only necessary when using Django 2.0. Reverted the change and added a note for Django 2.0 users.
2019-03-11 13:57:32 +01:00
Gourav Chawla(dotgourav) a613b53668 Fix typo in documentation (#6612)
- Fix typo in apphooks section of introduction docs
- Fix typo in index of introduction
2019-03-11 13:57:11 +01:00
Sascha Marcel Schmidt 54d1d7bbd4 Update install.rst (#6610)
change MIDDLEWARE_CLASSES to MIDDLEWARE as cms check expects
2019-03-11 13:56:38 +01:00
Robert Stein c5e105efda Fixed #6440 -- render_plugin_block template tag (#6472)
* - Fixes #6440 - `render_plugin_block` template tag
- removes unnecessary template
- updates changelog

* adapted changelog
2019-03-11 13:56:18 +01:00
schwobaseggl 63a0ac1891 Fix wrong field name (#6467)
`extended_page` is not a field of a `PageExtension`. This should be `extended_object`.
2019-03-11 13:55:46 +01:00
Vadim Sikora 7175ce9558 Fixed a bug with top-level object/embed/applet tags (#6497) 2019-03-11 13:55:17 +01:00
Bartosz Płóciennik f3fcf1c3ab Fixed travis matrix by moving menu test to allow_failures section (#6628)
* Moved test menu for python 2.7 to allow_failures section (#6625)

* Removed fast finish

* Add to include

* Restore fast_finish
2019-03-11 08:32:05 +01:00
Bartosz Płóciennik f7839c51d6 Fixed #6457 -- Fixed rendering of permission icons (#6624)
* use SVG icons

* add compatibility layer for Django-1.8
2019-03-07 08:46:24 +01:00
Bartosz Płóciennik 8007ce3d2f Release 3.6.0 (#6604) 2019-01-29 11:40:08 +01:00
Bartosz Płóciennik 2daeb7d63c Release 3.6.0rc3 (#6598)
* Release 3.6.0rc3

* Update translations
2019-01-24 11:47:37 +01:00
Bartosz Płóciennik 9e7c0517df Fixed #6595 -- missing clear cache for a menu after copied page (#6596)
* Add clear cache for copy page form

* Removed fixes for menu cache from changelog
2019-01-23 16:08:54 +01:00
324 changed files with 443 additions and 231 deletions
+1
View File
@@ -23,6 +23,7 @@ dist
.project
.coverage
.pydevproject
.vscode
.settings
/*.egg-info/
/*.egg/
+21 -2
View File
@@ -83,6 +83,27 @@ matrix:
env: DJANGO=2.1 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
- python: 3.6
env: TEST_DOCS=1 DJANGO=2.1 DATABASE_URL='sqlite://localhost/:memory:'
# DJANGO 2.2
- python: 3.5
env: DJANGO=2.2 DATABASE_URL='sqlite://localhost/:memory:'
dist: xenial
sudo: true
- python: 3.5
env: DJANGO=2.2 DATABASE_URL='mysql://root@127.0.0.1/djangocms_test'
- python: 3.6
env: DJANGO=2.2 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test'
- python: 3.6
env: DJANGO=2.2 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='emailuserapp.EmailUser'
- python: 3.6
env: DJANGO=2.2 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
- python: 3.6
env: TEST_DOCS=1 DJANGO=2.2 DATABASE_URL='sqlite://localhost/:memory:'
dist: xenial
sudo: true
allow_failures:
- python: 2.7
env: DJANGO=1.11 DATABASE_URL='sqlite://localhost/:memory:'
exclude:
- python: 2.7
- python: 3.4
@@ -125,5 +146,3 @@ notifications:
irc:
- irc.freenode.org#django-cms
- irc.freenode.org#django-cms-sprint
webhooks:
- http://addons.us-iad-rs.aldryn.io/en/travis-endpoint/
+7 -3
View File
@@ -1,7 +1,11 @@
=== 3.6.0 (unreleased) ===
=== 3.7.0 (unreleased) ===
* Introduced Django 2.2 support.
* Fixed test suite.
=== 3.6.0 (2019-01-29) ===
* Fixed a bug where menu link is outdated when page moved.
* Fixed a bug where menu link is outdated when page is created.
* Removed the ``cms moderator`` command.
* Dropped Django < 1.11 support.
* Removed the translatable content get / set methods from ``CMSPlugin`` model.
+1 -1
View File
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '3.6.0rc2'
__version__ = '3.6.0'
default_app_config = 'cms.apps.CMSConfig'
+1
View File
@@ -898,6 +898,7 @@ class CopyPageForm(PageTreeForm):
copy_permissions=copy_permissions,
target_site=self._site,
)
new_page.clear_cache(menu=True)
return new_page
def _get_tree_options_for_root(self, position):
Binary file not shown.
+3 -3
View File
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2019-01-22 15:34+0000\n"
"Last-Translator: Bashar Al-Abdulhadi\n"
"Language-Team: Arabic (http://www.transifex.com/divio/django-cms/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Binary file not shown.
+1 -1
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Arabic (http://www.transifex.com/divio/django-cms/language/ar/)\n"
Binary file not shown.
+1 -1
View File
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/divio/django-cms/language/bg/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Bulgarian (http://www.transifex.com/divio/django-cms/language/bg/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Bengali (http://www.transifex.com/divio/django-cms/language/bn/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Bengali (http://www.transifex.com/divio/django-cms/language/bn/)\n"
Binary file not shown.
+1 -1
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Catalan (http://www.transifex.com/divio/django-cms/language/ca/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Catalan (http://www.transifex.com/divio/django-cms/language/ca/)\n"
Binary file not shown.
+1 -1
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Czech (http://www.transifex.com/divio/django-cms/language/cs/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Czech (http://www.transifex.com/divio/django-cms/language/cs/)\n"
Binary file not shown.
+1 -1
View File
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Danish (http://www.transifex.com/divio/django-cms/language/da/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Danish (http://www.transifex.com/divio/django-cms/language/da/)\n"
Binary file not shown.
+1 -1
View File
@@ -35,7 +35,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-12 06:05+0000\n"
"Last-Translator: Peter Wischer <peter.wischer@lwl.org>\n"
"Language-Team: German (http://www.transifex.com/divio/django-cms/language/de/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: German (http://www.transifex.com/divio/django-cms/language/de/)\n"
Binary file not shown.
+1 -1
View File
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Greek (http://www.transifex.com/divio/django-cms/language/el/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Greek (http://www.transifex.com/divio/django-cms/language/el/)\n"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2015-11-11 17:31+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: English (http://www.transifex.com/divio/django-cms/language/"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2015-10-31 12:28+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: English (http://www.transifex.com/divio/django-cms/language/"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/divio/django-cms/language/en_GB/)\n"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/divio/django-cms/language/en_GB/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Esperanto (http://www.transifex.com/divio/django-cms/language/eo/)\n"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Esperanto (http://www.transifex.com/divio/django-cms/language/eo/)\n"
Binary file not shown.
+1 -1
View File
@@ -36,7 +36,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Spanish (http://www.transifex.com/divio/django-cms/language/es/)\n"
Binary file not shown.
+1 -1
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Spanish (http://www.transifex.com/divio/django-cms/language/es/)\n"
Binary file not shown.
+1 -1
View File
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/divio/django-cms/language/es_AR/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/divio/django-cms/language/es_AR/)\n"
Binary file not shown.
+1 -1
View File
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/divio/django-cms/language/es_BO/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/divio/django-cms/language/es_BO/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/divio/django-cms/language/es_DO/)\n"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/divio/django-cms/language/es_DO/)\n"
Binary file not shown.
+1 -1
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Estonian (http://www.transifex.com/divio/django-cms/language/et/)\n"
Binary file not shown.
+1 -1
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Estonian (http://www.transifex.com/divio/django-cms/language/et/)\n"
Binary file not shown.
+1 -1
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Basque (http://www.transifex.com/divio/django-cms/language/eu/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Basque (http://www.transifex.com/divio/django-cms/language/eu/)\n"
Binary file not shown.
+12 -11
View File
@@ -23,13 +23,14 @@
# Mohammad Rafiei <mohammad.rafiei69@gmail.com>, 2017
# omid zarin <mester.hope.oz@gmail.com>, 2014
# Pouya Abbassi, 2016
# Sina Rezaei <sinarezaei1991@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"PO-Revision-Date: 2018-12-20 13:33+0000\n"
"Last-Translator: Fariman Ghaedi <farimanghaedi@gmail.com>\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2019-01-19 23:33+0000\n"
"Last-Translator: Sina Rezaei <sinarezaei1991@gmail.com>\n"
"Language-Team: Persian (http://www.transifex.com/divio/django-cms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -125,7 +126,7 @@ msgstr "صفحه-ای با شناسه-ی این آدرس معکوس وجود د
#| msgid "Application configurations"
msgid "Invalid application config value"
msgstr ""
msgstr "مقدار تنظیمات برنامه نامعتبر است."
msgid "An application instance using this configuration already exists."
msgstr "یک برنامه موردی با این تنظیمات از پیش وجود دارد."
@@ -563,7 +564,7 @@ msgstr "یک صفحه معتبر انتخاب کنید"
msgid ""
"Page %(conflict_page)s has the same url '%(url)s' as current page "
"\"%(instance)s\"."
msgstr ""
msgstr "آدرس صفحه %(conflict_page)s با آدرس صفحه فعلی %(url)s یکسان است \"%(instance)s\"."
#, python-format
#| msgid ""
@@ -571,7 +572,7 @@ msgstr ""
#| msgid_plural ""
#| "%(pages)s have the same url '%(url)s' as current page \"%(instance)s"
msgid "Page %(conflict_page)s has the same url '%(url)s' as current page."
msgstr ""
msgstr "آدرس صفحه %(conflict_page)s با آدرس صفحه فعلی %(url)s یکسان است."
msgid ""
"Optional. If supplied, will be automatically added within a new text plugin."
@@ -1099,7 +1100,7 @@ msgid ""
" <br>\n"
" <a href=\"%(add_url)s\" class=\"addlink\">Add %(object)s</a> now.\n"
" "
msgstr ""
msgstr "\n<em>هیچ %(object)s یافت نشد</em>\n\n<a href=\"%(add_url)s\" class=\"addlink\">همین الان %(object)s اضافه کنید</a>."
msgid "Copy options"
msgstr "تنظیمات کپی"
@@ -1221,14 +1222,14 @@ msgid "This plugin cannot have nested plugins."
msgstr "این پلاگین نمیتواند پلاگینهای تو‌در‌تو داشته باشد."
msgid "Highlight"
msgstr ""
msgstr "هایلایت"
msgid "Available plugins"
msgstr "افزونه‌های موجود"
#| msgid "Structure"
msgid "Toggle structure"
msgstr ""
msgstr "تغییر ساختار"
#| msgid "View published"
msgid "View published"
@@ -1427,7 +1428,7 @@ msgid ""
" you linked the <code>static/cms</code> folder to your\n"
" static files.</p>\n"
" "
msgstr ""
msgstr "\n<p class=\"cms-welcome-notes\">اگر شما نماد «سیستم مدیریت محتوای جنگو» را در بالای صفحه نمی‌بینید، مطمئن شوید\nپوشه‌ی <code>static/cms</code> را به فایل‌های ایستای خود\nلینک کرده‌اید.</p>"
#| msgid ""
#| " <p class=\"cms-welcome-notes\">If you don't see the ngo CMS logo at the top, make sure\n"
@@ -1445,7 +1446,7 @@ msgid ""
" haven't added any pages yet.\n"
" </p>\n"
" "
msgstr ""
msgstr "\n<p class=\"cms-welcome-notes\">شما این پیغام را می‌بینید چون <code>DEBUG = True</code> را در تنظیمات جنگو فعال کرده‌اید.</p>"
msgid "Welcome to django CMS"
msgstr "به سیستم مدیریت محتوای جنگو خوش آمدید"
Binary file not shown.
+1 -1
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Persian (http://www.transifex.com/divio/django-cms/language/fa/)\n"
Binary file not shown.
+1 -1
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Persian (Iran) (http://www.transifex.com/divio/django-cms/language/fa_IR/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Persian (Iran) (http://www.transifex.com/divio/django-cms/language/fa_IR/)\n"
Binary file not shown.
+1 -1
View File
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Finnish (http://www.transifex.com/divio/django-cms/language/fi/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Finnish (http://www.transifex.com/divio/django-cms/language/fi/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/divio/django-cms/language/fi_FI/)\n"
Binary file not shown.
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/divio/django-cms/language/fi_FI/)\n"
Binary file not shown.
+5 -4
View File
@@ -13,6 +13,7 @@
# Samir ASNOUN <samir.asnoun@gmail.com>, 2015
# Assma Buifruri <assma.buifruri@hotmail.com>, 2017
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2012-2013,2015
# bmassot <bmassot@free.fr>, 2019
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2012
# charettes <charette.s@gmail.com>, 2011-2012
# Chary titouan <>, 2011
@@ -39,9 +40,9 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"PO-Revision-Date: 2018-11-13 22:45+0000\n"
"Last-Translator: Nicolas PASCAL <np.pascal@gmail.com>\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2019-01-17 09:13+0000\n"
"Last-Translator: bmassot <bmassot@free.fr>\n"
"Language-Team: French (http://www.transifex.com/divio/django-cms/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1244,7 +1245,7 @@ msgstr "Afficher/masquer la structure"
#| msgid "View published"
msgid "View published"
msgstr "Vue publiée"
msgstr "Voir la page publiée"
msgid "Login"
msgstr "Connexion"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: French (http://www.transifex.com/divio/django-cms/language/fr/)\n"
Binary file not shown.
+1 -1
View File
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Galician (http://www.transifex.com/divio/django-cms/language/gl/)\n"
Binary file not shown.
+1 -1
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-01-11 16:38+0000\n"
"Last-Translator: Paulo Alvarado <paulo.alvarado@divio.ch>\n"
"Language-Team: Galician (http://www.transifex.com/divio/django-cms/language/gl/)\n"
Binary file not shown.
+1 -1
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: django CMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 13:19+0100\n"
"POT-Creation-Date: 2019-01-29 08:34+0100\n"
"PO-Revision-Date: 2018-11-09 12:08+0000\n"
"Last-Translator: Bartosz Płóciennik <thaian@outlook.com>\n"
"Language-Team: Gujarati (http://www.transifex.com/divio/django-cms/language/gu/)\n"
Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More