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='pep8'
- TOXENV='isort' - TOXENV='isort'
- TOXENV='docs' - TOXENV='docs'
- DJANGO='django110' CMS='cms34'
- DJANGO='django19' CMS='cms34' - DJANGO='django19' CMS='cms34'
- DJANGO='django19' CMS='cms33' - DJANGO='django19' CMS='cms33'
- DJANGO='django19' CMS='cms32' - DJANGO='django19' CMS='cms32'

View file

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

View file

@ -19,12 +19,33 @@ History
* Added plugins templateset. * Added plugins templateset.
* Improved category admin to avoid circular relationships. * Improved category admin to avoid circular relationships.
* Dropped strict dependency on aldryn-search, haystack. Install separately for search support. * 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 * Optimized querysets
* Fixed slug generation in wizard
****************** ******************
0.8.8 (2016-09-04) 0.8.8 (2016-09-04)

View file

@ -36,6 +36,7 @@ Supported Django versions:
* Django 1.8 * Django 1.8
* Django 1.9 * Django 1.9
* Django 1.10
Supported django CMS versions: 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 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:: 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 python manage.py migrate
Migrating cmsplugin-filer to 1.1 and djangocms-blog 0.8.5+ 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 If you already a djangocms-blog 0.8.5+ up to 0.8.11, upgrade to 0.8.11, then
doing the upgrade:: 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 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 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 .. 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 backward migration won't alter anything on the database, and it will just allow the code
to migrate ``ThumbnailOption`` from cmsplugin-filer to filer 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 Features

View file

@ -1,5 +1,8 @@
# -*- coding: utf-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): class Form(forms.BaseForm):

View file

