Merge branch 'develop' of https://github.com/fsbraun/djangocms-blog into develop

This commit is contained in:
Fabian Braun 2017-03-24 21:39:27 +01:00
commit 0b56f31940
50 changed files with 3799 additions and 1828 deletions

View file

@ -14,6 +14,7 @@ env:
- TOXENV='pep8'
- TOXENV='isort'
- TOXENV='docs'
- DJANGO='django110' CMS='cms34'
- DJANGO='django19' CMS='cms34'
- DJANGO='django19' CMS='cms33'
- DJANGO='django19' CMS='cms32'

View file

@ -16,7 +16,6 @@ Contributors
* cluster-master
* danra
* Davide Truffo
* Fabian Braun
* frnhr
* furiousdave
* Georgiy Kutsurua

View file

@ -19,12 +19,33 @@ History
* Added plugins templateset.
* Improved category admin to avoid circular relationships.
* Dropped strict dependency on aldryn-search, haystack. Install separately for search support.
* Improved admin filtering.
* Added featured date to post.
*******************
0.8.12 (2017-03-11)
*******************
* Fixed migrations on Django 1.10
*******************
0.8.11 (2017-03-04)
*******************
* Fixed support for aldryn-apphooks-config 0.3.1
*******************
0.8.10 (2017-01-02)
*******************
* Fix error in get_absolute_url
******************
0.8.9 (unreleased)
0.8.9 (2016-10-25)
******************
* Optimized querysets
* Fixed slug generation in wizard
******************
0.8.8 (2016-09-04)

View file

@ -36,6 +36,7 @@ Supported Django versions:
* Django 1.8
* Django 1.9
* Django 1.10
Supported django CMS versions:
@ -66,23 +67,38 @@ Migrating cmsplugin-filer to 1.1 and djangocms-blog up to 0.8.4
If you have djangocms-blog up to 0.8.4 (included) installed or you are upgrading from a previous
djangocms-blog version together with cmsplugin-filer upgrade, you can just apply the migrations::
pip install cmsplugin-filer==1.1.1 django-filer==1.2.2 djangocms-blog==0.8.4
pip install cmsplugin-filer==1.1.3 django-filer==1.2.7 djangocms-blog==0.8.4
python manage.py migrate
Migrating cmsplugin-filer to 1.1 and djangocms-blog 0.8.5+
==========================================================
If you already a djangocms-blog 0.8.5+ or above, you have to de-apply some blog migrations when
doing the upgrade::
If you already a djangocms-blog 0.8.5+ up to 0.8.11, upgrade to 0.8.11, then
you have to de-apply some blog migrations when doing the upgrade::
pip install djangocms-blog==0.8.11
python manage.py migrate djangocms_blog 0017 ## reverse for these migration is a noop
pip install cmsplugin-filer==1.1.1 django-filer==1.2.2
pip install cmsplugin-filer==1.1.3 django-filer==1.2.7
python manage.py migrate
After this step you can upgrade to 0.8.12::
pip install djangocms-blog==0.8.12
.. note:: de-apply migration **before** upgrading cmsplugin-filer. If running before upgrade, the
backward migration won't alter anything on the database, and it will just allow the code
to migrate ``ThumbnailOption`` from cmsplugin-filer to filer
.. note:: If you upgrade in a Django 1.10 environment, be sure to upgrade both packages
at the same time to allow correct migration dependencies to be evaluated.
Installing djangocms-blog in an existing project with Django 1.10
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
If your project has cmsplugin-filer 1.1+ already installed and it uses Django 1.10,
install djangocms-blog 0.8.12 (and above)::
pip install djangocms-blog==0.8.12
********
Features

View file

@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
from aldryn_client import forms
try:
from divio_cli import forms
except ImportError:
from aldryn_client import forms
class Form(forms.BaseForm):

View file

