Merge pull request #152 from nephila/feature/blog_index
Add haystack index
This commit is contained in:
commit
7a839f8e22
30 changed files with 2639 additions and 936 deletions
|
@ -4,6 +4,6 @@ languages:
|
||||||
PHP: false
|
PHP: false
|
||||||
Python: true
|
Python: true
|
||||||
exclude_paths:
|
exclude_paths:
|
||||||
- "djangocms_blog/migrations/*"
|
- 'djangocms_blog/migrations/*'
|
||||||
- "djangocms_blog/south_migrations/*"
|
- 'djangocms_blog/south_migrations/*'
|
||||||
- "tests/*"
|
- 'tests/*'
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -39,7 +39,7 @@ coverage:
|
||||||
coverage report -m
|
coverage report -m
|
||||||
|
|
||||||
release: clean
|
release: clean
|
||||||
python setup.py sdist bdist_wheel
|
python setup.py clean --all sdist bdist_wheel
|
||||||
twine upload dist/*
|
twine upload dist/*
|
||||||
|
|
||||||
sdist: clean
|
sdist: clean
|
||||||
|
|
|
@ -22,7 +22,7 @@ djangocms-blog
|
||||||
:target: https://coveralls.io/r/nephila/djangocms-blog?branch=master
|
:target: https://coveralls.io/r/nephila/djangocms-blog?branch=master
|
||||||
:alt: Test coverage
|
:alt: Test coverage
|
||||||
|
|
||||||
.. image:: https://img.shields.io/codecov/c/github/nephila/djangocms-blog/master.svg?style=flat-square
|
.. image:: https://img.shields.io/codecov/c/github/nephila/djangocms-blog/develop.svg?style=flat-square
|
||||||
:target: https://codecov.io/github/nephila/djangocms-blog
|
:target: https://codecov.io/github/nephila/djangocms-blog
|
||||||
:alt: Test coverage
|
:alt: Test coverage
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@ HELPER_SETTINGS = dict(
|
||||||
'taggit_autosuggest',
|
'taggit_autosuggest',
|
||||||
'aldryn_apphooks_config',
|
'aldryn_apphooks_config',
|
||||||
'tests.test_utils',
|
'tests.test_utils',
|
||||||
|
'aldryn_search',
|
||||||
],
|
],
|
||||||
LANGUAGE_CODE='en',
|
LANGUAGE_CODE='en',
|
||||||
LANGUAGES=(
|
LANGUAGES=(
|
||||||
|
@ -88,7 +89,10 @@ HELPER_SETTINGS = dict(
|
||||||
'easy_thumbnails.processors.filters',
|
'easy_thumbnails.processors.filters',
|
||||||
),
|
),
|
||||||
FILE_UPLOAD_TEMP_DIR=mkdtemp(),
|
FILE_UPLOAD_TEMP_DIR=mkdtemp(),
|
||||||
SITE_ID=1
|
SITE_ID=1,
|
||||||
|
HAYSTACK_CONNECTIONS = {
|
||||||
|
"default": {}
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__author__ = 'Iacopo Spalletti'
|
__author__ = 'Iacopo Spalletti'
|
||||||
__email__ = 'i.spalletti@nephila.it'
|
__email__ = 'i.spalletti@nephila.it'
|
||||||
__version__ = '0.6.0.dev1'
|
__version__ = '0.6.0.a2'
|
||||||
|
|
||||||
default_app_config = 'djangocms_blog.apps.BlogAppConfig'
|
default_app_config = 'djangocms_blog.apps.BlogAppConfig'
|
||||||
|
|
Binary file not shown.
|
@ -7,10 +7,10 @@ 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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2014-11-30 11:49+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+0000\n"
|
||||||
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
|
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
|
||||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/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"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -18,186 +18,367 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "المدونة"
|
msgstr "المدونة"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "آخر مواضيع المدونة"
|
msgstr "آخر مواضيع المدونة"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "ناشر مواضيع المدونة"
|
msgstr "ناشر مواضيع المدونة"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "علامات"
|
msgstr "علامات"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "الأقسام"
|
msgstr "الأقسام"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "الأرشيف"
|
msgstr "الأرشيف"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "قائمة المواضيع"
|
msgstr "قائمة المواضيع"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "إضافة موضوع"
|
msgstr "إضافة موضوع"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "التعديل على موضوع"
|
msgstr "التعديل على موضوع"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
msgid "parent"
|
msgid "Blog menu"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:33
|
|
||||||
msgid "created at"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:34
|
||||||
|
msgid "parent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:35
|
||||||
|
msgid "created at"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:79
|
|
||||||
msgid "Publish"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:80
|
|
||||||
msgid "category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:82
|
|
||||||
msgid "Main image"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:85
|
|
||||||
msgid "Main image thumbnail"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:89
|
|
||||||
msgid "Main image full"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:93
|
|
||||||
msgid "Enable comments on post"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:96
|
||||||
msgid "Site(s)"
|
msgid "published since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
|
msgid "category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:103
|
||||||
|
msgid "main image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:107
|
||||||
|
msgid "main image thumbnail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:112
|
||||||
|
msgid "main image full"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:116
|
||||||
|
msgid "enable comments on post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:118
|
||||||
|
msgid "Site(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
msgid "used in title tag and social sharing"
|
msgid "used in title tag and social sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
msgid "The number of latests articles to be displayed."
|
msgid "The number of latests articles to be displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
msgid "Show only the blog articles tagged with chosen tags."
|
msgid "Show only the blog articles tagged with chosen tags."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
msgid "Show only the blog articles tagged with chosen categories."
|
msgid "Show only the blog articles tagged with chosen categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
|
msgid "%s latest articles by tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
msgid "The number of author articles to be displayed."
|
msgid "The number of author articles to be displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
|
@ -208,16 +389,11 @@ msgstr ""
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -225,30 +401,34 @@ msgstr ""
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
|
@ -259,19 +439,30 @@ msgstr[3] ""
|
||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
msgstr[5] ""
|
msgstr[5] ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,10 +7,10 @@ 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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2014-11-30 17:34+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+0000\n"
|
||||||
"Last-Translator: Christoph Reimers <christoph@superservice-international.com>\n"
|
"Last-Translator: yakky <i.spalletti@nephila.it>\n"
|
||||||
"Language-Team: German (http://www.transifex.com/projects/p/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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -18,187 +18,368 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Blog"
|
msgstr "Blog"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Letzte Blog-Einträge"
|
msgstr "Letzte Blog-Einträge"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Autoren Blog-Artikel"
|
msgstr "Autoren Blog-Artikel"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tags"
|
msgstr "Tags"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Kategorien"
|
msgstr "Kategorien"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archiv"
|
msgstr "Archiv"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Post Liste"
|
msgstr "Post Liste"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Post hinzufügen"
|
msgstr "Post hinzufügen"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "Post bearbeiten"
|
msgstr "Post bearbeiten"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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-Artikel auf %(site_name)s"
|
||||||
|
|
||||||
#: models.py:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "übergeordnetes Element"
|
msgstr "übergeordnetes Element"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "erstellt am"
|
msgstr "erstellt am"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "bearbeitet am"
|
msgstr "bearbeitet am"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "slug"
|
msgstr "slug"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "Blog-Kategorie"
|
msgstr "Blog-Kategorie"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "Blog-Kategorien"
|
msgstr "Blog-Kategorien"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Autor"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr "Veröffentlicht seit"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr "Veröffentlicht bis"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:79
|
#: models.py:96
|
||||||
msgid "Publish"
|
msgid "published since"
|
||||||
msgstr "Veröffentlichen"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:80
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "Kategorie"
|
msgstr "Kategorie"
|
||||||
|
|
||||||
#: models.py:82
|
#: models.py:103
|
||||||
msgid "Main image"
|
msgid "main image"
|
||||||
msgstr "Haupt-Bild"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:85
|
#: models.py:107
|
||||||
msgid "Main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Haupt-Bild Vorschau"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:112
|
||||||
msgid "Main image full"
|
msgid "main image full"
|
||||||
msgstr "volles Haupt-Bild"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:116
|
||||||
msgid "Enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr "Kommentare einschalten"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr "Seite(n)"
|
msgstr "Seite(n)"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:119
|
||||||
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 "Wähle Seiten aus, auf welchen der Post angezeigt wird. Ohne Auswahl sichtbar auf allen konfigurierten Seiten."
|
msgstr "Wähle Seiten aus, auf welchen der Post angezeigt wird. Ohne Auswahl sichtbar auf allen konfigurierten Seiten."
|
||||||
|
|
||||||
#: models.py:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr "Titel"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr "Auszug"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Post Meta-Description"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Post Meta-Keywords"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Post Meta-Titel"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
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 im Titel-Tag und für das soziale Teilen genutzt"
|
||||||
|
|
||||||
#: models.py:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr "Text"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "Blog-Artikel"
|
msgstr "Blog-Artikel"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "Blog-Artikel"
|
msgstr "Blog-Artikel"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Artikel"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
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 Artikel"
|
||||||
|
|
||||||
#: models.py:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
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 die Blog-Einträge mit dem ausgewählten Tag anzeigen"
|
||||||
|
|
||||||
#: models.py:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
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-Einträge der ausgewählten Kategorie anzeigen"
|
||||||
|
|
||||||
#: models.py:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Authoren"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
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-Artikel"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "von"
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Kategorie"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -208,16 +389,11 @@ msgstr "Artikel von"
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Kategorie"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Kein Artikel gefunden."
|
msgstr "Kein Artikel gefunden."
|
||||||
|
|
||||||
|
@ -225,49 +401,64 @@ msgstr "Kein Artikel gefunden."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Zurück"
|
msgstr "Zurück"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "vorheriger"
|
msgstr "vorheriger"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Seite"
|
msgstr "Seite"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "von"
|
msgstr "von"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "nächste"
|
msgstr "nächste"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "weiterlesen"
|
msgstr "weiterlesen"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "von"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
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 Artikel"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 Artikel"
|
msgstr "0 Artikel"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Authoren"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -6,7 +6,7 @@ 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-09-30 09:56+0200\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\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,6 +17,14 @@ 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:163 admin.py:171 admin.py:179
|
||||||
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
#: cms_plugins.py:108 cms_toolbar.py:19
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
|
@ -73,46 +81,59 @@ msgid "Alternative directory to load the blog templates from"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:58
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
msgid "Object type"
|
msgid "Object type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:62
|
#: cms_appconfig.py:67
|
||||||
msgid "Facebook type"
|
msgid "Facebook type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:66
|
#: cms_appconfig.py:71
|
||||||
msgid "Facebook application ID"
|
msgid "Facebook application ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:69
|
#: cms_appconfig.py:75
|
||||||
msgid "Facebook profile ID"
|
msgid "Facebook profile ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:72
|
#: cms_appconfig.py:79
|
||||||
msgid "Facebook page URL"
|
msgid "Facebook page URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:75
|
#: cms_appconfig.py:83
|
||||||
msgid "Facebook author URL"
|
msgid "Facebook author URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:78
|
#: cms_appconfig.py:87
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr "Author"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
msgid "Twitter type"
|
msgid "Twitter type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:82
|
#: cms_appconfig.py:95
|
||||||
msgid "Twitter site handle"
|
msgid "Twitter site handle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:85
|
#: cms_appconfig.py:99
|
||||||
msgid "Twitter author handle"
|
msgid "Twitter author handle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:88
|
#: cms_appconfig.py:103
|
||||||
msgid "Google+ type"
|
msgid "Google+ type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_appconfig.py:92
|
#: cms_appconfig.py:107
|
||||||
msgid "Google+ author name"
|
msgid "Google+ author name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -158,9 +179,9 @@ msgstr ""
|
||||||
msgid "Blog articles on %(site_name)s"
|
msgid "Blog articles on %(site_name)s"
|
||||||
msgstr "Blog articles on %(site_name)s"
|
msgstr "Blog articles on %(site_name)s"
|
||||||
|
|
||||||
#: menu.py:14
|
#: menu.py:16
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Blog Category menu"
|
msgid "Blog menu"
|
||||||
msgstr "blog category"
|
msgstr "blog category"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:34
|
||||||
|
@ -175,204 +196,214 @@ msgstr "created at"
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "modified at"
|
msgstr "modified at"
|
||||||
|
|
||||||
#: models.py:37 models.py:120 models.py:253
|
#: models.py:38 models.py:123 models.py:276
|
||||||
msgid "app. config"
|
msgid "app. config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:40
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "name"
|
msgstr "name"
|
||||||
|
|
||||||
#: models.py:41 models.py:124
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "slug"
|
msgstr "slug"
|
||||||
|
|
||||||
#: models.py:48
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "blog category"
|
msgstr "blog category"
|
||||||
|
|
||||||
#: models.py:49
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "blog categories"
|
msgstr "blog categories"
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:91
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "author"
|
msgid "author"
|
||||||
msgstr "Author"
|
msgstr "Author"
|
||||||
|
|
||||||
#: models.py:92
|
#: models.py:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "created"
|
msgid "created"
|
||||||
msgstr "created at"
|
msgstr "created at"
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:95
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "last modified"
|
msgid "last modified"
|
||||||
msgstr "modified at"
|
msgstr "modified at"
|
||||||
|
|
||||||
#: models.py:94
|
#: models.py:96
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "published since"
|
msgid "published since"
|
||||||
msgstr "Published Since"
|
msgstr "Published Since"
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:98
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "published until"
|
msgid "published until"
|
||||||
msgstr "Published Until"
|
msgstr "Published Until"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:100
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "publish"
|
msgid "publish"
|
||||||
msgstr "Publish"
|
msgstr "Publish"
|
||||||
|
|
||||||
#: models.py:99
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "category"
|
msgstr "category"
|
||||||
|
|
||||||
#: models.py:101
|
#: models.py:103
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "main image"
|
msgid "main image"
|
||||||
msgstr "Main image"
|
msgstr "Main image"
|
||||||
|
|
||||||
#: models.py:105
|
#: models.py:107
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Main image thumbnail"
|
msgstr "Main image thumbnail"
|
||||||
|
|
||||||
#: models.py:110
|
#: models.py:112
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "main image full"
|
msgid "main image full"
|
||||||
msgstr "Main image full"
|
msgstr "Main image full"
|
||||||
|
|
||||||
#: models.py:114
|
#: models.py:116
|
||||||
msgid "enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:116
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:117
|
#: models.py:119
|
||||||
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:123
|
#: models.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "title"
|
msgid "title"
|
||||||
msgstr "Title"
|
msgstr "Title"
|
||||||
|
|
||||||
#: models.py:125
|
#: models.py:129
|
||||||
msgid "abstract"
|
msgid "abstract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:126
|
#: models.py:130
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Post meta description"
|
msgstr "Post meta description"
|
||||||
|
|
||||||
#: models.py:128
|
#: models.py:132
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Post meta description"
|
msgstr "Post meta description"
|
||||||
|
|
||||||
#: models.py:130
|
#: models.py:134
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Post meta description"
|
msgstr "Post meta description"
|
||||||
|
|
||||||
#: models.py:131
|
#: models.py:135
|
||||||
msgid "used in title tag and social sharing"
|
msgid "used in title tag and social sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:134
|
#: models.py:138
|
||||||
msgid "text"
|
msgid "text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:170
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "blog article"
|
msgstr "blog article"
|
||||||
|
|
||||||
#: models.py:171
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "blog articles"
|
msgstr "blog articles"
|
||||||
|
|
||||||
#: models.py:269
|
#: models.py:293
|
||||||
msgid "generic blog plugin"
|
msgid "generic blog plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:273 models.py:306
|
#: models.py:297 models.py:330
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "articles"
|
msgid "articles"
|
||||||
msgstr "0 articles"
|
msgstr "0 articles"
|
||||||
|
|
||||||
#: models.py:274
|
#: models.py:298
|
||||||
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 "The number of latests articles to be displayed."
|
||||||
|
|
||||||
#: models.py:276
|
#: models.py:300
|
||||||
msgid "filter by tag"
|
msgid "filter by tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:277
|
#: models.py:301
|
||||||
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 "Show only the blog articles tagged with chosen tags."
|
||||||
|
|
||||||
#: models.py:280
|
#: models.py:304
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "filter by category"
|
msgid "filter by category"
|
||||||
msgstr "blog category"
|
msgstr "blog category"
|
||||||
|
|
||||||
#: models.py:281
|
#: models.py:305
|
||||||
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 "Show only the blog articles tagged with chosen categories."
|
||||||
|
|
||||||
#: models.py:285
|
#: models.py:309
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s latest articles by tag"
|
msgid "%s latest articles by tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:302
|
#: models.py:326
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "authors"
|
msgid "authors"
|
||||||
msgstr "Authors"
|
msgstr "Authors"
|
||||||
|
|
||||||
#: models.py:307
|
#: models.py:331
|
||||||
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 "The number of author articles to be displayed."
|
||||||
|
|
||||||
#: models.py:311
|
#: models.py:335
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s latest articles by author"
|
msgid "%s latest articles by author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings.py:11
|
#: settings.py:16
|
||||||
#, fuzzy
|
|
||||||
msgid "Article"
|
|
||||||
msgstr "Articles"
|
|
||||||
|
|
||||||
#: settings.py:12
|
|
||||||
msgid "Website"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: settings.py:17
|
|
||||||
msgid "Full date"
|
msgid "Full date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings.py:18
|
#: settings.py:17
|
||||||
msgid "Year / Month"
|
msgid "Year / Month"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings.py:19 templates/djangocms_blog/post_list.html:14
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Category"
|
msgstr "Category"
|
||||||
|
|
||||||
#: settings.py:20
|
#: settings.py:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Just slug"
|
msgid "Just slug"
|
||||||
msgstr "slug"
|
msgstr "slug"
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr "Categories"
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr "Categories"
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr "Posts"
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
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 "Articles by"
|
||||||
|
@ -443,15 +474,16 @@ msgstr "Authors"
|
||||||
msgid "No categories found."
|
msgid "No categories found."
|
||||||
msgstr "No article found."
|
msgstr "No article found."
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
#~ msgid "Text"
|
#~ msgid "Text"
|
||||||
#~ msgstr "Text"
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,9 +7,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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2015-04-28 12:30+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+0000\n"
|
||||||
"Last-Translator: David Díaz <d.diazp@gmail.com>\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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -18,187 +18,368 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Blog"
|
msgstr "Blog"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Últimos artículos del blog"
|
msgstr "Últimos artículos del blog"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Artículos del blog por author"
|
msgstr "Artículos del blog por author"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiquetas"
|
msgstr "Etiquetas"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Categorías"
|
msgstr "Categorías"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archivo"
|
msgstr "Archivo"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Lista de entradas"
|
msgstr "Lista de entradas"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Añadir entradas"
|
msgstr "Añadir entradas"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "Editar entrada"
|
msgstr "Editar entrada"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "padre"
|
msgstr "padre"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "Actualizado en"
|
msgstr "Actualizado en"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "nombre"
|
msgstr "nombre"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "slug"
|
msgstr "slug"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "categoría del blog"
|
msgstr "categoría del blog"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "categorías del blog"
|
msgstr "categorías del blog"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Autor"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr "Publicado desde"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr "Publicado hasta"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:79
|
#: models.py:96
|
||||||
msgid "Publish"
|
msgid "published since"
|
||||||
msgstr "Publicar"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:80
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "categoría"
|
msgstr "categoría"
|
||||||
|
|
||||||
#: models.py:82
|
#: models.py:103
|
||||||
msgid "Main image"
|
msgid "main image"
|
||||||
msgstr "Imagen principal"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:85
|
#: models.py:107
|
||||||
msgid "Main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Imagen principal pequeña"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:112
|
||||||
msgid "Main image full"
|
msgid "main image full"
|
||||||
msgstr "Imagen principal original"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:116
|
||||||
msgid "Enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr "Habilitar comentarios en la entrada"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr "Sitio(s)"
|
msgstr "Sitio(s)"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr "Título"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr "Abstracto"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Descripción meta de la entrada"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Palabras clave de la entrada"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Título meta de la entrada"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
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:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr "Texto"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "artículo del blog"
|
msgstr "artículo del blog"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "artículos del blog"
|
msgstr "artículos del blog"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Artículos"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
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:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
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:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
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:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Autores"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
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."
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "por"
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Categoría"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -208,16 +389,11 @@ msgstr "Artículos por"
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Etiqueta"
|
msgstr "Etiqueta"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Categoría"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Ningún artículo encontrado."
|
msgstr "Ningún artículo encontrado."
|
||||||
|
|
||||||
|
@ -225,49 +401,64 @@ msgstr "Ningún artículo encontrado."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Atrás"
|
msgstr "Atrás"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "Anterior"
|
msgstr "Anterior"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Página"
|
msgstr "Página"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "de"
|
msgstr "de"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "siguiente"
|
msgstr "siguiente"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "leer más"
|
msgstr "leer más"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "por"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
msgstr[0] "1 artículo"
|
msgstr[0] "1 artículo"
|
||||||
msgstr[1] "%(articles)s artículos"
|
msgstr[1] "%(articles)s artículos"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 artículos"
|
msgstr "0 artículos"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Autores"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -3,15 +3,15 @@
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Iacopo Spalletti, 2014
|
# Iacopo Spalletti, 2014
|
||||||
# yakky <i.spalletti@nephila.it>, 2014
|
# yakky <i.spalletti@nephila.it>, 2014-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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2014-11-30 11:51+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:53+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/projects/p/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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -19,187 +19,368 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr "Puoi inserire stringhe, attributi o metodi del model Post"
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr "django CMS Blog"
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Blog"
|
msgstr "Blog"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr "Titolo applicazione"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr "Senza titolo"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr "Articoli pubblicati di default"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr "Struttura permalink"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr "Usa placeholder e plugin per il contenuto"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr "Usa campo abstract"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr "Imposta autore"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr "Imposta autore di default"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr "Dimensione paginazione"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr "Se la lista è paginata, quanti articoli visualizzati per pagina?"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr "Prefisso template"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr "Directory alternativa da cui caricare i template"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr "Struttura del menu"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr "Struttura del menu django CMS"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr "Tipo oggetto"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr "Tipo oggetto Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr "ID Applicazione Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr "ID Profilo Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr "URL Pagina Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr "URL Autore Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr "Autore Facebook"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr "Tipo oggetto Twitter"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr "Nome Twitter del sito"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr "Nome Twitter autore"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr "Tipo oggetto Google+"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr "Nome Google+ autore"
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Ultimi articoli"
|
msgstr "Ultimi articoli"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Articoli per autore"
|
msgstr "Articoli per autore"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Categorie"
|
msgstr "Categorie"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archivio"
|
msgstr "Archivio"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Lista degli articoli"
|
msgstr "Lista degli articoli"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Aggiungi articolo"
|
msgstr "Aggiungi articolo"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr "Modifica configurazione"
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "Modifica articolo"
|
msgstr "Modifica articolo"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr "Menu del blog"
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "superiore"
|
msgstr "superiore"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "creato il"
|
msgstr "creato il"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "modificato il"
|
msgstr "modificato il"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr "config. app."
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "nome"
|
msgstr "nome"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "slug"
|
msgstr "slug"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "categoria del blog"
|
msgstr "categoria del blog"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "categorie del blog"
|
msgstr "categorie del blog"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Autore"
|
msgstr "autore"
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
|
msgstr "creato"
|
||||||
|
|
||||||
|
#: models.py:95
|
||||||
|
msgid "last modified"
|
||||||
|
msgstr "ultima modifica"
|
||||||
|
|
||||||
|
#: models.py:96
|
||||||
|
msgid "published since"
|
||||||
msgstr "Pubblicato il"
|
msgstr "Pubblicato il"
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:98
|
||||||
msgid "Published Until"
|
msgid "published until"
|
||||||
msgstr "fino al"
|
msgstr "fino al"
|
||||||
|
|
||||||
#: models.py:79
|
#: models.py:100
|
||||||
msgid "Publish"
|
msgid "publish"
|
||||||
msgstr "Pubblicato"
|
msgstr "pubblica"
|
||||||
|
|
||||||
#: models.py:80
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "categoria"
|
msgstr "categoria"
|
||||||
|
|
||||||
#: models.py:82
|
#: models.py:103
|
||||||
msgid "Main image"
|
msgid "main image"
|
||||||
msgstr "Immagine"
|
msgstr "immagine principale"
|
||||||
|
|
||||||
#: models.py:85
|
#: models.py:107
|
||||||
msgid "Main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Dimensione miniatura"
|
msgstr "dimensioni miniatura immagine"
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:112
|
||||||
msgid "Main image full"
|
msgid "main image full"
|
||||||
msgstr "Dimensione piena"
|
msgstr "dimensioni immagine"
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:116
|
||||||
msgid "Enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr "Abilita commenti sul post"
|
msgstr "abilita commenti sull'articolo"
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr "Sito/i"
|
msgstr "Sito/i"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr "Titolo"
|
msgstr "titolo"
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr "Riassunto"
|
msgstr "abstract"
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Descrizione SEO dell'articolo"
|
msgstr "meta description"
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Keyword SEO dell'articolo"
|
msgstr "meta keywords"
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Titolo SEO dell'articolo"
|
msgstr "meta title"
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
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:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr "Test"
|
msgstr "testo"
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "articolo del blog"
|
msgstr "articolo del blog"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "articoli del blog"
|
msgstr "articoli del blog"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Articoli"
|
msgstr "plugin blog"
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr "articoli"
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
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:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr "filtra per tag"
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
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:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr "filtra per categoria"
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
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:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Autori"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr "ultimi %s articoli per tag"
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr "autori"
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
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."
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "di"
|
msgstr "ultimi %s articoli per autore"
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr "Data completa"
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr "Anno / Mese"
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Categoria"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr "Solo slug"
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr "Categorie e articoli"
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr "Solo categorie"
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr "Solo articoli"
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Niente"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -209,16 +390,11 @@ msgstr "Articoli di"
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Categoria"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Nessun articolo trovato."
|
msgstr "Nessun articolo trovato."
|
||||||
|
|
||||||
|
@ -226,49 +402,64 @@ msgstr "Nessun articolo trovato."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Indietro"
|
msgstr "Indietro"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "precedente"
|
msgstr "precedente"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Pagina"
|
msgstr "Pagina"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "di"
|
msgstr "di"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "successivo"
|
msgstr "successivo"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "leggi"
|
msgstr "leggi"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "di"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
msgstr[0] "1 articolo"
|
msgstr[0] "1 articolo"
|
||||||
msgstr[1] "%(articles)s articoli"
|
msgstr[1] "%(articles)s articoli"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 articoli"
|
msgstr "0 articoli"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Autori"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr "Nessuna categoria trovata."
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,9 +7,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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2015-02-23 20:11+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+0000\n"
|
||||||
"Last-Translator: Matas Dailyda <matas@dailyda.com>\n"
|
"Last-Translator: yakky <i.spalletti@nephila.it>\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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -18,187 +18,368 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Tinklaraštis"
|
msgstr "Tinklaraštis"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr "aplikacijos pavadinimas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr "be pavadinimo"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr "Pagal numatymą įrašas publikuojamas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr "Nuolatinės nuorodos struktūra"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr "Straipsnio tekstui naudokite rezervuotą vietą ir įskiepiuis"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr "Naudoti santraukos lauką"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr "Nustatyti autorių"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr "Pagal numatymą nustatyti autorių"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr "Puslapiavimo dydis"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr "Kai puslapiuojamas sąrašas, kiek straipsnių atvaizduoti puslapyje?"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr "Šablono priešdėlis"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr "Alternatyvus katalogas iš kurio būtų užkraunami šablonai"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr "Objekto tipas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr "Facebook tipas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr "Facebook aplikacijos ID"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr "Facebook profilio ID"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr "Facebook puslapio URL"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr "Facebook autoriaus URL"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr "Twitter tipas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr "Twitter tinklalapio vardas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr "Twitter autoriaus vardas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr "Google+ tipas"
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr "Goggle+ autoriaus vardas"
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Naujausi tinklaraščio straipsniai"
|
msgstr "Naujausi tinklaraščio straipsniai"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Tinklaraščio straipsnių autorius"
|
msgstr "Tinklaraščio straipsnių autorius"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Žymenos"
|
msgstr "Žymenos"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Kategorijos"
|
msgstr "Kategorijos"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archyvas"
|
msgstr "Archyvas"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Straipsnių sąrašas"
|
msgstr "Straipsnių sąrašas"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Pridėti straipsnį"
|
msgstr "Pridėti straipsnį"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr "Redaguoti nustatymus"
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "Redaguoti straipsnį"
|
msgstr "Redaguoti straipsnį"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "pirminis elementas"
|
msgstr "pirminis elementas"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "sukurta"
|
msgstr "sukurta"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "redaguota"
|
msgstr "redaguota"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr "aplikacijos nustatymai"
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "pavadinimas"
|
msgstr "pavadinimas"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "nuoroda"
|
msgstr "nuoroda"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "tinklaraščio kategorija"
|
msgstr "tinklaraščio kategorija"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "tinklaraščio kategorijos"
|
msgstr "tinklaraščio kategorijos"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Autorius"
|
msgstr "autorius"
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr "Publikuota nuo"
|
msgstr "sukurta"
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr "Publikuota iki"
|
msgstr "paskutinį kartą redaguota"
|
||||||
|
|
||||||
#: models.py:79
|
#: models.py:96
|
||||||
msgid "Publish"
|
msgid "published since"
|
||||||
msgstr "Publikuoti"
|
msgstr "publikuota nuo"
|
||||||
|
|
||||||
#: models.py:80
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr "publikuota iki"
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr "publikuoti"
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "kategorija"
|
msgstr "kategorija"
|
||||||
|
|
||||||
#: models.py:82
|
#: models.py:103
|
||||||
msgid "Main image"
|
msgid "main image"
|
||||||
msgstr "Pagrindinis paveikslėlis"
|
msgstr "pagrindinis paveikslėlis"
|
||||||
|
|
||||||
#: models.py:85
|
#: models.py:107
|
||||||
msgid "Main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Pagrindinio paveikslėlio miniatiūra"
|
msgstr "pagrindinio paveikslėlio miniatiūra"
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:112
|
||||||
msgid "Main image full"
|
msgid "main image full"
|
||||||
msgstr "Pagrindinis paveikslėlis pilnas"
|
msgstr "pagrindinis paveikslėlis pilnas"
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:116
|
||||||
msgid "Enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr "Įgalinti straipsniui komentarus"
|
msgstr "įgalinti straipsniui komentarus"
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr "Tinklalapis(iai)"
|
msgstr "Tinklalapis(iai)"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr "Pavadinimas"
|
msgstr "pavadinimas"
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr "Santrauka"
|
msgstr "santrauka"
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Straipsnio meta apibūdinimas"
|
msgstr "straipsnio meta apibūdinimas"
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Straipsnio meta raktažodžiai"
|
msgstr "straipsnio meta raktažodžiai"
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Straipsnio meta pavadinimas"
|
msgstr "straipsnio meta pavadinimas"
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
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:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr "Tekstas"
|
msgstr "tekstas"
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "tinklaraščio straipsnis"
|
msgstr "tinklaraščio straipsnis"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "tinklaraščio straipsniai"
|
msgstr "tinklaraščio straipsniai"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Straipsniai"
|
msgstr "bendras tinklaraščio įskiepis"
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr "straipsniai"
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
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:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr "filtruoti pagal žymeną"
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
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:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr "filtruoti pagal kategoriją"
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
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:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Autoriai"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr "%s paskutiniai straipsniai pagal žymeną"
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr "autoriai"
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
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."
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "pagal"
|
msgstr "%s paskutiniai straipsniai pagal autorių"
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr "Pilna data"
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr "Metai / Mėnesis"
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Kategorija"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr "Tik nuoroda"
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -208,16 +389,11 @@ msgstr "Straipsniai pagal"
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Žymena"
|
msgstr "Žymena"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Kategorija"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Nerasta jokių straipsnių."
|
msgstr "Nerasta jokių straipsnių."
|
||||||
|
|
||||||
|
@ -225,30 +401,34 @@ msgstr "Nerasta jokių straipsnių."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Atgal"
|
msgstr "Atgal"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "buvęs"
|
msgstr "buvęs"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Puslapis"
|
msgstr "Puslapis"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "iš"
|
msgstr "iš"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "kitas"
|
msgstr "kitas"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "skaityti daugiau"
|
msgstr "skaityti daugiau"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "pagal"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
|
@ -256,19 +436,30 @@ msgstr[0] "%(articles)s straipsnis"
|
||||||
msgstr[1] "%(articles)s straipsniai"
|
msgstr[1] "%(articles)s straipsniai"
|
||||||
msgstr[2] "%(articles)s straipsnių"
|
msgstr[2] "%(articles)s straipsnių"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 straipsnių"
|
msgstr "0 straipsnių"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Autoriai"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr "Nerasta jokių kategorijų."
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -6,10 +6,10 @@ 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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2014-11-30 11:49+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+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/projects/p/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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -17,186 +17,367 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Blog articles on %(site_name)s"
|
msgid "Blog articles on %(site_name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:31
|
#: menu.py:16
|
||||||
msgid "parent"
|
msgid "Blog menu"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:33
|
|
||||||
msgid "created at"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:34
|
||||||
|
msgid "parent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:35
|
||||||
|
msgid "created at"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:79
|
|
||||||
msgid "Publish"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:80
|
|
||||||
msgid "category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:82
|
|
||||||
msgid "Main image"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:85
|
|
||||||
msgid "Main image thumbnail"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:89
|
|
||||||
msgid "Main image full"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:93
|
|
||||||
msgid "Enable comments on post"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:96
|
||||||
msgid "Site(s)"
|
msgid "published since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
|
msgid "category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:103
|
||||||
|
msgid "main image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:107
|
||||||
|
msgid "main image thumbnail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:112
|
||||||
|
msgid "main image full"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:116
|
||||||
|
msgid "enable comments on post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:118
|
||||||
|
msgid "Site(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
msgid "used in title tag and social sharing"
|
msgid "used in title tag and social sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
msgid "The number of latests articles to be displayed."
|
msgid "The number of latests articles to be displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
msgid "Show only the blog articles tagged with chosen tags."
|
msgid "Show only the blog articles tagged with chosen tags."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
msgid "Show only the blog articles tagged with chosen categories."
|
msgid "Show only the blog articles tagged with chosen categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
|
msgid "%s latest articles by tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
msgid "The number of author articles to be displayed."
|
msgid "The number of author articles to be displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
|
@ -207,16 +388,11 @@ msgstr ""
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -224,49 +400,64 @@ msgstr ""
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -3,202 +3,384 @@
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Iacopo Spalletti, 2014
|
# Iacopo Spalletti, 2014
|
||||||
|
# Rüstem Mirzaoğlu, 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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2014-11-30 11:49+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+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/projects/p/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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Блог"
|
msgstr "Блог"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Последние статьи блога"
|
msgstr "Последние статьи блога"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Автор"
|
msgstr "Автор статей блога"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Тэги"
|
msgstr "Метки"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Categories"
|
msgstr "Категории"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Архив"
|
msgstr "Архив"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Список статей"
|
msgstr "Список статей"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Добавить статью"
|
msgstr "Добавить статью"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
msgid "Edit Post"
|
msgid "Edit configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: feeds.py:16
|
#: cms_toolbar.py:32
|
||||||
|
msgid "Edit Post"
|
||||||
|
msgstr "Редактировать статью"
|
||||||
|
|
||||||
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "предок"
|
msgstr "предок"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "время создания"
|
msgstr "время создания"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "время изменения"
|
msgstr "время изменения"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "название"
|
msgstr "название"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "URL"
|
msgstr "ЧПУ"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "категория блога"
|
msgstr "категория блога"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "категории блога"
|
msgstr "категории блога"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Автор"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr "Опубликована с"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr "Опубликована до"
|
|
||||||
|
|
||||||
#: models.py:79
|
|
||||||
msgid "Publish"
|
|
||||||
msgstr "Показывать на сайте"
|
|
||||||
|
|
||||||
#: models.py:80
|
|
||||||
msgid "category"
|
|
||||||
msgstr "категория"
|
|
||||||
|
|
||||||
#: models.py:82
|
|
||||||
msgid "Main image"
|
|
||||||
msgstr "Картинка для статьи"
|
|
||||||
|
|
||||||
#: models.py:85
|
|
||||||
msgid "Main image thumbnail"
|
|
||||||
msgstr "Уменьшенная копия"
|
|
||||||
|
|
||||||
#: models.py:89
|
|
||||||
msgid "Main image full"
|
|
||||||
msgstr "Полный размер"
|
|
||||||
|
|
||||||
#: models.py:93
|
|
||||||
msgid "Enable comments on post"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:96
|
||||||
msgid "Site(s)"
|
msgid "published since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:98
|
||||||
msgid ""
|
msgid "published until"
|
||||||
"Select sites in which to show the post. If none is set it will be visible in"
|
|
||||||
" all the configured sites."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:104
|
#: models.py:100
|
||||||
msgid "Title"
|
msgid "publish"
|
||||||
msgstr "Заголовок"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:101
|
||||||
msgid "Abstract"
|
msgid "category"
|
||||||
|
msgstr "категория"
|
||||||
|
|
||||||
|
#: models.py:103
|
||||||
|
msgid "main image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:107
|
||||||
msgid "Post meta description"
|
msgid "main image thumbnail"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:109
|
|
||||||
msgid "Post meta keywords"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:111
|
|
||||||
msgid "Post meta title"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:112
|
||||||
|
msgid "main image full"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:116
|
||||||
|
msgid "enable comments on post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:118
|
||||||
|
msgid "Site(s)"
|
||||||
|
msgstr "Сайт(ы)"
|
||||||
|
|
||||||
|
#: models.py:119
|
||||||
|
msgid ""
|
||||||
|
"Select sites in which to show the post. If none is set it will be visible in"
|
||||||
|
" all the configured sites."
|
||||||
|
msgstr "Выберите сайты на которых будет опубликована статья. Если сайты не выбраны, статья будет опубликована на всех сайтах сразу."
|
||||||
|
|
||||||
|
#: models.py:127
|
||||||
|
msgid "title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:129
|
||||||
|
msgid "abstract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:130
|
||||||
|
msgid "post meta description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:132
|
||||||
|
msgid "post meta keywords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:134
|
||||||
|
msgid "post meta title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:135
|
||||||
msgid "used in title tag and social sharing"
|
msgid "used in title tag and social sharing"
|
||||||
|
msgstr "используется в метках и обмене в социальных сетях"
|
||||||
|
|
||||||
|
#: models.py:138
|
||||||
|
msgid "text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:115
|
#: models.py:175
|
||||||
msgid "Text"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: models.py:178
|
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "статья блога"
|
msgstr "статья блога"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "статьи блога"
|
msgstr "статьи блога"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Статьи"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
msgid "The number of latests articles to be displayed."
|
msgid "The number of latests articles to be displayed."
|
||||||
msgstr "Количество показываемых последних статей."
|
msgstr "Количество последних статей, которые будут показаны."
|
||||||
|
|
||||||
#: models.py:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
msgid "Show only the blog articles tagged with chosen tags."
|
msgid "Show only the blog articles tagged with chosen tags."
|
||||||
msgstr "Показывать только статьи с выбранными тэгами."
|
msgstr "Показывать статьи только с выбранными метками."
|
||||||
|
|
||||||
#: models.py:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
msgid "Show only the blog articles tagged with chosen categories."
|
msgid "Show only the blog articles tagged with chosen categories."
|
||||||
msgstr "Показывать только статьи из выбранныех категорий."
|
msgstr "Показывать статьи только из выбранных категорий."
|
||||||
|
|
||||||
#: models.py:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Авторы"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
msgid "The number of author articles to be displayed."
|
msgid "The number of author articles to be displayed."
|
||||||
msgstr "Количество статей автора, которые будут показаны."
|
msgstr "Количество статей автора, которые будут показаны."
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "создана"
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Категория"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -206,18 +388,13 @@ msgstr "Статьи созданы"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:13
|
#: templates/djangocms_blog/post_list.html:13
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Тэг"
|
msgstr "Метка"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Категория"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Не найдено ни одной статьи."
|
msgstr "Не найдено ни одной статьи."
|
||||||
|
|
||||||
|
@ -225,50 +402,66 @@ msgstr "Не найдено ни одной статьи."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Назад"
|
msgstr "Назад"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "предыдущая"
|
msgstr "предыдущая"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Страница"
|
msgstr "Страница"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "из"
|
msgstr "из"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "следующая"
|
msgstr "следующая"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "продолжение"
|
msgstr "читать далее"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "создана"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
msgstr[0] "%(articles)s статья"
|
msgstr[0] "%(articles)s статья"
|
||||||
msgstr[1] "%(articles)s статьи"
|
msgstr[1] "%(articles)s статьи"
|
||||||
msgstr[2] "%(articles)s статей"
|
msgstr[2] "%(articles)s статей"
|
||||||
|
msgstr[3] "%(articles)s статей"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 статей"
|
msgstr "0 статей"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Авторы"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,9 +7,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: 2014-11-30 12:49+0100\n"
|
"POT-Creation-Date: 2015-10-18 15:49+0200\n"
|
||||||
"PO-Revision-Date: 2015-01-26 12:41+0000\n"
|
"PO-Revision-Date: 2015-10-18 13:50+0000\n"
|
||||||
"Last-Translator: Rüstem Mirzaoğlu\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"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -18,187 +18,368 @@ 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"
|
||||||
|
|
||||||
#: cms_app.py:8 cms_plugins.py:32 cms_plugins.py:45 cms_plugins.py:56
|
#: admin.py:163 admin.py:171 admin.py:179
|
||||||
#: cms_plugins.py:67 cms_toolbar.py:18
|
msgid "You can provide plain strings, Post model attribute or method names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps.py:15
|
||||||
|
msgid "django CMS Blog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_app.py:13 cms_plugins.py:64 cms_plugins.py:77 cms_plugins.py:93
|
||||||
|
#: cms_plugins.py:108 cms_toolbar.py:19
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr "Blog"
|
msgstr "Blog"
|
||||||
|
|
||||||
#: cms_plugins.py:20
|
#: cms_appconfig.py:20
|
||||||
|
msgid "application title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:24
|
||||||
|
msgid "untitled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:29
|
||||||
|
msgid "Post published by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:33
|
||||||
|
msgid "Permalink structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:38
|
||||||
|
msgid "Use placeholder and plugins for article body"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:42
|
||||||
|
msgid "Use abstract field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:46
|
||||||
|
msgid "Set author by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:50
|
||||||
|
msgid "Paginate size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:51
|
||||||
|
msgid "When paginating list views, how many articles per page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:54
|
||||||
|
msgid "Template prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:55
|
||||||
|
msgid "Alternative directory to load the blog templates from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:58
|
||||||
|
msgid "Menu structure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:60
|
||||||
|
msgid "Structure of the django CMS menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:63
|
||||||
|
msgid "Object type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:67
|
||||||
|
msgid "Facebook type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:71
|
||||||
|
msgid "Facebook application ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:75
|
||||||
|
msgid "Facebook profile ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:79
|
||||||
|
msgid "Facebook page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:83
|
||||||
|
msgid "Facebook author URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:87
|
||||||
|
msgid "Facebook author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:91
|
||||||
|
msgid "Twitter type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:95
|
||||||
|
msgid "Twitter site handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:99
|
||||||
|
msgid "Twitter author handle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:103
|
||||||
|
msgid "Google+ type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_appconfig.py:107
|
||||||
|
msgid "Google+ author name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_plugins.py:30 cms_plugins.py:49
|
||||||
msgid "Latest Blog Articles"
|
msgid "Latest Blog Articles"
|
||||||
msgstr "Blog'un son makaleleri"
|
msgstr "Blog'un son makaleleri"
|
||||||
|
|
||||||
#: cms_plugins.py:33
|
#: cms_plugins.py:65
|
||||||
msgid "Author Blog Articles"
|
msgid "Author Blog Articles"
|
||||||
msgstr "Blog'un makale yazarı"
|
msgstr "Blog'un makale yazarı"
|
||||||
|
|
||||||
#: cms_plugins.py:46 templates/djangocms_blog/plugins/tags.html:4
|
#: cms_plugins.py:78 templates/djangocms_blog/plugins/tags.html:3
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiketler"
|
msgstr "Etiketler"
|
||||||
|
|
||||||
#: cms_plugins.py:57 templates/djangocms_blog/plugins/categories.html:4
|
#: cms_plugins.py:94 templates/djangocms_blog/plugins/categories.html:3
|
||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Kategoriler"
|
msgstr "Kategoriler"
|
||||||
|
|
||||||
#: cms_plugins.py:68 templates/djangocms_blog/post_list.html:12
|
#: cms_plugins.py:109 templates/djangocms_blog/post_list.html:12
|
||||||
#: templates/djangocms_blog/plugins/archive.html:4
|
#: templates/djangocms_blog/plugins/archive.html:3
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Arşiv"
|
msgstr "Arşiv"
|
||||||
|
|
||||||
#: cms_toolbar.py:20
|
#: cms_toolbar.py:22
|
||||||
msgid "Post list"
|
msgid "Post list"
|
||||||
msgstr "Makale listesi"
|
msgstr "Makale listesi"
|
||||||
|
|
||||||
#: cms_toolbar.py:22
|
#: cms_toolbar.py:24
|
||||||
msgid "Add post"
|
msgid "Add post"
|
||||||
msgstr "Makale ekle"
|
msgstr "Makale ekle"
|
||||||
|
|
||||||
#: cms_toolbar.py:26
|
#: cms_toolbar.py:28
|
||||||
|
msgid "Edit configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cms_toolbar.py:32
|
||||||
msgid "Edit Post"
|
msgid "Edit Post"
|
||||||
msgstr "Makaleyi düzenle"
|
msgstr "Makaleyi düzenle"
|
||||||
|
|
||||||
#: feeds.py:16
|
#: feeds.py:24
|
||||||
#, 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:31
|
#: menu.py:16
|
||||||
|
msgid "Blog menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:34
|
||||||
msgid "parent"
|
msgid "parent"
|
||||||
msgstr "üst öğe"
|
msgstr "üst öğe"
|
||||||
|
|
||||||
#: models.py:33
|
#: models.py:35
|
||||||
msgid "created at"
|
msgid "created at"
|
||||||
msgstr "oluşturma tarihi"
|
msgstr "oluşturma tarihi"
|
||||||
|
|
||||||
#: models.py:34
|
#: models.py:36
|
||||||
msgid "modified at"
|
msgid "modified at"
|
||||||
msgstr "düzenleme tarihi"
|
msgstr "düzenleme tarihi"
|
||||||
|
|
||||||
#: models.py:37
|
#: models.py:38 models.py:123 models.py:276
|
||||||
|
msgid "app. config"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:42
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "isim"
|
msgstr "isim"
|
||||||
|
|
||||||
#: models.py:38 models.py:105
|
#: models.py:43 models.py:128
|
||||||
msgid "slug"
|
msgid "slug"
|
||||||
msgstr "okunaklı URL"
|
msgstr "okunaklı URL"
|
||||||
|
|
||||||
#: models.py:45
|
#: models.py:50
|
||||||
msgid "blog category"
|
msgid "blog category"
|
||||||
msgstr "blog kategorisi"
|
msgstr "blog kategorisi"
|
||||||
|
|
||||||
#: models.py:46
|
#: models.py:51
|
||||||
msgid "blog categories"
|
msgid "blog categories"
|
||||||
msgstr "blog kategorileri"
|
msgstr "blog kategorileri"
|
||||||
|
|
||||||
#: models.py:70
|
#: models.py:91
|
||||||
msgid "Author"
|
msgid "author"
|
||||||
msgstr "Yazar"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:75
|
#: models.py:94
|
||||||
msgid "Published Since"
|
msgid "created"
|
||||||
msgstr "Yayınlama tarihi"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:77
|
#: models.py:95
|
||||||
msgid "Published Until"
|
msgid "last modified"
|
||||||
msgstr "Yayından kaldırma tarihi"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:79
|
#: models.py:96
|
||||||
msgid "Publish"
|
msgid "published since"
|
||||||
msgstr "Yayınla"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:80
|
#: models.py:98
|
||||||
|
msgid "published until"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:100
|
||||||
|
msgid "publish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:101
|
||||||
msgid "category"
|
msgid "category"
|
||||||
msgstr "kategori"
|
msgstr "kategori"
|
||||||
|
|
||||||
#: models.py:82
|
#: models.py:103
|
||||||
msgid "Main image"
|
msgid "main image"
|
||||||
msgstr "Ana resim"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:85
|
#: models.py:107
|
||||||
msgid "Main image thumbnail"
|
msgid "main image thumbnail"
|
||||||
msgstr "Ana resmin küçük kopyası"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:89
|
#: models.py:112
|
||||||
msgid "Main image full"
|
msgid "main image full"
|
||||||
msgstr "Ana resim - büyükboy"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:93
|
#: models.py:116
|
||||||
msgid "Enable comments on post"
|
msgid "enable comments on post"
|
||||||
msgstr "Makale için yorumları etkinleştir"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:96
|
#: models.py:118
|
||||||
msgid "Site(s)"
|
msgid "Site(s)"
|
||||||
msgstr "Web site(ler)"
|
msgstr "Web site(ler)"
|
||||||
|
|
||||||
#: models.py:98
|
#: models.py:119
|
||||||
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:104
|
#: models.py:127
|
||||||
msgid "Title"
|
msgid "title"
|
||||||
msgstr "Başlık"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:106
|
#: models.py:129
|
||||||
msgid "Abstract"
|
msgid "abstract"
|
||||||
msgstr "Makale özeti"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:107
|
#: models.py:130
|
||||||
msgid "Post meta description"
|
msgid "post meta description"
|
||||||
msgstr "Makalenin kısa tanımı"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:109
|
#: models.py:132
|
||||||
msgid "Post meta keywords"
|
msgid "post meta keywords"
|
||||||
msgstr "Makalenin anahtar kelimeleri"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:111
|
#: models.py:134
|
||||||
msgid "Post meta title"
|
msgid "post meta title"
|
||||||
msgstr "Makalenin web tarayıcıdaki başlığı"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:112
|
#: models.py:135
|
||||||
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:115
|
#: models.py:138
|
||||||
msgid "Text"
|
msgid "text"
|
||||||
msgstr "Metin"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:178
|
#: models.py:175
|
||||||
msgid "blog article"
|
msgid "blog article"
|
||||||
msgstr "blog makalesi"
|
msgstr "blog makalesi"
|
||||||
|
|
||||||
#: models.py:179
|
#: models.py:176
|
||||||
msgid "blog articles"
|
msgid "blog articles"
|
||||||
msgstr "blog makaleleri"
|
msgstr "blog makaleleri"
|
||||||
|
|
||||||
#: models.py:222 models.py:250
|
#: models.py:293
|
||||||
msgid "Articles"
|
msgid "generic blog plugin"
|
||||||
msgstr "Makaleler"
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:223
|
#: models.py:297 models.py:330
|
||||||
|
msgid "articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:298
|
||||||
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:225
|
#: models.py:300
|
||||||
|
msgid "filter by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:301
|
||||||
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:227
|
#: models.py:304
|
||||||
|
msgid "filter by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:305
|
||||||
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:246 templates/djangocms_blog/plugins/authors.html:3
|
#: models.py:309
|
||||||
msgid "Authors"
|
#, python-format
|
||||||
msgstr "Yazarlar"
|
msgid "%s latest articles by tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: models.py:251
|
#: models.py:326
|
||||||
|
msgid "authors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: models.py:331
|
||||||
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ı."
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_detail.html:18
|
#: models.py:335
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:11
|
#, python-format
|
||||||
msgid "by"
|
msgid "%s latest articles by author"
|
||||||
msgstr "tarafından"
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:16
|
||||||
|
msgid "Full date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:17
|
||||||
|
msgid "Year / Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:18 templates/djangocms_blog/post_list.html:14
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Kategori"
|
||||||
|
|
||||||
|
#: settings.py:19
|
||||||
|
msgid "Just slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:28
|
||||||
|
msgid "Categories and posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:29
|
||||||
|
msgid "Categories only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:30
|
||||||
|
msgid "Posts only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: settings.py:31
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:11
|
#: templates/djangocms_blog/post_list.html:11
|
||||||
msgid "Articles by"
|
msgid "Articles by"
|
||||||
|
@ -208,16 +389,11 @@ msgstr "Makaleler"
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Etiket"
|
msgstr "Etiket"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:14
|
|
||||||
msgid "Category"
|
|
||||||
msgstr "Kategori"
|
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:21
|
#: templates/djangocms_blog/post_list.html:21
|
||||||
#: templates/djangocms_blog/plugins/archive.html:27
|
#: templates/djangocms_blog/plugins/archive.html:26
|
||||||
#: templates/djangocms_blog/plugins/authors.html:15
|
#: templates/djangocms_blog/plugins/authors.html:15
|
||||||
#: templates/djangocms_blog/plugins/categories.html:16
|
|
||||||
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
#: templates/djangocms_blog/plugins/latest_entries.html:7
|
||||||
#: templates/djangocms_blog/plugins/tags.html:16
|
#: templates/djangocms_blog/plugins/tags.html:15
|
||||||
msgid "No article found."
|
msgid "No article found."
|
||||||
msgstr "Makale bulunamadı."
|
msgstr "Makale bulunamadı."
|
||||||
|
|
||||||
|
@ -225,49 +401,64 @@ msgstr "Makale bulunamadı."
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Geri"
|
msgstr "Geri"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:30
|
#: templates/djangocms_blog/post_list.html:29
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "önceki"
|
msgstr "önceki"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Sayfa"
|
msgstr "Sayfa"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:33
|
#: templates/djangocms_blog/post_list.html:32
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "biri"
|
msgstr "biri"
|
||||||
|
|
||||||
#: templates/djangocms_blog/post_list.html:36
|
#: templates/djangocms_blog/post_list.html:35
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "sonraki"
|
msgstr "sonraki"
|
||||||
|
|
||||||
#: templates/djangocms_blog/includes/blog_item.html:46
|
#: templates/djangocms_blog/includes/blog_item.html:24
|
||||||
msgid "read more"
|
msgid "read more"
|
||||||
msgstr "devamını oku"
|
msgstr "devamını oku"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:18
|
#: templates/djangocms_blog/includes/blog_meta.html:6
|
||||||
|
msgid "by"
|
||||||
|
msgstr "tarafından"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/archive.html:17
|
||||||
#: templates/djangocms_blog/plugins/authors.html:10
|
#: templates/djangocms_blog/plugins/authors.html:10
|
||||||
#: templates/djangocms_blog/plugins/categories.html:11
|
#: templates/djangocms_blog/plugins/categories.html:10
|
||||||
#: templates/djangocms_blog/plugins/tags.html:11
|
#: templates/djangocms_blog/plugins/tags.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "1 article"
|
msgid "1 article"
|
||||||
msgid_plural "%(articles)s articles"
|
msgid_plural "%(articles)s articles"
|
||||||
msgstr[0] "1 makale"
|
msgstr[0] "1 makale"
|
||||||
msgstr[1] "%(articles)s makale"
|
msgstr[1] "%(articles)s makale"
|
||||||
|
|
||||||
#: templates/djangocms_blog/plugins/archive.html:19
|
#: 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:12
|
#: templates/djangocms_blog/plugins/categories.html:11
|
||||||
#: templates/djangocms_blog/plugins/tags.html:12
|
#: templates/djangocms_blog/plugins/tags.html:11
|
||||||
msgid "0 articles"
|
msgid "0 articles"
|
||||||
msgstr "0 makale"
|
msgstr "0 makale"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/authors.html:3
|
||||||
|
msgid "Authors"
|
||||||
|
msgstr "Yazarlar"
|
||||||
|
|
||||||
|
#: templates/djangocms_blog/plugins/categories.html:15
|
||||||
|
msgid "No categories found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Article"
|
||||||
|
#~ msgstr "Articles"
|
||||||
|
|
||||||
|
#~ msgid "Text"
|
||||||
|
#~ msgstr "Text"
|
||||||
|
|
||||||
#~ msgid "blog post"
|
#~ msgid "blog post"
|
||||||
#~ msgstr "blog post"
|
#~ msgstr "blog post"
|
||||||
|
|
||||||
#~ msgid "Posts"
|
|
||||||
#~ msgstr "Posts"
|
|
||||||
|
|
||||||
#~ msgid "Entries by"
|
#~ msgid "Entries by"
|
||||||
#~ msgstr "Entries by"
|
#~ msgstr "Entries by"
|
||||||
|
|
||||||
|
|
80
djangocms_blog/search_indexes.py
Normal file
80
djangocms_blog/search_indexes.py
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from aldryn_search.helpers import get_plugin_index_data
|
||||||
|
from aldryn_search.utils import get_index_base, strip_tags
|
||||||
|
from django.utils.encoding import force_text
|
||||||
|
from haystack import indexes
|
||||||
|
|
||||||
|
from .models import Post
|
||||||
|
from .settings import get_setting
|
||||||
|
|
||||||
|
|
||||||
|
class PostIndex(get_index_base()):
|
||||||
|
haystack_use_for_indexing = get_setting('ENABLE_SEARCH')
|
||||||
|
|
||||||
|
index_title = True
|
||||||
|
|
||||||
|
author = indexes.CharField(indexed=True, model_attr='get_author')
|
||||||
|
keywords = indexes.CharField(null=True)
|
||||||
|
tags = indexes.CharField(null=True)
|
||||||
|
post_text = indexes.CharField(null=True)
|
||||||
|
# category_ids = indexes.MultiValueField(null=True)
|
||||||
|
# category_titles = indexes.MultiValueField(null=True)
|
||||||
|
|
||||||
|
def get_keywords(self, post):
|
||||||
|
return ','.join(post.get_keywords())
|
||||||
|
|
||||||
|
def get_title(self, post):
|
||||||
|
return post.safe_translation_getter('title')
|
||||||
|
|
||||||
|
def get_description(self, post):
|
||||||
|
return post.get_description()
|
||||||
|
|
||||||
|
def prepare_pub_date(self, post):
|
||||||
|
return post.date_published.strftime("%Y-%m-%d %H:%M:%S")
|
||||||
|
|
||||||
|
def index_queryset(self, using=None):
|
||||||
|
self._get_backend(using)
|
||||||
|
language = self.get_current_language(using)
|
||||||
|
filter_kwargs = self.get_index_kwargs(language)
|
||||||
|
qs = self.get_index_queryset(language)
|
||||||
|
if filter_kwargs:
|
||||||
|
return qs.translated(language, **filter_kwargs)
|
||||||
|
return qs
|
||||||
|
|
||||||
|
def get_index_queryset(self, language):
|
||||||
|
return self.get_model().objects.published().active_translations(
|
||||||
|
language_code=language)
|
||||||
|
|
||||||
|
def get_model(self):
|
||||||
|
return Post
|
||||||
|
|
||||||
|
def get_search_data(self, post, language, request):
|
||||||
|
optional_attributes = []
|
||||||
|
abstract = post.safe_translation_getter('abstract')
|
||||||
|
text_bits = [post.get_title()]
|
||||||
|
text_bits.append(strip_tags(abstract))
|
||||||
|
text_bits.append(post.get_description())
|
||||||
|
# text_bits.append(' '.join(post.get_keywords()))
|
||||||
|
for category in post.categories.all():
|
||||||
|
text_bits.append(
|
||||||
|
force_text(category.safe_translation_getter('name')))
|
||||||
|
for tag in post.tags.all():
|
||||||
|
text_bits.append(force_text(tag.name))
|
||||||
|
if post.content:
|
||||||
|
plugins = post.content.cmsplugin_set.filter(language=language)
|
||||||
|
for base_plugin in plugins:
|
||||||
|
content = get_plugin_index_data(base_plugin, request)
|
||||||
|
text_bits.append(content)
|
||||||
|
for attribute in optional_attributes:
|
||||||
|
value = force_text(getattr(post, attribute))
|
||||||
|
if value and value not in text_bits:
|
||||||
|
text_bits.append(value)
|
||||||
|
return ' '.join(text_bits)
|
||||||
|
|
||||||
|
def prepare_fields(self, post, language, request):
|
||||||
|
super(PostIndex, self).prepare_fields(post, language, request)
|
||||||
|
data = [self.prepared_data['text']]
|
||||||
|
self.prepared_data['keywords'] = ' '.join(post.get_keywords())
|
||||||
|
self.prepared_data['tags'] = ' '.join(post.get_tags())
|
||||||
|
self.prepared_data['post_text'] = ' '.join(post.safe_translation_getter('post_text'))
|
||||||
|
self.prepared_data['text'] = ' '.join(data)
|
|
@ -79,5 +79,6 @@ def get_setting(name):
|
||||||
'BLOG_AUTO_HOME_TITLE': getattr(settings, 'BLOG_AUTO_HOME_TITLE', 'Home'),
|
'BLOG_AUTO_HOME_TITLE': getattr(settings, 'BLOG_AUTO_HOME_TITLE', 'Home'),
|
||||||
'BLOG_AUTO_BLOG_TITLE': getattr(settings, 'BLOG_AUTO_BLOG_TITLE', 'Blog'),
|
'BLOG_AUTO_BLOG_TITLE': getattr(settings, 'BLOG_AUTO_BLOG_TITLE', 'Blog'),
|
||||||
'BLOG_AUTO_APP_TITLE': getattr(settings, 'BLOG_AUTO_APP_TITLE', 'Blog'),
|
'BLOG_AUTO_APP_TITLE': getattr(settings, 'BLOG_AUTO_APP_TITLE', 'Blog'),
|
||||||
|
'BLOG_ENABLE_SEARCH': getattr(settings, 'BLOG_ENABLE_SEARCH', True),
|
||||||
}
|
}
|
||||||
return default['BLOG_%s' % name]
|
return default['BLOG_%s' % name]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import absolute_import, print_function, unicode_literals
|
from __future__ import absolute_import, print_function, unicode_literals
|
||||||
|
|
||||||
from django.conf.urls import patterns, url
|
from django.conf.urls import url
|
||||||
|
|
||||||
from .apps import BlogAppConfig
|
from .apps import BlogAppConfig
|
||||||
from .feeds import LatestEntriesFeed, TagFeed
|
from .feeds import LatestEntriesFeed, TagFeed
|
||||||
|
@ -23,8 +23,7 @@ def get_urls():
|
||||||
|
|
||||||
detail_urls = get_urls()
|
detail_urls = get_urls()
|
||||||
|
|
||||||
urlpatterns = patterns(
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$',
|
url(r'^$',
|
||||||
PostListView.as_view(), name='posts-latest'),
|
PostListView.as_view(), name='posts-latest'),
|
||||||
url(r'^feed/$',
|
url(r'^feed/$',
|
||||||
|
@ -33,7 +32,6 @@ urlpatterns = patterns(
|
||||||
PostArchiveView.as_view(), name='posts-archive'),
|
PostArchiveView.as_view(), name='posts-archive'),
|
||||||
url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/$',
|
url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/$',
|
||||||
PostArchiveView.as_view(), name='posts-archive'),
|
PostArchiveView.as_view(), name='posts-archive'),
|
||||||
) + detail_urls + [
|
|
||||||
url(r'^author/(?P<username>[\w\.@+-]+)/$',
|
url(r'^author/(?P<username>[\w\.@+-]+)/$',
|
||||||
AuthorEntriesView.as_view(), name='posts-author'),
|
AuthorEntriesView.as_view(), name='posts-author'),
|
||||||
url(r'^category/(?P<category>[\w\.@+-]+)/$',
|
url(r'^category/(?P<category>[\w\.@+-]+)/$',
|
||||||
|
@ -42,6 +40,6 @@ urlpatterns = patterns(
|
||||||
TaggedListView.as_view(), name='posts-tagged'),
|
TaggedListView.as_view(), name='posts-tagged'),
|
||||||
url(r'^tag/(?P<tag>[-\w]+)/feed/$',
|
url(r'^tag/(?P<tag>[-\w]+)/feed/$',
|
||||||
TagFeed(), name='posts-tagged-feed'),
|
TagFeed(), name='posts-tagged-feed'),
|
||||||
]
|
] + detail_urls
|
||||||
|
|
||||||
BlogAppConfig.setup()
|
BlogAppConfig.setup()
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
-e .
|
-e .
|
||||||
wheel
|
wheel
|
||||||
|
pysolr
|
1
setup.py
1
setup.py
|
@ -49,6 +49,7 @@ setup(
|
||||||
'django-meta>=0.2',
|
'django-meta>=0.2',
|
||||||
'django-meta-mixin>=0.2.1',
|
'django-meta-mixin>=0.2.1',
|
||||||
'aldryn-apphooks-config>=0.2.6',
|
'aldryn-apphooks-config>=0.2.6',
|
||||||
|
'aldryn-search'
|
||||||
],
|
],
|
||||||
license='BSD',
|
license='BSD',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
|
@ -7,6 +7,8 @@ from cmsplugin_filer_image.models import ThumbnailOption
|
||||||
from django.contrib.auth import get_user_model
|
from django.contrib.auth import get_user_model
|
||||||
from django.contrib.sites.models import Site
|
from django.contrib.sites.models import Site
|
||||||
from djangocms_helper.base_test import BaseTestCase
|
from djangocms_helper.base_test import BaseTestCase
|
||||||
|
from haystack import connections
|
||||||
|
from haystack.constants import DEFAULT_ALIAS
|
||||||
from parler.utils.context import smart_override
|
from parler.utils.context import smart_override
|
||||||
|
|
||||||
from djangocms_blog.cms_appconfig import BlogConfig
|
from djangocms_blog.cms_appconfig import BlogConfig
|
||||||
|
@ -183,3 +185,9 @@ class BaseTest(BaseTestCase):
|
||||||
post1.save()
|
post1.save()
|
||||||
posts.append(post1)
|
posts.append(post1)
|
||||||
return posts
|
return posts
|
||||||
|
|
||||||
|
def get_post_index(self):
|
||||||
|
search_conn = connections[DEFAULT_ALIAS]
|
||||||
|
unified_index = search_conn.get_unified_index()
|
||||||
|
index = unified_index.get_index(Post)
|
||||||
|
return index
|
||||||
|
|
48
tests/test_search.py
Normal file
48
tests/test_search.py
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import absolute_import, print_function, unicode_literals
|
||||||
|
|
||||||
|
from haystack.constants import DEFAULT_ALIAS
|
||||||
|
from haystack.query import SearchQuerySet
|
||||||
|
|
||||||
|
from djangocms_blog.models import Post
|
||||||
|
|
||||||
|
from .base import BaseTest
|
||||||
|
|
||||||
|
|
||||||
|
class BlogIndexingTests(BaseTest):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.get_pages()
|
||||||
|
|
||||||
|
def test_blog_post_is_indexed_using_prepare(self):
|
||||||
|
"""This tests the indexing path way used by update_index mgmt command"""
|
||||||
|
post = self._get_post(self._post_data[0]['en'])
|
||||||
|
post = self._get_post(self._post_data[0]['it'], post, 'it')
|
||||||
|
index = self.get_post_index()
|
||||||
|
index.index_queryset(DEFAULT_ALIAS) # initialises index._backend_alias
|
||||||
|
indexed = index.prepare(post)
|
||||||
|
|
||||||
|
self.assertEqual(post.get_title(), indexed['title'])
|
||||||
|
self.assertEqual(post.get_description(), indexed['description'])
|
||||||
|
self.assertEqual('First post First post first line This is the description category 1', indexed['text'])
|
||||||
|
self.assertEqual(post.get_absolute_url(), indexed['url'])
|
||||||
|
#self.assertEqual(post.date_published.strftime("%Y-%m-%d %H:%M:%S"), indexed['pub_date'])
|
||||||
|
|
||||||
|
def test_blog_post_is_indexed_using_update_object(self):
|
||||||
|
"""This tests the indexing path way used by the RealTimeSignalProcessor"""
|
||||||
|
post = self._get_post(self._post_data[0]['en'])
|
||||||
|
post = self._get_post(self._post_data[0]['it'], post, 'it')
|
||||||
|
index = self.get_post_index()
|
||||||
|
index.update_object(post, using=DEFAULT_ALIAS)
|
||||||
|
indexed = index.prepared_data
|
||||||
|
|
||||||
|
self.assertEqual(post.get_title(), indexed['title'])
|
||||||
|
self.assertEqual(post.get_description(), indexed['description'])
|
||||||
|
self.assertEqual('First post First post first line This is the description category 1', indexed['text'])
|
||||||
|
self.assertEqual(post.get_absolute_url(), indexed['url'])
|
||||||
|
#self.assertEqual(post.date_published.strftime("%Y-%m-%d %H:%M:%S"), indexed['pub_date'])
|
||||||
|
|
||||||
|
def test_searchqueryset(self):
|
||||||
|
posts = self.get_posts()
|
||||||
|
all_results = SearchQuerySet().models(Post)
|
||||||
|
self.assertEqual(len(posts), len(all_results))
|
Loading…
Reference in a new issue