@ -3,11 +3,13 @@
from __future__ import absolute_import, print_function, unicode_literals from __future__ import absolute_import, print_function, unicode_literals
import os import os
import sys
from tempfile import mkdtemp from tempfile import mkdtemp
def gettext(s): return s def gettext(s):
return s
HELPER_SETTINGS = dict( HELPER_SETTINGS = dict(
@ -107,6 +109,7 @@ HELPER_SETTINGS = dict(
try: try:
import cmsplugin_filer_image.migrations_django # pragma: no cover # NOQA import cmsplugin_filer_image.migrations_django # pragma: no cover # NOQA
HELPER_SETTINGS[ HELPER_SETTINGS[
'MIGRATION_MODULES' 'MIGRATION_MODULES'
]['cmsplugin_filer_image'] = 'cmsplugin_filer_image.migrations_django' ]['cmsplugin_filer_image'] = 'cmsplugin_filer_image.migrations_django'
@ -116,9 +119,10 @@ except ImportError:
try: try:
import knocker # pragma: no cover # NOQA import knocker # pragma: no cover # NOQA
HELPER_SETTINGS['INSTALLED_APPS'].append('knocker') HELPER_SETTINGS['INSTALLED_APPS'].append('knocker')
HELPER_SETTINGS['INSTALLED_APPS'].append('channels') 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'] = { HELPER_SETTINGS['CHANNEL_LAYERS'] = {
'default': { 'default': {
'BACKEND': 'asgiref.inmemory.ChannelLayer', 'BACKEND': 'asgiref.inmemory.ChannelLayer',
@ -129,6 +133,9 @@ except ImportError:
pass pass
os.environ['AUTH_USER_MODEL'] = 'tests.test_utils.CustomUser' os.environ['AUTH_USER_MODEL'] = 'tests.test_utils.CustomUser'
if 'server' in sys.argv[:3]:
HELPER_SETTINGS['BLOG_AUTO_SETUP'] = True
def run(): def run():
from djangocms_helper import runner from djangocms_helper import runner
@ -136,7 +143,6 @@ def run():
def setup(): def setup():
import sys
from djangocms_helper import runner from djangocms_helper import runner
runner.setup('djangocms_blog', sys.modules[__name__], use_cms=True) 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' __author__ = 'Iacopo Spalletti'
__email__ = 'i.spalletti@nephila.it' __email__ = 'i.spalletti@nephila.it'
__version__ = '0.9b4' __version__ = '0.9b9'
default_app_config = 'djangocms_blog.apps.BlogAppConfig' 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 aldryn_apphooks_config.admin import BaseAppHookConfig, ModelAppHookConfig
from cms.admin.placeholderadmin import FrontendEditableAdminMixin, PlaceholderAdminMixin from cms.admin.placeholderadmin import FrontendEditableAdminMixin, PlaceholderAdminMixin
from cms.models import CMSPlugin from cms.models import CMSPlugin, ValidationError
from django import forms from django import forms
from django.apps import apps from django.apps import apps
from django.conf import settings from django.conf import settings
@ -15,7 +15,7 @@ from django.contrib.sites.models import Site
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from django.http import HttpResponseRedirect from django.http import HttpResponseRedirect
from django.utils import timezone 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 django.utils.translation import get_language_from_request, ugettext_lazy as _
from parler.admin import TranslatableAdmin 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 ") 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): class BlogCategoryAdmin(EnhancedModelAdminMixin, ModelAppHookConfig, TranslatableAdmin):
form = CategoryAdminForm form = CategoryAdminForm
list_display = [ list_display = [
@ -110,6 +134,7 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
'date_published_end' 'date_published_end'
] ]
list_filter = ('app_config',) list_filter = ('app_config',)
search_fields = ('translations__title',)
date_hierarchy = 'date_published' date_hierarchy = 'date_published'
raw_id_fields = ['author'] raw_id_fields = ['author']
actions = [ actions = [
@ -126,17 +151,17 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
(None, { (None, {
'fields': [['title', 'categories', 'publish', 'app_config']] 'fields': [['title', 'categories', 'publish', 'app_config']]
}), }),
('Info', { (_('Info'), {
'fields': [['slug', 'tags'], 'fields': [['slug', 'tags'],
['date_published', 'date_published_end'], ['date_published', 'date_published_end', 'date_featured'],
['enable_comments']], ['enable_comments']],
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
('Images', { (_('Images'), {
'fields': [['main_image', 'main_image_thumbnail', 'main_image_full']], 'fields': [['main_image', 'main_image_thumbnail', 'main_image_full']],
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
('SEO', { (_('SEO'), {
'fields': [['meta_description', 'meta_title', 'meta_keywords']], 'fields': [['meta_description', 'meta_title', 'meta_keywords']],
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
@ -147,6 +172,21 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
} }
_sites = None _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): def get_urls(self):
""" """
Customize the modeladmin urls Customize the modeladmin urls
@ -325,32 +365,32 @@ class BlogConfigAdmin(BaseAppHookConfig, TranslatableAdmin):
(None, { (None, {
'fields': ('type', 'namespace', 'app_title', 'object_name') 'fields': ('type', 'namespace', 'app_title', 'object_name')
}), }),
('Generic', { (_('Generic'), {
'fields': ( 'fields': (
'config.default_published', 'config.use_placeholder', 'config.use_abstract', 'config.default_published', 'config.use_placeholder', 'config.use_abstract',
'config.set_author', 'config.set_author',
) )
}), }),
('Layout', { (_('Layout'), {
'fields': ( 'fields': (
'config.paginate_by', 'config.url_patterns', 'config.template_prefix', 'config.paginate_by', 'config.url_patterns', 'config.template_prefix',
'config.menu_structure', 'config.menu_empty_categories', 'config.menu_structure', 'config.menu_empty_categories',
), ),
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
('Notifications', { (_('Notifications'), {
'fields': ( 'fields': (
'config.send_knock_create', 'config.send_knock_update' 'config.send_knock_create', 'config.send_knock_update'
), ),
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
('Sitemap', { (_('Sitemap'), {
'fields': ( 'fields': (
'config.sitemap_changefreq', 'config.sitemap_priority', 'config.sitemap_changefreq', 'config.sitemap_priority',
), ),
'classes': ('collapse',) 'classes': ('collapse',)
}), }),
('Meta', { (_('Meta'), {
'fields': ( 'fields': (
'config.object_type', 'config.object_type',
) )

View file

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

View file

@ -3,8 +3,9 @@ from __future__ import absolute_import, print_function, unicode_literals
import json import json
import django
from channels import Group 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 cms.utils.plugins import reorder_plugins
from django.db import models from django.db import models
from django.template import Context from django.template import Context
@ -47,7 +48,7 @@ class LiveblogInterface(models.Model):
items.extend( items.extend(
model.objects.filter(placeholder=self.placeholder).values('pk', 'post_date') 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) reorder_plugins(self.placeholder, None, self.language, order)
@property @property
@ -87,6 +88,12 @@ class Liveblog(LiveblogInterface, AbstractText):
""" """
Basic liveblog plugin model 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) title = models.CharField(_('title'), max_length=255)
image = FilerImageField( image = FilerImageField(
verbose_name=_('image'), blank=True, null=True, on_delete=models.SET_NULL, 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
@ -8,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-16 09:35+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: Bashar Al-Abdulhadi\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Arabic (http://www.transifex.com/nephila/djangocms-blog/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/nephila/djangocms-blog/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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" "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" "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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "" msgstr ""
#: apps.py:15 #: apps.py:15
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "" msgstr "مدونة نظام ادارة المحتوى لجانغو"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "المدونة"
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
@ -40,12 +73,10 @@ msgid "object name"
msgstr "اسم الكائن" msgstr "اسم الكائن"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "إعدادات المدونة" msgstr "إعدادات المدونة"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "إعدادات المدونة" msgstr "إعدادات المدونة"
@ -55,7 +86,7 @@ msgstr "غير معنون"
#: cms_appconfig.py:36 #: cms_appconfig.py:36
msgid "Post published by default" msgid "Post published by default"
msgstr "" msgstr "نشر التدوينة تلقائيا"
#: cms_appconfig.py:40 #: cms_appconfig.py:40
msgid "Permalink structure" msgid "Permalink structure"
@ -75,11 +106,11 @@ msgstr "ضبط الكاتب"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author by default" msgid "Set author by default"
msgstr "" msgstr "ضبطها من قبل الكاتب"
#: cms_appconfig.py:57 #: cms_appconfig.py:57
msgid "Paginate size" msgid "Paginate size"
msgstr "" msgstr "عدد تعدد الصفحات"
#: cms_appconfig.py:58 #: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?" msgid "When paginating list views, how many articles per page?"
@ -102,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr "" msgstr ""
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr ""
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "" msgstr ""
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "" msgstr ""
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr ""
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr ""
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr ""
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr ""
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr ""
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "" msgstr ""
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr ""
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr ""
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr ""
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr ""
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "" msgstr ""
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "" msgstr ""
#: cms_appconfig.py:131 #: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "" msgstr ""
#: cms_appconfig.py:134 #: cms_appconfig.py:139
msgid "Send notifications on post update" msgid "Send notifications on post update"
msgstr "" msgstr ""
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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" msgid "Blog menu"
msgstr "" msgstr ""
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "قائمة المواضيع" msgstr "قائمة المواضيع"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "إضافة موضوع" msgstr "إضافة موضوع"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "" msgstr ""
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "التعديل على موضوع" msgstr "التعديل على موضوع"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr ""
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "" msgstr ""
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "مواضيع المدونة على %(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" msgid "parent"
msgstr "" msgstr ""
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "" msgstr ""
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "" msgstr ""
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "" msgstr ""
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "" msgstr ""
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "" msgstr ""
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "" msgstr ""
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "" msgstr ""
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "" msgstr ""
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "" msgstr ""
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "" msgstr ""
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "" msgstr ""
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "" msgstr ""
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "" msgstr ""
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "" msgstr ""
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "" msgstr ""
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "" msgstr ""
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "" msgstr ""
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "" msgstr ""
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "" msgstr ""
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " all the configured sites."
msgstr "" msgstr ""
#: models.py:148 #: models.py:175
msgid "title"
msgstr ""
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "" msgstr ""
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "" msgstr ""
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "" msgstr ""
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "" msgstr ""
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "" msgstr ""
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "" msgstr ""
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "" msgstr ""
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "" 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" msgid "articles"
msgstr "" msgstr ""
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "" msgstr ""
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "" msgstr ""
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "" msgstr ""
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "" msgstr ""
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "" msgstr ""
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "" msgstr ""
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "" msgstr ""
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "" msgstr ""
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "" msgstr ""
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "" msgstr ""
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "" msgstr ""
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "" msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14 #: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category" msgid "Category"
msgstr "" msgstr ""
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr ""
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "" msgstr ""
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "" msgstr ""
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "" msgstr ""
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "" msgstr ""
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "" msgstr ""
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "" msgstr ""
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "" msgstr ""
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "" msgstr ""
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "" msgstr ""
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "" msgstr ""
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "" msgstr ""
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "آخر مواضيع المدونة" msgstr "آخر مواضيع المدونة"
#: settings.py:117 #: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles" msgid "Author Blog Articles"
msgstr "ناشر مواضيع المدونة" msgstr "ناشر مواضيع المدونة"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3 #: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags" msgid "Tags"
msgstr "علامات" msgstr "علامات"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "الأقسام" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "الأرشيف" msgstr "الأرشيف"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "" msgstr ""
@ -543,18 +650,3 @@ msgstr ""
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Christoph Reimers <christoph@superservice-international.com>, 2014 # Christoph Reimers <christoph@superservice-international.com>, 2014
# fsbraun <fsbraun@gmx.de>, 2016 # fsbraun <fsbraun@gmx.de>, 2016
# fsbraun <fsbraun@gmx.de>, 2016-2017
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-25 21:05+0000\n" "PO-Revision-Date: 2017-03-06 20:01+0000\n"
"Last-Translator: fsbraun <fsbraun@gmx.de>\n" "Last-Translator: fsbraun <fsbraun@gmx.de>\n"
"Language-Team: German (http://www.transifex.com/nephila/djangocms-blog/language/de/)\n" "Language-Team: German (http://www.transifex.com/nephila/djangocms-blog/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,7 +21,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Strings und Post-Attribute oder -Methoden erlaubt" msgstr "Strings und Post-Attribute oder -Methoden erlaubt"
@ -27,10 +65,6 @@ msgstr "Strings und Post-Attribute oder -Methoden erlaubt"
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "Name der Anwendung" msgstr "Name der Anwendung"
@ -40,12 +74,10 @@ msgid "object name"
msgstr "Objektbezeichnung" msgstr "Objektbezeichnung"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "Einstellung" msgstr "Einstellung"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "Einstellungen" msgstr "Einstellungen"
@ -67,15 +99,15 @@ msgstr "Placeholder und Plugins für Beitrag verwenden"
#: cms_appconfig.py:49 #: cms_appconfig.py:49
msgid "Use abstract field" msgid "Use abstract field"
msgstr "Zusammenfassung nutzen" msgstr "Feld Zusammenfassung nutzen"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author" msgid "Set author"
msgstr "Autoren eintragen" msgstr "Autor eintragen"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author by default" msgid "Set author by default"
msgstr "Autoren standardmäßig eintragen" msgstr "Autor standardmäßig eintragen"
#: cms_appconfig.py:57 #: cms_appconfig.py:57
msgid "Paginate size" 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 #: cms_appconfig.py:61
msgid "Template prefix" msgid "Template prefix"
msgstr "Template-Prefix" msgstr "Vorlagen-Ordner"
#: cms_appconfig.py:62 #: cms_appconfig.py:62
msgid "Alternative directory to load the blog templates from" 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 #: cms_appconfig.py:65
msgid "Menu structure" msgid "Menu structure"
@ -102,375 +134,451 @@ msgid "Structure of the django CMS menu"
msgstr "Aufbau des Django CMS-Menü" msgstr "Aufbau des Django CMS-Menü"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "Sitemap-Anpassungen" msgstr "Sitemap-Anpassungen"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Anpassungsfrequenz-Einstellung für Sitemap-Einträge" msgstr "Anpassungsfrequenz-Einstellung für Sitemap-Einträge"
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Sitemap-Priorität" msgstr "Sitemap-Priorität"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Prioritäts-Einstellung für Sitemap-Einträge" msgstr "Prioritäts-Einstellung für Sitemap-Einträge"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Objekt-Typ" msgstr "Objekt-Typ"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "Facebook-Typ" msgstr "Facebook-Typ"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "Facebook Application ID" msgstr "Facebook Application ID"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "Facebook Profil-ID" msgstr "Facebook Profil-ID"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "Facebook Seiten-URL" msgstr "Facebook Seiten-URL"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "Facebook Autoren-URL" msgstr "Facebook Autoren-URL"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Facebook Autor" msgstr "Facebook Autor"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "Twitter-Typ" msgstr "Twitter-Typ"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr "Twitter Site-Kennung"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr "Twitter Autoren-Kennung"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "Google+ Typ" msgstr "Google+ Typ"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "Google+ Autoren-Name" msgstr "Google+ Autoren-Name"
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" 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" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Wenn aktiviert: Desktop-Mitteilung senden, wenn Beiträge veröffentlicht werden" 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" msgid "Send notifications on post update"
msgstr "Mitteilung bei Aktualisierungen senden" msgstr "Mitteilung bei Aktualisierungen senden"
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "Emits a desktop notification -if enabled- when editing a published post"
msgstr "Wenn aktiviert: Desktop-Mitteilung senden, wenn Beiträge aktualisiert werden" 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" msgid "Blog menu"
msgstr "Blog-Menü" msgstr "Blog-Menü"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Post Liste" msgstr "Betragsübersicht anzeigen"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Post hinzufügen" msgstr "Beitrag hinzufügen"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Einstellungen bearbeiten" msgstr "Einstellungen bearbeiten"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Post bearbeiten" msgstr "Beitrag bearbeiten"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "{0} jetzt veröffentlichen" msgstr "{0} jetzt veröffentlichen"
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Neuer {0}" msgstr "Neue(r) {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" 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 #, python-format
msgid "Blog articles on %(site_name)s" 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 #: liveblog/apps.py:10
msgid "parent" msgid "Liveblog"
msgstr "übergeordnetes Element" msgstr "Liveblog"
#: models.py:58 #: liveblog/cms_plugins.py:15
msgid "created at" msgid "Liveblog item"
msgstr "erstellt am" msgstr "Liveblog-Meldung"
#: models.py:59 #: liveblog/models.py:29
msgid "modified at" msgid "publish liveblog entry"
msgstr "bearbeitet am" msgstr "Liveblog-Meldung veröffentlichen"
#: models.py:61 models.py:144 models.py:353 #: liveblog/models.py:30
msgid "app. config" msgid "post date"
msgstr "App-Einstellung" msgstr "Veröffentlichungsdatum"
#: models.py:65 #: liveblog/models.py:33 liveblog/models.py:108
msgid "name" msgid "liveblog entry"
msgstr "Name" msgstr "Liveblog-Meldung"
#: models.py:66 models.py:149 #: liveblog/models.py:34 liveblog/models.py:109
msgid "slug" msgid "liveblog entries"
msgstr "slug" msgstr "Liveblog-Meldungen"
#: models.py:73 #: liveblog/models.py:97 models.py:173
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
msgid "title" msgid "title"
msgstr "Titel" 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" msgid "abstract"
msgstr "Zusammenfassung" msgstr "Zusammenfassung"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "Meta-Beschreibung" msgstr "Meta-Beschreibung"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "Meta-Stichwörter" msgstr "Meta-Stichwörter"
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "Meta-Titel" msgstr "Meta-Titel"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" 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" msgid "text"
msgstr "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" msgid "blog article"
msgstr "Blog-Artikel" msgstr "Blog-Beitrag"
#: models.py:197 #: models.py:224
msgid "blog articles" 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" msgid "articles"
msgstr "Beiträge" msgstr "Beiträge"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." 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" msgid "filter by tag"
msgstr "Nach Schlagwort filtern" msgstr "Nach Schlagwort filtern"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." 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" msgid "filter by category"
msgstr "Nach Kategorie filtern" msgstr "Nach Kategorie filtern"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." 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 #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s neueste Beiträge nach Schlagwort" msgstr "%s neueste Beiträge nach Schlagwort"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "Autoren" msgstr "Autoren"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." 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 #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s neueste Beiträge nach Autor" msgstr "%s neueste Beiträge nach Autor"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "Generisches Blog-Plugin" msgstr "Generisches Blog-Plugin"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Jahr / Monat / Tag" msgstr "Jahr / Monat / Tag"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Jahr / Monat" 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" msgid "Category"
msgstr "Kategorie" msgstr "Kategorie"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "Nur Slug" msgstr "Nur Slug"
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Kategorien und Beiträge" msgstr "Kategorien und Beiträge"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Nur Kategorien" msgstr "Nur Kategorien"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Nur Beiträge" msgstr "Nur Beiträge"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "Kein Menü" msgstr "Kein Menü"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "Fortlaufend" msgstr "Fortlaufend"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "Stündlich" msgstr "Stündlich"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "Täglich" msgstr "Täglich"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "Wöchentlich" msgstr "Wöchentlich"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "Monatlich" msgstr "Monatlich"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "Jährlich" msgstr "Jährlich"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "Nie" msgstr "Nie"
#: settings.py:115
msgid "Latest Blog Articles"
msgstr "Letzte Blog-Einträge"
#: settings.py:117 #: 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" 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" 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" msgid "Categories"
msgstr "Kategorien" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archiv" msgstr "Archiv"
#: settings.py:140
msgid "Default template"
msgstr "Standard-Vorlage"
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "weiterlesen" msgstr "weiterlesen"
@ -487,14 +595,14 @@ msgstr "von"
msgid "1 article" msgid "1 article"
msgid_plural "%(articles)s articles" msgid_plural "%(articles)s articles"
msgstr[0] "Ein Artikel" 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/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11 #: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11 #: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11 #: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles" msgid "0 articles"
msgstr "0 Artikel" msgstr "0 Beiträge"
#: templates/djangocms_blog/plugins/archive.html:26 #: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15 #: templates/djangocms_blog/plugins/authors.html:15
@ -502,11 +610,11 @@ msgstr "0 Artikel"
#: templates/djangocms_blog/plugins/tags.html:15 #: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21 #: templates/djangocms_blog/post_list.html:21
msgid "No article found." msgid "No article found."
msgstr "Kein Artikel gefunden." msgstr "Keinen Beitrag gefunden."
#: templates/djangocms_blog/plugins/authors.html:3 #: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors" msgid "Authors"
msgstr "Authoren" msgstr "Autoren"
#: templates/djangocms_blog/plugins/categories.html:15 #: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found." msgid "No categories found."
@ -518,7 +626,7 @@ msgstr "Artikel von"
#: templates/djangocms_blog/post_list.html:13 #: templates/djangocms_blog/post_list.html:13
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr "Schlagwort"
#: templates/djangocms_blog/post_list.html:24 #: templates/djangocms_blog/post_list.html:24
msgid "Back" msgid "Back"
@ -539,18 +647,3 @@ msgstr "von"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "nächste" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
# Iacopo Spalletti, 2014. #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2014-03-05 18:09+0100\n"
"Last-Translator: Iacopo Spalletti\n" "Last-Translator: Iacopo Spalletti\n"
"Language-Team: Italian <i.spalletti@nephila.it>\n" "Language-Team: Italian <i.spalletti@nephila.it>\n"
@ -17,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "" msgstr ""
@ -25,10 +63,6 @@ msgstr ""
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "" msgstr ""
#: cms_app.py:15 cms_toolbar.py:19 settings.py:111
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "" msgstr ""
@ -38,21 +72,16 @@ msgid "object name"
msgstr "" msgstr ""
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#, fuzzy
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "blog categories" msgstr ""
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#, fuzzy
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "blog categories" msgstr ""
#: cms_appconfig.py:31 #: cms_appconfig.py:31
#, fuzzy
msgid "untitled" msgid "untitled"
msgstr "Title" msgstr ""
#: cms_appconfig.py:36 #: cms_appconfig.py:36
msgid "Post published by default" msgid "Post published by default"
@ -71,9 +100,8 @@ msgid "Use abstract field"
msgstr "" msgstr ""
#: cms_appconfig.py:53 #: cms_appconfig.py:53
#, fuzzy
msgid "Set author" msgid "Set author"
msgstr "Author" msgstr ""
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author by default" msgid "Set author by default"
@ -104,382 +132,457 @@ msgid "Structure of the django CMS menu"
msgstr "" msgstr ""
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr ""
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "" msgstr ""
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "" msgstr ""
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr ""
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr ""
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr ""
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr ""
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr ""
#: cms_appconfig.py:105 #: cms_appconfig.py:110
#, fuzzy
msgid "Facebook author" msgid "Facebook author"
msgstr "Author" msgstr ""
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr ""
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr ""
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr ""
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr ""
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "" 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" msgid "Post list"
msgstr "Post list" msgstr ""
#: cms_toolbar.py:24 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Add post" msgstr ""
#: cms_toolbar.py:28 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "" msgstr ""
#: cms_toolbar.py:32 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "" msgstr ""
#: cms_wizards.py:47 #: cms_toolbars.py:47
#, python-brace-format
msgid "Publish {0} now"
msgstr ""
#: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: cms_wizards.py:51 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "" msgstr ""
#: feeds.py:24 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Blog articles on %(site_name)s" msgstr ""
#: menu.py:16 #: liveblog/apps.py:10
#, fuzzy msgid "Liveblog"
msgid "Blog menu" msgstr ""
msgstr "blog category"
#: 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" msgid "parent"
msgstr "parent" msgstr ""
#: models.py:35 #: models.py:66
msgid "created at" msgid "created at"
msgstr "created at" msgstr ""
#: models.py:36 #: models.py:67
msgid "modified at" 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" msgid "app. config"
msgstr "" msgstr ""
#: models.py:42 #: models.py:73
msgid "name" msgid "name"
msgstr "name" msgstr ""
#: models.py:43 models.py:128 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "slug" msgstr ""
#: models.py:50 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "blog category" msgstr ""
#: models.py:51 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "blog categories" msgstr ""
#: models.py:91 #: models.py:138
#, fuzzy
msgid "author" msgid "author"
msgstr "Author" msgstr ""
#: models.py:94 #: models.py:141
#, fuzzy
msgid "created" msgid "created"
msgstr "created at" msgstr ""
#: models.py:95 #: models.py:142
#, fuzzy
msgid "last modified" msgid "last modified"
msgstr "modified at" msgstr ""
#: models.py:96 #: models.py:143
#, fuzzy
msgid "published since" msgid "published since"
msgstr "Published Since" msgstr ""
#: models.py:98 #: models.py:144
#, fuzzy
msgid "published until" msgid "published until"
msgstr "Published Until" msgstr ""
#: models.py:100 #: models.py:145
#, fuzzy msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "Publish" msgstr ""
#: models.py:101 #: models.py:147
msgid "category" msgid "category"
msgstr "category" msgstr ""
#: models.py:103 #: models.py:149
#, fuzzy
msgid "main image" msgid "main image"
msgstr "Main image" msgstr ""
#: models.py:107 #: models.py:153
#, fuzzy
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "Main image thumbnail" msgstr ""
#: models.py:112 #: models.py:158
#, fuzzy
msgid "main image full" msgid "main image full"
msgstr "Main image full" msgstr ""
#: models.py:116 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "" msgstr ""
#: models.py:118 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "" msgstr ""
#: models.py:119 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in " "Select sites in which to show the post. If none is set it will be visible in "
"all the configured sites." "all the configured sites."
msgstr "" msgstr ""
#: models.py:127 #: models.py:175
#, fuzzy
msgid "title"
msgstr "Title"
#: models.py:129
msgid "abstract" msgid "abstract"
msgstr "" msgstr ""
#: models.py:130 #: models.py:176
#, fuzzy
msgid "post meta description" msgid "post meta description"
msgstr "Post meta description" msgstr ""
#: models.py:132 #: models.py:178
#, fuzzy
msgid "post meta keywords" msgid "post meta keywords"
msgstr "Post meta description" msgstr ""
#: models.py:134 #: models.py:180
#, fuzzy
msgid "post meta title" msgid "post meta title"
msgstr "Post meta description" msgstr ""
#: models.py:135 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "" msgstr ""
#: models.py:138 #: models.py:184
msgid "text" msgid "text"
msgstr "" msgstr ""
#: models.py:175 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "blog article" msgstr ""
#: models.py:176 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "blog articles" msgstr ""
#: models.py:294 models.py:328 #: models.py:399
#, fuzzy 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" msgid "articles"
msgstr "0 articles" msgstr ""
#: models.py:295 #: models.py:439
msgid "The number of latests articles to be displayed." 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" msgid "filter by tag"
msgstr "" msgstr ""
#: models.py:298 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Show only the blog articles tagged with chosen tags." msgstr ""
#: models.py:301 #: models.py:445
#, fuzzy
msgid "filter by category" msgid "filter by category"
msgstr "blog category" msgstr ""
#: models.py:302 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." 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 #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "" msgstr ""
#: models.py:324 #: models.py:470
#, fuzzy
msgid "authors" msgid "authors"
msgstr "Authors" msgstr ""
#: models.py:329 #: models.py:475
msgid "The number of author articles to be displayed." 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 #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "" msgstr ""
#: models.py:362 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "" msgstr ""
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "" msgstr ""
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "" msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14 #: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category" msgid "Category"
msgstr "Category" msgstr ""
#: settings.py:19 #: settings.py:20
#, fuzzy
msgid "Just slug" msgid "Just slug"
msgstr "slug" msgstr ""
#: settings.py:28
#, fuzzy
msgid "Categories and posts"
msgstr "Categories"
#: settings.py:29 #: settings.py:29
#, fuzzy msgid "Categories and posts"
msgid "Categories only" msgstr ""
msgstr "Categories"
#: settings.py:30 #: settings.py:30
#, fuzzy msgid "Categories only"
msgid "Posts only" msgstr ""
msgstr "Posts"
#: settings.py:31 #: settings.py:31
msgid "Posts only"
msgstr ""
#: settings.py:32
msgid "None" msgid "None"
msgstr "" msgstr ""
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "" msgstr ""
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "" msgstr ""
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "" msgstr ""
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "" msgstr ""
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "" msgstr ""
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "" msgstr ""
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "" msgstr ""
#: settings.py:113 #: settings.py:117
msgid "Latest Blog Articles" 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" 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" 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" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archive" msgstr ""
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "read more" msgstr ""
#: templates/djangocms_blog/includes/blog_meta.html:6 #: templates/djangocms_blog/includes/blog_meta.html:6
msgid "by" msgid "by"
msgstr "by" msgstr ""
#: templates/djangocms_blog/plugins/archive.html:17 #: templates/djangocms_blog/plugins/archive.html:17
#: templates/djangocms_blog/plugins/authors.html:10 #: templates/djangocms_blog/plugins/authors.html:10
@ -488,15 +591,15 @@ msgstr "by"
#, python-format #, python-format
msgid "1 article" msgid "1 article"
msgid_plural "%(articles)s articles" msgid_plural "%(articles)s articles"
msgstr[0] "1 article" msgstr[0] ""
msgstr[1] "%(articles)s articles" msgstr[1] ""
#: templates/djangocms_blog/plugins/archive.html:18 #: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11 #: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11 #: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11 #: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles" msgid "0 articles"
msgstr "0 articles" msgstr ""
#: templates/djangocms_blog/plugins/archive.html:26 #: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15 #: templates/djangocms_blog/plugins/authors.html:15
@ -504,57 +607,40 @@ msgstr "0 articles"
#: templates/djangocms_blog/plugins/tags.html:15 #: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21 #: templates/djangocms_blog/post_list.html:21
msgid "No article found." msgid "No article found."
msgstr "No article found." msgstr ""
#: templates/djangocms_blog/plugins/authors.html:3 #: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors" msgid "Authors"
msgstr "Authors" msgstr ""
#: templates/djangocms_blog/plugins/categories.html:15 #: templates/djangocms_blog/plugins/categories.html:15
#, fuzzy
msgid "No categories found." msgid "No categories found."
msgstr "No article found." msgstr ""
#: templates/djangocms_blog/post_list.html:11 #: templates/djangocms_blog/post_list.html:11
msgid "Articles by" msgid "Articles by"
msgstr "Articles by" msgstr ""
#: templates/djangocms_blog/post_list.html:13 #: templates/djangocms_blog/post_list.html:13
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr ""
#: templates/djangocms_blog/post_list.html:24 #: templates/djangocms_blog/post_list.html:24
msgid "Back" msgid "Back"
msgstr "Back" msgstr ""
#: templates/djangocms_blog/post_list.html:29 #: templates/djangocms_blog/post_list.html:29
msgid "previous" msgid "previous"
msgstr "previous" msgstr ""
#: templates/djangocms_blog/post_list.html:32 #: templates/djangocms_blog/post_list.html:32
msgid "Page" msgid "Page"
msgstr "Page" msgstr ""
#: templates/djangocms_blog/post_list.html:32 #: templates/djangocms_blog/post_list.html:32
msgid "of" msgid "of"
msgstr "of" msgstr ""
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "next" msgstr ""
#, 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."

View file

@ -1,3 +1,4 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
@ -7,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Spanish (http://www.transifex.com/nephila/djangocms-blog/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/nephila/djangocms-blog/language/es/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "" msgstr ""
@ -26,10 +63,6 @@ msgstr ""
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "" msgstr ""
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "" msgstr ""
@ -39,12 +72,10 @@ msgid "object name"
msgstr "" msgstr ""
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "" msgstr ""
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "" msgstr ""
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "" msgstr ""
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr ""
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "" msgstr ""
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "" msgstr ""
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr ""
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr ""
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr ""
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr ""
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr ""
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "" msgstr ""
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr ""
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr ""
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr ""
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr ""
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "" msgstr ""
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "" msgstr ""
#: cms_appconfig.py:131 #: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "" msgstr ""
#: cms_appconfig.py:134 #: cms_appconfig.py:139
msgid "Send notifications on post update" msgid "Send notifications on post update"
msgstr "" msgstr ""
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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 "Blog"
#: cms_menus.py:24
msgid "Blog menu" msgid "Blog menu"
msgstr "" msgstr ""
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Lista de entradas" msgstr "Lista de entradas"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Añadir entradas" msgstr "Añadir entradas"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "" msgstr ""
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Editar entrada" msgstr "Editar entrada"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr ""
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "" msgstr ""
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Artículos del blog en %(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" msgid "parent"
msgstr "padre" msgstr "padre"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "Creado en" msgstr "Creado en"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "Actualizado en" msgstr "Actualizado en"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "" msgstr ""
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "nombre" msgstr "nombre"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "slug" msgstr "slug"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "categoría del blog" msgstr "categoría del blog"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "categorías del blog" msgstr "categorías del blog"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "" msgstr ""
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "" msgstr ""
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "" msgstr ""
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "" msgstr ""
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "" msgstr ""
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "" msgstr ""
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "categoría" msgstr "categoría"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "" msgstr ""
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "" msgstr ""
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "" msgstr ""
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "" msgstr ""
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Sitio(s)" msgstr "Sitio(s)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " 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." 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 #: models.py:175
msgid "title"
msgstr ""
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "" msgstr ""
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "" msgstr ""
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "" msgstr ""
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "" msgstr ""
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "usado en la etiqueta de título y al compartir en las redes sociales" msgstr "usado en la etiqueta de título y al compartir en las redes sociales"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "" msgstr ""
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "artículo del blog" msgstr "artículo del blog"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "artículos del blog" 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" msgid "articles"
msgstr "" msgstr ""
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "El número de últimos artículos a mostrar." msgstr "El número de últimos artículos a mostrar."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "" msgstr ""
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Mostrar solo los artículos del blog etiquetados con las etiquetas elegidas." msgstr "Mostrar solo los artículos del blog etiquetados con las etiquetas elegidas."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "" msgstr ""
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Mostrar solo los artículos del blog etiquetados con las categorías elegidas." msgstr "Mostrar solo los artículos del blog etiquetados con las categorías elegidas."
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "" msgstr ""
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "" msgstr ""
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "El número de autores de artículo a mostrar." msgstr "El número de autores de artículo a mostrar."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "" msgstr ""
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "" msgstr ""
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "" msgstr ""
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "" msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14 #: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category" msgid "Category"
msgstr "Categoría" msgstr "Categoría"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr ""
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "" msgstr ""
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "" msgstr ""
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "" msgstr ""
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "" msgstr ""
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "" msgstr ""
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "" msgstr ""
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "" msgstr ""
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "" msgstr ""
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "" msgstr ""
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "" msgstr ""
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "" msgstr ""
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Últimos artículos del blog" 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" msgid "Author Blog Articles"
msgstr "Artículos del blog por author" 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" msgid "Tags"
msgstr "Etiquetas" msgstr "Etiquetas"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Categorías" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archivo" msgstr "Archivo"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "leer más" msgstr "leer más"
@ -538,18 +645,3 @@ msgstr "de"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "siguiente" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Alban Tiberghien <alban.tiberghien@gmail.com>, 2017
# Iacopo Spalletti, 2014 # Iacopo Spalletti, 2014
# yakky <i.spalletti@nephila.it>, 2016 # yakky <i.spalletti@nephila.it>, 2016
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-08-25 13:38+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: French (http://www.transifex.com/nephila/djangocms-blog/language/fr/)\n" "Language-Team: French (http://www.transifex.com/nephila/djangocms-blog/language/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,7 +21,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.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" 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" 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" msgid "django CMS Blog"
msgstr "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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "TItre de lapplication" msgstr "TItre de lapplication"
@ -40,12 +74,10 @@ msgid "object name"
msgstr "Nom de lobjet" msgstr "Nom de lobjet"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "Configuration du blog" msgstr "Configuration du blog"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "Configurations du blog" msgstr "Configurations du blog"
@ -102,375 +134,451 @@ msgid "Structure of the django CMS menu"
msgstr "Structure du menu django CMS" msgstr "Structure du menu django CMS"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "changefreq de la Sitemap" msgstr "changefreq de la Sitemap"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Attribut Changfreq pour chaque entrée de la sitemap." msgstr "Attribut Changfreq pour chaque entrée de la sitemap."
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Priorité de la sitemap" msgstr "Priorité de la sitemap"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Priorité de chaque entrée de la sitemap" msgstr "Priorité de chaque entrée de la sitemap"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Type de lobjet" msgstr "Type de lobjet"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "Facebook type" msgstr "Facebook type"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "Facebook application ID" msgstr "Facebook application ID"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "Facebook profile ID" msgstr "Facebook profile ID"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "Facebook page URL" msgstr "Facebook page URL"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "Facebook author URL" msgstr "Facebook author URL"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Auteur" msgstr "Auteur"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "Twitter type" msgstr "Twitter type"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "Twitter site handle" msgstr "Twitter site handle"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "Twitter author handle" msgstr "Twitter author handle"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "Google+ type" msgstr "Google+ type"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "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 #: 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 "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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" msgid "Blog menu"
msgstr "Menu du blog" msgstr "Menu du blog"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Post list" msgstr "Liste des articles"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Add post" msgstr "Ajouter un article"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Modifier la configuration" msgstr "Modifier la configuration"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Modifier Post" msgstr "Editer un article"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr "Publier {0} maintenant"
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Nouveau {0}" msgstr "Nouveau {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Ajouter un nouveau {0} dans {1}" msgstr "Ajouter un nouveau {0} dans {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Articles de blog sur le site %(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" msgid "parent"
msgstr "père" msgstr "père"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "crée le" msgstr "crée le"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "modifié le" msgstr "modifié le"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "app. config" msgstr "configuration de l'application"
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "nom" msgstr "nom"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "slug" msgstr "slug"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "catégorie du blog" msgstr "catégorie du blog"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "catégories du blog" msgstr "catégories du blog"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "auteur" msgstr "auteur"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "crée le" msgstr "crée le"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "modifié le" msgstr "modifié le"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "publié depuis" msgstr "publié depuis"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "publié jusquà" msgstr "publié jusquà"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "publier" msgstr "publier"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "catégorie" msgstr "catégorie"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "Image principale" msgstr "image principale"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "Miniature image principale" msgstr "miniature image principale"
#: models.py:133 #: models.py:158
msgid "main image full" 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" 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)" msgid "Site(s)"
msgstr "Site(s)" msgstr "Site(s)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " all the configured sites."
msgstr "Selectionnez les sites dans lesquels afficher larticle. Si aucun site nest selectionné, larticle sera visible dans tous les sites." msgstr "Selectionnez les sites dans lesquels afficher larticle. Si aucun site nest selectionné, larticle sera visible dans tous les sites."
#: models.py:148 #: models.py:175
msgid "title"
msgstr "Titre"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "abstract" msgstr "abstract"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "Description meta de larticle" msgstr "description meta de larticle"
#: models.py:153 #: models.py:178
msgid "post meta keywords" 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" 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" 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" msgid "text"
msgstr "texte" msgstr "texte"
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "article du blog" msgstr "article du blog"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "articles du blog" msgstr "articles du blog"
#: models.py:372 models.py:408 #: models.py:399
msgid "articles" msgid "current site"
msgstr "" 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." msgid "The number of latests articles to be displayed."
msgstr "Nombre darticles récents à afficher." msgstr "Nombre darticles récents à afficher."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "filtrer par tag" msgstr "filtrer par tag"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Afficher seulement les articles qui ont les tags séléctionnés." msgstr "Afficher seulement les articles qui ont les tags séléctionnés."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "filtrer par catégorie" msgstr "filtrer par catégorie"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Afficher seulement les articles des catégories séléctionnées" msgstr "Afficher seulement les articles des catégories séléctionnées"
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s derniers articles par tag" msgstr "%s derniers articles par tag"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "Auteurs" msgstr "Auteurs"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Le nombre darticles de lauteur à afficher" msgstr "Le nombre darticles de lauteur à afficher"
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s derniers articles par auteur" msgstr "%s derniers articles par auteur"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "plugin générique pour le blog" msgstr "plugin générique pour le blog"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Date complète" msgstr "Date complète"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Année / Mois" 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" msgid "Category"
msgstr "Catégorie" msgstr "Catégorie"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr "Juste le slug"
#: settings.py:28
msgid "Categories and posts"
msgstr "Catégories"
#: settings.py:29 #: settings.py:29
msgid "Categories only" msgid "Categories and posts"
msgstr "Catégories" msgstr "Catégories et articles"
#: settings.py:30 #: settings.py:30
msgid "Posts only" msgid "Categories only"
msgstr "Articles" msgstr "Catégories seulement"
#: settings.py:31 #: settings.py:31
msgid "Posts only"
msgstr "Articles seulement"
#: settings.py:32
msgid "None" msgid "None"
msgstr "Aucun" msgstr "Aucun"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "toujours" msgstr "toujours"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "toutes les heures" msgstr "toutes les heures"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "quotidien" msgstr "quotidien"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "hebdomadaire" msgstr "hebdomadaire"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "mensuel" msgstr "mensuel"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "annuel" msgstr "annuel"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "jamais" msgstr "jamais"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Articles récents du blog" 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" msgid "Author Blog Articles"
msgstr "Articles de lauteur" 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" msgid "Tags"
msgstr "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" msgid "Categories"
msgstr "Catégories" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archive" msgstr "Archive"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "lire la suite" msgstr "lire la suite"
@ -510,7 +618,7 @@ msgstr "Auteurs"
#: templates/djangocms_blog/plugins/categories.html:15 #: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found." msgid "No categories found."
msgstr "Aucune catégorie trouvé" msgstr "Aucune catégorie trouvée"
#: templates/djangocms_blog/post_list.html:11 #: templates/djangocms_blog/post_list.html:11
msgid "Articles by" msgid "Articles by"
@ -539,18 +647,3 @@ msgstr "sur"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "suivant" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Iacopo Spalletti, 2014 # Iacopo Spalletti, 2014
# yakky <i.spalletti@nephila.it>, 2014-2016 # yakky <i.spalletti@nephila.it>, 2014-2017
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:50+0000\n" "PO-Revision-Date: 2017-03-04 15:40+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Italian (http://www.transifex.com/nephila/djangocms-blog/language/it/)\n" "Language-Team: Italian (http://www.transifex.com/nephila/djangocms-blog/language/it/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,7 +20,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Puoi inserire stringhe, attributi o metodi del model Post" 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" msgid "django CMS Blog"
msgstr "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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "Titolo applicazione" msgstr "Titolo applicazione"
@ -40,12 +73,10 @@ msgid "object name"
msgstr "Nome oggetto" msgstr "Nome oggetto"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "Configurazione del blog" msgstr "Configurazione del blog"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "Configurazioni del blog" msgstr "Configurazioni del blog"
@ -102,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr "Struttura del menu django CMS" msgstr "Struttura del menu django CMS"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "Frequenza aggiornamento Sitemap" msgstr "Frequenza aggiornamento Sitemap"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Attributo Changefreq per gli oggetti della sitemap" msgstr "Attributo Changefreq per gli oggetti della sitemap"
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Priorità sitemap" msgstr "Priorità sitemap"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Attributo priorità per gli oggetti nella sitemap" msgstr "Attributo priorità per gli oggetti nella sitemap"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Tipo oggetto" msgstr "Tipo oggetto"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "Tipo oggetto Facebook" msgstr "Tipo oggetto Facebook"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "ID Applicazione Facebook" msgstr "ID Applicazione Facebook"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "ID Profilo Facebook" msgstr "ID Profilo Facebook"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "URL Pagina Facebook" msgstr "URL Pagina Facebook"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "URL Autore Facebook" msgstr "URL Autore Facebook"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Autore Facebook" msgstr "Autore Facebook"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "Tipo oggetto Twitter" msgstr "Tipo oggetto Twitter"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "Nome Twitter del sito" msgstr "Nome Twitter del sito"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "Nome Twitter autore" msgstr "Nome Twitter autore"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "Tipo oggetto Google+" msgstr "Tipo oggetto Google+"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "Nome Google+ autore" msgstr "Nome Google+ autore"
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "Invia notifiche alla pubblicazione dell'articolo" 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" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "Invia notifiche desktop -se abilitate- quando viene pubblicato un articolo" 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" msgid "Send notifications on post update"
msgstr "Invia notifiche all'aggiornamento dell'articolo" msgstr "Invia notifiche all'aggiornamento dell'articolo"
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "Emits a desktop notification -if enabled- when editing a published post"
msgstr "Invia notifiche desktop -se abilitate- quando viene aggiornato un articolo" 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" msgid "Blog menu"
msgstr "Menu del blog" msgstr "Menu del blog"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Lista degli articoli" msgstr "Lista degli articoli"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Aggiungi articolo" msgstr "Aggiungi articolo"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Modifica configurazione" msgstr "Modifica configurazione"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Modifica articolo" msgstr "Modifica articolo"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "Pubblica {0}" msgstr "Pubblica {0}"
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Nuovo {0}" msgstr "Nuovo {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Crea un nuovo {0} in {1}" msgstr "Crea un nuovo {0} in {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Articoli del blog su %(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" msgid "parent"
msgstr "superiore" msgstr "superiore"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "creato il" msgstr "creato il"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "modificato il" msgstr "modificato il"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "config. app." msgstr "config. app."
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "nome" msgstr "nome"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "slug" msgstr "slug"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "categoria del blog" msgstr "categoria del blog"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "categorie del blog" msgstr "categorie del blog"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "autore" msgstr "autore"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "creato" msgstr "creato"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "ultima modifica" msgstr "ultima modifica"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "Pubblicato il" msgstr "Pubblicato il"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "fino al" msgstr "fino al"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr "Data visualizzata"
#: models.py:146
msgid "publish" msgid "publish"
msgstr "pubblica" msgstr "pubblica"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "categoria" msgstr "categoria"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "immagine principale" msgstr "immagine principale"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "dimensioni miniatura immagine" msgstr "dimensioni miniatura immagine"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "dimensioni immagine" msgstr "dimensioni immagine"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "abilita commenti sull'articolo" msgstr "abilita commenti sull'articolo"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Sito/i" msgstr "Sito/i"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " 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." 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 #: models.py:175
msgid "title"
msgstr "titolo"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "abstract" msgstr "abstract"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "meta description" msgstr "meta description"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "meta keywords" msgstr "meta keywords"
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "meta title" msgstr "meta title"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "Usato nel tag title e nei titoli per le condivisioni sui social network" msgstr "Usato nel tag title e nei titoli per le condivisioni sui social network"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "testo" msgstr "testo"
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr "Attiva liveblog sul post"
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "articolo del blog" msgstr "articolo del blog"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "articoli del blog" 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" msgid "articles"
msgstr "articoli" msgstr "articoli"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Il numero di articoli da mostrare." msgstr "Il numero di articoli da mostrare."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "filtra per tag" msgstr "filtra per tag"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Mostra solo gli articoli marcati con i tag selezionati." msgstr "Mostra solo gli articoli marcati con i tag selezionati."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "filtra per categoria" msgstr "filtra per categoria"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Mostra solo gli articoli marcati con i categorie selezionati." msgstr "Mostra solo gli articoli marcati con i categorie selezionati."
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "ultimi %s articoli per tag" msgstr "ultimi %s articoli per tag"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "autori" msgstr "autori"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Numero di elementi per autore da mostrare." msgstr "Numero di elementi per autore da mostrare."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "ultimi %s articoli per autore" msgstr "ultimi %s articoli per autore"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "plugin blog" msgstr "plugin blog"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Data completa" msgstr "Data completa"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Anno / Mese" 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" msgid "Category"
msgstr "Categoria" msgstr "Categoria"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "Solo slug" msgstr "Solo slug"
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Categorie e articoli" msgstr "Categorie e articoli"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Solo categorie" msgstr "Solo categorie"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Solo articoli" msgstr "Solo articoli"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "Niente" msgstr "Niente"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "sempre" msgstr "sempre"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "ogni ora" msgstr "ogni ora"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "ogni giorno" msgstr "ogni giorno"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "ogni settimana" msgstr "ogni settimana"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "ogni mese" msgstr "ogni mese"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "ogni anno" msgstr "ogni anno"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "mai" msgstr "mai"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Ultimi articoli" 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" msgid "Author Blog Articles"
msgstr "Articoli per autore" 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" msgid "Tags"
msgstr "Tag" msgstr "Tag"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Categorie" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archivio" msgstr "Archivio"
#: settings.py:140
msgid "Default template"
msgstr "Template standard"
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "leggi" msgstr "leggi"
@ -539,18 +646,3 @@ msgstr "di"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "successivo" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Matas Dailyda <matas@dailyda.com>, 2015-2016 # Matas Dailyda <matas@dailyda.com>, 2015-2017
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 08:37+0000\n" "PO-Revision-Date: 2017-03-06 11:06+0000\n"
"Last-Translator: Matas Dailyda <matas@dailyda.com>\n" "Last-Translator: Matas Dailyda <matas@dailyda.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/nephila/djangocms-blog/language/lt/)\n" "Language-Team: Lithuanian (http://www.transifex.com/nephila/djangocms-blog/language/lt/)\n"
"MIME-Version: 1.0\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" "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" "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" 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 " 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" msgid "django CMS Blog"
msgstr "django CMS Tinklaraštis" 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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "aplikacijos pavadinimas" msgstr "aplikacijos pavadinimas"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "objekto pavadinimas" msgstr "objekto pavadinimas"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "tinklaraščio konfiguracija" msgstr "tinklaraščio konfiguracija"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "tinklaraščio konfiguracijos" msgstr "tinklaraščio konfiguracijos"
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Django CMS meniu struktūra" msgstr "Django CMS meniu struktūra"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "Tinklalapio medžio keitimo dažnumas" msgstr "Tinklalapio medžio keitimo dažnumas"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Keitimo dažnumo atributas tinklalapio medžio objektams" msgstr "Keitimo dažnumo atributas tinklalapio medžio objektams"
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Tinklalapio medžio prioritetas" msgstr "Tinklalapio medžio prioritetas"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Prioriteto atributas tinklalapio medžio objektams" msgstr "Prioriteto atributas tinklalapio medžio objektams"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Objekto tipas" msgstr "Objekto tipas"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "Facebook tipas" msgstr "Facebook tipas"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "Facebook aplikacijos ID" msgstr "Facebook aplikacijos ID"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "Facebook profilio ID" msgstr "Facebook profilio ID"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "Facebook puslapio URL" msgstr "Facebook puslapio URL"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "Facebook autoriaus URL" msgstr "Facebook autoriaus URL"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Facebook autorius" msgstr "Facebook autorius"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "Twitter tipas" msgstr "Twitter tipas"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "Twitter tinklalapio vardas" msgstr "Twitter tinklalapio vardas"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "Twitter autoriaus vardas" msgstr "Twitter autoriaus vardas"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "Google+ tipas" msgstr "Google+ tipas"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "Goggle+ autoriaus vardas" msgstr "Goggle+ autoriaus vardas"
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "Publikavus straipsnį siųsti pranešimus" 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" 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" 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" msgid "Send notifications on post update"
msgstr "Atnaujinus straipsnį siųsti pranešimus" msgstr "Atnaujinus straipsnį siųsti pranešimus"
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "Emits a desktop notification -if enabled- when editing a published post"
msgstr "Išsiunčia darbalaukio pranešima -jei įgalinta- kai redaguojamas publikuotas straipsnis" 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" msgid "Blog menu"
msgstr "Tinklaraščio meniu" msgstr "Tinklaraščio meniu"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Straipsnių sąrašas" msgstr "Straipsnių sąrašas"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Pridėti straipsnį" msgstr "Pridėti straipsnį"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Redaguoti nustatymus" msgstr "Redaguoti nustatymus"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Redaguoti straipsnį" msgstr "Redaguoti straipsnį"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "Publikuoti {0} dabar" msgstr "Publikuoti {0} dabar"
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Naujas {0}" msgstr "Naujas {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Kurti naują {0} viduje {1}" msgstr "Kurti naują {0} viduje {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Tinklaraščio straipsniai %(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" msgid "parent"
msgstr "pirminis elementas" msgstr "pirminis elementas"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "sukurta" msgstr "sukurta"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "redaguota" msgstr "redaguota"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "aplikacijos nustatymai" msgstr "aplikacijos nustatymai"
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "pavadinimas" msgstr "pavadinimas"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "nuoroda" msgstr "nuoroda"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "tinklaraščio kategorija" msgstr "tinklaraščio kategorija"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "tinklaraščio kategorijos" msgstr "tinklaraščio kategorijos"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "autorius" msgstr "autorius"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "sukurta" msgstr "sukurta"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "paskutinį kartą redaguota" msgstr "paskutinį kartą redaguota"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "publikuota nuo" msgstr "publikuota nuo"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "publikuota iki" msgstr "publikuota iki"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr "populiarinimo data"
#: models.py:146
msgid "publish" msgid "publish"
msgstr "publikuoti" msgstr "publikuoti"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "kategorija" msgstr "kategorija"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "pagrindinis paveikslėlis" msgstr "pagrindinis paveikslėlis"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "pagrindinio paveikslėlio miniatiūra" msgstr "pagrindinio paveikslėlio miniatiūra"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "pagrindinis paveikslėlis pilnas" msgstr "pagrindinis paveikslėlis pilnas"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "įgalinti straipsniui komentarus" msgstr "įgalinti straipsniui komentarus"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Tinklalapis(iai)" msgstr "Tinklalapis(iai)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " all the configured sites."
msgstr "Pasirinkite puslapius kuriuose bus rodomas straipsnis. Jei nepasirinktas nei vienas puslapis, straipsnis bus rodomas visuose puslapiuose." msgstr "Pasirinkite puslapius kuriuose bus rodomas straipsnis. Jei nepasirinktas nei vienas puslapis, straipsnis bus rodomas visuose puslapiuose."
#: models.py:148 #: models.py:175
msgid "title"
msgstr "pavadinimas"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "santrauka" msgstr "santrauka"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "straipsnio meta apibūdinimas" msgstr "straipsnio meta apibūdinimas"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "straipsnio meta raktažodžiai" msgstr "straipsnio meta raktažodžiai"
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "straipsnio meta pavadinimas" msgstr "straipsnio meta pavadinimas"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "naudojama pavadinimo žymenoje ir socialiniuose tinkluose" msgstr "naudojama pavadinimo žymenoje ir socialiniuose tinkluose"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "tekstas" 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" msgid "blog article"
msgstr "tinklaraščio straipsnis" msgstr "tinklaraščio straipsnis"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "tinklaraščio straipsniai" 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" msgid "articles"
msgstr "straipsniai" msgstr "straipsniai"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Atvaizduojamas naujausių straipsnių kiekis." msgstr "Atvaizduojamas naujausių straipsnių kiekis."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "filtruoti pagal žymeną" msgstr "filtruoti pagal žymeną"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Atvaizduoti straipsnius su pasirinktomis žymenomis." msgstr "Atvaizduoti straipsnius su pasirinktomis žymenomis."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "filtruoti pagal kategoriją" msgstr "filtruoti pagal kategoriją"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Atvaizduoti straipsnius su pasirinktomis kategorijomis." msgstr "Atvaizduoti straipsnius su pasirinktomis kategorijomis."
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s paskutiniai straipsniai pagal žymeną" msgstr "%s paskutiniai straipsniai pagal žymeną"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "autoriai" msgstr "autoriai"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Atvaizduojamas autoriaus straipsnių kiekis." msgstr "Atvaizduojamas autoriaus straipsnių kiekis."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s paskutiniai straipsniai pagal autorių" msgstr "%s paskutiniai straipsniai pagal autorių"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "bendras tinklaraščio įskiepis" msgstr "bendras tinklaraščio įskiepis"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Pilna data" msgstr "Pilna data"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Metai / Mėnesis" 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" msgid "Category"
msgstr "Kategorija" msgstr "Kategorija"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "Tik nuoroda" msgstr "Tik nuoroda"
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Kategorijos ir įrašai" msgstr "Kategorijos ir įrašai"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Tik kategorijos" msgstr "Tik kategorijos"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Tik įrašai" msgstr "Tik įrašai"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "Niekas" msgstr "Niekas"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "visada" msgstr "visada"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "kas valandą" msgstr "kas valandą"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "kas dieną" msgstr "kas dieną"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "kas savaitę" msgstr "kas savaitę"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "kas mėnesį" msgstr "kas mėnesį"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "kas metus" msgstr "kas metus"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "niekada" msgstr "niekada"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Naujausi tinklaraščio straipsniai" 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" msgid "Author Blog Articles"
msgstr "Tinklaraščio straipsnių autorius" 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" msgid "Tags"
msgstr "Žymenos" msgstr "Žymenos"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Kategorijos" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archyvas" msgstr "Archyvas"
#: settings.py:140
msgid "Default template"
msgstr "Numatytasis šablonas"
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "skaityti daugiau" msgstr "skaityti daugiau"
@ -539,18 +646,3 @@ msgstr "iš"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "kitas" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
@ -7,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Dutch (http://www.transifex.com/nephila/djangocms-blog/language/nl/)\n" "Language-Team: Dutch (http://www.transifex.com/nephila/djangocms-blog/language/nl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -18,7 +19,43 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.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" 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" 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" msgid "django CMS Blog"
msgstr "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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "applicatie titel" msgstr "applicatie titel"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "object naam" msgstr "object naam"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "blog configuratie" msgstr "blog configuratie"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "blog configuraties" msgstr "blog configuraties"
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Opbouw van het django CMS menu" msgstr "Opbouw van het django CMS menu"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "Verander-frequentie van de Sitemap" msgstr "Verander-frequentie van de Sitemap"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Verander-frequentie attribuut voor sitemap items" msgstr "Verander-frequentie attribuut voor sitemap items"
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Sitemap prioriteit" msgstr "Sitemap prioriteit"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Prioriteit attribuut voor sitemap items" msgstr "Prioriteit attribuut voor sitemap items"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Object type" msgstr "Object type"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "Facebook type" msgstr "Facebook type"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "Facebook applicatie ID" msgstr "Facebook applicatie ID"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "Facebook profiel ID" msgstr "Facebook profiel ID"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "Facebook pagina URL" msgstr "Facebook pagina URL"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "Facebook auteur URL" msgstr "Facebook auteur URL"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Facebook auteur" msgstr "Facebook auteur"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "Twitter type" msgstr "Twitter type"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "Twitter site handle" msgstr "Twitter site handle"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "Twitter auteur handle" msgstr "Twitter auteur handle"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "Google+ type" msgstr "Google+ type"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "Google+ auteursnaam" msgstr "Google+ auteursnaam"
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "" msgstr ""
#: cms_appconfig.py:131 #: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "" msgstr ""
#: cms_appconfig.py:134 #: cms_appconfig.py:139
msgid "Send notifications on post update" msgid "Send notifications on post update"
msgstr "" msgstr ""
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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 "Blog"
#: cms_menus.py:24
msgid "Blog menu" msgid "Blog menu"
msgstr "Blog menu" msgstr "Blog menu"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Overzicht van Berichten" msgstr "Overzicht van Berichten"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Bericht toevoegen" msgstr "Bericht toevoegen"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Wijzig configuratie" msgstr "Wijzig configuratie"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Wijzig Bericht" msgstr "Wijzig Bericht"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr ""
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Nieuwe {0}" msgstr "Nieuwe {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Maak een nieuwe {0} in {1}" msgstr "Maak een nieuwe {0} in {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Blog artikelen op %(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" msgid "parent"
msgstr "bovenliggende" msgstr "bovenliggende"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "aangemaakt op" msgstr "aangemaakt op"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "gewijzigd op" msgstr "gewijzigd op"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "applicatie configuratie" msgstr "applicatie configuratie"
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "naam" msgstr "naam"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "slug" msgstr "slug"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "blog categorie" msgstr "blog categorie"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "blog categorieën" msgstr "blog categorieën"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "auteur" msgstr "auteur"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "aangemaakt" msgstr "aangemaakt"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "laatst gewijzigd" msgstr "laatst gewijzigd"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "gepubliceerd sinds" msgstr "gepubliceerd sinds"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "gepubliceerd tot" msgstr "gepubliceerd tot"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "publiceer" msgstr "publiceer"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "categorie" msgstr "categorie"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "hoofd afbeelding" msgstr "hoofd afbeelding"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "hoofd afbeelding thumbnail" msgstr "hoofd afbeelding thumbnail"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "hoofd afbeelding volledig" msgstr "hoofd afbeelding volledig"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "sta reacties toe op bericht" msgstr "sta reacties toe op bericht"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Site(s)" msgstr "Site(s)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " 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." msgstr "Selecteer sites die het bericht moeten tonen. Als geen site ingesteld wordt, dan is het zichtbaar voor alle geconfigureerde sites."
#: models.py:148 #: models.py:175
msgid "title"
msgstr "title"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "excerpt" msgstr "excerpt"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "meta omschrijving van bericht" msgstr "meta omschrijving van bericht"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "meta sleutelwoorden van bericht " msgstr "meta sleutelwoorden van bericht "
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "meta titel van bericht" msgstr "meta titel van bericht"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "wordt gebruikt in de titel tag en bij het delen via sociale media" msgstr "wordt gebruikt in de titel tag en bij het delen via sociale media"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "tekst" msgstr "tekst"
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "blog artikel" msgstr "blog artikel"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "blog artikelen" 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" msgid "articles"
msgstr "artikelen" msgstr "artikelen"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Het aantal nieuwste berichten om te tonen." msgstr "Het aantal nieuwste berichten om te tonen."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "filter op tag" msgstr "filter op tag"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen tags." msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen tags."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "filter op categorie" msgstr "filter op categorie"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen categorieën." msgstr "Alleen blog artikelen tonen die gekoppeld zijn aan de gekozen categorieën."
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s nieuwste artikelen met tag" msgstr "%s nieuwste artikelen met tag"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "auteurs" msgstr "auteurs"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Het aantal artikelen door auteur om te tonen." msgstr "Het aantal artikelen door auteur om te tonen."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s nieuwste artikelen door auteur" msgstr "%s nieuwste artikelen door auteur"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "generieke blog plugin" msgstr "generieke blog plugin"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Volledige datum" msgstr "Volledige datum"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Jaar / Maand" 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" msgid "Category"
msgstr "Categorie" msgstr "Categorie"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "Alleen slug" msgstr "Alleen slug"
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Categorieën en berichten" msgstr "Categorieën en berichten"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Alleen Categorieën" msgstr "Alleen Categorieën"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Alleen Berichten" msgstr "Alleen Berichten"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "Geen" msgstr "Geen"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "altijd" msgstr "altijd"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "elk uur" msgstr "elk uur"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "elke dag" msgstr "elke dag"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "elke week" msgstr "elke week"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "elke maand" msgstr "elke maand"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "elk jaar" msgstr "elk jaar"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "nooit" msgstr "nooit"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Nieuwste Blog Artikelen" msgstr "Nieuwste Blog Artikelen"
#: settings.py:117 #: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles" msgid "Author Blog Articles"
msgstr "Blog Artikelen Van Auteur" 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" msgid "Tags"
msgstr "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" msgid "Categories"
msgstr "Categorieën " 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Archief" msgstr "Archief"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "lees verder" msgstr "lees verder"
@ -538,18 +645,3 @@ msgstr "van"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "volgende" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Diego Ponci <dgo.ponciano@gmail.com>, 2016
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/nephila/djangocms-blog/language/pt_BR/)\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/nephila/djangocms-blog/language/pt_BR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -17,465 +19,571 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.5\n" "X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233 #: admin.py:34
msgid "You can provide plain strings, Post model attribute or method names" msgid "site"
msgstr "" 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 #: apps.py:15
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "" msgstr "blog do django CMS"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr ""
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "" msgstr "título da aplicação"
#: cms_appconfig.py:22 #: cms_appconfig.py:22
msgid "object name" msgid "object name"
msgstr "" msgstr "nome do objeto"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "" msgstr "configuração do blog"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "" msgstr "configurações do blog"
#: cms_appconfig.py:31 #: cms_appconfig.py:31
msgid "untitled" msgid "untitled"
msgstr "" msgstr "sem título"
#: cms_appconfig.py:36 #: cms_appconfig.py:36
msgid "Post published by default" msgid "Post published by default"
msgstr "" msgstr "Post publicado por padrão"
#: cms_appconfig.py:40 #: cms_appconfig.py:40
msgid "Permalink structure" msgid "Permalink structure"
msgstr "" msgstr "Estrutura de links permanentes"
#: cms_appconfig.py:45 #: cms_appconfig.py:45
msgid "Use placeholder and plugins for article body" msgid "Use placeholder and plugins for article body"
msgstr "" msgstr "Usar placeholder e plugins para o corpo da notícia"
#: cms_appconfig.py:49 #: cms_appconfig.py:49
msgid "Use abstract field" msgid "Use abstract field"
msgstr "" msgstr "Usar campo abstrato"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author" msgid "Set author"
msgstr "" msgstr "Informar o autor"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author by default" msgid "Set author by default"
msgstr "" msgstr "Informar o autor por padrão"
#: cms_appconfig.py:57 #: cms_appconfig.py:57
msgid "Paginate size" msgid "Paginate size"
msgstr "" msgstr "Tamanho da paginação"
#: cms_appconfig.py:58 #: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?" 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 #: cms_appconfig.py:61
msgid "Template prefix" msgid "Template prefix"
msgstr "" msgstr "Prefixo do template"
#: cms_appconfig.py:62 #: cms_appconfig.py:62
msgid "Alternative directory to load the blog templates from" msgid "Alternative directory to load the blog templates from"
msgstr "" msgstr "Diretório alternativo de origem dos templates do blog"
#: cms_appconfig.py:65 #: cms_appconfig.py:65
msgid "Menu structure" msgid "Menu structure"
msgstr "" msgstr "Estrutura do menu"
#: cms_appconfig.py:67 #: cms_appconfig.py:67
msgid "Structure of the django CMS menu" msgid "Structure of the django CMS menu"
msgstr "" msgstr "Estrutura do menu do django CMS"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr "'changefreq' do sitemap"
#: cms_appconfig.py:73
msgid "Changefreq attribute for sitemap items"
msgstr ""
#: cms_appconfig.py:76
msgid "Sitemap priority"
msgstr ""
#: cms_appconfig.py:78 #: cms_appconfig.py:78
msgid "Priority attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr "Atributo changefreq de items do sitemap"
#: cms_appconfig.py:81 #: 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" msgid "Object type"
msgstr "" msgstr "Tipo de objeto"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr "Tipo de conta do facebook"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr "ID da aplicação no Facebook"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr "ID do perfil no Facebook"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr "URL da página no Facebook"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr "URL do autor no Facebook"
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "" msgstr "Autor no Facebook"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr "Tipo do Twitter"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr "Nome de usuário no Twitter"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr "Usuário do autor no Twitter"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr "Tipo do Google+"
#: cms_appconfig.py:125
msgid "Google+ author name"
msgstr ""
#: cms_appconfig.py:130 #: cms_appconfig.py:130
msgid "Send notifications on post publish" msgid "Google+ author name"
msgstr "" msgstr "Nome do autor no Google+"
#: 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 #: 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 "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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" msgid "Blog menu"
msgstr "" msgstr "Menu do blog"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "" msgstr "Lista de postagens"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "" msgstr "Adicionar postagem"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "" msgstr "Editar preferências"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "" msgstr "Ediar Postagem"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr "Publicar {0} agora"
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr "Novo {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "" msgstr "Criar um novo {0} em {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Artigos em %(site_name)s"
#: liveblog/apps.py:10
msgid "Liveblog"
msgstr "" 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" msgid "parent"
msgstr "" msgstr "pai"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "" msgstr "criado em"
#: models.py:59 #: models.py:67
msgid "modified at" 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" msgid "app. config"
msgstr "" msgstr "configuração da aplicação"
#: models.py:65
msgid "name"
msgstr ""
#: models.py:66 models.py:149
msgid "slug"
msgstr ""
#: models.py:73 #: models.py:73
msgid "name"
msgstr "nome"
#: models.py:74 models.py:174
msgid "slug"
msgstr "slug"
#: models.py:81
msgid "blog category" msgid "blog category"
msgstr "" msgstr "categoria do blog"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "" msgstr "categorias do blog"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "" msgstr "autor"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "" msgstr "criado"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "" msgstr "última modificação"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "" msgstr "publicado desde"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "publicado até"
#: models.py:145
msgid "featured date"
msgstr "" msgstr ""
#: models.py:121 #: models.py:146
msgid "publish" msgid "publish"
msgstr "" msgstr "publicar"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "" msgstr "categoria"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "" msgstr "imagem principal"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "" msgstr "miniatura da imagem principal"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "" msgstr "imagem principal completa"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "" msgstr "habilitar comentários nessa postagem"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "" msgstr "Site(s)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " 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 #: models.py:175
msgid "title"
msgstr ""
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "" msgstr "resumo"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "" msgstr "meta descrição da postagem"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "" msgstr "palavras-chave da postagem"
#: models.py:155 #: models.py:180
msgid "post meta title" 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" 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" msgid "text"
msgstr "texto"
#: models.py:189
msgid "enable liveblog on post"
msgstr "" msgstr ""
#: models.py:196 #: models.py:223
msgid "blog article" msgid "blog article"
msgstr "" msgstr "artigo do blog"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "artigos do blog"
#: models.py:399
msgid "current site"
msgstr "" msgstr ""
#: models.py:372 models.py:408 #: models.py:399
msgid "articles" msgid "Select items from the current site only"
msgstr "" msgstr ""
#: models.py:373 #: models.py:403
msgid "The number of latests articles to be displayed." msgid "Plugin template"
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"
msgstr "" msgstr ""
#: models.py:404 #: models.py:404
msgid "authors" msgid "Select plugin template to load for this instance"
msgstr "" msgstr ""
#: models.py:409 #: models.py:438 models.py:474
msgid "The number of author articles to be displayed." msgid "articles"
msgstr "" msgstr "artigos"
#: models.py:413 #: models.py:439
#, python-format msgid "The number of latests articles to be displayed."
msgid "%s latest articles by author" msgstr "O número dos últimos artigos a serem exibidos."
msgstr ""
#: models.py:441
msgid "filter by tag"
msgstr "filtrar por tag"
#: models.py:442 #: models.py:442
msgid "generic blog plugin" msgid "Show only the blog articles tagged with chosen tags."
msgstr "" msgstr "Exibir apenas os artigos marcados com as tags escolhidas."
#: settings.py:16 #: models.py:445
msgid "Full date" msgid "filter by category"
msgstr "" 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 #: settings.py:17
msgid "Full date"
msgstr "Data completa"
#: settings.py:18
msgid "Year / Month" 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" msgid "Category"
msgstr "" msgstr "Categoria"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr "Apenas a slug"
#: settings.py:28
msgid "Categories and posts"
msgstr ""
#: settings.py:29 #: settings.py:29
msgid "Categories only" msgid "Categories and posts"
msgstr "" msgstr "Categorias e postagens"
#: settings.py:30 #: settings.py:30
msgid "Posts only" msgid "Categories only"
msgstr "" msgstr "Apenas categorias"
#: settings.py:31 #: settings.py:31
msgid "None" msgid "Posts only"
msgstr "" msgstr "Apenas postagens"
#: settings.py:34 #: settings.py:32
msgid "always" msgid "None"
msgstr "" msgstr "Nenhum"
#: settings.py:35 #: settings.py:35
msgid "hourly" msgid "always"
msgstr "" msgstr "sempre"
#: settings.py:36 #: settings.py:36
msgid "daily" msgid "hourly"
msgstr "" msgstr "a cada hora"
#: settings.py:37 #: settings.py:37
msgid "weekly" msgid "daily"
msgstr "" msgstr "diariamente"
#: settings.py:38 #: settings.py:38
msgid "monthly" msgid "weekly"
msgstr "" msgstr "semanalmente"
#: settings.py:39 #: settings.py:39
msgid "yearly" msgid "monthly"
msgstr "" msgstr "mensalmente"
#: settings.py:40 #: settings.py:40
msgid "never" msgid "yearly"
msgstr "" msgstr "anualmente"
#: settings.py:115 #: settings.py:41
msgid "Latest Blog Articles" msgid "never"
msgstr "" msgstr "nunca"
#: settings.py:117 #: 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" 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" 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" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Arquivo"
#: settings.py:140
msgid "Default template"
msgstr "" msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "" msgstr "ler mais"
#: templates/djangocms_blog/includes/blog_meta.html:6 #: templates/djangocms_blog/includes/blog_meta.html:6
msgid "by" msgid "by"
msgstr "" msgstr "por"
#: templates/djangocms_blog/plugins/archive.html:17 #: templates/djangocms_blog/plugins/archive.html:17
#: templates/djangocms_blog/plugins/authors.html:10 #: templates/djangocms_blog/plugins/authors.html:10
@ -484,15 +592,15 @@ msgstr ""
#, python-format #, python-format
msgid "1 article" msgid "1 article"
msgid_plural "%(articles)s articles" msgid_plural "%(articles)s articles"
msgstr[0] "" msgstr[0] "1 artigo"
msgstr[1] "" msgstr[1] "%(articles)s artigos"
#: templates/djangocms_blog/plugins/archive.html:18 #: templates/djangocms_blog/plugins/archive.html:18
#: templates/djangocms_blog/plugins/authors.html:11 #: templates/djangocms_blog/plugins/authors.html:11
#: templates/djangocms_blog/plugins/categories.html:11 #: templates/djangocms_blog/plugins/categories.html:11
#: templates/djangocms_blog/plugins/tags.html:11 #: templates/djangocms_blog/plugins/tags.html:11
msgid "0 articles" msgid "0 articles"
msgstr "" msgstr "0 artigos"
#: templates/djangocms_blog/plugins/archive.html:26 #: templates/djangocms_blog/plugins/archive.html:26
#: templates/djangocms_blog/plugins/authors.html:15 #: templates/djangocms_blog/plugins/authors.html:15
@ -500,55 +608,40 @@ msgstr ""
#: templates/djangocms_blog/plugins/tags.html:15 #: templates/djangocms_blog/plugins/tags.html:15
#: templates/djangocms_blog/post_list.html:21 #: templates/djangocms_blog/post_list.html:21
msgid "No article found." msgid "No article found."
msgstr "" msgstr "Nenhum artigo encontrado."
#: templates/djangocms_blog/plugins/authors.html:3 #: templates/djangocms_blog/plugins/authors.html:3
msgid "Authors" msgid "Authors"
msgstr "" msgstr "Autores"
#: templates/djangocms_blog/plugins/categories.html:15 #: templates/djangocms_blog/plugins/categories.html:15
msgid "No categories found." msgid "No categories found."
msgstr "" msgstr "Nenhuma categoria encontrada."
#: templates/djangocms_blog/post_list.html:11 #: templates/djangocms_blog/post_list.html:11
msgid "Articles by" msgid "Articles by"
msgstr "" msgstr "Artigos por"
#: templates/djangocms_blog/post_list.html:13 #: templates/djangocms_blog/post_list.html:13
msgid "Tag" msgid "Tag"
msgstr "" msgstr "Tag"
#: templates/djangocms_blog/post_list.html:24 #: templates/djangocms_blog/post_list.html:24
msgid "Back" msgid "Back"
msgstr "" msgstr "Voltar"
#: templates/djangocms_blog/post_list.html:29 #: templates/djangocms_blog/post_list.html:29
msgid "previous" msgid "previous"
msgstr "" msgstr "anterior"
#: templates/djangocms_blog/post_list.html:32 #: templates/djangocms_blog/post_list.html:32
msgid "Page" msgid "Page"
msgstr "" msgstr "Página"
#: templates/djangocms_blog/post_list.html:32 #: templates/djangocms_blog/post_list.html:32
msgid "of" msgid "of"
msgstr "" msgstr "de"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "" msgstr "próxima"
#~ 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,16 +1,18 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Iacopo Spalletti, 2014 # Iacopo Spalletti, 2014
# Rustam Mirzaev <mirus@2x2.pw>, 2016
# Rustam Mirzaev <mirus@2x2.pw>, 2015 # Rustam Mirzaev <mirus@2x2.pw>, 2015
# Rustam Mirzaev <mirus@2x2.pw>, 2015 # Rustam Mirzaev <mirus@2x2.pw>, 2015
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Russian (http://www.transifex.com/nephila/djangocms-blog/language/ru/)\n" "Language-Team: Russian (http://www.transifex.com/nephila/djangocms-blog/language/ru/)\n"
"MIME-Version: 1.0\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" "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" "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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "Вы можете использовать простую строку, атрибут модели статьи или имена методов" msgstr "Вы можете использовать простую строку, атрибут модели статьи или имена методов"
@ -28,10 +66,6 @@ msgstr "Вы можете использовать простую строку,
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "django CMS Блог" msgstr "django CMS Блог"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Блог"
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "название приложения" msgstr "название приложения"
@ -41,14 +75,12 @@ msgid "object name"
msgstr "название объекта" msgstr "название объекта"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "" msgstr "настройка блога"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "" msgstr "настройки блога"
#: cms_appconfig.py:31 #: cms_appconfig.py:31
msgid "untitled" msgid "untitled"
@ -103,375 +135,451 @@ msgid "Structure of the django CMS menu"
msgstr "Структура меню django CMS " msgstr "Структура меню django CMS "
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "Частота обновления карты сайта" msgstr "Частота обновления карты сайта"
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "Атрибут частоты изменения объектов карты сайта" msgstr "Атрибут частоты изменения объектов карты сайта"
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Приоритет" msgstr "Приоритет"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Приоритет атребута для объектов карты сайта" msgstr "Приоритет атребута для объектов карты сайта"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Тип объекта" msgstr "Тип объекта"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "тип в Facebook" msgstr "тип в Facebook"
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "ID приложения на Facebook" msgstr "ID приложения на Facebook"
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "ID профиля на Facebook" msgstr "ID профиля на Facebook"
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "URL страницы на Facebook" msgstr "URL страницы на Facebook"
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "URL автора на Facebook " msgstr "URL автора на Facebook "
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "автор на Facebook " msgstr "автор на Facebook "
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "тип на Twitter" msgstr "тип на Twitter"
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "дескриптор сайта на Twitter" msgstr "дескриптор сайта на Twitter"
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "дескриптор автора на Twitter" msgstr "дескриптор автора на Twitter"
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "тип на Google+" msgstr "тип на Google+"
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "имя автора на Google+" 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 #: 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 "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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" msgid "Blog menu"
msgstr "Меню блога" msgstr "Меню блога"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Список статей" msgstr "Список статей"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Добавить статью" msgstr "Добавить статью"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Редактировать настройки" msgstr "Редактировать настройки"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Редактировать статью" msgstr "Редактировать статью"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr "Опубликовано сейчас {0} "
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Новых {0}" msgstr "Новых {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Создать новых {0} из {1}" msgstr "Создать новых {0} из {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Статьи блога с сайта: %(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" msgid "parent"
msgstr "предок" msgstr "предок"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "время создания" msgstr "время создания"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "время изменения" msgstr "время изменения"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "настройки приложения" msgstr "настройки приложения"
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "название" msgstr "название"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "ЧПУ" msgstr "ЧПУ"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "категория блога" msgstr "категория блога"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "категории блога" msgstr "категории блога"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "автор" msgstr "автор"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "создан(о)" msgstr "создан(о)"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "последние изменения" msgstr "последние изменения"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "опубликовано" msgstr "опубликовано"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "опубликовано до" msgstr "опубликовано до"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "опубликовать" msgstr "опубликовать"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "категория" msgstr "категория"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "главная страница" msgstr "главная страница"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "уменьшенная копия главного изображения" msgstr "уменьшенная копия главного изображения"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "Полноразмерное изображение" msgstr "Полноразмерное изображение"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "Разрешить комментарии к статье" msgstr "Разрешить комментарии к статье"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Сайт(ы)" msgstr "Сайт(ы)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " all the configured sites."
msgstr "Выберите сайты на которых будет опубликована статья. Если сайты не выбраны, статья будет опубликована на всех сайтах сразу." msgstr "Выберите сайты на которых будет опубликована статья. Если сайты не выбраны, статья будет опубликована на всех сайтах сразу."
#: models.py:148 #: models.py:175
msgid "title"
msgstr "Заголовок"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "Краткое описание" msgstr "Краткое описание"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "мета-описание статьи" msgstr "мета-описание статьи"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "ключевые слова к статье" msgstr "ключевые слова к статье"
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "мета-заголовок к статье" msgstr "мета-заголовок к статье"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "используется в метках и обмене в социальных сетях" msgstr "используется в метках и обмене в социальных сетях"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "текст" msgstr "текст"
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "статья блога" msgstr "статья блога"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "статьи блога" 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" msgid "articles"
msgstr "статьи" msgstr "статьи"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Количество последних статей, которые будут показаны." msgstr "Количество последних статей, которые будут показаны."
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "фильтровать по тегам" msgstr "фильтровать по тегам"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Показывать статьи только с выбранными метками." msgstr "Показывать статьи только с выбранными метками."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "фильтровать по категориям" msgstr "фильтровать по категориям"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Показывать статьи только из выбранных категорий." msgstr "Показывать статьи только из выбранных категорий."
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s последних статей по тегам" msgstr "%s последних статей по тегам"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "авторы" msgstr "авторы"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Количество статей автора, которые будут показаны." msgstr "Количество статей автора, которые будут показаны."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s последних статей по авторам" msgstr "%s последних статей по авторам"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "генерируемый плагин блога" msgstr "генерируемый плагин блога"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Полная дата" msgstr "Полная дата"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Год / Месяц" msgstr "Год / Месяц"
#: settings.py:18 templates/djangocms_blog/post_list.html:14 #: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category" msgid "Category"
msgstr "Категория" msgstr "Категория"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "ЧПУ" msgstr "ЧПУ"
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Категории и статьи" msgstr "Категории и статьи"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Только категории" msgstr "Только категории"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Только статьи" msgstr "Только статьи"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "Ничего" msgstr "Ничего"
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "всегда" msgstr "всегда"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "ежечасно" msgstr "ежечасно"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "ежедневно" msgstr "ежедневно"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "еженедельно" msgstr "еженедельно"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "ежемесячно" msgstr "ежемесячно"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "ежегодно" msgstr "ежегодно"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "никогда" msgstr "никогда"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Последние статьи блога" msgstr "Последние статьи блога"
#: settings.py:117 #: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles" msgid "Author Blog Articles"
msgstr "Автор статей блога" msgstr "Автор статей блога"
#: settings.py:119 templates/djangocms_blog/plugins/tags.html:3 #: settings.py:123 templates/djangocms_blog/plugins/tags.html:3
msgid "Tags" msgid "Tags"
msgstr "Метки" msgstr "Метки"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Категории" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Архив" msgstr "Архив"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "читать далее" msgstr "читать далее"
@ -542,18 +650,3 @@ msgstr "из"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "следующая" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
@ -7,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Slovenian (http://www.transifex.com/nephila/djangocms-blog/language/sl/)\n" "Language-Team: Slovenian (http://www.transifex.com/nephila/djangocms-blog/language/sl/)\n"
"MIME-Version: 1.0\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" "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" "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" msgid "You can provide plain strings, Post model attribute or method names"
msgstr "" msgstr ""
@ -26,10 +63,6 @@ msgstr ""
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "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 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "naziv aplikacije" msgstr "naziv aplikacije"
@ -39,12 +72,10 @@ msgid "object name"
msgstr "ime objekta" msgstr "ime objekta"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "" msgstr ""
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "" msgstr ""
@ -101,375 +132,451 @@ msgid "Structure of the django CMS menu"
msgstr "Struktura django CMS menija" msgstr "Struktura django CMS menija"
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr ""
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "Sitemap prioriteta" msgstr "Sitemap prioriteta"
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "Prioriteta atributov za elemente sitemapa" msgstr "Prioriteta atributov za elemente sitemapa"
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "Tip objekta" msgstr "Tip objekta"
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr ""
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr ""
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr ""
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr ""
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr ""
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "Facebook avtor" msgstr "Facebook avtor"
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr ""
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr ""
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr ""
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr ""
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "" msgstr ""
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "" msgstr ""
#: cms_appconfig.py:131 #: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "" msgstr ""
#: cms_appconfig.py:134 #: cms_appconfig.py:139
msgid "Send notifications on post update" msgid "Send notifications on post update"
msgstr "" msgstr ""
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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 "Blog"
#: cms_menus.py:24
msgid "Blog menu" msgid "Blog menu"
msgstr "Blog meni" msgstr "Blog meni"
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Seznam objav" msgstr "Seznam objav"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Nova objava" msgstr "Nova objava"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "Uredi nastavitve" msgstr "Uredi nastavitve"
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Uredi objavo" msgstr "Uredi objavo"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr ""
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "Nov {0}" msgstr "Nov {0}"
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "Ustvari nov {0} v {1}" msgstr "Ustvari nov {0} v {1}"
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "Blog objave na %(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" msgid "parent"
msgstr "starš" msgstr "starš"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "ustvarjeno na" msgstr "ustvarjeno na"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "urejeno na" msgstr "urejeno na"
#: models.py:61 models.py:144 models.py:353 #: models.py:69 models.py:169 models.py:396
msgid "app. config" msgid "app. config"
msgstr "" msgstr ""
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "ime" msgstr "ime"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "" msgstr ""
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "blog kategorija" msgstr "blog kategorija"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "blog kategorije" msgstr "blog kategorije"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "avtor" msgstr "avtor"
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "ustvarjeno" msgstr "ustvarjeno"
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "nazadnje urejeno" msgstr "nazadnje urejeno"
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "objavljeno od" msgstr "objavljeno od"
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "objavljeno do" msgstr "objavljeno do"
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "objavljeno" msgstr "objavljeno"
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "kategorija" msgstr "kategorija"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "glavna slika" msgstr "glavna slika"
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "glavna slika - predogled" msgstr "glavna slika - predogled"
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "glavna slika - polna" msgstr "glavna slika - polna"
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "Omogoči komentarje na objavi" msgstr "Omogoči komentarje na objavi"
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Stran(i)" msgstr "Stran(i)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " all the configured sites."
msgstr "Izberi strani na katerih naj bo objava prikazana. Če ni izbrano nič, bo objava prikazana na vseh nastavljenih straneh." msgstr "Izberi strani na katerih naj bo objava prikazana. Če ni izbrano nič, bo objava prikazana na vseh nastavljenih straneh."
#: models.py:148 #: models.py:175
msgid "title"
msgstr "naziv"
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "osnutek" msgstr "osnutek"
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "meta opis objave" msgstr "meta opis objave"
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "meta ključne besede objave" msgstr "meta ključne besede objave"
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "meta naziv objave" msgstr "meta naziv objave"
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "za uporabo v označbi naslova in deljenju na socialnih omrežjih" msgstr "za uporabo v označbi naslova in deljenju na socialnih omrežjih"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "tekst" msgstr "tekst"
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "blog objava" msgstr "blog objava"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "blog objave" 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" msgid "articles"
msgstr "objave" msgstr "objave"
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Število najnovejših objav, ki naj bodo prikazane" msgstr "Število najnovejših objav, ki naj bodo prikazane"
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "filtriraj po oznakah" msgstr "filtriraj po oznakah"
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Prikaži le blog objave označene z izbranimi oznakami" msgstr "Prikaži le blog objave označene z izbranimi oznakami"
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "filtriraj po kategoriji" msgstr "filtriraj po kategoriji"
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Prikaži le blog objave označene z izbranimi kategorijami" msgstr "Prikaži le blog objave označene z izbranimi kategorijami"
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "%s najnovejših objav glede na oznako" msgstr "%s najnovejših objav glede na oznako"
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "avtorji" msgstr "avtorji"
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "Število avtorjevih objav, ki naj bodo prikazane" msgstr "Število avtorjevih objav, ki naj bodo prikazane"
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "%s najnovejših objav glede na avtorja" msgstr "%s najnovejših objav glede na avtorja"
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "generični blog vtičnik" msgstr "generični blog vtičnik"
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "Datum (poln)" msgstr "Datum (poln)"
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "Leto / Mesec" 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" msgid "Category"
msgstr "Kategorija" msgstr "Kategorija"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr ""
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "Kategorije in objave" msgstr "Kategorije in objave"
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "Samo kategorije" msgstr "Samo kategorije"
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "Samo objave" msgstr "Samo objave"
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "" msgstr ""
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "vedno" msgstr "vedno"
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "vsako uro" msgstr "vsako uro"
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "dnevno" msgstr "dnevno"
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "tedensko" msgstr "tedensko"
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "mesečno" msgstr "mesečno"
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "letno" msgstr "letno"
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "nikoli" msgstr "nikoli"
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Najnovejše blog objave" msgstr "Najnovejše blog objave"
#: settings.py:117 #: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles" msgid "Author Blog Articles"
msgstr "Avtorjeve blog objave" 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" msgid "Tags"
msgstr "Oznake" msgstr "Oznake"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Kategorije" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Arhiv" msgstr "Arhiv"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "preberi več" msgstr "preberi več"
@ -540,18 +647,3 @@ msgstr "od"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "naslednji" 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 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Rustam Mirzaev <mirus@2x2.pw>, 2016
# Rustam Mirzaev <mirus@2x2.pw>, 2015 # Rustam Mirzaev <mirus@2x2.pw>, 2015
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: djangocms-blog\n" "Project-Id-Version: djangocms-blog\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-05 08:48+0200\n" "POT-Creation-Date: 2017-03-04 16:35+0100\n"
"PO-Revision-Date: 2016-05-05 06:48+0000\n" "PO-Revision-Date: 2017-03-04 15:35+0000\n"
"Last-Translator: yakky <i.spalletti@nephila.it>\n" "Last-Translator: yakky <i.spalletti@nephila.it>\n"
"Language-Team: Turkish (http://www.transifex.com/nephila/djangocms-blog/language/tr/)\n" "Language-Team: Turkish (http://www.transifex.com/nephila/djangocms-blog/language/tr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -18,67 +20,97 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Lokalize 1.5\n" "X-Generator: Lokalize 1.5\n"
#: admin.py:217 admin.py:225 admin.py:233 #: admin.py:34
msgid "You can provide plain strings, Post model attribute or method names" msgid "site"
msgstr "" 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 #: apps.py:15
msgid "django CMS Blog" msgid "django CMS Blog"
msgstr "" msgstr "django CMS Blogu"
#: cms_app.py:15 cms_toolbar.py:20 settings.py:113
msgid "Blog"
msgstr "Blog"
#: cms_appconfig.py:20 #: cms_appconfig.py:20
msgid "application title" msgid "application title"
msgstr "" msgstr "uygulama başlığı"
#: cms_appconfig.py:22 #: cms_appconfig.py:22
msgid "object name" msgid "object name"
msgstr "" msgstr "nesne adı"
#: cms_appconfig.py:27 #: cms_appconfig.py:27
#| msgid "blog categories"
msgid "blog config" msgid "blog config"
msgstr "" msgstr "blog ayarı"
#: cms_appconfig.py:28 #: cms_appconfig.py:28
#| msgid "blog categories"
msgid "blog configs" msgid "blog configs"
msgstr "" msgstr "blog ayarları"
#: cms_appconfig.py:31 #: cms_appconfig.py:31
msgid "untitled" msgid "untitled"
msgstr "" msgstr "isimsiz"
#: cms_appconfig.py:36 #: cms_appconfig.py:36
msgid "Post published by default" msgid "Post published by default"
msgstr "" msgstr "Varsayılan olarak yayınlanan makale"
#: cms_appconfig.py:40 #: cms_appconfig.py:40
msgid "Permalink structure" msgid "Permalink structure"
msgstr "" msgstr "Kalıcı bağlantı yapısı"
#: cms_appconfig.py:45 #: cms_appconfig.py:45
msgid "Use placeholder and plugins for article body" msgid "Use placeholder and plugins for article body"
msgstr "" msgstr "Makale gövdesi olarak yer tututcu veya eklenti kullan"
#: cms_appconfig.py:49 #: cms_appconfig.py:49
msgid "Use abstract field" msgid "Use abstract field"
msgstr "" msgstr "Soyut alanı kullan"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author" msgid "Set author"
msgstr "" msgstr "Yazarı ekle"
#: cms_appconfig.py:53 #: cms_appconfig.py:53
msgid "Set author by default" msgid "Set author by default"
msgstr "" msgstr "Varsayılan yazarı ekle"
#: cms_appconfig.py:57 #: cms_appconfig.py:57
msgid "Paginate size" msgid "Paginate size"
msgstr "" msgstr "Boyutu sayfala"
#: cms_appconfig.py:58 #: cms_appconfig.py:58
msgid "When paginating list views, how many articles per page?" msgid "When paginating list views, how many articles per page?"
@ -101,375 +133,451 @@ msgid "Structure of the django CMS menu"
msgstr "" msgstr ""
#: cms_appconfig.py:70 #: 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" msgid "Sitemap changefreq"
msgstr "" msgstr ""
#: cms_appconfig.py:73 #: cms_appconfig.py:78
msgid "Changefreq attribute for sitemap items" msgid "Changefreq attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:76 #: cms_appconfig.py:81
msgid "Sitemap priority" msgid "Sitemap priority"
msgstr "" msgstr ""
#: cms_appconfig.py:78 #: cms_appconfig.py:83
msgid "Priority attribute for sitemap items" msgid "Priority attribute for sitemap items"
msgstr "" msgstr ""
#: cms_appconfig.py:81 #: cms_appconfig.py:86
msgid "Object type" msgid "Object type"
msgstr "" msgstr ""
#: cms_appconfig.py:85 #: cms_appconfig.py:90
msgid "Facebook type" msgid "Facebook type"
msgstr "" msgstr ""
#: cms_appconfig.py:89 #: cms_appconfig.py:94
msgid "Facebook application ID" msgid "Facebook application ID"
msgstr "" msgstr ""
#: cms_appconfig.py:93 #: cms_appconfig.py:98
msgid "Facebook profile ID" msgid "Facebook profile ID"
msgstr "" msgstr ""
#: cms_appconfig.py:97 #: cms_appconfig.py:102
msgid "Facebook page URL" msgid "Facebook page URL"
msgstr "" msgstr ""
#: cms_appconfig.py:101 #: cms_appconfig.py:106
msgid "Facebook author URL" msgid "Facebook author URL"
msgstr "" msgstr ""
#: cms_appconfig.py:105 #: cms_appconfig.py:110
msgid "Facebook author" msgid "Facebook author"
msgstr "" msgstr ""
#: cms_appconfig.py:109 #: cms_appconfig.py:114
msgid "Twitter type" msgid "Twitter type"
msgstr "" msgstr ""
#: cms_appconfig.py:113 #: cms_appconfig.py:118
msgid "Twitter site handle" msgid "Twitter site handle"
msgstr "" msgstr ""
#: cms_appconfig.py:117 #: cms_appconfig.py:122
msgid "Twitter author handle" msgid "Twitter author handle"
msgstr "" msgstr ""
#: cms_appconfig.py:121 #: cms_appconfig.py:126
msgid "Google+ type" msgid "Google+ type"
msgstr "" msgstr ""
#: cms_appconfig.py:125 #: cms_appconfig.py:130
msgid "Google+ author name" msgid "Google+ author name"
msgstr "" msgstr ""
#: cms_appconfig.py:130 #: cms_appconfig.py:135
msgid "Send notifications on post publish" msgid "Send notifications on post publish"
msgstr "" msgstr ""
#: cms_appconfig.py:131 #: cms_appconfig.py:136
msgid "Emits a desktop notification -if enabled- when publishing a new post" msgid "Emits a desktop notification -if enabled- when publishing a new post"
msgstr "" msgstr ""
#: cms_appconfig.py:134 #: cms_appconfig.py:139
msgid "Send notifications on post update" msgid "Send notifications on post update"
msgstr "" msgstr ""
#: cms_appconfig.py:135 #: cms_appconfig.py:140
msgid "" msgid ""
"Emits a desktop notification -if enabled- when editing a published post" "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 "Blog"
#: cms_menus.py:24
msgid "Blog menu" msgid "Blog menu"
msgstr "" msgstr ""
#: cms_toolbar.py:23 #: cms_toolbars.py:23
msgid "Post list" msgid "Post list"
msgstr "Makale listesi" msgstr "Makale listesi"
#: cms_toolbar.py:25 #: cms_toolbars.py:25
msgid "Add post" msgid "Add post"
msgstr "Makale ekle" msgstr "Makale ekle"
#: cms_toolbar.py:29 #: cms_toolbars.py:29
msgid "Edit configuration" msgid "Edit configuration"
msgstr "" msgstr ""
#: cms_toolbar.py:33 #: cms_toolbars.py:33
msgid "Edit Post" msgid "Edit Post"
msgstr "Makaleyi düzenle" msgstr "Makaleyi düzenle"
#: cms_toolbar.py:47 #: cms_toolbars.py:47
#, python-brace-format #, python-brace-format
msgid "Publish {0} now" msgid "Publish {0} now"
msgstr "" msgstr ""
#: cms_wizards.py:57 #: cms_wizards.py:58
#, python-brace-format #, python-brace-format
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: cms_wizards.py:61 #: cms_wizards.py:62
#, python-brace-format #, python-brace-format
msgid "Create a new {0} in {1}" msgid "Create a new {0} in {1}"
msgstr "" msgstr ""
#: feeds.py:48 #: feeds.py:49
#, python-format #, python-format
msgid "Blog articles on %(site_name)s" msgid "Blog articles on %(site_name)s"
msgstr "%(site_name)s 'ki blog makaleleri" 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" msgid "parent"
msgstr "üst öğe" msgstr "üst öğe"
#: models.py:58 #: models.py:66
msgid "created at" msgid "created at"
msgstr "oluşturma tarihi" msgstr "oluşturma tarihi"
#: models.py:59 #: models.py:67
msgid "modified at" msgid "modified at"
msgstr "düzenleme tarihi" 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" msgid "app. config"
msgstr "" msgstr ""
#: models.py:65 #: models.py:73
msgid "name" msgid "name"
msgstr "isim" msgstr "isim"
#: models.py:66 models.py:149 #: models.py:74 models.py:174
msgid "slug" msgid "slug"
msgstr "okunaklı URL" msgstr "okunaklı URL"
#: models.py:73 #: models.py:81
msgid "blog category" msgid "blog category"
msgstr "blog kategorisi" msgstr "blog kategorisi"
#: models.py:74 #: models.py:82
msgid "blog categories" msgid "blog categories"
msgstr "blog kategorileri" msgstr "blog kategorileri"
#: models.py:114 #: models.py:138
msgid "author" msgid "author"
msgstr "" msgstr ""
#: models.py:117 #: models.py:141
msgid "created" msgid "created"
msgstr "" msgstr ""
#: models.py:118 #: models.py:142
msgid "last modified" msgid "last modified"
msgstr "" msgstr ""
#: models.py:119 #: models.py:143
msgid "published since" msgid "published since"
msgstr "" msgstr ""
#: models.py:120 #: models.py:144
msgid "published until" msgid "published until"
msgstr "" msgstr ""
#: models.py:121 #: models.py:145
msgid "featured date"
msgstr ""
#: models.py:146
msgid "publish" msgid "publish"
msgstr "" msgstr ""
#: models.py:122 #: models.py:147
msgid "category" msgid "category"
msgstr "kategori" msgstr "kategori"
#: models.py:124 #: models.py:149
msgid "main image" msgid "main image"
msgstr "" msgstr ""
#: models.py:128 #: models.py:153
msgid "main image thumbnail" msgid "main image thumbnail"
msgstr "" msgstr ""
#: models.py:133 #: models.py:158
msgid "main image full" msgid "main image full"
msgstr "" msgstr ""
#: models.py:137 #: models.py:162
msgid "enable comments on post" msgid "enable comments on post"
msgstr "" msgstr ""
#: models.py:139 #: models.py:164
msgid "Site(s)" msgid "Site(s)"
msgstr "Web site(ler)" msgstr "Web site(ler)"
#: models.py:140 #: models.py:165
msgid "" msgid ""
"Select sites in which to show the post. If none is set it will be visible in" "Select sites in which to show the post. If none is set it will be visible in"
" all the configured sites." " 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." 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 #: models.py:175
msgid "title"
msgstr ""
#: models.py:150
msgid "abstract" msgid "abstract"
msgstr "" msgstr ""
#: models.py:151 #: models.py:176
msgid "post meta description" msgid "post meta description"
msgstr "" msgstr ""
#: models.py:153 #: models.py:178
msgid "post meta keywords" msgid "post meta keywords"
msgstr "" msgstr ""
#: models.py:155 #: models.py:180
msgid "post meta title" msgid "post meta title"
msgstr "" msgstr ""
#: models.py:156 #: models.py:181
msgid "used in title tag and social sharing" msgid "used in title tag and social sharing"
msgstr "başlık etiketinde veya sosyal paylaşımda kullanılır" msgstr "başlık etiketinde veya sosyal paylaşımda kullanılır"
#: models.py:159 #: models.py:184
msgid "text" msgid "text"
msgstr "" msgstr ""
#: models.py:196 #: models.py:189
msgid "enable liveblog on post"
msgstr ""
#: models.py:223
msgid "blog article" msgid "blog article"
msgstr "blog makalesi" msgstr "blog makalesi"
#: models.py:197 #: models.py:224
msgid "blog articles" msgid "blog articles"
msgstr "blog makaleleri" 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" msgid "articles"
msgstr "" msgstr ""
#: models.py:373 #: models.py:439
msgid "The number of latests articles to be displayed." msgid "The number of latests articles to be displayed."
msgstr "Ğörütülenecek olan makale sayısı" msgstr "Ğörütülenecek olan makale sayısı"
#: models.py:375 #: models.py:441
msgid "filter by tag" msgid "filter by tag"
msgstr "" msgstr ""
#: models.py:376 #: models.py:442
msgid "Show only the blog articles tagged with chosen tags." msgid "Show only the blog articles tagged with chosen tags."
msgstr "Sadece seçili etiketlerle işaretlenmiş makaleleri göster." msgstr "Sadece seçili etiketlerle işaretlenmiş makaleleri göster."
#: models.py:379 #: models.py:445
msgid "filter by category" msgid "filter by category"
msgstr "" msgstr ""
#: models.py:380 #: models.py:446
msgid "Show only the blog articles tagged with chosen categories." msgid "Show only the blog articles tagged with chosen categories."
msgstr "Sadece seçili kategorilerde bulunan makaleleri ğöster" msgstr "Sadece seçili kategorilerde bulunan makaleleri ğöster"
#: models.py:384 #: models.py:450
#, python-format #, python-format
msgid "%s latest articles by tag" msgid "%s latest articles by tag"
msgstr "" msgstr ""
#: models.py:404 #: models.py:470
msgid "authors" msgid "authors"
msgstr "" msgstr ""
#: models.py:409 #: models.py:475
msgid "The number of author articles to be displayed." msgid "The number of author articles to be displayed."
msgstr "İlgili yazarın gösterilecek olan makale sayısı." msgstr "İlgili yazarın gösterilecek olan makale sayısı."
#: models.py:413 #: models.py:479
#, python-format #, python-format
msgid "%s latest articles by author" msgid "%s latest articles by author"
msgstr "" msgstr ""
#: models.py:442 #: models.py:512
msgid "generic blog plugin" msgid "generic blog plugin"
msgstr "" msgstr ""
#: settings.py:16 #: settings.py:17
msgid "Full date" msgid "Full date"
msgstr "" msgstr ""
#: settings.py:17 #: settings.py:18
msgid "Year / Month" msgid "Year / Month"
msgstr "" msgstr ""
#: settings.py:18 templates/djangocms_blog/post_list.html:14 #: settings.py:19 templates/djangocms_blog/post_list.html:14
msgid "Category" msgid "Category"
msgstr "Kategori" msgstr "Kategori"
#: settings.py:19 #: settings.py:20
msgid "Just slug" msgid "Just slug"
msgstr "" msgstr ""
#: settings.py:28 #: settings.py:29
msgid "Categories and posts" msgid "Categories and posts"
msgstr "" msgstr ""
#: settings.py:29 #: settings.py:30
msgid "Categories only" msgid "Categories only"
msgstr "" msgstr ""
#: settings.py:30 #: settings.py:31
msgid "Posts only" msgid "Posts only"
msgstr "" msgstr ""
#: settings.py:31 #: settings.py:32
msgid "None" msgid "None"
msgstr "" msgstr ""
#: settings.py:34 #: settings.py:35
msgid "always" msgid "always"
msgstr "" msgstr ""
#: settings.py:35 #: settings.py:36
msgid "hourly" msgid "hourly"
msgstr "" msgstr ""
#: settings.py:36 #: settings.py:37
msgid "daily" msgid "daily"
msgstr "" msgstr ""
#: settings.py:37 #: settings.py:38
msgid "weekly" msgid "weekly"
msgstr "" msgstr ""
#: settings.py:38 #: settings.py:39
msgid "monthly" msgid "monthly"
msgstr "" msgstr ""
#: settings.py:39 #: settings.py:40
msgid "yearly" msgid "yearly"
msgstr "" msgstr ""
#: settings.py:40 #: settings.py:41
msgid "never" msgid "never"
msgstr "" msgstr ""
#: settings.py:115 #: settings.py:117
msgid "Latest Blog Articles" msgid "Latest Blog Articles"
msgstr "Blog'un son makaleleri" msgstr "Blog'un son makaleleri"
#: settings.py:117 #: settings.py:119
msgid "Latest Blog Articles - Cache"
msgstr ""
#: settings.py:121
msgid "Author Blog Articles" msgid "Author Blog Articles"
msgstr "Blog'un makale yazarı" 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" msgid "Tags"
msgstr "Etiketler" msgstr "Etiketler"
#: settings.py:121 templates/djangocms_blog/plugins/categories.html:3 #: settings.py:125 templates/djangocms_blog/plugins/categories.html:3
msgid "Categories" msgid "Categories"
msgstr "Kategoriler" 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 #: templates/djangocms_blog/post_list.html:12
msgid "Archive" msgid "Archive"
msgstr "Arşiv" msgstr "Arşiv"
#: settings.py:140
msgid "Default template"
msgstr ""
#: templates/djangocms_blog/includes/blog_item.html:24 #: templates/djangocms_blog/includes/blog_item.html:24
msgid "read more" msgid "read more"
msgstr "devamını oku" msgstr "devamını oku"
@ -538,18 +646,3 @@ msgstr "biri"
#: templates/djangocms_blog/post_list.html:35 #: templates/djangocms_blog/post_list.html:35
msgid "next" msgid "next"
msgstr "sonraki" 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'), ('filer', '0003_thumbnailoption'),
('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'), ('cmsplugin_filer_image', '0003_mv_thumbnail_option_to_filer_20160119_1720'),
] ]
run_before = [
('cmsplugin_filer_image', '0004_auto_20160120_0950'),
]
operations = [ operations = [
migrations.AlterField( migrations.AlterField(

View file

@ -10,11 +10,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model: if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [ dependencies = [
('djangocms_blog', '0017_thumbnail_move'), ('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 = [ operations = [

View file

@ -25,11 +25,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model: if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [ dependencies = [
('djangocms_blog', '0018_thumbnail_move2'), ('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 = [ operations = [

View file

@ -10,11 +10,6 @@ class Migration(migrations.Migration):
if 'cmsplugin_filer' not in thumbnail_model: if 'cmsplugin_filer' not in thumbnail_model:
dependencies = [ dependencies = [
('djangocms_blog', '0019_thumbnail_move3'), ('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 = [ 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_modified = models.DateTimeField(_('last modified'), auto_now=True)
date_published = models.DateTimeField(_('published since'), null=True, blank=True) date_published = models.DateTimeField(_('published since'), null=True, blank=True)
date_published_end = models.DateTimeField(_('published until'), 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) publish = models.BooleanField(_('publish'), default=False)
categories = models.ManyToManyField('djangocms_blog.BlogCategory', verbose_name=_('category'), categories = models.ManyToManyField('djangocms_blog.BlogCategory', verbose_name=_('category'),
related_name='blog_posts', blank=True) related_name='blog_posts', blank=True)
@ -237,12 +238,20 @@ class Post(KnockerModel, ModelMeta, TranslatableModel):
) )
return hashlib.sha256(force_bytes(base_string)).hexdigest() 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): def save(self, *args, **kwargs):
""" """
Handle some auto configuration during save Handle some auto configuration during save
""" """
if self.publish and self.date_published is None: if self.publish and self.date_published is None:
self.date_published = timezone.now() self.date_published = timezone.now()
if not self.slug and self.title:
self.slug = slugify(self.title)
super(Post, self).save(*args, **kwargs) super(Post, self).save(*args, **kwargs)
def save_translation(self, translation, *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) super(Post, self).save_translation(translation, *args, **kwargs)
def get_absolute_url(self, lang=None): 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(): if not lang or lang not in self.get_available_languages():
lang = get_language() lang = get_language()
if not lang or lang not in self.get_available_languages():
lang = self.get_current_language()
with switch_language(self, lang): with switch_language(self, lang):
category = self.categories.first() category = self.categories.first()
kwargs = {} kwargs = {}

View file

@ -9,6 +9,11 @@
<li> <li>
{{ post.date_published|date:"DATE_FORMAT" }} {{ post.date_published|date:"DATE_FORMAT" }}
</li> </li>
{% if post.date_featured %}
<li>
{{ post.date_featured|date:"DATE_FORMAT" }}
</li>
{% endif %}
</ul> </ul>
<ul class="post-detail tags"> <ul class="post-detail tags">
{% if post.categories.exists %} {% 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>`_ * configure haystack according to `aldryn-search docs <https://github.com/aldryn/aldryn-search#usage>`_
and `haystack docs <http://django-haystack.readthedocs.io/en/stable/>`_. 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 Minimal configuration
********************* *********************

View file

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

View file

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

View file

@ -210,11 +210,11 @@ try:
post.liveblog, 'LiveblogPlugin', language='en', body='plugin 3', publish=True, post.liveblog, 'LiveblogPlugin', language='en', body='plugin 3', publish=True,
post_date=current_date - timedelta(seconds=10) 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.post_date = current_date - timedelta(seconds=20)
plugin.save() 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 except ImportError: # pragma: no cover
pass pass

View file

@ -90,6 +90,52 @@ class AdminTest(BaseTest):
self.assertEqual(response.status_code, 302) self.assertEqual(response.status_code, 302)
self.assertEqual(response['Location'], '/') 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): def test_admin_blogconfig_views(self):
post_admin = admin.site._registry[BlogConfig] post_admin = admin.site._registry[BlogConfig]
request = self.get_page_request('/', self.user, r'/en/blog/', edit=False) 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 # Add view only has an empty form - no type
response = post_admin.add_view(request) response = post_admin.add_view(request)
self.assertNotContains(response, 'djangocms_blog.cms_appconfig.BlogConfig') 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 # Changeview is 'normal', with a few preselected items
response = post_admin.change_view(request, str(self.app_config_1.pk)) 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 # check that all the form fields are visible in the admin
for fieldname in BlogConfigForm.base_fields: for fieldname in BlogConfigForm.base_fields:
self.assertContains(response, 'id="id_config-%s"' % fieldname) 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') self.assertContains(response, 'sample_app')
def test_admin_category_views(self): def test_admin_category_views(self):
@ -115,12 +161,12 @@ class AdminTest(BaseTest):
# Add view only has an empty form - no type # Add view only has an empty form - no type
response = post_admin.add_view(request) 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) self.assertContains(response, '<option value="%s">Blog / sample_app</option>' % self.app_config_1.pk)
# Changeview is 'normal', with a few preselected items # Changeview is 'normal', with a few preselected items
response = post_admin.change_view(request, str(self.category_1.pk)) 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) self.assertContains(response, '<option value="%s" selected="selected">Blog / sample_app</option>' % self.app_config_1.pk)
def test_admin_category_parents(self): def test_admin_category_parents(self):
@ -502,18 +548,30 @@ class ModelsTest(BaseTest):
self.assertEqual(new_category.count_all_sites, 1) self.assertEqual(new_category.count_all_sites, 1)
self.assertEqual(self.category_1.count_all_sites, 2) 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): def test_model_attributes(self):
self.get_pages() self.get_pages()
self.app_config_1.app_data.config.gplus_author = 'RandomJoe' self.app_config_1.app_data.config.gplus_author = 'RandomJoe'
self.app_config_1.save() 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]['en'])
post = self._get_post(self._post_data[0]['it'], post, 'it') post = self._get_post(self._post_data[0]['it'], post, 'it')
post.main_image = self.create_filer_image_object() post.main_image = self.create_filer_image_object()
post.publish = True post.publish = True
post.save() post.save()
post.set_current_language('en') 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() meta_en = post.as_meta()
self.assertEqual(meta_en.og_type, get_setting('FB_TYPE')) self.assertEqual(meta_en.og_type, get_setting('FB_TYPE'))
self.assertEqual(meta_en.title, post.title) self.assertEqual(meta_en.title, post.title)
@ -667,6 +725,20 @@ class ModelsTest(BaseTest):
post.app_config = self.app_config_1 post.app_config = self.app_config_1
self.assertTrue(re.match(r'.*/%s/$' % post.slug, post.get_absolute_url())) 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): def test_manager(self):
self.get_pages() self.get_pages()
post1 = self._get_post(self._post_data[0]['en']) post1 = self._get_post(self._post_data[0]['en'])

View file

@ -1,5 +1,5 @@
[tox] [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] [testenv]
commands = {env:COMMAND:python} cms_helper.py test djangocms_blog commands = {env:COMMAND:python} cms_helper.py test djangocms_blog
@ -9,10 +9,14 @@ deps =
django18: django-filer<1.3 django18: django-filer<1.3
django18: cmsplugin-filer<1.2 django18: cmsplugin-filer<1.2
django18: django-haystack django18: django-haystack
django18: djangocms-admin-style>1.2,<1.3
django19: Django>=1.9,<1.10 django19: Django>=1.9,<1.10
django19: django-mptt>=0.8 django19: django-mptt>=0.8
django19: django-filer<1.3 django19: django-filer<1.3
django19: cmsplugin-filer<1.2 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: https://github.com/divio/django-cms/archive/release/3.2.x.zip
cms32: djangocms-text-ckeditor<3.0 cms32: djangocms-text-ckeditor<3.0
cms33: https://github.com/divio/django-cms/archive/release/3.3.x.zip cms33: https://github.com/divio/django-cms/archive/release/3.3.x.zip
@ -24,7 +28,7 @@ deps =
django-meta>=1.2 django-meta>=1.2
html5lib<0.99999999 html5lib<0.99999999
https://github.com/nephila/djangocms-helper/archive/release/0.9.x.zip 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 https://github.com/nephila/djangocms-apphook-setup/archive/master.zip
-r{toxinidir}/requirements-test.txt -r{toxinidir}/requirements-test.txt