Compare commits

...

No commits in common. "master" and "debian" have entirely different histories.

516 changed files with 35 additions and 15833 deletions

13
.gitignore vendored
View File

@ -1,13 +0,0 @@
*.log
*.pot
*.pyc
.project
.pydevproject
.settings
build
env*
dist
djangocms_text_ckeditor.egg-info
*.DS_Store
.idea
.tox

View File

@ -1,10 +0,0 @@
[main]
host = https://www.transifex.com
[django-cms.djangocms-text-ckeditor]
file_filter = djangocms_text_ckeditor/locale/<lang>/LC_MESSAGES/django.po
source_file = djangocms_text_ckeditor/locale/en/LC_MESSAGES/django.po
source_lang = en
type = PO

View File

@ -1,24 +0,0 @@
Copyright (c) 2011, Divio AG
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Djeese Factory GmbH nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL DJEESE FACTORY GMBH BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -1,7 +0,0 @@
include LICENSE.txt
include README.rst
include legal.txt
recursive-include djangocms_text_ckeditor/locale *
recursive-include djangocms_text_ckeditor/static *
recursive-include djangocms_text_ckeditor/templates *
recursive-exclude * *.pyc

View File

@ -1,300 +0,0 @@
djangocms-text-ckeditor
=======================
Text Plugin for django-cms with CK-Editor
.. WARNING::
``cms.plugins.text`` and ``djangocms-text-ckeditor`` can't be used at the same time.
.. WARNING::
For django CMS 2.3 and 2.4 use ``djangocms-text-ckeditor`` < 2 (e.g.: version 1.0.10).
``djangocms-text-ckeditor`` >= 2 is compatible with django CMS 3 only.
Installation
------------
This plugin requires `django CMS` 2.3 or higher to be properly installed.
* In your projects `virtualenv`, run ``pip install djangocms-text-ckeditor``.
* Add ``'djangocms_text_ckeditor'`` to your ``INSTALLED_APPS`` setting **BEFORE** the ``cms`` entry.
* If using Django 1.7 add ``'djangocms_text_ckeditor': 'djangocms_text_ckeditor.migrations_django',``
to ``MIGRATION_MODULES`` (or define ``MIGRATION_MODULES`` if it does not exists);
when django CMS 3.1 will be released, migrations for Django 1.7 will be moved
to the standard location and the south-style ones to ``south_migrations``.
* Run ``manage.py migrate djangocms_text_ckeditor``.
Upgrading from ``cms.plugins.text``
-----------------------------------
* Remove ``cms.plugins.text`` from ``INSTALLED_APPS``
* Add ``djangocms_text_ckeditor`` to ``INSTALLED_APPS``
* Run ``python manage.py migrate djangocms_text_ckeditor 0001 --fake``
Usage
-----
Default content in Placeholder
******************************
If you use Django-CMS >= 3.0, you can use ``TextPlugin`` in "default_plugins"
(see docs about the CMS_PLACEHOLDER_CONF setting in Django CMS 3.0).
``TextPlugin`` requires just one value: ``body`` where you write your default
HTML content. If you want to add some "default children" to your
automagically added plugin (i.e. a ``LinkPlugin``), you have to put children
references in the body. References are ``"%(_tag_child_<order>)s"`` with the
inserted order of chidren. For example::
CMS_PLACEHOLDER_CONF = {
'content': {
'name' : _('Content'),
'plugins': ['TextPlugin', 'LinkPlugin'],
'default_plugins':[
{
'plugin_type':'TextPlugin',
'values':{
'body':'<p>Great websites : %(_tag_child_1)s and %(_tag_child_2)s</p>'
},
'children':[
{
'plugin_type':'LinkPlugin',
'values':{
'name':'django',
'url':'https://www.djangoproject.com/'
},
},
{
'plugin_type':'LinkPlugin',
'values':{
'name':'django-cms',
'url':'https://www.django-cms.org'
},
},
]
},
]
}
}
CKEDITOR_SETTINGS
*****************
You can override the setting ``CKEDITOR_SETTINGS`` in your settings.py::
CKEDITOR_SETTINGS = {
'language': '{{ language }}',
'toolbar': 'CMS',
'skin': 'moono',
}
This is the default dict that holds all **CKEditor** settings.
Customizing plugin editor
#########################
To customize the plugin editor, use `toolbar_CMS` attribute, as in::
CKEDITOR_SETTINGS = {
'language': '{{ language }}',
'toolbar_CMS': [
['Undo', 'Redo'],
['cmsplugins', '-', 'ShowBlocks'],
['Format', 'Styles'],
]
'skin': 'moono',
}
Customizing HTMLField editor
############################
If you use ``HTMLField`` from ``djangocms_text_ckeditor.fields`` in your own
models, use `toolbar_HTMLField` attribute::
CKEDITOR_SETTINGS = {
'language': '{{ language }}',
'toolbar_HTMLField': [
['Undo', 'Redo'],
['ShowBlocks'],
['Format', 'Styles'],
]
'skin': 'moono',
}
You can further customize each `HTMLField` field by using different
configuration parameter in your settings::
models.py
class Model1(models.Model):
text = HTMLField(configuration='CKEDITOR_SETTINGS_MODEL1')
class Model2(models.Model):
text = HTMLField(configuration='CKEDITOR_SETTINGS_MODEL2')
settings.py
CKEDITOR_SETTINGS_MODEL1 = {
'toolbar_HTMLField': [
['Undo', 'Redo'],
['ShowBlocks'],
['Format', 'Styles'],
['Bold', 'Italic', 'Underline', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'],
]
}
CKEDITOR_SETTINGS_MODEL2 = {
'toolbar_HTMLField': [
['Undo', 'Redo'],
['Bold', 'Italic', 'Underline', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'],
]
}
#. Add `configuration='MYSETTING'` to the `HTMLField` usage(s) you want to
customize;
#. Define a setting parameter named as the string used in the `configuration`
argument of the `HTMLField` instance with the desidered configuration;
Values not specified in your custom configuration will be taken from the global
``CKEDITOR_SETTINGS``.
For an overview of all the available settings have a look here:
http://docs.ckeditor.com/#!/api/CKEDITOR.config
Drag & Drop Images
------------------
In IE and Firefox based browsers it is possible to drag and drop a picture into the text editor.
This image is base64 encoded and lives in the 'src' attribute as a 'data' tag.
We detect this images, encode them and convert them to picture plugins.
If you want to overwirite this behavior for your own picture plugin:
There is a setting called::
TEXT_SAVE_IMAGE_FUNCTION = 'djangocms_text_ckeditor.picture_save.create_picture_plugin'
you can overwrite this setting in your settings.py and point it to a function that handles image saves.
Have a look at the function ``create_picture_plugin`` for details.
To completely disable the feature, set ``TEXT_SAVE_IMAGE_FUNCTION = None``.
Translations
------------
If you want to help translate the plugin please do it on transifex:
https://www.transifex.com/projects/p/django-cms/resource/djangocms-text-ckeditor/
Usage as a model field
----------------------
If you want to use the widget on your own model fields, you can! Just import the provided ``HTMLField`` like so::
from djangocms_text_ckeditor.fields import HTMLField
And use it in your models, just like a ``TextField``::
class MyModel(models.Model):
myfield = HTMLField(blank=True)
This field does not allow you to embed any other CMS plugins within the text editor. Plugins can only be embedded
within ``Placeholder`` fields.
If you need to allow additional plugins to be embedded in a HTML field, convert the ``HTMLField`` to a ``Placeholderfield``
and configure the placeholder to only accept TextPlugin. For more information on using placeholders outside of the CMS see:
http://django-cms.readthedocs.org/en/latest/extending_cms/placeholders.html
Extending the plugin
--------------------
.. NOTE::
Added in version 2.0.1
You can use this plugin as base to create your own CKEditor-based plugins.
You need to create your own plugin model extending ``AbstractClass``::
from djangocms_text_ckeditor.models import AbstractText
class MyTextModel(AbstractText):
title = models.CharField(max_length=100)
and a plugin class extending ``TextPlugin`` class::
from djangocms_text_ckeditor.cms_plugins import TextPlugin
from .models import MyTextModel
class MyTextPlugin(TextPlugin):
name = _(u"My text plugin")
model = MyTextModel
plugin_pool.register_plugin(MyTextPlugin)
Note that if you override the `render` method that is inherited from the base ``TextPlugin`` class, any child text
plugins will not render correctly. You must call the super ``render`` method in order for ``plugin_tags_to_user_html()``
to render out all child plugins located in the ``body` field. For example::
from djangocms_text_ckeditor.cms_plugins import TextPlugin
from .models import MyTextModel
class MyTextPlugin(TextPlugin):
name = _(u"My text plugin")
model = MyTextModel
def render(self, context, instance, placeholder):
context.update({
'name': instance.name,
})
# Other custom render code you may have
return super(MyTextPlugin, self).render(context, instance, placeholder)
plugin_pool.register_plugin(MyTextPlugin)
You can further `customize your plugin`_ as other plugins.
.. _customize your plugin: http://django-cms.readthedocs.org/en/latest/extending_cms/custom_plugins.html
Adding plugins to the "CMS Plugins" dropdown
--------------------------------------------
If you have another plugin that you want to use inside texts you can make them appear in the dropdown by making them text_enabled.
Check in `django-cms doc`_ how to do this.
.. _django-cms doc: http://django-cms.readthedocs.org/en/develop/extending_cms/custom_plugins.html#text-enabled
Configurable sanitizer
----------------------
``djangocms-text-ckeditor`` uses `html5lib`_ to sanitize HTML to avoid
security issues and to check for correct HTML code.
Sanitisation may strip tags usesful for some use cases such as ``iframe``;
you may customize the tags and attributes allowed by overriding the
``TEXT_ADDITIONAL_TAGS`` and ``TEXT_ADDITIONAL_ATTRIBUTES`` settings::
TEXT_ADDITIONAL_TAGS = ('iframe',)
TEXT_ADDITIONAL_TAGS = ('scrolling', 'allowfullscreen', 'frameborder')
To completely disable the feature, set ``TEXT_HTML_SANITIZE = False``.
See the `html5lib documentation`_ for further information.
.. _html5lib: https://pypi.python.org/pypi/html5lib
.. _html5lib documentation: https://code.google.com/p/html5lib/wiki/UserDocumentation#Sanitizing_Tokenizer
About CKEditor
--------------
The current integrated Version of CKeditor is **4.3**. For a full documentation visit: http://ckeditor.com/

11
debian/changelog vendored Normal file
View File

@ -0,0 +1,11 @@
djangocms-text-ckeditor (2.3.0-0) unstable; urgency=low
* New upstream release
-- Benjamin Dauvergne <bdauvergne@entrouvert.com> Thu, 25 Sep 2014 15:58:57 +0200
djangocms-text-ckeditor (2.1.4-1~eo60+1) squeeze-eobuilder; urgency=low
* source package automatically created by stdeb 0.6.0+git
-- Jérôme Schneider <jschneider@entrouvert.com> Tue, 01 Apr 2014 16:34:28 +0200

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

12
debian/control vendored Normal file
View File

@ -0,0 +1,12 @@
Source: djangocms-text-ckeditor
Maintainer: Jérôme Schneider <jschneider@entrouvert.com>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7)
Standards-Version: 3.9.1
X-Python-Version: >= 2.6
Package: python-djangocms-text-ckeditor
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: Text Plugin for django CMS with CKEditor support

3
debian/pydist-overrides vendored Normal file
View File

@ -0,0 +1,3 @@
Pillow python-imaging
html5lib python-html5lib
django-cms python-django-cms

6
debian/rules vendored Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/make -f
%:
dh $@ --with python2

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

1
debian/source/options vendored Normal file
View File

@ -0,0 +1 @@
extend-diff-ignore="\.egg-info"

View File

@ -1 +0,0 @@
__version__ = "2.3.0"

View File

@ -1,95 +0,0 @@
from django.conf import settings
from django.forms.fields import CharField
from django.utils.translation import ugettext_lazy as _
from cms import __version__ as cms_version
from cms.plugin_base import CMSPluginBase
from cms.plugin_pool import plugin_pool
from .settings import TEXT_CKEDITOR_CONFIGURATION
from .widgets import TextEditorWidget
from .models import Text
from .utils import plugin_tags_to_user_html
from .forms import TextForm
try:
from urlparse import urljoin
except ImportError:
from urllib.parse import urljoin
class TextPlugin(CMSPluginBase):
model = Text
name = _("Text")
form = TextForm
render_template = "cms/plugins/text.html"
change_form_template = "cms/plugins/text_plugin_change_form.html"
ckeditor_configuration = TEXT_CKEDITOR_CONFIGURATION
def get_editor_widget(self, request, plugins, pk, placeholder, language):
"""
Returns the Django form Widget to be used for
the text area
"""
return TextEditorWidget(installed_plugins=plugins, pk=pk,
placeholder=placeholder,
plugin_language=language,
configuration=self.ckeditor_configuration)
def get_form_class(self, request, plugins, pk, placeholder, language):
"""
Returns a subclass of Form to be used by this plugin
"""
# We avoid mutating the Form declared above by subclassing
class TextPluginForm(self.form):
pass
widget = self.get_editor_widget(request, plugins, pk, placeholder, language)
TextPluginForm.declared_fields["body"] = CharField(
widget=widget, required=False
)
return TextPluginForm
def get_form(self, request, obj=None, **kwargs):
plugins = plugin_pool.get_text_enabled_plugins(
self.placeholder,
self.page
)
pk = self.cms_plugin_instance.pk
form = self.get_form_class(request, plugins, pk, self.cms_plugin_instance.placeholder,
self.cms_plugin_instance.language)
kwargs['form'] = form # override standard form
return super(TextPlugin, self).get_form(request, obj, **kwargs)
def render_change_form(self, request, context, add=False, change=False, form_url='', obj=None):
"""
We override the change form template path
to provide backwards compatibility with CMS 2.x
"""
ckeditor_basepath = urljoin(settings.STATIC_URL, 'djangocms_text_ckeditor/ckeditor/')
if ckeditor_basepath.startswith('//'):
protocol = 'https' if request.is_secure else 'http'
ckeditor_basepath = '{0}:{1}'.format(protocol, ckeditor_basepath)
context.update({'CKEDITOR_BASEPATH': ckeditor_basepath})
if cms_version.startswith('2'):
context['change_form_template'] = "admin/cms/page/plugin_change_form.html"
return super(TextPlugin, self).render_change_form(request, context, add, change, form_url, obj)
def render(self, context, instance, placeholder):
context.update({
'body': plugin_tags_to_user_html(
instance.body,
context,
placeholder
),
'placeholder': placeholder,
'object': instance
})
return context
def save_model(self, request, obj, form, change):
obj.clean_plugins()
super(TextPlugin, self).save_model(request, obj, form, change)
plugin_pool.register_plugin(TextPlugin)

View File

@ -1,39 +0,0 @@
from django.db import models
from django.contrib.admin import widgets as admin_widgets
from .html import clean_html
from .widgets import TextEditorWidget
try:
from south.modelsinspector import add_introspection_rules
add_introspection_rules([], ['^djangocms_text_ckeditor\.fields\.HTMLField'])
except ImportError:
pass
class HTMLField(models.TextField):
configuration = None
def __init__(self, *args, **kwargs):
# This allow widget configuration customization from the model definition
if kwargs.get('configuration', False):
self.configuration = kwargs['configuration']
del(kwargs['configuration'])
super(HTMLField, self).__init__(*args, **kwargs)
def formfield(self, **kwargs):
if self.configuration:
text_editor_widget = TextEditorWidget(configuration=self.configuration)
else:
text_editor_widget = TextEditorWidget
defaults = {'widget': text_editor_widget}
defaults.update(kwargs)
# override the admin widget
if defaults['widget'] == admin_widgets.AdminTextareaWidget:
defaults['widget'] = text_editor_widget
return super(HTMLField, self).formfield(**defaults)
def clean(self, value, model_instance):
value = super(HTMLField, self).clean(value, model_instance)
return clean_html(value, full=False)

View File

@ -1,18 +0,0 @@
from django import forms
from django.forms.models import ModelForm
from .models import Text
class TextForm(ModelForm):
body = forms.CharField()
class Meta:
model = Text
exclude = (
'page',
'position',
'placeholder',
'language',
'plugin_type',
)

File diff suppressed because one or more lines are too long

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:14+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/django-cms/language/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ahmed H <info@draco-003.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/django-cms/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "النص"
#: models.py:12
msgid "body"
msgstr "المحتوى"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "الرجاء تحديد نوع البرنامج المساعد"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "المحرر النصي لا يسمح بإضافة كائنات."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "المحرر النصي لا يدعم تحرير الكائنات."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "لم يتم تحديد أي كائن."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "هذا ليس برنامج مساعد"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "البرامج المساعدة المتوفرة"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "أضف برنامج مساعد"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "تحرير البرنامج المساعد المحدد"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:17+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/django-cms/language/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Aniruddha Adhikary <aniruddha@adhikary.net>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Bengali (http://www.transifex.com/projects/p/django-cms/language/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "টেক্সট"
#: models.py:12
msgid "body"
msgstr "বিষয়বস্তু"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "প্লাগ-ইনের ধরণ অনুগ্রহ করে নির্বাচিত করুন। "
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "টেক্সট এডিটরটি অবজেক্ট প্রবেশ করানো সমর্থন করে না।"
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "টেক্সট এডিটরটি অবজেক্ট সম্পাদন সমর্থন করে না।"
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "কোন অবজেক্ট নির্বাচিত নেই।"
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "প্লাগ-ইন অবজেক্ট নয়"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "প্রযোজ্য প্লাগ-ইন"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "প্লাগ-ইন প্রবেশ করান"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "নির্বাচিত প্লাগ-ইন সম্পাদন"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/django-cms/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Text"
#: models.py:12
msgid "body"
msgstr "cos"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Si us plau, seleccioneu un tipus de connector."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "L'editor de text no és compatible amb la inserció d'objectes."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "L'editor de text no admet l'edició d'objectes."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Cap objecte seleccionat."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "No és un connector"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Connectors disponibles"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Inseriu connector"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Edita el connector seleccionat"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:20+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Chinese (Mandarin) (http://www.transifex.com/projects/p/django-cms/language/cmn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cmn\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,60 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Jiří Vírava <appukonrad@gmail.com>, 2013
# Jakub Dorňák <jdornak@redhat.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-11-18 16:00+0000\n"
"Last-Translator: Jakub Dorňák <jdornak@redhat.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/django-cms/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Text"
#: models.py:12
msgid "body"
msgstr "tělo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Prosím zvolte typ obsahu"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Textový editor nepodporuje vkládání objektů."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Textový editor nepodporuje editaci objektů."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nebyl zvolen žádný objekt."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Žádný objekt zásuvného modulu"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Dostupné typy obsahu"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Vložit položku obsahu"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Upravit zvolenou položku obsahu"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# valberg <valberg@orn.li>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-09-30 11:48+0000\n"
"Last-Translator: valberg <valberg@orn.li>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/django-cms/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr "body"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Vælg venligst en plugintype"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Teksteditoren understøtter ikke indsætning af objekter."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Teksteditoren understøtter ikke redigering af objekter."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Intet objekt valgt."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Ikke et plugin objekt."
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Tilgængelig plugins"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Indsæt plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Rediger det valgte plugin"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Michael P. Jung <michael.jung@terreon.de>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: German (http://www.transifex.com/projects/p/django-cms/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Text"
#: models.py:12
msgid "body"
msgstr "Body"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Bitte ein Plugin auswählen"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Der Texteditor unterstützt das Einfügen von Objekten nicht."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Der Texteditor unterstützt das Bearbeiten von Objekten nicht."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Kein Objekt ausgewählt."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Kein Plugin-Objekt"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Verfügbare Plugins"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Plugin einfügen"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Ausgewähltes Plugin bearbeiten"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# xouskarle <xouskarle@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-06-01 12:30+0000\n"
"Last-Translator: xouskarle <xouskarle@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/django-cms/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Κείμενο"
#: models.py:12
msgid "body"
msgstr "σώμα"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Παρακαλώ επιλέξτε ένα τύπο πρόσθετου."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Ο επεξεργαστής κειμένου δεν επιτρέπει την εισαγωγή αντικειμένων."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Ο επεξεργαστής κειμένου δεν επιτρέπει την επεξεργασία αντικειμένων."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Κανένα αντικείμενο επιλεγμένο."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Δεν είναι πρόσθετο στοιχείο"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Διαθέσιμα Πρόσθετα"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Εισαγωγή πρόσθετου"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Επεξεργασία επιλεγμένου πρόσθετου"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2012-11-27 15:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/django-cms/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texto"
#: models.py:12
msgid "body"
msgstr "cuerpo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Por favor, seleccione el tipo de plugin."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "El editor de texto no soporta la inserción de objetos."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "El editor de texto no soporta la edición de objetos."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Ningún objeto seleccionado."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "No es un objeto plugin"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugins disponibles"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Insertar un plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Editar el plugin seleccionado"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-08-28 08:10+0000\n"
"Last-Translator: Eduardo Ludi <eduludi@gmail.com>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/django-cms/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texto"
#: models.py:12
msgid "body"
msgstr "cuerpo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Por favor, seleccione el tipo de plugin."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "El editor de texto no soporta la inserción de objetos."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "El editor de texto no soporta la edición de objetos."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Ningún objeto seleccionado."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "No es un objeto plugin"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugins disponibles"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Insertar un plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Editar el plugin seleccionado"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/django-cms/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-06-04 07:05+0000\n"
"Last-Translator: Ales Zabala Alava <shagi@gisa-elkartea.org>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/django-cms/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Testua"
#: models.py:12
msgid "body"
msgstr "gorputza"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Plugin mota hautatu mesedez."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Testu editoreak ez du objetuak txertatzeko gaitasuna."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Testu editoreak ez du objeturik editatzeko gaitasuna."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Ez da objekturik hautatu."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Ez da plugin objetua"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugin eskuragarriak"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Plugina txertatu"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Hautatutako plugina editatu"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# cafe-click <cafeclick@rocketmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/django-cms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "متن"
#: models.py:12
msgid "body"
msgstr "بدنه"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "لطفا نوع پلاگین را انتخاب کنید."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "ویرایشگر متنی، درج اشیاء را پشتیبانی نمی‌کند."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "ویرایشگر متنی، ویرایش اشیاء را پشتیبانی نمی‌کند."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "هیچ شیئی انتخاب نشده‌ است."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "از نوع پلاگین نیست"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "پلاگین های موجود"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "درج پلاگین"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "ویرایش پلاگین انتخاب شده"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/django-cms/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Teksti"
#: models.py:12
msgid "body"
msgstr "vartalo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Ole hyvä ja valitse laajennuksen tyyppi"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Tekstieditori ei tue objektien syöttöä."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Tekstieditori ei tue objektien muokkausta."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Mitään ei ole valittu."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Ei ole liitännäinen"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Saatavilla olevat laajennukset"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Lisää laajennus"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Muokkaa valittua laajennusta"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-05-24 10:10+0000\n"
"Last-Translator: Bertrand Bordage <bordage.bertrand@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/projects/p/django-cms/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texte"
#: models.py:12
msgid "body"
msgstr "corps"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Veuillez sélectionner un type de greffon."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "L'éditeur de texte ne permet pas l'insertion d'objets."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "L'éditeur de texte ne permet pas l'édition d'objets."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Aucun objet selectionné."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "L'objet selectionné n'est pas un greffon"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Greffons disponibles"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Ajouter un greffon"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Modifier le greffon sélectionné"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:19+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Irish (http://www.transifex.com/projects/p/django-cms/language/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ga\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Manuel Alejandro Núñez Liz <alejandro@toporojo.es>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-07-05 02:50+0000\n"
"Last-Translator: Manuel Alejandro Núñez Liz <alejandro@toporojo.es>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/django-cms/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texto"
#: models.py:12
msgid "body"
msgstr "corpo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Por favor, seleccione un tipo de plugin."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "O editor de texto non soporta inserir obxectos."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "O editor de texto non soporta a edición de obxectos."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Ningún obxecto seleccionado."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Ningún obxeto plugin"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugins dispoñibles"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Inserir plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Editar o pluigin seleccionado"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Gujarati (http://www.transifex.com/projects/p/django-cms/language/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Alex Trost <trostik@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-06-02 13:40+0000\n"
"Last-Translator: Alex Trost <trostik@gmail.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/django-cms/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "טקסט"
#: models.py:12
msgid "body"
msgstr "תוכן"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "אנה בחר סוג תוסף"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "עורך טקסט אינו תומך בהכנסת אובייקטים."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "עורך טקסט אינו תומך בעריכת אובייקטים."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "לא נבחר אובייקט"
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "אינו תוסף"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "תוסף זמינים"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "הכנס תוסף"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "ערוך תוספים נבחרים"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/django-cms/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "पाठ"
#: models.py:12
msgid "body"
msgstr "शरीर"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "कृपया एक प्लगइन प्रकार का चयन करें."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "पाठ संपादक वस्तुओं डालने का समर्थन नहीं करता."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "पाठ संपादक संपादन वस्तुओं का समर्थन नहीं करता."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "कोई चयनित वस्तु."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "नहीं एक प्लगइन वस्तु"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "उपलब्ध प्लगइन्स"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "डालें प्लगइन"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "संपादित करें प्लगइन का चयन"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Damir <damir.arbula@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-06-29 20:00+0000\n"
"Last-Translator: Damir <damir.arbula@gmail.com>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/django-cms/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr "tijelo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Molimo izaberite tip plugina."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Urednik teksta ne podržava umetanje objekata."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Urednik teksta ne podržava uređivanje objekata."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Objekt nije izabran."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Objekt nije plugin."
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Dostupni plugini."
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Umetni plugin."
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Uredi odabrani plugin."

View File

@ -1,61 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Attila Kovacs <akal.mailbox@gmail.com>, 2013
# fazekasda <fazekasda@gmail.com>, 2012
# Tibor Balogh, 2014
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2014-02-24 11:22+0000\n"
"Last-Translator: Tibor Balogh\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/django-cms/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Szöveg"
#: models.py:12
msgid "body"
msgstr "törzs"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Válasszon plugin típust."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "A szöveg szerkesztő nem támogatja objektumok beillesztését."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "A szöveg szerkesztő nem támogatja objektumok szerkesztését."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nincs kijelölt objektum."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Nem bővítmény típusú objektum"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Elérhető pluginek"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Plugin beszúrása"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Kijelölt plugin szerkesztése"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:16+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/django-cms/language/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Hannes Baldursson <hannson@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/django-cms/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texti"
#: models.py:12
msgid "body"
msgstr "meginmál"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Vinsamlega veldu tegund íbótar."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Ritilinn styður ekki innsetningar á hlutum."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Ritillinn styður ekki breytingar á hlutum."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Enginn hlutur valinn."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Hlutur er ekki íbót"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Íbætur í boði"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Skjóta inn íbót"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Breyta valinni íbót"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:05+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Icelandic (Iceland) (http://www.transifex.com/projects/p/django-cms/language/is_IS/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: is_IS\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# yakky <i.spalletti@nephila.it>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/django-cms/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Testo"
#: models.py:12
msgid "body"
msgstr "corpo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Seleziona un tipo plugin."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "L'editor di testo non supporta l'inserimento di oggetti."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Leditor di testo non supporta la modifica di oggetti."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nessun oggetto selezionato."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Non è un plugin"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugin disponibili"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Inserisci un plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Modifica il plugin selezionato"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Yasushi Masuda <whosaysni@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-07-26 14:24+0000\n"
"Last-Translator: Jonas Obrist <ojiidotch@gmail.com>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/django-cms/language/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "テキスト"
#: models.py:12
msgid "body"
msgstr "本文"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "プラグインを選んで下さい"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "テキストエディタはオブジェクトの挿入をサポートしていません。"
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "テキストエディタはオブジェクトの編集をサポートしていません。"
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "オブジェクトが選択されていません。"
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "プラグインオブジェクトではありません。"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "利用可能なプラグイン"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "プラグインの挿入"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "選択中のプラグインを編集"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2014-03-03 09:09+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Kazakh (http://www.transifex.com/projects/p/django-cms/language/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kk\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:20+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Korean (http://www.transifex.com/projects/p/django-cms/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# daeyong <daeyong@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-07-22 08:20+0000\n"
"Last-Translator: daeyong <daeyong@gmail.com>\n"
"Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/django-cms/language/ko_KR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ko_KR\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "글자"
#: models.py:12
msgid "body"
msgstr "본문"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "플러그인 종류를 선택하세요."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "텍스트 편집기가 개체 삽입을 지원하지 않습니다."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "텍스트 편집기가 개체 편집을 지원하지 않습니다."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "개체가 선택되지 않았습니다."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "플러그인 개체가 아닙니다."
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "사용가능한 플러그인"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "플러그인 추가"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "선택한 플러그인 편집"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Jelena <jelena.kutalovskaja@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2014-02-04 21:30+0000\n"
"Last-Translator: Jelena <jelena.kutalovskaja@gmail.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/projects/p/django-cms/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekstas"
#: models.py:12
msgid "body"
msgstr "turinys"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nėra pasirinktų objektų."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-07-15 07:21+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/django-cms/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-07-18 07:33+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Mongolian (Mongolia) (http://www.transifex.com/projects/p/django-cms/language/mn_MN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mn_MN\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-12-11 14:25+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Maltese (http://www.transifex.com/projects/p/django-cms/language/mt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mt\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr ""
#: models.py:12
msgid "body"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr ""
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr ""

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Bouke Haarsma <bouke@webatoom.nl>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-04-29 09:32+0000\n"
"Last-Translator: Patrick Lauber <patrick.lauber@divio.ch>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/django-cms/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr "inhoud"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Selecteer een plug-in."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Tekstbewerker kan geen objecten invoegen."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Tekstbewerker kan geen objecten bewerken."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Geen object geselecteerd."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Geen plug-inobject"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Beschikbare Plug-ins"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Voeg plug-in toe"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Bewerk geselecteerde plug-in"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Eirik Krogstad <eirikkr@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-10-09 14:50+0000\n"
"Last-Translator: Eirik Krogstad <eirikkr@gmail.com>\n"
"Language-Team: Norwegian (http://www.transifex.com/projects/p/django-cms/language/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: no\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr "innhold"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Vennligst velg en utvidelsestype"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Tekstredigereren støtter ikke innsetting av objekter."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Tekstredigereren støtter ikke redigering av objekter."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Ikke noe objekt valgt"
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Ikke et utvidelsesobjekt"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Tilgjengelige utvidelser"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Sett inn utvidelse"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Rediger valgt utvidelse"

View File

@ -1,58 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2012-11-27 15:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/django-cms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Tekst"
#: models.py:12
msgid "body"
msgstr "treść"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Proszę wybrać typ wtyczki."
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "Edytor tekstowy nie obsługuje wstawiania obiektów."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "Edytor tekstowy nie obsługuje edycji obiektów."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nie wybrano obiektu."
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Obiekt nie jest wtyczką."
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Dostępne wtyczki"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Wstaw wtyczkę"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Zmień wybraną wtyczkę"

View File

@ -1,59 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Vítor Figueiró <vfigueiro@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django-cms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-27 16:37+0100\n"
"PO-Revision-Date: 2013-10-09 23:40+0000\n"
"Last-Translator: Vítor Figueiró <vfigueiro@gmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/django-cms/language/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cms_plugins.py:13
msgid "Text"
msgstr "Texto"
#: models.py:12
msgid "body"
msgstr "corpo"
#: templates/cms/plugins/widgets/ckeditor.html:28
msgid "Please select a plugin type."
msgstr "Por favor, seleccione um tipo de plugin"
#: templates/cms/plugins/widgets/ckeditor.html:34
msgid "Text editor does not support inserting objects."
msgstr "O editor de texto não suporta a inserção de objectos."
#: templates/cms/plugins/widgets/ckeditor.html:46
msgid "Text editor does not support editing objects."
msgstr "O editor de texto não suporta edição de objectos."
#: templates/cms/plugins/widgets/ckeditor.html:51
msgid "No object selected."
msgstr "Nenhum objecto seleccionado"
#: templates/cms/plugins/widgets/ckeditor.html:55
msgid "Not a plugin object"
msgstr "Não é um plugin"
#: templates/cms/plugins/widgets/ckeditor.html:67
msgid "Available Plugins"
msgstr "Plugins disponíveis"
#: templates/cms/plugins/widgets/ckeditor.html:70
msgid "Insert plugin"
msgstr "Inserir plugin"
#: templates/cms/plugins/widgets/ckeditor.html:71
msgid "Edit selected plugin"
msgstr "Editar o plugin seleccionado"

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