Compare commits

...
28 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
Bartosz Płóciennik 9f71f86fd9 Release 3.6.0rc2 (#6591) 2019-01-14 14:41:01 +01:00
Bartosz Płóciennik 1191c9693e Fixed #6572 -- Added missing clear cache for menu when page moved (#6590) 2019-01-14 13:13:50 +01:00
Bartosz Płóciennik 41a8404032 Fixed #6585 -- Added missing clear cache for menu when page is created (#6584) 2019-01-14 08:02:04 +01:00
Jeroen a6b56a884e Issue #6342: docs of text_enabled
Issue #6342: Extended the docs of `text_enabled` param for plugins
2018-12-14 18:16:28 +00:00
Daniele Procida 9863ecd8ed Merge pull request #6582 from evildmp/evildmp/menu-system-logic
Improved menu logic description
2018-12-14 13:10:12 +00:00
Daniele Procida 5f03ce7acb Improved menu logic description
Flattened the deeply-nested list by breaking it apart into logical
sections. This will remedy issues in the PDF version of the documentation,
which failed to handle the list well.
2018-12-14 12:52:49 +00:00
Daniele Procida e6b5553d9e Updated release notes 2018-12-13 18:39:03 +00:00
Daniele Procida 6be77fd2e8 Fixed broken documentation references 2018-12-13 18:07:23 +00:00
Daniele Procida 68988aced4 Fixed spelling errors 2018-12-13 11:58:47 +00:00
332 changed files with 673 additions and 325 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/
+1 -1
View File
@@ -254,6 +254,7 @@ Contributors (based on gitlog, 537 unique authors):
* Jeffrey Goettsch
* Jens Diemer
* JensDiemer
* Jeroen
* Jeroen Noten
* Jessica Tallon
* Jimmy Lam
@@ -537,7 +538,6 @@ Contributors (based on gitlog, 537 unique authors):
* Vinod Kurup
* Vladimir Bolshakov
* Vladyslav
* vThaian
* vvangelovski
* wangJunjie
* Wayne Moore
+7 -1
View File
@@ -1,4 +1,10 @@
=== 3.6.0 (unreleased) ===
=== 3.7.0 (unreleased) ===
* Introduced Django 2.2 support.
* Fixed test suite.
=== 3.6.0 (2019-01-29) ===
* Removed the ``cms moderator`` command.
* Dropped Django < 1.11 support.
+1 -1
View File
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '3.6.0rc1'
__version__ = '3.6.0'
default_app_config = 'cms.apps.CMSConfig'
+3
View File
@@ -294,6 +294,8 @@ class AddPageForm(BasePageForm):
# its the first page. publish it right away
new_page.publish(translation.language)
new_page.set_as_homepage(self._user)
new_page.clear_cache(menu=True)
return new_page
@@ -896,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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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.
+23 -21
View File
@@ -11,6 +11,7 @@
# Aryan Baghi <aryan@baghi.id.ir>, 2014
# Aryan Baghi <aryan@baghi.id.ir>, 2014
# cafe-click <cafeclick@rocketmail.com>, 2013
# Fariman Ghaedi <farimanghaedi@gmail.com>, 2018
# farshad <akbari.farshad@gmail.com>, 2014
# hadiazaddel <hadiazaddel@chmail.ir>, 2014
# hadiazaddel <hadiazaddel@chmail.ir>, 2014
@@ -22,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: 2018-11-09 13:20+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-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"
@@ -124,7 +126,7 @@ msgstr "صفحه-ای با شناسه-ی این آدرس معکوس وجود د
#| msgid "Application configurations"
msgid "Invalid application config value"
msgstr ""
msgstr "مقدار تنظیمات برنامه نامعتبر است."
msgid "An application instance using this configuration already exists."
msgstr "یک برنامه موردی با این تنظیمات از پیش وجود دارد."
@@ -133,7 +135,7 @@ msgid "An application instance with this name already exists."
msgstr "یک برنامه موردی با این نام از پیش وجود دارد."
msgid "You can't move the home page inside another page"
msgstr ""
msgstr "شما نمی توانید صفحه خانه را به درون صفحه دیگری منتقل کنید"
msgid "Yes"
msgstr "بله"
@@ -249,7 +251,7 @@ msgstr "خطا! شما اختیارات کپی این صفحه را ندارید
msgid ""
"Error! The page you're pasting is not translated in any of the languages "
"configured by the target site."
msgstr ""
msgstr "خطا! صفحه ای که شما در حال چسباندن آن هستید به هیچ کدام از زبان هایی که سایت هدف پیکربندی کرده ترجمه نشده است."
#| msgid "You do not have permission to edit this page"
msgid "You do not have permission to revert this page."
@@ -310,7 +312,7 @@ msgid "New page"
msgstr "صفحه‌ی جدید"
msgid "The page is not eligible to be home."
msgstr ""
msgstr "این صفحه واجد شرایط برای اینکه صفحه خانه باشد نیست."
msgid "View restriction"
msgstr "مشاهد محدوديت"
@@ -562,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 ""
@@ -570,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."
@@ -584,7 +586,7 @@ msgstr "برای تنظیم نشانک به صورت اتوماتیک، خالی
#| msgid "You do not have permission to add a plugin"
msgid "You don't have the permissions required to add a page."
msgstr ""
msgstr "شما دسترسی لازم برای اضافه کردن صفحه را ندارید."
msgid "ID"
msgstr "آی دی"
@@ -1008,7 +1010,7 @@ msgstr "جایگذاری"
#| msgid "Save as new"
msgid "Set as home"
msgstr ""
msgstr "تنظیم به عنوان خانه"
msgid "is restricted"
msgstr "محدود شده"
@@ -1098,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 "تنظیمات کپی"
@@ -1220,18 +1222,18 @@ 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"
msgstr ""
msgstr "مشاهده منتشر شده"
msgid "Login"
msgstr "ورود"
@@ -1257,7 +1259,7 @@ msgstr "خطای مقابل رخ داده است:"
#| msgid "Action successfull... reloading."
msgid "Action successful."
msgstr ""
msgstr "اقدام موفقیت آمیز."
msgid "Are you sure you want to delete this plugin?"
msgstr "آیا شما مطمئن هستید می‌خواهید این افزونه را پاک کنید؟"
@@ -1287,13 +1289,13 @@ msgstr "فورم نمیتواند بارگزاری شود. لطفا اطمینا
#| msgid "Notify user"
msgid "Most used"
msgstr ""
msgstr "بیشترین استفاده شده"
msgid "Shortcuts"
msgstr "میانبرها"
msgid "The page was changed in the meantime, reloading..."
msgstr ""
msgstr "صفحه در این اثناء تغییر کرد،\nدر حال بارگذاری مجدد ..."
msgid "Bring up this help dialog"
msgstr "این گفتگو کمک را بیابید"
@@ -1426,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"
@@ -1444,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 "به سیستم مدیریت محتوای جنگو خوش آمدید"
@@ -1554,7 +1556,7 @@ msgstr "ابزار نمونه"
#| msgid "Sample App with excluded permissions"
msgid "Sample App with config"
msgstr ""
msgstr "اپلیکیشن نمونه همراه با پیکربندی"
msgid "Sample App with excluded permissions"
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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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: 2018-11-09 13:21+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: 2018-11-09 13:20+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"

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