@ -3,11 +3,13 @@
from __future__ import absolute_import, print_function, unicode_literals
import os
import sys
from tempfile import mkdtemp
def gettext(s): return s
def gettext(s):
return s
HELPER_SETTINGS = dict(
@ -107,6 +109,7 @@ HELPER_SETTINGS = dict(
try:
import cmsplugin_filer_image.migrations_django # pragma: no cover # NOQA
HELPER_SETTINGS[
'MIGRATION_MODULES'
]['cmsplugin_filer_image'] = 'cmsplugin_filer_image.migrations_django'
@ -116,9 +119,10 @@ except ImportError:
try:
import knocker # pragma: no cover # NOQA
HELPER_SETTINGS['INSTALLED_APPS'].append('knocker')
HELPER_SETTINGS['INSTALLED_APPS'].append('channels')
HELPER_SETTINGS['INSTALLED_APPS'].append('djangocms_blog.liveblog',)
HELPER_SETTINGS['INSTALLED_APPS'].append('djangocms_blog.liveblog', )
HELPER_SETTINGS['CHANNEL_LAYERS'] = {
'default': {
'BACKEND': 'asgiref.inmemory.ChannelLayer',
@ -129,6 +133,9 @@ except ImportError:
pass
os.environ['AUTH_USER_MODEL'] = 'tests.test_utils.CustomUser'
if 'server' in sys.argv[:3]:
HELPER_SETTINGS['BLOG_AUTO_SETUP'] = True
def run():
from djangocms_helper import runner
@ -136,7 +143,6 @@ def run():
def setup():
import sys
from djangocms_helper import runner
runner.setup('djangocms_blog', sys.modules[__name__], use_cms=True)

View file

@ -3,6 +3,6 @@ from __future__ import absolute_import, print_function, unicode_literals
__author__ = 'Iacopo Spalletti'
__email__ = 'i.spalletti@nephila.it'
__version__ = '0.9b4'
__version__ = '0.9b9'
default_app_config = 'djangocms_blog.apps.BlogAppConfig'

View file

@ -5,7 +5,7 @@ from copy import deepcopy
from aldryn_apphooks_config.admin import BaseAppHookConfig, ModelAppHookConfig
from cms.admin.placeholderadmin import FrontendEditableAdminMixin, PlaceholderAdminMixin
from cms.models import CMSPlugin
from cms.models import CMSPlugin, ValidationError
from django import forms
from django.apps import apps
from django.conf import settings
@ -15,7 +15,7 @@ from django.contrib.sites.models import Site
from django.core.urlresolvers import reverse
from django.http import HttpResponseRedirect
from django.utils import timezone
from django.utils.six import callable
from django.utils.six import callable, text_type
from django.utils.translation import get_language_from_request, ugettext_lazy as _
from parler.admin import TranslatableAdmin
@ -84,6 +84,30 @@ enable_liveblog.short_description = _("Enable liveblog for selection")
disable_liveblog.short_description = _("Disable liveblog for selection ")
class SiteListFilter(admin.SimpleListFilter):
title = _('site')
parameter_name = 'sites'
def lookups(self, request, model_admin):
restricted_sites = model_admin.get_restricted_sites(request).values_list('id', flat=True)
qs = Site.objects.all()
if restricted_sites:
qs = qs.filter(id__in=restricted_sites)
return [(site.id, text_type(site.name)) for site in qs]
def queryset(self, request, queryset):
try:
if 'sites' in self.used_parameters:
return queryset.on_site(Site.objects.get(pk=self.used_parameters['sites']))
return queryset
except Site.DoesNotExist as e: # pragma: no cover
raise admin.options.IncorrectLookupParameters(e)
except ValidationError as e: # pragma: no cover
raise admin.options.IncorrectLookupParameters(e)
class BlogCategoryAdmin(EnhancedModelAdminMixin, ModelAppHookConfig, TranslatableAdmin):
form = CategoryAdminForm
list_display = [
@ -110,6 +134,7 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
'date_published_end'
]
list_filter = ('app_config',)
search_fields = ('translations__title',)
date_hierarchy = 'date_published'
raw_id_fields = ['author']
actions = [
@ -126,17 +151,17 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
(None, {
'fields': [['title', 'categories', 'publish', 'app_config']]
}),
('Info', {
(_('Info'), {
'fields': [['slug', 'tags'],
['date_published', 'date_published_end'],
['date_published', 'date_published_end', 'date_featured'],
['enable_comments']],
'classes': ('collapse',)
}),
('Images', {
(_('Images'), {
'fields': [['main_image', 'main_image_thumbnail', 'main_image_full']],
'classes': ('collapse',)
}),
('SEO', {
(_('SEO'), {
'fields': [['meta_description', 'meta_title', 'meta_keywords']],
'classes': ('collapse',)
}),
@ -147,6 +172,21 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
}
_sites = None
def get_list_filter(self, request):
filters = ['app_config', 'publish', 'date_published']
if get_setting('MULTISITE'):
filters.append(SiteListFilter)
try:
from taggit_helpers.admin import TaggitListFilter
filters.append(TaggitListFilter)
except ImportError: # pragma: no cover
try:
from taggit_helpers import TaggitListFilter
filters.append(TaggitListFilter)
except ImportError:
pass
return filters
def get_urls(self):
"""
Customize the modeladmin urls
@ -325,32 +365,32 @@ class BlogConfigAdmin(BaseAppHookConfig, TranslatableAdmin):
(None, {
'fields': ('type', 'namespace', 'app_title', 'object_name')
}),
('Generic', {
(_('Generic'), {
'fields': (
'config.default_published', 'config.use_placeholder', 'config.use_abstract',
'config.set_author',
)
}),
('Layout', {
(_('Layout'), {
'fields': (
'config.paginate_by', 'config.url_patterns', 'config.template_prefix',
'config.menu_structure', 'config.menu_empty_categories',
),
'classes': ('collapse',)
}),
('Notifications', {
(_('Notifications'), {
'fields': (
'config.send_knock_create', 'config.send_knock_update'
),
'classes': ('collapse',)
}),
('Sitemap', {
(_('Sitemap'), {
'fields': (
'config.sitemap_changefreq', 'config.sitemap_priority',
),
'classes': ('collapse',)
}),
('Meta', {
(_('Meta'), {
'fields': (
'config.object_type',
)

View file

@ -11,6 +11,7 @@ from .cms_menus import BlogCategoryMenu
from .settings import get_setting
@apphook_pool.register
class BlogApp(AutoCMSAppMixin, CMSConfigApp):
name = _('Blog')
urls = ['djangocms_blog.urls']
@ -30,5 +31,4 @@ class BlogApp(AutoCMSAppMixin, CMSConfigApp):
}
apphook_pool.register(BlogApp)
BlogApp.setup()

View file

@ -3,8 +3,9 @@ from __future__ import absolute_import, print_function, unicode_literals
import json
import django
from channels import Group
from cms.models import itemgetter, now, python_2_unicode_compatible
from cms.models import CMSPlugin, itemgetter, now, python_2_unicode_compatible
from cms.utils.plugins import reorder_plugins
from django.db import models
from django.template import Context
@ -47,7 +48,7 @@ class LiveblogInterface(models.Model):
items.extend(
model.objects.filter(placeholder=self.placeholder).values('pk', 'post_date')
)
order = [item['pk'] for item in sorted(items, key=itemgetter('post_date'))]
order = reversed([item['pk'] for item in sorted(items, key=itemgetter('post_date'))])
reorder_plugins(self.placeholder, None, self.language, order)
@property
@ -87,6 +88,12 @@ class Liveblog(LiveblogInterface, AbstractText):
"""
Basic liveblog plugin model
"""
if django.VERSION >= (1, 10):
cmsplugin_ptr = models.OneToOneField(
CMSPlugin,
related_name='%(app_label)s_%(class)s', primary_key=True,
parent_link=True, on_delete=models.CASCADE
)
title = models.CharField(_('title'), max_length=255)
image = FilerImageField(
verbose_name=_('image'), blank=True, null=True, on_delete=models.SET_NULL,

View file

@ -1,3 +1,4 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
@ -8,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-16 09:35+0000\n"
"Last-Translator: Bashar Al-Abdulhadi\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Arabic (http://www.transifex.com/nephila/djangocms-blog/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,17 +20,49 @@ msgstr ""
"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"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr ""
#: apps.py:15
msgid "django CMS Blog"
msgstr ""
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "المدونة"
msgstr "مدونة نظام ادارة المحتوى لجانغو"
#: cms_appconfig.py:20
msgid "application title"
@ -40,12 +73,10 @@ msgid "object name"
msgstr "اسم الكائن"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "إعدادات المدونة"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "إعدادات المدونة"
@ -55,7 +86,7 @@ msgstr "غير معنون"
#: cms_appconfig.py:36
msgid "Post published by default"
msgstr ""
msgstr "نشر التدوينة تلقائيا"
#: cms_appconfig.py:40
msgid "Permalink structure"
@ -75,11 +106,11 @@ msgstr "ضبط الكاتب"
#: cms_appconfig.py:53
msgid "Set author by default"
msgstr ""
msgstr "ضبطها من قبل الكاتب"
#: cms_appconfig.py:57
msgid "Paginate size"
msgstr ""
msgstr "عدد تعدد الصفحات"
#: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?"
@ -102,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr ""
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr ""
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr ""
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr ""
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr ""
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "المدونة"
#: cms_menus.py:24
msgid "Blog menu"
msgstr ""
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "قائمة المواضيع"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "إضافة موضوع"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr ""
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "التعديل على موضوع"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr ""
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr ""
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "مواضيع المدونة على %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr ""
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr ""
#: models.py:58
#: models.py:66
msgid "created at"
msgstr ""
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr ""
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:65
#: models.py:73
msgid "name"
msgstr ""
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr ""
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr ""
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr ""
#: models.py:114
#: models.py:138
msgid "author"
msgstr ""
#: models.py:117
#: models.py:141
msgid "created"
msgstr ""
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr ""
#: models.py:119
#: models.py:143
msgid "published since"
msgstr ""
#: models.py:120
#: models.py:144
msgid "published until"
msgstr ""
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr ""
#: models.py:122
#: models.py:147
msgid "category"
msgstr ""
#: models.py:124
#: models.py:149
msgid "main image"
msgstr ""
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr ""
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr ""
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr ""
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr ""
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr ""
#: models.py:148
msgid "title"
msgstr ""
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr ""
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr ""
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr ""
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr ""
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr ""
#: models.py:159
#: models.py:184
msgid "text"
msgstr ""
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr ""
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr ""
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr ""
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr ""
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr ""
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr ""
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr ""
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr ""
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr ""
#: models.py:404
#: models.py:470
msgid "authors"
msgstr ""
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr ""
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr ""
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr ""
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr ""
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr ""
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr ""
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr ""
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr ""
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr ""
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr ""
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr ""
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr ""
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr ""
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr ""
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr ""
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr ""
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "آخر مواضيع المدونة"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "ناشر مواضيع المدونة"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "علامات"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "الأقسام"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "الأرشيف"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr ""
@ -543,18 +650,3 @@ msgstr ""
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr ""
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,15 +1,17 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Christoph Reimers <christoph@superservice-international.com>, 2014
# fsbraun <fsbraun@gmx.de>, 2016
# fsbraun <fsbraun@gmx.de>, 2016-2017
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-25 21:05+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-06 20:01+0000\n"
"Last-Translator: fsbraun <fsbraun@gmx.de>\n"
"Language-Team: German (http://www.transifex.com/nephila/djangocms-blog/language/de/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +21,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr "Web-Site"
#: admin.py:91
msgid "Info"
msgstr "Informationen"
#: admin.py:97
msgid "Images"
msgstr "Beitragsbild"
#: admin.py:101
msgid "SEO"
msgstr "SEO"
#: admin.py:305
msgid "Generic"
msgstr "Generisch"
#: admin.py:311
msgid "Layout"
msgstr "Layout"
#: admin.py:318
msgid "Notifications"
msgstr "Benachrichtigungen"
#: admin.py:324
msgid "Sitemap"
msgstr "Sitemap"
#: admin.py:330
msgid "Meta"
msgstr "Meta-Informationen"
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Strings und Post-Attribute oder -Methoden erlaubt"
@ -27,10 +65,6 @@ msgstr "Strings und Post-Attribute oder -Methoden erlaubt"
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "Name der Anwendung"
@ -40,12 +74,10 @@ msgid "object name"
msgstr "Objektbezeichnung"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "Einstellung"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "Einstellungen"
@ -67,15 +99,15 @@ msgstr "Placeholder und Plugins für Beitrag verwenden"
#: cms_appconfig.py:49
msgid "Use abstract field"
msgstr "Zusammenfassung nutzen"
msgstr "Feld Zusammenfassung nutzen"
#: cms_appconfig.py:53
msgid "Set author"
msgstr "Autoren eintragen"
msgstr "Autor eintragen"
#: cms_appconfig.py:53
msgid "Set author by default"
msgstr "Autoren standardmäßig eintragen"
msgstr "Autor standardmäßig eintragen"
#: cms_appconfig.py:57
msgid "Paginate size"
@ -87,11 +119,11 @@ msgstr "Anzahl der Beiträge, ab der die Beitragsübersicht in Seiten geteilt wi
#: cms_appconfig.py:61
msgid "Template prefix"
msgstr "Template-Prefix"
msgstr "Vorlagen-Ordner"
#: cms_appconfig.py:62
msgid "Alternative directory to load the blog templates from"
msgstr "Alternativer Ordner, aus dem die Templates für diesen Blog geladen werden"
msgstr "Alternativer Ordner, aus dem die Vorlagen für diesen Blog geladen werden"
#: cms_appconfig.py:65
msgid "Menu structure"
@ -102,375 +134,451 @@ msgid "Structure of the django CMS menu"
msgstr "Aufbau des Django CMS-Menü"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr "Leere Kategorien im Menü anzeigen"
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr "Auch Kategorien im Menü anzeigen, zu denen es keine Beiträge gibt"
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Sitemap-Anpassungen"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Anpassungsfrequenz-Einstellung für Sitemap-Einträge"
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Sitemap-Priorität"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Prioritäts-Einstellung für Sitemap-Einträge"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Objekt-Typ"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Facebook-Typ"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "Facebook Application ID"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "Facebook Profil-ID"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "Facebook Seiten-URL"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "Facebook Autoren-URL"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Facebook Autor"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Twitter-Typ"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
msgstr "Twitter Site-Kennung"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
msgstr "Twitter Autoren-Kennung"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Google+ Typ"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Google+ Autoren-Name"
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Mitteilung bei Veröffentlichungen senden"
msgstr "Mitteilung bei Beitrags-Veröffentlichungen senden"
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Wenn aktiviert: Desktop-Mitteilung senden, wenn Beiträge veröffentlicht werden"
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Mitteilung bei Aktualisierungen senden"
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr "Wenn aktiviert: Desktop-Mitteilung senden, wenn Beiträge aktualisiert werden"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Blog-Menü"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Post Liste"
msgstr "Betragsübersicht anzeigen"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Post hinzufügen"
msgstr "Beitrag hinzufügen"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Einstellungen bearbeiten"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Post bearbeiten"
msgstr "Beitrag bearbeiten"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr "{0} jetzt veröffentlichen"
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Neuer {0}"
msgstr "Neue(r) {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Neuen {0} in {1} erstellen"
msgstr "Neue(n) {0} in {1} erstellen"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Blog-Artikel auf %(site_name)s"
msgstr "Blog-Beträge auf %(site_name)s"
#: models.py:57
msgid "parent"
msgstr "übergeordnetes Element"
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr "Liveblog"
#: models.py:58
msgid "created at"
msgstr "erstellt am"
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr "Liveblog-Meldung"
#: models.py:59
msgid "modified at"
msgstr "bearbeitet am"
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr "Liveblog-Meldung veröffentlichen"
#: models.py:61 models.py:144 models.py:353
msgid "app. config"
msgstr "App-Einstellung"
#: liveblog/models.py:30
msgid "post date"
msgstr "Veröffentlichungsdatum"
#: models.py:65
msgid "name"
msgstr "Name"
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr "Liveblog-Meldung"
#: models.py:66 models.py:149
msgid "slug"
msgstr "slug"
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr "Liveblog-Meldungen"
#: models.py:73
msgid "blog category"
msgstr "Blog-Kategorie"
#: models.py:74
msgid "blog categories"
msgstr "Blog-Kategorien"
#: models.py:114
msgid "author"
msgstr "Autor"
#: models.py:117
msgid "created"
msgstr "erstellt"
#: models.py:118
msgid "last modified"
msgstr "zuletzt geändert"
#: models.py:119
msgid "published since"
msgstr "öffentlich seit"
#: models.py:120
msgid "published until"
msgstr "öffentlich bis"
#: models.py:121
msgid "publish"
msgstr "veröffentlicht"
#: models.py:122
msgid "category"
msgstr "Kategorie"
#: models.py:124
msgid "main image"
msgstr "Beitragsbild"
#: models.py:128
msgid "main image thumbnail"
msgstr "Beitragsbild (Vorschau)"
#: models.py:133
msgid "main image full"
msgstr "Beitragsbild (volle Größe)"
#: models.py:137
msgid "enable comments on post"
msgstr "Kommentare zu diesem Beitrag erlauben"
#: models.py:139
msgid "Site(s)"
msgstr "Seite(n)"
#: models.py:140
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Wähle Seiten aus, auf welchen der Post angezeigt wird. Ohne Auswahl sichtbar auf allen konfigurierten Seiten."
#: models.py:148
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "Titel"
#: models.py:150
#: liveblog/models.py:99
msgid "image"
msgstr "Beitragsbild"
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr "Vorschau-Größe"
#: models.py:64
msgid "parent"
msgstr "übergeordnetes Element"
#: models.py:66
msgid "created at"
msgstr "erstellt am"
#: models.py:67
msgid "modified at"
msgstr "bearbeitet am"
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "App-Einstellung"
#: models.py:73
msgid "name"
msgstr "Name"
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:81
msgid "blog category"
msgstr "Blog-Kategorie"
#: models.py:82
msgid "blog categories"
msgstr "Blog-Kategorien"
#: models.py:138
msgid "author"
msgstr "Autor"
#: models.py:141
msgid "created"
msgstr "erstellt"
#: models.py:142
msgid "last modified"
msgstr "zuletzt geändert"
#: models.py:143
msgid "published since"
msgstr "öffentlich seit"
#: models.py:144
msgid "published until"
msgstr "öffentlich bis"
#: models.py:145
msgid "featured date"
msgstr "Vorstellungs-Datum"
#: models.py:146
msgid "publish"
msgstr "veröffentlicht"
#: models.py:147
msgid "category"
msgstr "Kategorie"
#: models.py:149
msgid "main image"
msgstr "Beitragsbild"
#: models.py:153
msgid "main image thumbnail"
msgstr "Beitragsbild (Vorschau)"
#: models.py:158
msgid "main image full"
msgstr "Beitragsbild (volle Größe)"
#: models.py:162
msgid "enable comments on post"
msgstr "Kommentare zu diesem Beitrag erlauben"
#: models.py:164
msgid "Site(s)"
msgstr "Web-Site(s)"
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Wähle Web-Sites aus, auf welchen der Post angezeigt wird. Ohne Auswahl sichtbar auf allen konfigurierten Seiten."
#: models.py:175
msgid "abstract"
msgstr "Zusammenfassung"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "Meta-Beschreibung"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "Meta-Stichwörter"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "Meta-Titel"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "Wird im Titel-Tag und für das soziale Teilen genutzt"
msgstr "Wird als Titel-Schlagwort und für das Teilen auf sozialen Netzwerken genutzt"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "Text"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr "Liveblog für Beitrag aktivieren"
#: models.py:223
msgid "blog article"
msgstr "Blog-Artikel"
msgstr "Blog-Beitrag"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "Blog-Artikel"
msgstr "Blog-Beiträge"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr "Aktuelle Web-Site"
#: models.py:399
msgid "Select items from the current site only"
msgstr "Nur Einträge der aktuelle Web-Site zulassen"
#: models.py:403
msgid "Plugin template"
msgstr "Plugin-Vorlage"
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr "Wählen Sie die Vorlage für diese Instanz des Plugins"
#: models.py:438 models.py:474
msgid "articles"
msgstr "Beiträge"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Anzahl der anzuzeigenden letzten Artikel"
msgstr "Anzahl der anzuzeigenden letzten Beiträge"
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "Nach Schlagwort filtern"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Nur die Blog-Einträge mit dem ausgewählten Tag anzeigen"
msgstr "Nur Blog-Beiträge mit dem ausgewählten Schlagwort anzeigen"
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "Nach Kategorie filtern"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Nur die Blog-Einträge der ausgewählten Kategorie anzeigen"
msgstr "Nur die Blog-Beiträge der ausgewählten Kategorie anzeigen"
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s neueste Beiträge nach Schlagwort"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "Autoren"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Die Anzahl der anzuzeigenden Autoren-Artikel"
msgstr "Die Anzahl der anzuzeigenden Autoren-Beiträge"
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s neueste Beiträge nach Autor"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "Generisches Blog-Plugin"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Jahr / Monat / Tag"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Jahr / Monat"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Kategorie"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr "Nur Slug"
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Kategorien und Beiträge"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Nur Kategorien"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Nur Beiträge"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr "Kein Menü"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "Fortlaufend"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "Stündlich"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "Täglich"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "Wöchentlich"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "Monatlich"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "Jährlich"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "Nie"
#: settings.py:115
msgid "Latest Blog Articles"
msgstr "Letzte Blog-Einträge"
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Letzte Blog-Beiträge"
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr "Letzte Blog-Einträge (Cache)"
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Autoren Blog-Artikel"
msgstr "Blog-Beiträge nach Autor"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tags"
msgstr "Schlagworte"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Kategorien"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archiv"
#: settings.py:140
msgid "Default template"
msgstr "Standard-Vorlage"
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "weiterlesen"
@ -487,14 +595,14 @@ msgstr "von"
msgid "1 article"
msgid_plural "%(articles)s articles"
msgstr[0] "Ein Artikel"
msgstr[1] "%(articles)s Artikel"
msgstr[1] "%(articles)s Beiträge"
#: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles"
msgstr "0 Artikel"
msgstr "0 Beiträge"
#: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15
@ -502,11 +610,11 @@ msgstr "0 Artikel"
#: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21
msgid "No article found."
msgstr "Kein Artikel gefunden."
msgstr "Keinen Beitrag gefunden."
#: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors"
msgstr "Authoren"
msgstr "Autoren"
#: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found."
@ -518,7 +626,7 @@ msgstr "Artikel von"
#: templates/djangocms_blog/post_list.html:13
msgid "Tag"
msgstr "Tag"
msgstr "Schlagwort"
#: templates/djangocms_blog/post_list.html:24
msgid "Back"
@ -539,18 +647,3 @@ msgstr "von"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "nächste"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,12 +1,14 @@
# 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.
#
# Iacopo Spalletti, 2014.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-20 17:14+0100\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2014-03-05 18:09+0100\n"
"Last-Translator: Iacopo Spalletti\n"
"Language-Team: Italian <i.spalletti@nephila.it>\n"
@ -17,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:169 admin.py:177 admin.py:185
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr ""
@ -25,10 +63,6 @@ msgstr ""
msgid "django CMS Blog"
msgstr ""
#: cms_app.py:15 cms_toolbar.py:19 settings.py:111
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr ""
@ -38,21 +72,16 @@ msgid "object name"
msgstr ""
#: cms_appconfig.py:27
#, fuzzy
#| msgid "blog categories"
msgid "blog config"
msgstr "blog categories"
msgstr ""
#: cms_appconfig.py:28
#, fuzzy
#| msgid "blog categories"
msgid "blog configs"
msgstr "blog categories"
msgstr ""
#: cms_appconfig.py:31
#, fuzzy
msgid "untitled"
msgstr "Title"
msgstr ""
#: cms_appconfig.py:36
msgid "Post published by default"
@ -71,9 +100,8 @@ msgid "Use abstract field"
msgstr ""
#: cms_appconfig.py:53
#, fuzzy
msgid "Set author"
msgstr "Author"
msgstr ""
#: cms_appconfig.py:53
msgid "Set author by default"
@ -104,382 +132,457 @@ msgid "Structure of the django CMS menu"
msgstr ""
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr ""
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr ""
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
#: cms_appconfig.py:105
#, fuzzy
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Author"
msgstr ""
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr ""
#: cms_toolbar.py:22
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:140
msgid "Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr ""
#: cms_menus.py:24
msgid "Blog menu"
msgstr ""
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Post list"
msgstr ""
#: cms_toolbar.py:24
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Add post"
msgstr ""
#: cms_toolbar.py:28
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr ""
#: cms_toolbar.py:32
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr ""
#: cms_wizards.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr ""
#: cms_wizards.py:51
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr ""
#: feeds.py:24
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Blog articles on %(site_name)s"
msgstr ""
#: menu.py:16
#, fuzzy
msgid "Blog menu"
msgstr "blog category"
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: models.py:34
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr ""
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "parent"
msgstr ""
#: models.py:35
#: models.py:66
msgid "created at"
msgstr "created at"
msgstr ""
#: models.py:36
#: models.py:67
msgid "modified at"
msgstr "modified at"
msgstr ""
#: models.py:38 models.py:123 models.py:275
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:42
#: models.py:73
msgid "name"
msgstr "name"
msgstr ""
#: models.py:43 models.py:128
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
msgstr ""
#: models.py:50
#: models.py:81
msgid "blog category"
msgstr "blog category"
msgstr ""
#: models.py:51
#: models.py:82
msgid "blog categories"
msgstr "blog categories"
msgstr ""
#: models.py:91
#, fuzzy
#: models.py:138
msgid "author"
msgstr "Author"
msgstr ""
#: models.py:94
#, fuzzy
#: models.py:141
msgid "created"
msgstr "created at"
msgstr ""
#: models.py:95
#, fuzzy
#: models.py:142
msgid "last modified"
msgstr "modified at"
msgstr ""
#: models.py:96
#, fuzzy
#: models.py:143
msgid "published since"
msgstr "Published Since"
msgstr ""
#: models.py:98
#, fuzzy
#: models.py:144
msgid "published until"
msgstr "Published Until"
msgstr ""
#: models.py:100
#, fuzzy
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "Publish"
msgstr ""
#: models.py:101
#: models.py:147
msgid "category"
msgstr "category"
msgstr ""
#: models.py:103
#, fuzzy
#: models.py:149
msgid "main image"
msgstr "Main image"
msgstr ""
#: models.py:107
#, fuzzy
#: models.py:153
msgid "main image thumbnail"
msgstr "Main image thumbnail"
msgstr ""
#: models.py:112
#, fuzzy
#: models.py:158
msgid "main image full"
msgstr "Main image full"
msgstr ""
#: models.py:116
#: models.py:162
msgid "enable comments on post"
msgstr ""
#: models.py:118
#: models.py:164
msgid "Site(s)"
msgstr ""
#: models.py:119
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in "
"all the configured sites."
msgstr ""
#: models.py:127
#, fuzzy
msgid "title"
msgstr "Title"
#: models.py:129
#: models.py:175
msgid "abstract"
msgstr ""
#: models.py:130
#, fuzzy
#: models.py:176
msgid "post meta description"
msgstr "Post meta description"
msgstr ""
#: models.py:132
#, fuzzy
#: models.py:178
msgid "post meta keywords"
msgstr "Post meta description"
msgstr ""
#: models.py:134
#, fuzzy
#: models.py:180
msgid "post meta title"
msgstr "Post meta description"
msgstr ""
#: models.py:135
#: models.py:181
msgid "used in title tag and social sharing"
msgstr ""
#: models.py:138
#: models.py:184
msgid "text"
msgstr ""
#: models.py:175
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "blog article"
msgstr ""
#: models.py:176
#: models.py:224
msgid "blog articles"
msgstr "blog articles"
msgstr ""
#: models.py:294 models.py:328
#, fuzzy
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "0 articles"
msgstr ""
#: models.py:295
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "The number of latests articles to be displayed."
msgstr ""
#: models.py:297
#: models.py:441
msgid "filter by tag"
msgstr ""
#: models.py:298
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Show only the blog articles tagged with chosen tags."
msgstr ""
#: models.py:301
#, fuzzy
#: models.py:445
msgid "filter by category"
msgstr "blog category"
msgstr ""
#: models.py:302
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Show only the blog articles tagged with chosen categories."
msgstr ""
#: models.py:306
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr ""
#: models.py:324
#, fuzzy
#: models.py:470
msgid "authors"
msgstr "Authors"
msgstr ""
#: models.py:329
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "The number of author articles to be displayed."
msgstr ""
#: models.py:333
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr ""
#: models.py:362
#: models.py:512
msgid "generic blog plugin"
msgstr ""
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr ""
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Category"
msgstr ""
#: settings.py:19
#, fuzzy
#: settings.py:20
msgid "Just slug"
msgstr "slug"
#: settings.py:28
#, fuzzy
msgid "Categories and posts"
msgstr "Categories"
msgstr ""
#: settings.py:29
#, fuzzy
msgid "Categories only"
msgstr "Categories"
msgid "Categories and posts"
msgstr ""
#: settings.py:30
#, fuzzy
msgid "Posts only"
msgstr "Posts"
msgid "Categories only"
msgstr ""
#: settings.py:31
msgid "Posts only"
msgstr ""
#: settings.py:32
msgid "None"
msgstr ""
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr ""
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr ""
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr ""
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr ""
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr ""
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr ""
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr ""
#: settings.py:113
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Latest Blog Articles"
msgstr ""
#: settings.py:115
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Author Blog Articles"
msgstr ""
#: settings.py:117 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tags"
msgstr ""
#: settings.py:119 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Categories"
msgstr ""
#: settings.py:121 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archive"
msgstr ""
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "read more"
msgstr ""
#: templates/djangocms_blog/includes/blog_meta.html:6
msgid "by"
msgstr "by"
msgstr ""
#: templates/djangocms_blog/plugins/archive.html:17
#: templates/djangocms_blog/plugins/authors.html:10
@ -488,15 +591,15 @@ msgstr "by"
#, python-format
msgid "1 article"
msgid_plural "%(articles)s articles"
msgstr[0] "1 article"
msgstr[1] "%(articles)s articles"
msgstr[0] ""
msgstr[1] ""
#: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles"
msgstr "0 articles"
msgstr ""
#: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15
@ -504,57 +607,40 @@ msgstr "0 articles"
#: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21
msgid "No article found."
msgstr "No article found."
msgstr ""
#: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors"
msgstr "Authors"
msgstr ""
#: templates/djangocms_blog/plugins/categories.html:15
#, fuzzy
msgid "No categories found."
msgstr "No article found."
msgstr ""
#: templates/djangocms_blog/post_list.html:11
msgid "Articles by"
msgstr "Articles by"
msgstr ""
#: templates/djangocms_blog/post_list.html:13
msgid "Tag"
msgstr "Tag"
msgstr ""
#: templates/djangocms_blog/post_list.html:24
msgid "Back"
msgstr "Back"
msgstr ""
#: templates/djangocms_blog/post_list.html:29
msgid "previous"
msgstr "previous"
msgstr ""
#: templates/djangocms_blog/post_list.html:32
msgid "Page"
msgstr "Page"
msgstr ""
#: templates/djangocms_blog/post_list.html:32
msgid "of"
msgstr "of"
msgstr ""
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "next"
#, fuzzy
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."
msgstr ""

View file

@ -1,3 +1,4 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
@ -7,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Spanish (http://www.transifex.com/nephila/djangocms-blog/language/es/)\n"
"MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr ""
@ -26,10 +63,6 @@ msgstr ""
msgid "django CMS Blog"
msgstr ""
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr ""
@ -39,12 +72,10 @@ msgid "object name"
msgstr ""
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr ""
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr ""
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr ""
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr ""
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr ""
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr ""
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr ""
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr ""
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Lista de entradas"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Añadir entradas"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr ""
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Editar entrada"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr ""
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr ""
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Artículos del blog en %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr ""
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "padre"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "Creado en"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "Actualizado en"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:65
#: models.py:73
msgid "name"
msgstr "nombre"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "categoría del blog"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "categorías del blog"
#: models.py:114
#: models.py:138
msgid "author"
msgstr ""
#: models.py:117
#: models.py:141
msgid "created"
msgstr ""
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr ""
#: models.py:119
#: models.py:143
msgid "published since"
msgstr ""
#: models.py:120
#: models.py:144
msgid "published until"
msgstr ""
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr ""
#: models.py:122
#: models.py:147
msgid "category"
msgstr "categoría"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr ""
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr ""
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr ""
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr ""
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Sitio(s)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Selecciona los sitios en los que mostrar la entrada. Si no se selecciona ninguno, será visible en todos los sitios configurados."
#: models.py:148
msgid "title"
msgstr ""
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr ""
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr ""
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr ""
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr ""
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "usado en la etiqueta de título y al compartir en las redes sociales"
#: models.py:159
#: models.py:184
msgid "text"
msgstr ""
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "artículo del blog"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "artículos del blog"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr ""
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "El número de últimos artículos a mostrar."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr ""
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Mostrar solo los artículos del blog etiquetados con las etiquetas elegidas."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr ""
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Mostrar solo los artículos del blog etiquetados con las categorías elegidas."
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr ""
#: models.py:404
#: models.py:470
msgid "authors"
msgstr ""
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "El número de autores de artículo a mostrar."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr ""
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr ""
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr ""
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Categoría"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr ""
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr ""
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr ""
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr ""
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr ""
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr ""
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr ""
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr ""
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr ""
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr ""
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr ""
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Últimos artículos del blog"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Artículos del blog por author"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Etiquetas"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Categorías"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archivo"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "leer más"
@ -538,18 +645,3 @@ msgstr "de"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "siguiente"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,15 +1,17 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Alban Tiberghien <alban.tiberghien@gmail.com>, 2017
# Iacopo Spalletti, 2014
# yakky <i.spalletti@nephila.it>, 2016
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-08-25 13:38+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: French (http://www.transifex.com/nephila/djangocms-blog/language/fr/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +21,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Vous pouvez préciser des chaines de caractères, des attributs ou des methodes du modèle Post"
@ -27,10 +65,6 @@ msgstr "Vous pouvez préciser des chaines de caractères, des attributs ou des m
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "TItre de lapplication"
@ -40,12 +74,10 @@ msgid "object name"
msgstr "Nom de lobjet"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "Configuration du blog"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "Configurations du blog"
@ -102,375 +134,451 @@ msgid "Structure of the django CMS menu"
msgstr "Structure du menu django CMS"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "changefreq de la Sitemap"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Attribut Changfreq pour chaque entrée de la sitemap."
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Priorité de la sitemap"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Priorité de chaque entrée de la sitemap"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Type de lobjet"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Facebook type"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "Facebook application ID"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "Facebook profile ID"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "Facebook page URL"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "Facebook author URL"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Auteur"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Twitter type"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "Twitter site handle"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "Twitter author handle"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Google+ type"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Google+ author name"
#: cms_appconfig.py:130
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Envoyer des notifications lors de la publication d'un article"
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Emets une notification sur le bureau, si activée, lors de la publication d'un nouvel article"
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Envoyer des notifications lors de la mise à jour d'un article"
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
msgstr "Emets une notification sur le bureau, si activée, lors de la édition d'un article publié"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Menu du blog"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Post list"
msgstr "Liste des articles"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Add post"
msgstr "Ajouter un article"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Modifier la configuration"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Modifier Post"
msgstr "Editer un article"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
msgstr "Publier {0} maintenant"
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Nouveau {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Ajouter un nouveau {0} dans {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Articles de blog sur le site %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "Titre"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "père"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "crée le"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "modifié le"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "app. config"
msgstr "configuration de l'application"
#: models.py:65
#: models.py:73
msgid "name"
msgstr "nom"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "catégorie du blog"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "catégories du blog"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "auteur"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "crée le"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "modifié le"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "publié depuis"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "publié jusquà"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "publier"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "catégorie"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "Image principale"
msgstr "image principale"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "Miniature image principale"
msgstr "miniature image principale"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "Image principale taille réelle"
msgstr "image principale taille réelle"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "Activer les commentaires sur larticle"
msgstr "activer les commentaires sur larticle"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Site(s)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Selectionnez les sites dans lesquels afficher larticle. Si aucun site nest selectionné, larticle sera visible dans tous les sites."
#: models.py:148
msgid "title"
msgstr "Titre"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "abstract"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "Description meta de larticle"
msgstr "description meta de larticle"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "Mots clés meta de larticle"
msgstr "mots clés meta de larticle"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "Titre meta de larticle"
msgstr "titre meta de larticle"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "Visible dans le titre et dans le partage sur les réseaux sociaux"
msgstr "visible dans le titre et dans le partage sur les réseaux sociaux"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "texte"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "article du blog"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "articles du blog"
#: models.py:372 models.py:408
msgid "articles"
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:373
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "articles"
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Nombre darticles récents à afficher."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "filtrer par tag"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Afficher seulement les articles qui ont les tags séléctionnés."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "filtrer par catégorie"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Afficher seulement les articles des catégories séléctionnées"
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s derniers articles par tag"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "Auteurs"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Le nombre darticles de lauteur à afficher"
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s derniers articles par auteur"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "plugin générique pour le blog"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Date complète"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Année / Mois"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Catégorie"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
msgid "Categories and posts"
msgstr "Catégories"
msgstr "Juste le slug"
#: settings.py:29
msgid "Categories only"
msgstr "Catégories"
msgid "Categories and posts"
msgstr "Catégories et articles"
#: settings.py:30
msgid "Posts only"
msgstr "Articles"
msgid "Categories only"
msgstr "Catégories seulement"
#: settings.py:31
msgid "Posts only"
msgstr "Articles seulement"
#: settings.py:32
msgid "None"
msgstr "Aucun"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "toujours"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "toutes les heures"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "quotidien"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "hebdomadaire"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "mensuel"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "annuel"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "jamais"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Articles récents du blog"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Articles de lauteur"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tags"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Catégories"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archive"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "lire la suite"
@ -510,7 +618,7 @@ msgstr "Auteurs"
#: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found."
msgstr "Aucune catégorie trouvé"
msgstr "Aucune catégorie trouvée"
#: templates/djangocms_blog/post_list.html:11
msgid "Articles by"
@ -539,18 +647,3 @@ msgstr "sur"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "suivant"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,15 +1,16 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Iacopo Spalletti, 2014
# yakky <i.spalletti@nephila.it>, 2014-2016
# yakky <i.spalletti@nephila.it>, 2014-2017
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:50+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:40+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Italian (http://www.transifex.com/nephila/djangocms-blog/language/it/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +20,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr "Sito"
#: admin.py:91
msgid "Info"
msgstr "Info"
#: admin.py:97
msgid "Images"
msgstr "Immagini"
#: admin.py:101
msgid "SEO"
msgstr "SEO"
#: admin.py:305
msgid "Generic"
msgstr "Generale"
#: admin.py:311
msgid "Layout"
msgstr "Layout"
#: admin.py:318
msgid "Notifications"
msgstr "Notifiche"
#: admin.py:324
msgid "Sitemap"
msgstr "Sitemap"
#: admin.py:330
msgid "Meta"
msgstr "Meta"
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Puoi inserire stringhe, attributi o metodi del model Post"
@ -27,10 +64,6 @@ msgstr "Puoi inserire stringhe, attributi o metodi del model Post"
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "Titolo applicazione"
@ -40,12 +73,10 @@ msgid "object name"
msgstr "Nome oggetto"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "Configurazione del blog"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "Configurazioni del blog"
@ -102,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr "Struttura del menu django CMS"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr "Mostra categorie vote nel menù"
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr "Mostra categorie senza post nel menù"
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Frequenza aggiornamento Sitemap"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Attributo Changefreq per gli oggetti della sitemap"
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Priorità sitemap"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Attributo priorità per gli oggetti nella sitemap"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Tipo oggetto"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Tipo oggetto Facebook"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "ID Applicazione Facebook"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "ID Profilo Facebook"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "URL Pagina Facebook"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "URL Autore Facebook"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Autore Facebook"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Tipo oggetto Twitter"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "Nome Twitter del sito"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "Nome Twitter autore"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Tipo oggetto Google+"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Nome Google+ autore"
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Invia notifiche alla pubblicazione dell'articolo"
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Invia notifiche desktop -se abilitate- quando viene pubblicato un articolo"
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Invia notifiche all'aggiornamento dell'articolo"
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr "Invia notifiche desktop -se abilitate- quando viene aggiornato un articolo"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Menu del blog"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Lista degli articoli"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Aggiungi articolo"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Modifica configurazione"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Modifica articolo"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr "Pubblica {0}"
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Nuovo {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Crea un nuovo {0} in {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Articoli del blog su %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr "Liveblog"
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr "Elemento liveblog"
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr "Pubblica elemento liveblog"
#: liveblog/models.py:30
msgid "post date"
msgstr "Data del post"
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr "Elemento liveblog"
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr "Elementi liveblog"
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "titolo"
#: liveblog/models.py:99
msgid "image"
msgstr "Immagine"
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr "Dimensione miniatura"
#: models.py:64
msgid "parent"
msgstr "superiore"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "creato il"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "modificato il"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "config. app."
#: models.py:65
#: models.py:73
msgid "name"
msgstr "nome"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "categoria del blog"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "categorie del blog"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "autore"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "creato"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "ultima modifica"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "Pubblicato il"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "fino al"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr "Data visualizzata"
#: models.py:146
msgid "publish"
msgstr "pubblica"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "categoria"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "immagine principale"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "dimensioni miniatura immagine"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "dimensioni immagine"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "abilita commenti sull'articolo"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Sito/i"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Seleziona i siti in cui deve apparire l'articolo. Se non è selezionato nessun sito, l'articolo comparirà in tutti i siti configurati."
#: models.py:148
msgid "title"
msgstr "titolo"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "abstract"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "meta description"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "meta keywords"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "meta title"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "Usato nel tag title e nei titoli per le condivisioni sui social network"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "testo"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr "Attiva liveblog sul post"
#: models.py:223
msgid "blog article"
msgstr "articolo del blog"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "articoli del blog"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr "Sito corrente"
#: models.py:399
msgid "Select items from the current site only"
msgstr "Seleziona gli elementi per il solo sito corrente"
#: models.py:403
msgid "Plugin template"
msgstr "Template del plugin"
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr "Seleziona il template da usare per questa istanza"
#: models.py:438 models.py:474
msgid "articles"
msgstr "articoli"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Il numero di articoli da mostrare."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "filtra per tag"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Mostra solo gli articoli marcati con i tag selezionati."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "filtra per categoria"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Mostra solo gli articoli marcati con i categorie selezionati."
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "ultimi %s articoli per tag"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "autori"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Numero di elementi per autore da mostrare."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "ultimi %s articoli per autore"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "plugin blog"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Data completa"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Anno / Mese"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Categoria"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr "Solo slug"
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Categorie e articoli"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Solo categorie"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Solo articoli"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr "Niente"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "sempre"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "ogni ora"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "ogni giorno"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "ogni settimana"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "ogni mese"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "ogni anno"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "mai"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Ultimi articoli"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr "Ultimi articoli del blog - in cache"
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Articoli per autore"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tag"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Categorie"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archivio"
#: settings.py:140
msgid "Default template"
msgstr "Template standard"
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "leggi"
@ -539,18 +646,3 @@ msgstr "di"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "successivo"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,14 +1,15 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Matas Dailyda <matas@dailyda.com>, 2015-2016
# Matas Dailyda <matas@dailyda.com>, 2015-2017
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 08:37+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-06 11:06+0000\n"
"Last-Translator: Matas Dailyda <matas@dailyda.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/nephila/djangocms-blog/language/lt/)\n"
"MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr "tinklalapis"
#: admin.py:91
msgid "Info"
msgstr "Informacija"
#: admin.py:97
msgid "Images"
msgstr "Paveikslėliai"
#: admin.py:101
msgid "SEO"
msgstr "SEO"
#: admin.py:305
msgid "Generic"
msgstr "Bendras"
#: admin.py:311
msgid "Layout"
msgstr "Išdėstymas"
#: admin.py:318
msgid "Notifications"
msgstr "Pranešimai"
#: admin.py:324
msgid "Sitemap"
msgstr "Tinklalapio žemėlapis"
#: admin.py:330
msgid "Meta"
msgstr "Meta"
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Galite pateikti paprasto teksto eilutes, įrašo modelio atributą arba metodo pavadinimus "
@ -26,10 +63,6 @@ msgstr "Galite pateikti paprasto teksto eilutes, įrašo modelio atributą arba
msgid "django CMS Blog"
msgstr "django CMS Tinklaraštis"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Tinklaraštis"
#: cms_appconfig.py:20
msgid "application title"
msgstr "aplikacijos pavadinimas"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "objekto pavadinimas"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "tinklaraščio konfiguracija"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "tinklaraščio konfiguracijos"
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Django CMS meniu struktūra"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr "Rodyti tuščias kategorijas meniu"
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr "Rodyti kategorijas be susietų straipsnių meniu"
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Tinklalapio medžio keitimo dažnumas"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Keitimo dažnumo atributas tinklalapio medžio objektams"
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Tinklalapio medžio prioritetas"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Prioriteto atributas tinklalapio medžio objektams"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Objekto tipas"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Facebook tipas"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "Facebook aplikacijos ID"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "Facebook profilio ID"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "Facebook puslapio URL"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "Facebook autoriaus URL"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Facebook autorius"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Twitter tipas"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "Twitter tinklalapio vardas"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "Twitter autoriaus vardas"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Google+ tipas"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Goggle+ autoriaus vardas"
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Publikavus straipsnį siųsti pranešimus"
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Išsiunčia darbalaukio pranešima -jei įgalinta- kai publikuojamas naujas straipsnis"
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Atnaujinus straipsnį siųsti pranešimus"
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr "Išsiunčia darbalaukio pranešima -jei įgalinta- kai redaguojamas publikuotas straipsnis"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Tinklaraštis"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Tinklaraščio meniu"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Straipsnių sąrašas"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Pridėti straipsnį"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Redaguoti nustatymus"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Redaguoti straipsnį"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr "Publikuoti {0} dabar"
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Naujas {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Kurti naują {0} viduje {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Tinklaraščio straipsniai %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr "Gyvas tinklaraštis"
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr "Gyvo tinklaraščio objektas"
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr "publikuoti gyvo tinklaraščio įrašą"
#: liveblog/models.py:30
msgid "post date"
msgstr "publikavimo data"
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr "gyvo tinklaraščio įrašas"
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr "gyvo tinklaraščio įrašai"
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "pavadinimas"
#: liveblog/models.py:99
msgid "image"
msgstr "paveikslėlis"
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr "piktogramos dydis"
#: models.py:64
msgid "parent"
msgstr "pirminis elementas"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "sukurta"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "redaguota"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "aplikacijos nustatymai"
#: models.py:65
#: models.py:73
msgid "name"
msgstr "pavadinimas"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "nuoroda"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "tinklaraščio kategorija"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "tinklaraščio kategorijos"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "autorius"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "sukurta"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "paskutinį kartą redaguota"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "publikuota nuo"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "publikuota iki"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr "populiarinimo data"
#: models.py:146
msgid "publish"
msgstr "publikuoti"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "kategorija"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "pagrindinis paveikslėlis"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "pagrindinio paveikslėlio miniatiūra"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "pagrindinis paveikslėlis pilnas"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "įgalinti straipsniui komentarus"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Tinklalapis(iai)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Pasirinkite puslapius kuriuose bus rodomas straipsnis. Jei nepasirinktas nei vienas puslapis, straipsnis bus rodomas visuose puslapiuose."
#: models.py:148
msgid "title"
msgstr "pavadinimas"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "santrauka"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "straipsnio meta apibūdinimas"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "straipsnio meta raktažodžiai"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "straipsnio meta pavadinimas"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "naudojama pavadinimo žymenoje ir socialiniuose tinkluose"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "tekstas"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr "įgalinti gyvą tinklaraštį šiame straipsnyje"
#: models.py:223
msgid "blog article"
msgstr "tinklaraščio straipsnis"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "tinklaraščio straipsniai"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr "dabartinis tinklalapis"
#: models.py:399
msgid "Select items from the current site only"
msgstr "Pasirinkti objektus tik iš dabartinio tinklalapio"
#: models.py:403
msgid "Plugin template"
msgstr "Įskiepio šablonas"
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr "Pasirinkite įskiepio šabloną kuris bus kraunamas šiam atvejui"
#: models.py:438 models.py:474
msgid "articles"
msgstr "straipsniai"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Atvaizduojamas naujausių straipsnių kiekis."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "filtruoti pagal žymeną"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Atvaizduoti straipsnius su pasirinktomis žymenomis."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "filtruoti pagal kategoriją"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Atvaizduoti straipsnius su pasirinktomis kategorijomis."
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s paskutiniai straipsniai pagal žymeną"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "autoriai"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Atvaizduojamas autoriaus straipsnių kiekis."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s paskutiniai straipsniai pagal autorių"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "bendras tinklaraščio įskiepis"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Pilna data"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Metai / Mėnesis"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Kategorija"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr "Tik nuoroda"
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Kategorijos ir įrašai"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Tik kategorijos"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Tik įrašai"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr "Niekas"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "visada"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "kas valandą"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "kas dieną"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "kas savaitę"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "kas mėnesį"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "kas metus"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "niekada"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Naujausi tinklaraščio straipsniai"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr "Paskutiniai tinklaraščio straipsniai - kešas"
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Tinklaraščio straipsnių autorius"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Žymenos"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Kategorijos"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archyvas"
#: settings.py:140
msgid "Default template"
msgstr "Numatytasis šablonas"
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "skaityti daugiau"
@ -539,18 +646,3 @@ msgstr "iš"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "kitas"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

Binary file not shown.

View file

@ -0,0 +1,648 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# fivethreeo <oyvind.saltvik@gmail.com>, 2016
# fivethreeo <oyvind.saltvik@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/nephila/djangocms-blog/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Du kan bruke vanlige strenger, Post modell attributt eller metodenavn"
#: apps.py:15
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "applikasjonstittel"
#: cms_appconfig.py:22
msgid "object name"
msgstr "objekt navn"
#: cms_appconfig.py:27
msgid "blog config"
msgstr "bloggkonfigurasjon"
#: cms_appconfig.py:28
msgid "blog configs"
msgstr "bloggkonfigurasjoner"
#: cms_appconfig.py:31
msgid "untitled"
msgstr "uten tittel"
#: cms_appconfig.py:36
msgid "Post published by default"
msgstr "Publiser Post automatisk"
#: cms_appconfig.py:40
msgid "Permalink structure"
msgstr "Permanent link struktur"
#: cms_appconfig.py:45
msgid "Use placeholder and plugins for article body"
msgstr "Bruk plassholder og plugin for artikkelinnhold"
#: cms_appconfig.py:49
msgid "Use abstract field"
msgstr "Bruk abstrakt felt"
#: cms_appconfig.py:53
msgid "Set author"
msgstr "Sett forfatter"
#: cms_appconfig.py:53
msgid "Set author by default"
msgstr "Sett forfatter automatisk"
#: cms_appconfig.py:57
msgid "Paginate size"
msgstr "Sidevisningsstørrelse"
#: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?"
msgstr "Ved sidevisning av liste views, hvor mange artikler per side?"
#: cms_appconfig.py:61
msgid "Template prefix"
msgstr "Template prefix"
#: cms_appconfig.py:62
msgid "Alternative directory to load the blog templates from"
msgstr "Alternativ mappe for å laste blogg templates fra"
#: cms_appconfig.py:65
msgid "Menu structure"
msgstr "Menystruktur"
#: cms_appconfig.py:67
msgid "Structure of the django CMS menu"
msgstr "Strukturen på django CMS menyen"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Sidekart endringsfrekvens"
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Changefreq attributt for sidekartelementer"
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Sidekartprioritet"
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Priority attributt fir sidekartelementer"
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Objekttype"
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Facebooktype"
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "Facebook applikasjonsid"
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "Facebook profilid"
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "Facebook sideadresse"
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "Facebook forfatteradresse"
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Facebook forfatter"
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Twittertype"
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "Twitter sidenavn"
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "Twitter forfatternavn"
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Google+ type"
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Google"
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Send notifikasjoner når post publiseres"
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Gir fra seg en skrivebordsnotifikasjon -hvis slått på- når en ny post publiseres"
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Send notifikasjoner når poster oppdateres"
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr "Gir fra seg en skrivebordsnotifikasjon -hvis slått på- når en publisert post redigeres"
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blogg"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Bloggmeny"
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Postliste"
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Legg til post"
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Rediger konfigurasjon"
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Rediger Post"
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr "Publiser {0} nå"
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Ny {0}"
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Opprett en ny {0} i {1}"
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Bloggartikler på %(site_name)s"
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "tittel"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "forelder"
#: models.py:66
msgid "created at"
msgstr "opprettet"
#: models.py:67
msgid "modified at"
msgstr "endret"
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "app. konfig"
#: models.py:73
msgid "name"
msgstr "navn"
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:81
msgid "blog category"
msgstr "bloggkategori"
#: models.py:82
msgid "blog categories"
msgstr "bloggkategorier"
#: models.py:138
msgid "author"
msgstr "forfatter"
#: models.py:141
msgid "created"
msgstr "opprettet"
#: models.py:142
msgid "last modified"
msgstr "sist endret"
#: models.py:143
msgid "published since"
msgstr "publisert siden"
#: models.py:144
msgid "published until"
msgstr "publisert inntil"
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "publiser"
#: models.py:147
msgid "category"
msgstr "kategori"
#: models.py:149
msgid "main image"
msgstr "hovedbilde"
#: models.py:153
msgid "main image thumbnail"
msgstr "hovedbilde i miniatyr"
#: models.py:158
msgid "main image full"
msgstr "hovedbilde i fullstørrelse "
#: models.py:162
msgid "enable comments on post"
msgstr "slå på kommentarer ved posting"
#: models.py:164
msgid "Site(s)"
msgstr "Nettsted"
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Velg nettstedene du vil vise denne posten på. Hvis satt til ingen vil den vises på alle de konfigurerte nettstedene."
#: models.py:175
msgid "abstract"
msgstr "abstrakt"
#: models.py:176
msgid "post meta description"
msgstr "post meta beskrivelse"
#: models.py:178
msgid "post meta keywords"
msgstr "post meta nøkkelord"
#: models.py:180
msgid "post meta title"
msgstr "post meta tittel"
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "brukes i title taggen og sosial deling"
#: models.py:184
msgid "text"
msgstr "tekst"
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "bloggartikkel"
#: models.py:224
msgid "blog articles"
msgstr "bloggartikler"
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "artikler"
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Antall siste artikler som skal vises"
#: models.py:441
msgid "filter by tag"
msgstr "filtrer etter tagg"
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Vis bare bloggartikler tagget med valgte tagger."
#: models.py:445
msgid "filter by category"
msgstr "filtrer etter kategori"
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Vis bare bloggartikler med valgte kategorier."
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s siste artikler etter tagg"
#: models.py:470
msgid "authors"
msgstr "forfattere"
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Antall forfatterartikler som skal vises."
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s siste artikler av forfatter"
#: models.py:512
msgid "generic blog plugin"
msgstr "generisk bloggplugin"
#: settings.py:17
msgid "Full date"
msgstr "Full dato"
#: settings.py:18
msgid "Year / Month"
msgstr "År / Måned"
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Kategori"
#: settings.py:20
msgid "Just slug"
msgstr "Bare slug"
#: settings.py:29
msgid "Categories and posts"
msgstr "Kategorier og poster"
#: settings.py:30
msgid "Categories only"
msgstr "Bare kategorier"
#: settings.py:31
msgid "Posts only"
msgstr "Bare poster"
#: settings.py:32
msgid "None"
msgstr "Ingen"
#: settings.py:35
msgid "always"
msgstr "alltid"
#: settings.py:36
msgid "hourly"
msgstr "hver time"
#: settings.py:37
msgid "daily"
msgstr "daglig"
#: settings.py:38
msgid "weekly"
msgstr "ukentlig"
#: settings.py:39
msgid "monthly"
msgstr "månedlig"
#: settings.py:40
msgid "yearly"
msgstr "årlig"
#: settings.py:41
msgid "never"
msgstr "aldri"
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Siste Bloggartikler"
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Forfatters Bloggartikler"
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tagger"
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Kategorier"
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Arkiv"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "les mer"
#: templates/djangocms_blog/includes/blog_meta.html:6
msgid "by"
msgstr "av"
#: templates/djangocms_blog/plugins/archive.html:17
#: templates/djangocms_blog/plugins/authors.html:10
#: templates/djangocms_blog/plugins/categories.html:10
#: templates/djangocms_blog/plugins/tags.html:10
#, python-format
msgid "1 article"
msgid_plural "%(articles)s articles"
msgstr[0] "1 artikkel"
msgstr[1] "%(articles)s artikler"
#: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles"
msgstr "0 artikler"
#: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15
#: templates/djangocms_blog/plugins/latest_entries.html:7
#: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21
msgid "No article found."
msgstr "Ingen artikler funnet."
#: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors"
msgstr "Forfattere"
#: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found."
msgstr "Ingen kategorier funnet."
#: templates/djangocms_blog/post_list.html:11
msgid "Articles by"
msgstr "Artikler av"
#: templates/djangocms_blog/post_list.html:13
msgid "Tag"
msgstr "Tagg"
#: templates/djangocms_blog/post_list.html:24
msgid "Back"
msgstr "Tilbake"
#: templates/djangocms_blog/post_list.html:29
msgid "previous"
msgstr "forrige"
#: templates/djangocms_blog/post_list.html:32
msgid "Page"
msgstr "side"
#: templates/djangocms_blog/post_list.html:32
msgid "of"
msgstr "av"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "neste"

View file

@ -1,3 +1,4 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
@ -7,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Dutch (http://www.transifex.com/nephila/djangocms-blog/language/nl/)\n"
"MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Je kan gewone strings opgeven, een Bericht model attribuut of methode namen"
@ -26,10 +63,6 @@ msgstr "Je kan gewone strings opgeven, een Bericht model attribuut of methode na
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "applicatie titel"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "object naam"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr "blog configuratie"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr "blog configuraties"
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Opbouw van het django CMS menu"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Verander-frequentie van de Sitemap"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Verander-frequentie attribuut voor sitemap items"
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Sitemap prioriteit"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Prioriteit attribuut voor sitemap items"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Object type"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "Facebook type"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "Facebook applicatie ID"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "Facebook profiel ID"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "Facebook pagina URL"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "Facebook auteur URL"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Facebook auteur"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "Twitter type"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "Twitter site handle"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "Twitter auteur handle"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "Google+ type"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "Google+ auteursnaam"
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Blog menu"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Overzicht van Berichten"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Bericht toevoegen"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Wijzig configuratie"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Wijzig Bericht"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Nieuwe {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Maak een nieuwe {0} in {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Blog artikelen op %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "title"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "bovenliggende"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "aangemaakt op"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "gewijzigd op"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "applicatie configuratie"
#: models.py:65
#: models.py:73
msgid "name"
msgstr "naam"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "blog categorie"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "blog categorieën"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "auteur"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "aangemaakt"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "laatst gewijzigd"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "gepubliceerd sinds"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "gepubliceerd tot"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "publiceer"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "categorie"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "hoofd afbeelding"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "hoofd afbeelding thumbnail"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "hoofd afbeelding volledig"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "sta reacties toe op bericht"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Site(s)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Selecteer sites die het bericht moeten tonen. Als geen site ingesteld wordt, dan is het zichtbaar voor alle geconfigureerde sites."
#: models.py:148
msgid "title"
msgstr "title"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "excerpt"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "meta omschrijving van bericht"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "meta sleutelwoorden van bericht "
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "meta titel van bericht"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "wordt gebruikt in de titel tag en bij het delen via sociale media"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "tekst"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "blog artikel"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "blog artikelen"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "artikelen"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Het aantal nieuwste berichten om te tonen."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "filter op tag"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen tags."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "filter op categorie"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen categorieën."
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s nieuwste artikelen met tag"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "auteurs"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Het aantal artikelen door auteur om te tonen."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s nieuwste artikelen door auteur"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "generieke blog plugin"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Volledige datum"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Jaar / Maand"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Categorie"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr "Alleen slug"
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Categorieën en berichten"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Alleen Categorieën"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Alleen Berichten"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr "Geen"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "altijd"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "elk uur"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "elke dag"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "elke week"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "elke maand"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "elk jaar"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "nooit"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Nieuwste Blog Artikelen"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Blog Artikelen Van Auteur"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Tags"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Categorieën "
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Archief"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "lees verder"
@ -538,18 +645,3 @@ msgstr "van"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "volgende"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,13 +1,15 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Diego Ponci <dgo.ponciano@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/nephila/djangocms-blog/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@ -17,465 +19,571 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
msgid "You can provide plain strings, Post model attribute or method names"
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Você pode fornecer texto puro, atributos do modelo Post ou nomes de métodos"
#: apps.py:15
msgid "django CMS Blog"
msgstr ""
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr ""
msgstr "blog do django CMS"
#: cms_appconfig.py:20
msgid "application title"
msgstr ""
msgstr "título da aplicação"
#: cms_appconfig.py:22
msgid "object name"
msgstr ""
msgstr "nome do objeto"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr ""
msgstr "configuração do blog"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr ""
msgstr "configurações do blog"
#: cms_appconfig.py:31
msgid "untitled"
msgstr ""
msgstr "sem título"
#: cms_appconfig.py:36
msgid "Post published by default"
msgstr ""
msgstr "Post publicado por padrão"
#: cms_appconfig.py:40
msgid "Permalink structure"
msgstr ""
msgstr "Estrutura de links permanentes"
#: cms_appconfig.py:45
msgid "Use placeholder and plugins for article body"
msgstr ""
msgstr "Usar placeholder e plugins para o corpo da notícia"
#: cms_appconfig.py:49
msgid "Use abstract field"
msgstr ""
msgstr "Usar campo abstrato"
#: cms_appconfig.py:53
msgid "Set author"
msgstr ""
msgstr "Informar o autor"
#: cms_appconfig.py:53
msgid "Set author by default"
msgstr ""
msgstr "Informar o autor por padrão"
#: cms_appconfig.py:57
msgid "Paginate size"
msgstr ""
msgstr "Tamanho da paginação"
#: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?"
msgstr ""
msgstr "Em paginações de listagem, quantas notícias por página?"
#: cms_appconfig.py:61
msgid "Template prefix"
msgstr ""
msgstr "Prefixo do template"
#: cms_appconfig.py:62
msgid "Alternative directory to load the blog templates from"
msgstr ""
msgstr "Diretório alternativo de origem dos templates do blog"
#: cms_appconfig.py:65
msgid "Menu structure"
msgstr ""
msgstr "Estrutura do menu"
#: cms_appconfig.py:67
msgid "Structure of the django CMS menu"
msgstr ""
msgstr "Estrutura do menu do django CMS"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
msgid "Sitemap priority"
msgstr ""
msgstr "'changefreq' do sitemap"
#: cms_appconfig.py:78
msgid "Priority attribute for sitemap items"
msgstr ""
msgid "Changefreq attribute for sitemap items"
msgstr "Atributo changefreq de items do sitemap"
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "'priority' do sitemap"
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Atributo 'priority' de items do sitemap"
#: cms_appconfig.py:86
msgid "Object type"
msgstr ""
msgstr "Tipo de objeto"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
msgstr "Tipo de conta do facebook"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
msgstr "ID da aplicação no Facebook"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
msgstr "ID do perfil no Facebook"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
msgstr "URL da página no Facebook"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
msgstr "URL do autor no Facebook"
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr ""
msgstr "Autor no Facebook"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
msgstr "Tipo do Twitter"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
msgstr "Nome de usuário no Twitter"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
msgstr "Usuário do autor no Twitter"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
msgid "Google+ author name"
msgstr ""
msgstr "Tipo do Google+"
#: cms_appconfig.py:130
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
msgid "Send notifications on post update"
msgstr ""
msgid "Google+ author name"
msgstr "Nome do autor no Google+"
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Enviar notificações ao publicar postagem"
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Enviar notificação de desktop -se ativada- quando publicar uma nova postagem"
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Enviar notificações ao atualizar postagem"
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
msgstr "Enviar notificação de desktop -se ativada- quando editar uma postagem publicada"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr ""
msgstr "Menu do blog"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr ""
msgstr "Lista de postagens"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr ""
msgstr "Adicionar postagem"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr ""
msgstr "Editar preferências"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr ""
msgstr "Ediar Postagem"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
msgstr "Publicar {0} agora"
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr ""
msgstr "Novo {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr ""
msgstr "Criar um novo {0} em {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Artigos em %(site_name)s"
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: models.py:57
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "título"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr ""
msgstr "pai"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr ""
msgstr "criado em"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr ""
msgstr "modificado em"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:65
msgid "name"
msgstr ""
#: models.py:66 models.py:149
msgid "slug"
msgstr ""
msgstr "configuração da aplicação"
#: models.py:73
msgid "name"
msgstr "nome"
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:81
msgid "blog category"
msgstr ""
msgstr "categoria do blog"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr ""
msgstr "categorias do blog"
#: models.py:114
#: models.py:138
msgid "author"
msgstr ""
msgstr "autor"
#: models.py:117
#: models.py:141
msgid "created"
msgstr ""
msgstr "criado"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr ""
msgstr "última modificação"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr ""
msgstr "publicado desde"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "publicado até"
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:121
#: models.py:146
msgid "publish"
msgstr ""
msgstr "publicar"
#: models.py:122
#: models.py:147
msgid "category"
msgstr ""
msgstr "categoria"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr ""
msgstr "imagem principal"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr ""
msgstr "miniatura da imagem principal"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr ""
msgstr "imagem principal completa"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr ""
msgstr "habilitar comentários nessa postagem"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr ""
msgstr "Site(s)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr ""
msgstr "Selecionar sites onde a postagem deve aparecer. Se nenhum for selecionado ela ficará visível em todos os sites configurados."
#: models.py:148
msgid "title"
msgstr ""
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr ""
msgstr "resumo"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr ""
msgstr "meta descrição da postagem"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr ""
msgstr "palavras-chave da postagem"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr ""
msgstr "meta título da postagem"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr ""
msgstr "usado na tag de título e compartilhamento em redes sociais"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "texto"
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:196
#: models.py:223
msgid "blog article"
msgstr ""
msgstr "artigo do blog"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "artigos do blog"
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:372 models.py:408
msgid "articles"
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:373
msgid "The number of latests articles to be displayed."
msgstr ""
#: models.py:375
msgid "filter by tag"
msgstr ""
#: models.py:376
msgid "Show only the blog articles tagged with chosen tags."
msgstr ""
#: models.py:379
msgid "filter by category"
msgstr ""
#: models.py:380
msgid "Show only the blog articles tagged with chosen categories."
msgstr ""
#: models.py:384
#, python-format
msgid "%s latest articles by tag"
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "authors"
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:409
msgid "The number of author articles to be displayed."
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "artigos"
#: models.py:413
#, python-format
msgid "%s latest articles by author"
msgstr ""
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "O número dos últimos artigos a serem exibidos."
#: models.py:441
msgid "filter by tag"
msgstr "filtrar por tag"
#: models.py:442
msgid "generic blog plugin"
msgstr ""
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Exibir apenas os artigos marcados com as tags escolhidas."
#: settings.py:16
msgid "Full date"
msgstr ""
#: models.py:445
msgid "filter by category"
msgstr "filtrar por categoria"
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Exibir apenas os artigos marcados com as categorias escolhidas."
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s últimos artigos por tag"
#: models.py:470
msgid "authors"
msgstr "autores"
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Número de artigos do autor a serem exibidos."
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s últimos artigos por autor"
#: models.py:512
msgid "generic blog plugin"
msgstr "plugin genérico do blog"
#: settings.py:17
msgid "Full date"
msgstr "Data completa"
#: settings.py:18
msgid "Year / Month"
msgstr ""
msgstr "Ano / Mês"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr ""
msgstr "Categoria"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
msgid "Categories and posts"
msgstr ""
msgstr "Apenas a slug"
#: settings.py:29
msgid "Categories only"
msgstr ""
msgid "Categories and posts"
msgstr "Categorias e postagens"
#: settings.py:30
msgid "Posts only"
msgstr ""
msgid "Categories only"
msgstr "Apenas categorias"
#: settings.py:31
msgid "None"
msgstr ""
msgid "Posts only"
msgstr "Apenas postagens"
#: settings.py:34
msgid "always"
msgstr ""
#: settings.py:32
msgid "None"
msgstr "Nenhum"
#: settings.py:35
msgid "hourly"
msgstr ""
msgid "always"
msgstr "sempre"
#: settings.py:36
msgid "daily"
msgstr ""
msgid "hourly"
msgstr "a cada hora"
#: settings.py:37
msgid "weekly"
msgstr ""
msgid "daily"
msgstr "diariamente"
#: settings.py:38
msgid "monthly"
msgstr ""
msgid "weekly"
msgstr "semanalmente"
#: settings.py:39
msgid "yearly"
msgstr ""
msgid "monthly"
msgstr "mensalmente"
#: settings.py:40
msgid "never"
msgstr ""
msgid "yearly"
msgstr "anualmente"
#: settings.py:115
msgid "Latest Blog Articles"
msgstr ""
#: settings.py:41
msgid "never"
msgstr "nunca"
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Últimos Artigos"
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr ""
msgstr "Artigos do Autor"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr ""
msgstr "Tags"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr ""
msgstr "Categorias"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Arquivo"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr ""
msgstr "ler mais"
#: templates/djangocms_blog/includes/blog_meta.html:6
msgid "by"
msgstr ""
msgstr "por"
#: templates/djangocms_blog/plugins/archive.html:17
#: templates/djangocms_blog/plugins/authors.html:10
@ -484,15 +592,15 @@ msgstr ""
#, python-format
msgid "1 article"
msgid_plural "%(articles)s articles"
msgstr[0] ""
msgstr[1] ""
msgstr[0] "1 artigo"
msgstr[1] "%(articles)s artigos"
#: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles"
msgstr ""
msgstr "0 artigos"
#: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15
@ -500,55 +608,40 @@ msgstr ""
#: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21
msgid "No article found."
msgstr ""
msgstr "Nenhum artigo encontrado."
#: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors"
msgstr ""
msgstr "Autores"
#: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found."
msgstr ""
msgstr "Nenhuma categoria encontrada."
#: templates/djangocms_blog/post_list.html:11
msgid "Articles by"
msgstr ""
msgstr "Artigos por"
#: templates/djangocms_blog/post_list.html:13
msgid "Tag"
msgstr ""
msgstr "Tag"
#: templates/djangocms_blog/post_list.html:24
msgid "Back"
msgstr ""
msgstr "Voltar"
#: templates/djangocms_blog/post_list.html:29
msgid "previous"
msgstr ""
msgstr "anterior"
#: templates/djangocms_blog/post_list.html:32
msgid "Page"
msgstr ""
msgstr "Página"
#: templates/djangocms_blog/post_list.html:32
msgid "of"
msgstr ""
msgstr "de"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr ""
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."
msgstr "próxima"

View file

@ -1,16 +1,18 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Iacopo Spalletti, 2014
# Rustam Mirzaev <mirus@2x2.pw>, 2016
# Rustam Mirzaev <mirus@2x2.pw>, 2015
# Rustam Mirzaev <mirus@2x2.pw>, 2015
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Russian (http://www.transifex.com/nephila/djangocms-blog/language/ru/)\n"
"MIME-Version: 1.0\n"
@ -20,7 +22,43 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Вы можете использовать простую строку, атрибут модели статьи или имена методов"
@ -28,10 +66,6 @@ msgstr "Вы можете использовать простую строку,
msgid "django CMS Blog"
msgstr "django CMS Блог"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Блог"
#: cms_appconfig.py:20
msgid "application title"
msgstr "название приложения"
@ -41,14 +75,12 @@ msgid "object name"
msgstr "название объекта"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr ""
msgstr "настройка блога"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr ""
msgstr "настройки блога"
#: cms_appconfig.py:31
msgid "untitled"
@ -103,375 +135,451 @@ msgid "Structure of the django CMS menu"
msgstr "Структура меню django CMS "
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr "Частота обновления карты сайта"
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr "Атрибут частоты изменения объектов карты сайта"
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Приоритет"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Приоритет атребута для объектов карты сайта"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Тип объекта"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr "тип в Facebook"
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr "ID приложения на Facebook"
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr "ID профиля на Facebook"
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr "URL страницы на Facebook"
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr "URL автора на Facebook "
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "автор на Facebook "
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr "тип на Twitter"
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr "дескриптор сайта на Twitter"
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr "дескриптор автора на Twitter"
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr "тип на Google+"
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr "имя автора на Google+"
#: cms_appconfig.py:130
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr "Отправлять уведомления после публикации статьи"
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Уведомлять сигналами на рабочем столе, если включено, при публикации новой записи"
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr "Отправлять уведомления после публикации"
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
msgstr "Уведомлять сигналами на рабочем столе, если включено, при редактировании опубликованной записи"
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Блог"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Меню блога"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Список статей"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Добавить статью"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Редактировать настройки"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Редактировать статью"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
msgstr "Опубликовано сейчас {0} "
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Новых {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Создать новых {0} из {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Статьи блога с сайта: %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "Заголовок"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "предок"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "время создания"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "время изменения"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr "настройки приложения"
#: models.py:65
#: models.py:73
msgid "name"
msgstr "название"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "ЧПУ"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "категория блога"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "категории блога"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "автор"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "создан(о)"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "последние изменения"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "опубликовано"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "опубликовано до"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "опубликовать"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "категория"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "главная страница"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "уменьшенная копия главного изображения"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "Полноразмерное изображение"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "Разрешить комментарии к статье"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Сайт(ы)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Выберите сайты на которых будет опубликована статья. Если сайты не выбраны, статья будет опубликована на всех сайтах сразу."
#: models.py:148
msgid "title"
msgstr "Заголовок"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "Краткое описание"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "мета-описание статьи"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "ключевые слова к статье"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "мета-заголовок к статье"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "используется в метках и обмене в социальных сетях"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "текст"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "статья блога"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "статьи блога"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "статьи"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Количество последних статей, которые будут показаны."
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "фильтровать по тегам"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Показывать статьи только с выбранными метками."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "фильтровать по категориям"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Показывать статьи только из выбранных категорий."
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s последних статей по тегам"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "авторы"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Количество статей автора, которые будут показаны."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s последних статей по авторам"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "генерируемый плагин блога"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Полная дата"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Год / Месяц"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Категория"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr "ЧПУ"
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Категории и статьи"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Только категории"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Только статьи"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr "Ничего"
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "всегда"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "ежечасно"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "ежедневно"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "еженедельно"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "ежемесячно"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "ежегодно"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "никогда"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Последние статьи блога"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Автор статей блога"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Метки"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Категории"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Архив"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "читать далее"
@ -542,18 +650,3 @@ msgstr "из"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "следующая"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,3 +1,4 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
@ -7,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Slovenian (http://www.transifex.com/nephila/djangocms-blog/language/sl/)\n"
"MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr ""
@ -26,10 +63,6 @@ msgstr ""
msgid "django CMS Blog"
msgstr "django CMS Blog"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20
msgid "application title"
msgstr "naziv aplikacije"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "ime objekta"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr ""
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr ""
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Struktura django CMS menija"
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr "Sitemap prioriteta"
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr "Prioriteta atributov za elemente sitemapa"
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr "Tip objekta"
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr "Facebook avtor"
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr ""
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr "Blog meni"
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Seznam objav"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Nova objava"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr "Uredi nastavitve"
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Uredi objavo"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr "Nov {0}"
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr "Ustvari nov {0} v {1}"
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "Blog objave na %(site_name)s"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr "naziv"
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "starš"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "ustvarjeno na"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "urejeno na"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:65
#: models.py:73
msgid "name"
msgstr "ime"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr ""
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "blog kategorija"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "blog kategorije"
#: models.py:114
#: models.py:138
msgid "author"
msgstr "avtor"
#: models.py:117
#: models.py:141
msgid "created"
msgstr "ustvarjeno"
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr "nazadnje urejeno"
#: models.py:119
#: models.py:143
msgid "published since"
msgstr "objavljeno od"
#: models.py:120
#: models.py:144
msgid "published until"
msgstr "objavljeno do"
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr "objavljeno"
#: models.py:122
#: models.py:147
msgid "category"
msgstr "kategorija"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr "glavna slika"
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr "glavna slika - predogled"
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr "glavna slika - polna"
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr "Omogoči komentarje na objavi"
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Stran(i)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Izberi strani na katerih naj bo objava prikazana. Če ni izbrano nič, bo objava prikazana na vseh nastavljenih straneh."
#: models.py:148
msgid "title"
msgstr "naziv"
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr "osnutek"
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr "meta opis objave"
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr "meta ključne besede objave"
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr "meta naziv objave"
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "za uporabo v označbi naslova in deljenju na socialnih omrežjih"
#: models.py:159
#: models.py:184
msgid "text"
msgstr "tekst"
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "blog objava"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "blog objave"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr "objave"
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Število najnovejših objav, ki naj bodo prikazane"
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr "filtriraj po oznakah"
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Prikaži le blog objave označene z izbranimi oznakami"
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr "filtriraj po kategoriji"
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Prikaži le blog objave označene z izbranimi kategorijami"
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr "%s najnovejših objav glede na oznako"
#: models.py:404
#: models.py:470
msgid "authors"
msgstr "avtorji"
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "Število avtorjevih objav, ki naj bodo prikazane"
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr "%s najnovejših objav glede na avtorja"
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr "generični blog vtičnik"
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr "Datum (poln)"
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr "Leto / Mesec"
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Kategorija"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr "Kategorije in objave"
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr "Samo kategorije"
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr "Samo objave"
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr ""
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr "vedno"
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr "vsako uro"
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr "dnevno"
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr "tedensko"
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr "mesečno"
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr "letno"
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr "nikoli"
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Najnovejše blog objave"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Avtorjeve blog objave"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Oznake"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Kategorije"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Arhiv"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "preberi več"
@ -540,18 +647,3 @@ msgstr "od"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "naslednji"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -1,14 +1,16 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Rustam Mirzaev <mirus@2x2.pw>, 2016
# Rustam Mirzaev <mirus@2x2.pw>, 2015
msgid ""
msgstr ""
"Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n"
"POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Turkish (http://www.transifex.com/nephila/djangocms-blog/language/tr/)\n"
"MIME-Version: 1.0\n"
@ -18,67 +20,97 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233
msgid "You can provide plain strings, Post model attribute or method names"
#: admin.py:34
msgid "site"
msgstr ""
#: admin.py:91
msgid "Info"
msgstr ""
#: admin.py:97
msgid "Images"
msgstr ""
#: admin.py:101
msgid "SEO"
msgstr ""
#: admin.py:305
msgid "Generic"
msgstr ""
#: admin.py:311
msgid "Layout"
msgstr ""
#: admin.py:318
msgid "Notifications"
msgstr ""
#: admin.py:324
msgid "Sitemap"
msgstr ""
#: admin.py:330
msgid "Meta"
msgstr ""
#: admin.py:341 admin.py:349 admin.py:357
msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Düz dizgiler, makale modeli özniteliği veya metod adları sağlayabilirsiniz."
#: apps.py:15
msgid "django CMS Blog"
msgstr ""
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
msgstr "django CMS Blogu"
#: cms_appconfig.py:20
msgid "application title"
msgstr ""
msgstr "uygulama başlığı"
#: cms_appconfig.py:22
msgid "object name"
msgstr ""
msgstr "nesne adı"
#: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config"
msgstr ""
msgstr "blog ayarı"
#: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs"
msgstr ""
msgstr "blog ayarları"
#: cms_appconfig.py:31
msgid "untitled"
msgstr ""
msgstr "isimsiz"
#: cms_appconfig.py:36
msgid "Post published by default"
msgstr ""
msgstr "Varsayılan olarak yayınlanan makale"
#: cms_appconfig.py:40
msgid "Permalink structure"
msgstr ""
msgstr "Kalıcı bağlantı yapısı"
#: cms_appconfig.py:45
msgid "Use placeholder and plugins for article body"
msgstr ""
msgstr "Makale gövdesi olarak yer tututcu veya eklenti kullan"
#: cms_appconfig.py:49
msgid "Use abstract field"
msgstr ""
msgstr "Soyut alanı kullan"
#: cms_appconfig.py:53
msgid "Set author"
msgstr ""
msgstr "Yazarı ekle"
#: cms_appconfig.py:53
msgid "Set author by default"
msgstr ""
msgstr "Varsayılan yazarı ekle"
#: cms_appconfig.py:57
msgid "Paginate size"
msgstr ""
msgstr "Boyutu sayfala"
#: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?"
@ -101,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr ""
#: cms_appconfig.py:70
msgid "Show empty categories in menu"
msgstr ""
#: cms_appconfig.py:72
msgid "Show categories with no post attached in the menu"
msgstr ""
#: cms_appconfig.py:75
msgid "Sitemap changefreq"
msgstr ""
#: cms_appconfig.py:73
#: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
#: cms_appconfig.py:81
msgid "Sitemap priority"
msgstr ""
#: cms_appconfig.py:78
#: cms_appconfig.py:83
msgid "Priority attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:81
#: cms_appconfig.py:86
msgid "Object type"
msgstr ""
#: cms_appconfig.py:85
#: cms_appconfig.py:90
msgid "Facebook type"
msgstr ""
#: cms_appconfig.py:89
#: cms_appconfig.py:94
msgid "Facebook application ID"
msgstr ""
#: cms_appconfig.py:93
#: cms_appconfig.py:98
msgid "Facebook profile ID"
msgstr ""
#: cms_appconfig.py:97
#: cms_appconfig.py:102
msgid "Facebook page URL"
msgstr ""
#: cms_appconfig.py:101
#: cms_appconfig.py:106
msgid "Facebook author URL"
msgstr ""
#: cms_appconfig.py:105
#: cms_appconfig.py:110
msgid "Facebook author"
msgstr ""
#: cms_appconfig.py:109
#: cms_appconfig.py:114
msgid "Twitter type"
msgstr ""
#: cms_appconfig.py:113
#: cms_appconfig.py:118
msgid "Twitter site handle"
msgstr ""
#: cms_appconfig.py:117
#: cms_appconfig.py:122
msgid "Twitter author handle"
msgstr ""
#: cms_appconfig.py:121
#: cms_appconfig.py:126
msgid "Google+ type"
msgstr ""
#: cms_appconfig.py:125
#: cms_appconfig.py:130
msgid "Google+ author name"
msgstr ""
#: cms_appconfig.py:130
#: cms_appconfig.py:135
msgid "Send notifications on post publish"
msgstr ""
#: cms_appconfig.py:131
#: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr ""
#: cms_appconfig.py:134
#: cms_appconfig.py:139
msgid "Send notifications on post update"
msgstr ""
#: cms_appconfig.py:135
#: cms_appconfig.py:140
msgid ""
"Emits a desktop notification -if enabled- when editing a published post"
msgstr ""
#: cms_menus.py:28
#: cms_apps.py:16 cms_toolbars.py:20 settings.py:115
msgid "Blog"
msgstr "Blog"
#: cms_menus.py:24
msgid "Blog menu"
msgstr ""
#: cms_toolbar.py:23
#: cms_toolbars.py:23
msgid "Post list"
msgstr "Makale listesi"
#: cms_toolbar.py:25
#: cms_toolbars.py:25
msgid "Add post"
msgstr "Makale ekle"
#: cms_toolbar.py:29
#: cms_toolbars.py:29
msgid "Edit configuration"
msgstr ""
#: cms_toolbar.py:33
#: cms_toolbars.py:33
msgid "Edit Post"
msgstr "Makaleyi düzenle"
#: cms_toolbar.py:47
#: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:57
#: cms_wizards.py:58
#, python-brace-format
msgid "New {0}"
msgstr ""
#: cms_wizards.py:61
#: cms_wizards.py:62
#, python-brace-format
msgid "Create a new {0} in {1}"
msgstr ""
#: feeds.py:48
#: feeds.py:49
#, python-format
msgid "Blog articles on %(site_name)s"
msgstr "%(site_name)s 'ki blog makaleleri"
#: models.py:57
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr ""
#: liveblog/cms_plugins.py:15
msgid "Liveblog item"
msgstr ""
#: liveblog/models.py:29
msgid "publish liveblog entry"
msgstr ""
#: liveblog/models.py:30
msgid "post date"
msgstr ""
#: liveblog/models.py:33 liveblog/models.py:108
msgid "liveblog entry"
msgstr ""
#: liveblog/models.py:34 liveblog/models.py:109
msgid "liveblog entries"
msgstr ""
#: liveblog/models.py:97 models.py:173
msgid "title"
msgstr ""
#: liveblog/models.py:99
msgid "image"
msgstr ""
#: liveblog/models.py:103
msgid "thumbnail size"
msgstr ""
#: models.py:64
msgid "parent"
msgstr "üst öğe"
#: models.py:58
#: models.py:66
msgid "created at"
msgstr "oluşturma tarihi"
#: models.py:59
#: models.py:67
msgid "modified at"
msgstr "düzenleme tarihi"
#: models.py:61 models.py:144 models.py:353
#: models.py:69 models.py:169 models.py:396
msgid "app. config"
msgstr ""
#: models.py:65
#: models.py:73
msgid "name"
msgstr "isim"
#: models.py:66 models.py:149
#: models.py:74 models.py:174
msgid "slug"
msgstr "okunaklı URL"
#: models.py:73
#: models.py:81
msgid "blog category"
msgstr "blog kategorisi"
#: models.py:74
#: models.py:82
msgid "blog categories"
msgstr "blog kategorileri"
#: models.py:114
#: models.py:138
msgid "author"
msgstr ""
#: models.py:117
#: models.py:141
msgid "created"
msgstr ""
#: models.py:118
#: models.py:142
msgid "last modified"
msgstr ""
#: models.py:119
#: models.py:143
msgid "published since"
msgstr ""
#: models.py:120
#: models.py:144
msgid "published until"
msgstr ""
#: models.py:121
#: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish"
msgstr ""
#: models.py:122
#: models.py:147
msgid "category"
msgstr "kategori"
#: models.py:124
#: models.py:149
msgid "main image"
msgstr ""
#: models.py:128
#: models.py:153
msgid "main image thumbnail"
msgstr ""
#: models.py:133
#: models.py:158
msgid "main image full"
msgstr ""
#: models.py:137
#: models.py:162
msgid "enable comments on post"
msgstr ""
#: models.py:139
#: models.py:164
msgid "Site(s)"
msgstr "Web site(ler)"
#: models.py:140
#: models.py:165
msgid ""
"Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites."
msgstr "Yayınlamak istediğiniz web siteleri seçiniz. Eğer herhangi seçim yapılmaz ise, yayında olan tüm web sitelerde görünecektir."
#: models.py:148
msgid "title"
msgstr ""
#: models.py:150
#: models.py:175
msgid "abstract"
msgstr ""
#: models.py:151
#: models.py:176
msgid "post meta description"
msgstr ""
#: models.py:153
#: models.py:178
msgid "post meta keywords"
msgstr ""
#: models.py:155
#: models.py:180
msgid "post meta title"
msgstr ""
#: models.py:156
#: models.py:181
msgid "used in title tag and social sharing"
msgstr "başlık etiketinde veya sosyal paylaşımda kullanılır"
#: models.py:159
#: models.py:184
msgid "text"
msgstr ""
#: models.py:196
#: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article"
msgstr "blog makalesi"
#: models.py:197
#: models.py:224
msgid "blog articles"
msgstr "blog makaleleri"
#: models.py:372 models.py:408
#: models.py:399
msgid "current site"
msgstr ""
#: models.py:399
msgid "Select items from the current site only"
msgstr ""
#: models.py:403
msgid "Plugin template"
msgstr ""
#: models.py:404
msgid "Select plugin template to load for this instance"
msgstr ""
#: models.py:438 models.py:474
msgid "articles"
msgstr ""
#: models.py:373
#: models.py:439
msgid "The number of latests articles to be displayed."
msgstr "Ğörütülenecek olan makale sayısı"
#: models.py:375
#: models.py:441
msgid "filter by tag"
msgstr ""
#: models.py:376
#: models.py:442
msgid "Show only the blog articles tagged with chosen tags."
msgstr "Sadece seçili etiketlerle işaretlenmiş makaleleri göster."
#: models.py:379
#: models.py:445
msgid "filter by category"
msgstr ""
#: models.py:380
#: models.py:446
msgid "Show only the blog articles tagged with chosen categories."
msgstr "Sadece seçili kategorilerde bulunan makaleleri ğöster"
#: models.py:384
#: models.py:450
#, python-format
msgid "%s latest articles by tag"
msgstr ""
#: models.py:404
#: models.py:470
msgid "authors"
msgstr ""
#: models.py:409
#: models.py:475
msgid "The number of author articles to be displayed."
msgstr "İlgili yazarın gösterilecek olan makale sayısı."
#: models.py:413
#: models.py:479
#, python-format
msgid "%s latest articles by author"
msgstr ""
#: models.py:442
#: models.py:512
msgid "generic blog plugin"
msgstr ""
#: settings.py:16
#: settings.py:17
msgid "Full date"
msgstr ""
#: settings.py:17
#: settings.py:18
msgid "Year / Month"
msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14
#: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category"
msgstr "Kategori"
#: settings.py:19
#: settings.py:20
msgid "Just slug"
msgstr ""
#: settings.py:28
#: settings.py:29
msgid "Categories and posts"
msgstr ""
#: settings.py:29
#: settings.py:30
msgid "Categories only"
msgstr ""
#: settings.py:30
#: settings.py:31
msgid "Posts only"
msgstr ""
#: settings.py:31
#: settings.py:32
msgid "None"
msgstr ""
#: settings.py:34
#: settings.py:35
msgid "always"
msgstr ""
#: settings.py:35
#: settings.py:36
msgid "hourly"
msgstr ""
#: settings.py:36
#: settings.py:37
msgid "daily"
msgstr ""
#: settings.py:37
#: settings.py:38
msgid "weekly"
msgstr ""
#: settings.py:38
#: settings.py:39
msgid "monthly"
msgstr ""
#: settings.py:39
#: settings.py:40
msgid "yearly"
msgstr ""
#: settings.py:40
#: settings.py:41
msgid "never"
msgstr ""
#: settings.py:115
#: settings.py:117
msgid "Latest Blog Articles"
msgstr "Blog'un son makaleleri"
#: settings.py:117
#: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles"
msgstr "Blog'un makale yazarı"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3
#: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags"
msgstr "Etiketler"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3
#: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories"
msgstr "Kategoriler"
#: settings.py:123 templates/djangocms_blog/plugins/archive.html:3
#: settings.py:127 templates/djangocms_blog/plugins/archive.html:3
#: templates/djangocms_blog/post_list.html:12
msgid "Archive"
msgstr "Arşiv"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more"
msgstr "devamını oku"
@ -538,18 +646,3 @@ msgstr "biri"
#: templates/djangocms_blog/post_list.html:35
msgid "next"
msgstr "sonraki"
#~ msgid "Article"
#~ msgstr "Articles"
#~ msgid "Text"
#~ msgstr "Text"
#~ msgid "blog post"
#~ msgstr "blog post"
#~ msgid "Entries by"
#~ msgstr "Entries by"
#~ msgid "No entry found."
#~ msgstr "No entry found."

View file

@ -13,9 +13,6 @@ class Migration(migrations.Migration):
('filer', '0003_thumbnailoption'),
('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'),
]
run_before = [
('cmsplugin_filer_image', '0004_auto_20160120_0950'),
]
operations = [
migrations.AlterField(

View file

@ -10,11 +10,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [
('djangocms_blog', '0017_thumbnail_move'),
('filer', '0003_thumbnailoption'),
('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'),
]
run_before = [
('cmsplugin_filer_image', '0004_auto_20160120_0950'),
]
operations = [

View file

@ -25,11 +25,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [
('djangocms_blog', '0018_thumbnail_move2'),
('filer', '0003_thumbnailoption'),
('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'),
]
run_before = [
('cmsplugin_filer_image', '0004_auto_20160120_0950'),
]
operations = [

View file

@ -10,11 +10,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [
('djangocms_blog', '0019_thumbnail_move3'),
('filer', '0003_thumbnailoption'),
('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'),
]
run_before = [
('cmsplugin_filer_image', '0004_auto_20160120_0950'),
]
operations = [

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-25 11:15
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('djangocms_blog', '0026_merge'),
]
operations = [
migrations.AddField(
model_name='post',
name='date_featured',
field=models.DateTimeField(blank=True, null=True, verbose_name='featured date'),
),
]

View file

@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.12 on 2017-03-04 09:40
from __future__ import unicode_literals
from distutils.version import LooseVersion
from django.db import migrations, models
import aldryn_apphooks_config
class Migration(migrations.Migration):
dependencies = [
('djangocms_blog', '0027_post_date_featured'),
]
if LooseVersion(aldryn_apphooks_config.__version__) > LooseVersion('0.3.0'):
operations = [
migrations.AlterField(
model_name='blogconfig',
name='namespace',
field=models.CharField(default=None, max_length=100, unique=True, verbose_name='Instance namespace'),
),
migrations.AlterField(
model_name='blogconfig',
name='type',
field=models.CharField(max_length=100, verbose_name='Type'),
),
]

View file

@ -142,6 +142,7 @@ class Post(KnockerModel, ModelMeta, TranslatableModel):
date_modified = models.DateTimeField(_('last modified'), auto_now=True)
date_published = models.DateTimeField(_('published since'), null=True, blank=True)
date_published_end = models.DateTimeField(_('published until'), null=True, blank=True)
date_featured = models.DateTimeField(_('featured date'), null=True, blank=True)
publish = models.BooleanField(_('publish'), default=False)
categories = models.ManyToManyField('djangocms_blog.BlogCategory', verbose_name=_('category'),
related_name='blog_posts', blank=True)
@ -237,12 +238,20 @@ class Post(KnockerModel, ModelMeta, TranslatableModel):
)
return hashlib.sha256(force_bytes(base_string)).hexdigest()
@property
def date(self):
if self.date_featured:
return self.date_featured
return self.date_published
def save(self, *args, **kwargs):
"""
Handle some auto configuration during save
"""
if self.publish and self.date_published is None:
self.date_published = timezone.now()
if not self.slug and self.title:
self.slug = slugify(self.title)
super(Post, self).save(*args, **kwargs)
def save_translation(self, translation, *args, **kwargs):
@ -254,10 +263,10 @@ class Post(KnockerModel, ModelMeta, TranslatableModel):
super(Post, self).save_translation(translation, *args, **kwargs)
def get_absolute_url(self, lang=None):
if not lang or lang not in self.get_available_languages():
lang = self.get_current_language()
if not lang or lang not in self.get_available_languages():
lang = get_language()
if not lang or lang not in self.get_available_languages():
lang = self.get_current_language()
with switch_language(self, lang):
category = self.categories.first()
kwargs = {}

View file

@ -9,6 +9,11 @@
<li>
{{ post.date_published|date:"DATE_FORMAT" }}
</li>
{% if post.date_featured %}
<li>
{{ post.date_featured|date:"DATE_FORMAT" }}
</li>
{% endif %}
</ul>
<ul class="post-detail tags">
{% if post.categories.exists %}

View file

@ -39,6 +39,10 @@ If you want to enable haystack support, in addition to the above:
* configure haystack according to `aldryn-search docs <https://github.com/aldryn/aldryn-search#usage>`_
and `haystack docs <http://django-haystack.readthedocs.io/en/stable/>`_.
To enable taggit filtering support in the admin install djangocms-blog with::
pip install djangocms-blog[taggit]
*********************
Minimal configuration
*********************

View file

@ -11,3 +11,4 @@ wheel
pysolr
django-parler>=1.6
aldryn-search
django-taggit-helpers

View file

@ -42,7 +42,8 @@ setup(
'djangocms-apphook-setup',
],
extras_require={
'search': ['aldryn-search']
'search': ['aldryn-search'],
'taggit-helpers': ['django-taggit-helpers']
},
license='BSD',
zip_safe=False,

View file

@ -210,11 +210,11 @@ try:
post.liveblog, 'LiveblogPlugin', language='en', body='plugin 3', publish=True,
post_date=current_date - timedelta(seconds=10)
)
self.assertTrue(Liveblog.objects.all().order_by('position').values_list('pk', flat=True), [3, 2, 1])
self.assertEqual(list(Liveblog.objects.all().order_by('position').values_list('pk', flat=True)), [1, 2, 3])
plugin.post_date = current_date - timedelta(seconds=20)
plugin.save()
self.assertTrue(Liveblog.objects.all().order_by('position').values_list('pk', flat=True), [1, 3, 2])
self.assertEqual(list(Liveblog.objects.all().order_by('position').values_list('pk', flat=True)), [2, 3, 1])
except ImportError: # pragma: no cover
pass

View file

@ -90,6 +90,52 @@ class AdminTest(BaseTest):
self.assertEqual(response.status_code, 302)
self.assertEqual(response['Location'], '/')
def test_admin_changelist_view(self):
posts = self.get_posts()
post_admin = admin.site._registry[Post]
request = self.get_page_request('/', self.user, r'/en/blog/', edit=False)
# Normal changelist, all existing posts
response = post_admin.changelist_view(request)
self.assertEqual(response.context_data['cl'].queryset.count(), len(posts))
self.assertTrue(posts[0] in response.context_data['cl'].queryset.all())
# Site 2 is added to first post, but no changelist filter, no changes
posts[0].sites.add(self.site_2)
response = post_admin.changelist_view(request)
self.assertTrue(posts[0] in response.context_data['cl'].queryset.all())
# Filtering on site, first post not shown
request = self.get_page_request('/', self.user, r'/en/blog/?sites=1', edit=False)
response = post_admin.changelist_view(request)
self.assertEqual(response.context_data['cl'].queryset.count(), len(posts) - 1)
self.assertTrue(posts[0] not in response.context_data['cl'].queryset.all())
# Removing site filtering, first post appears again
request = self.get_page_request('/', self.user, r'/en/blog/?', edit=False)
response = post_admin.changelist_view(request)
self.assertEqual(response.context_data['cl'].queryset.count(), len(posts))
self.assertTrue(posts[0] in response.context_data['cl'].queryset.all())
# Filtering on the apphook config and site
request = self.get_page_request('/', self.user, r'/en/blog/?app_config__id__exact=1&sites=1', edit=False)
response = post_admin.changelist_view(request)
# First and last post in the list are now in the queryset
self.assertEqual(response.context_data['cl'].queryset.count(), len(posts) - 2)
self.assertTrue(posts[0] not in response.context_data['cl'].queryset.all())
self.assertTrue(posts[-1] not in response.context_data['cl'].queryset.all())
# Publishing one post, two published in total
posts[1].publish = True
posts[1].save()
published = Post.objects.published(current_site=False)
request = self.get_page_request('/', self.user, r'/en/blog/?publish__exact=1', edit=False)
response = post_admin.changelist_view(request)
# The admin queryset and the model queryset are the same
self.assertEqual(response.context_data['cl'].queryset.count(), published.count())
# Published post is in the changelist queryset
self.assertTrue(posts[1] in response.context_data['cl'].queryset.all())
def test_admin_blogconfig_views(self):
post_admin = admin.site._registry[BlogConfig]
request = self.get_page_request('/', self.user, r'/en/blog/', edit=False)
@ -97,7 +143,7 @@ class AdminTest(BaseTest):
# Add view only has an empty form - no type
response = post_admin.add_view(request)
self.assertNotContains(response, 'djangocms_blog.cms_appconfig.BlogConfig')
self.assertContains(response, '<input class="vTextField" id="id_namespace" maxlength="100" name="namespace" type="text" />')
self.assertContains(response, '<input class="vTextField" id="id_namespace" maxlength="100" name="namespace" type="text"')
# Changeview is 'normal', with a few preselected items
response = post_admin.change_view(request, str(self.app_config_1.pk))
@ -106,7 +152,7 @@ class AdminTest(BaseTest):
# check that all the form fields are visible in the admin
for fieldname in BlogConfigForm.base_fields:
self.assertContains(response, 'id="id_config-%s"' % fieldname)
self.assertContains(response, '<input id="id_config-og_app_id" maxlength="200" name="config-og_app_id" type="text" />')
self.assertContains(response, '<input id="id_config-og_app_id" maxlength="200" name="config-og_app_id" type="text"')
self.assertContains(response, 'sample_app')
def test_admin_category_views(self):
@ -115,12 +161,12 @@ class AdminTest(BaseTest):
# Add view only has an empty form - no type
response = post_admin.add_view(request)
self.assertNotContains(response, 'id="id_name" maxlength="255" name="name" type="text" value="category 1" />')
self.assertNotContains(response, 'id="id_name" maxlength="255" name="name" type="text" value="category 1"')
self.assertContains(response, '<option value="%s">Blog / sample_app</option>' % self.app_config_1.pk)
# Changeview is 'normal', with a few preselected items
response = post_admin.change_view(request, str(self.category_1.pk))
self.assertContains(response, 'id="id_name" maxlength="255" name="name" type="text" value="category 1" />')
self.assertContains(response, 'id="id_name" maxlength="255" name="name" type="text" value="category 1"')
self.assertContains(response, '<option value="%s" selected="selected">Blog / sample_app</option>' % self.app_config_1.pk)
def test_admin_category_parents(self):
@ -502,18 +548,30 @@ class ModelsTest(BaseTest):
self.assertEqual(new_category.count_all_sites, 1)
self.assertEqual(self.category_1.count_all_sites, 2)
def test_slug(self):
post = Post.objects.language('en').create(title='I am a title')
self.assertEqual(post.slug, 'i-am-a-title')
def test_model_attributes(self):
self.get_pages()
self.app_config_1.app_data.config.gplus_author = 'RandomJoe'
self.app_config_1.save()
featured_date = now() + timedelta(days=40)
post = self._get_post(self._post_data[0]['en'])
post = self._get_post(self._post_data[0]['it'], post, 'it')
post.main_image = self.create_filer_image_object()
post.publish = True
post.save()
post.set_current_language('en')
self.assertEqual(post.date, post.date_published)
post.date_featured = featured_date
post.save()
self.assertEqual(post.date, featured_date)
meta_en = post.as_meta()
self.assertEqual(meta_en.og_type, get_setting('FB_TYPE'))
self.assertEqual(meta_en.title, post.title)
@ -667,6 +725,20 @@ class ModelsTest(BaseTest):
post.app_config = self.app_config_1
self.assertTrue(re.match(r'.*/%s/$' % post.slug, post.get_absolute_url()))
def test_url_language(self):
self.get_pages()
post = self._get_post(self._post_data[0]['en'])
post = self._get_post(self._post_data[0]['it'], post, 'it')
with override('it'):
self.assertEqual(post.get_current_language(), 'en')
self.assertEqual(post.get_absolute_url(), post.get_absolute_url('it'))
post.set_current_language('it')
with override('en'):
self.assertEqual(post.get_current_language(), 'it')
self.assertEqual(post.get_absolute_url(), post.get_absolute_url('en'))
def test_manager(self):
self.get_pages()
post1 = self._get_post(self._post_data[0]['en'])

View file

@ -1,5 +1,5 @@
[tox]
envlist = pep8,isort,docs,py{35,34,27}-django{19}-{cms34,cms33,cms32},py{35,34,33,27}-django{18}-cms{34,33,32}
envlist = pep8,isort,docs,py{35,34,27}-django{110}-{cms34},py{35,34,27}-django{19}-{cms34,cms33,cms32},py{35,34,33,27}-django{18}-cms{34,33,32}
[testenv]
commands = {env:COMMAND:python} cms_helper.py test djangocms_blog
@ -9,10 +9,14 @@ deps =
django18: django-filer<1.3
django18: cmsplugin-filer<1.2
django18: django-haystack
django18: djangocms-admin-style>1.2,<1.3
django19: Django>=1.9,<1.10
django19: django-mptt>=0.8
django19: django-filer<1.3
django19: cmsplugin-filer<1.2
django110: Django>=1.10,<1.11
django110: django-mptt>=0.8
django110: https://github.com/divio/django-filer/archive/develop.zip
cms32: https://github.com/divio/django-cms/archive/release/3.2.x.zip
cms32: djangocms-text-ckeditor<3.0
cms33: https://github.com/divio/django-cms/archive/release/3.3.x.zip
@ -24,7 +28,7 @@ deps =
django-meta>=1.2
html5lib<0.99999999
https://github.com/nephila/djangocms-helper/archive/release/0.9.x.zip
https://github.com/aldryn/aldryn-apphooks-config/archive/master.zip
aldryn-apphooks-config
https://github.com/nephila/djangocms-apphook-setup/archive/master.zip
-r{toxinidir}/requirements-test.txt