diff --git a/MANIFEST.in b/MANIFEST.in index c391fe4cd8e..1d5f21caa12 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -21,7 +21,6 @@ recursive-include django/contrib/admindocs/templates * recursive-include django/contrib/auth/fixtures * recursive-include django/contrib/auth/templates * recursive-include django/contrib/auth/tests/templates * -recursive-include django/contrib/comments/templates * recursive-include django/contrib/formtools/templates * recursive-include django/contrib/formtools/tests/templates * recursive-include django/contrib/flatpages/fixtures * diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index ed972aa6323..76a6d6de574 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -500,16 +500,6 @@ CACHE_MIDDLEWARE_KEY_PREFIX = '' CACHE_MIDDLEWARE_SECONDS = 600 CACHE_MIDDLEWARE_ALIAS = 'default' -#################### -# COMMENTS # -#################### - -COMMENTS_ALLOW_PROFANITIES = False - -# The profanities that will trigger a validation error in -# CommentDetailsForm.clean_comment. All of these should be in lowercase. -PROFANITIES_LIST = () - ################## # AUTHENTICATION # ################## diff --git a/django/contrib/comments/__init__.py b/django/contrib/comments/__init__.py deleted file mode 100644 index 06ede3a8cc3..00000000000 --- a/django/contrib/comments/__init__.py +++ /dev/null @@ -1,93 +0,0 @@ -from importlib import import_module -import warnings - -from django.apps import apps as django_apps -from django.conf import settings -from django.core import urlresolvers -from django.core.exceptions import ImproperlyConfigured -from django.contrib.comments.models import Comment -from django.contrib.comments.forms import CommentForm -from django.utils.deprecation import RemovedInDjango18Warning - - -warnings.warn("django.contrib.comments is deprecated and will be removed before Django 1.8.", RemovedInDjango18Warning) - -DEFAULT_COMMENTS_APP = 'django.contrib.comments' - -def get_comment_app(): - """ - Get the comment app (i.e. "django.contrib.comments") as defined in the settings - """ - try: - app_config = django_apps.get_app_config(get_comment_app_name().rpartition(".")[2]) - except LookupError: - raise ImproperlyConfigured("The COMMENTS_APP (%r) " - "must be in INSTALLED_APPS" % settings.COMMENTS_APP) - return app_config.module - -def get_comment_app_name(): - """ - Returns the name of the comment app (either the setting value, if it - exists, or the default). - """ - return getattr(settings, 'COMMENTS_APP', DEFAULT_COMMENTS_APP) - -def get_model(): - """ - Returns the comment model class. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_model"): - return get_comment_app().get_model() - else: - return Comment - -def get_form(): - """ - Returns the comment ModelForm class. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_form"): - return get_comment_app().get_form() - else: - return CommentForm - -def get_form_target(): - """ - Returns the target URL for the comment form submission view. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_form_target"): - return get_comment_app().get_form_target() - else: - return urlresolvers.reverse("django.contrib.comments.views.comments.post_comment") - -def get_flag_url(comment): - """ - Get the URL for the "flag this comment" view. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_flag_url"): - return get_comment_app().get_flag_url(comment) - else: - return urlresolvers.reverse("django.contrib.comments.views.moderation.flag", - args=(comment.id,)) - -def get_delete_url(comment): - """ - Get the URL for the "delete this comment" view. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_delete_url"): - return get_comment_app().get_delete_url(comment) - else: - return urlresolvers.reverse("django.contrib.comments.views.moderation.delete", - args=(comment.id,)) - -def get_approve_url(comment): - """ - Get the URL for the "approve this comment from moderation" view. - """ - if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_approve_url"): - return get_comment_app().get_approve_url(comment) - else: - return urlresolvers.reverse("django.contrib.comments.views.moderation.approve", - args=(comment.id,)) - - -default_app_config = 'django.contrib.comments.apps.CommentsConfig' diff --git a/django/contrib/comments/admin.py b/django/contrib/comments/admin.py deleted file mode 100644 index 391889cd659..00000000000 --- a/django/contrib/comments/admin.py +++ /dev/null @@ -1,86 +0,0 @@ -from __future__ import unicode_literals - -from django.contrib import admin -from django.contrib.auth import get_user_model -from django.contrib.comments.models import Comment -from django.utils.translation import ugettext_lazy as _, ungettext_lazy -from django.contrib.comments import get_model -from django.contrib.comments.views.moderation import perform_flag, perform_approve, perform_delete - - -class UsernameSearch(object): - """The User object may not be auth.User, so we need to provide - a mechanism for issuing the equivalent of a .filter(user__username=...) - search in CommentAdmin. - """ - def __str__(self): - return 'user__%s' % get_user_model().USERNAME_FIELD - - -class CommentsAdmin(admin.ModelAdmin): - fieldsets = ( - (None, - {'fields': ('content_type', 'object_pk', 'site')} - ), - (_('Content'), - {'fields': ('user', 'user_name', 'user_email', 'user_url', 'comment')} - ), - (_('Metadata'), - {'fields': ('submit_date', 'ip_address', 'is_public', 'is_removed')} - ), - ) - - list_display = ('name', 'content_type', 'object_pk', 'ip_address', 'submit_date', 'is_public', 'is_removed') - list_filter = ('submit_date', 'site', 'is_public', 'is_removed') - date_hierarchy = 'submit_date' - ordering = ('-submit_date',) - raw_id_fields = ('user',) - search_fields = ('comment', UsernameSearch(), 'user_name', 'user_email', 'user_url', 'ip_address') - actions = ["flag_comments", "approve_comments", "remove_comments"] - - def get_actions(self, request): - actions = super(CommentsAdmin, self).get_actions(request) - # Only superusers should be able to delete the comments from the DB. - if not request.user.is_superuser and 'delete_selected' in actions: - actions.pop('delete_selected') - if not request.user.has_perm('comments.can_moderate'): - if 'approve_comments' in actions: - actions.pop('approve_comments') - if 'remove_comments' in actions: - actions.pop('remove_comments') - return actions - - def flag_comments(self, request, queryset): - self._bulk_flag(request, queryset, perform_flag, - ungettext_lazy('%d comment was successfully flagged', - '%d comments were successfully flagged')) - flag_comments.short_description = _("Flag selected comments") - - def approve_comments(self, request, queryset): - self._bulk_flag(request, queryset, perform_approve, - ungettext_lazy('%d comment was successfully approved', - '%d comments were successfully approved')) - approve_comments.short_description = _("Approve selected comments") - - def remove_comments(self, request, queryset): - self._bulk_flag(request, queryset, perform_delete, - ungettext_lazy('%d comment was successfully removed', - '%d comments were successfully removed')) - remove_comments.short_description = _("Remove selected comments") - - def _bulk_flag(self, request, queryset, action, done_message): - """ - Flag, approve, or remove some comments from an admin action. Actually - calls the `action` argument to perform the heavy lifting. - """ - n_comments = 0 - for comment in queryset: - action(request, comment) - n_comments += 1 - - self.message_user(request, done_message % n_comments) - -# Only register the default admin if the model is the built-in comment model -# (this won't be true if there's a custom comment app). -if get_model() is Comment: - admin.site.register(Comment, CommentsAdmin) diff --git a/django/contrib/comments/apps.py b/django/contrib/comments/apps.py deleted file mode 100644 index 295329b42cb..00000000000 --- a/django/contrib/comments/apps.py +++ /dev/null @@ -1,8 +0,0 @@ -from django.apps import AppConfig - -from django.utils.translation import ugettext_lazy as _ - - -class CommentsConfig(AppConfig): - name = 'django.contrib.comments' - verbose_name = _("Comments") diff --git a/django/contrib/comments/feeds.py b/django/contrib/comments/feeds.py deleted file mode 100644 index aa98e63ec95..00000000000 --- a/django/contrib/comments/feeds.py +++ /dev/null @@ -1,31 +0,0 @@ -from django.contrib.syndication.views import Feed -from django.contrib.sites.shortcuts import get_current_site -from django.contrib import comments -from django.utils.translation import ugettext as _ - -class LatestCommentFeed(Feed): - """Feed of latest comments on the current site.""" - - def __call__(self, request, *args, **kwargs): - self.site = get_current_site(request) - return super(LatestCommentFeed, self).__call__(request, *args, **kwargs) - - def title(self): - return _("%(site_name)s comments") % dict(site_name=self.site.name) - - def link(self): - return "http://%s/" % (self.site.domain) - - def description(self): - return _("Latest comments on %(site_name)s") % dict(site_name=self.site.name) - - def items(self): - qs = comments.get_model().objects.filter( - site__pk=self.site.pk, - is_public=True, - is_removed=False, - ) - return qs.order_by('-submit_date')[:40] - - def item_pubdate(self, item): - return item.submit_date diff --git a/django/contrib/comments/forms.py b/django/contrib/comments/forms.py deleted file mode 100644 index 36943135210..00000000000 --- a/django/contrib/comments/forms.py +++ /dev/null @@ -1,194 +0,0 @@ -import time -from django import forms -from django.forms.utils import ErrorDict -from django.conf import settings -from django.contrib.contenttypes.models import ContentType -from django.contrib.comments.models import Comment -from django.utils.crypto import salted_hmac, constant_time_compare -from django.utils.encoding import force_text -from django.utils.text import get_text_list -from django.utils import timezone -from django.utils.translation import ungettext, ugettext, ugettext_lazy as _ - -COMMENT_MAX_LENGTH = getattr(settings,'COMMENT_MAX_LENGTH', 3000) - -class CommentSecurityForm(forms.Form): - """ - Handles the security aspects (anti-spoofing) for comment forms. - """ - content_type = forms.CharField(widget=forms.HiddenInput) - object_pk = forms.CharField(widget=forms.HiddenInput) - timestamp = forms.IntegerField(widget=forms.HiddenInput) - security_hash = forms.CharField(min_length=40, max_length=40, widget=forms.HiddenInput) - - def __init__(self, target_object, data=None, initial=None): - self.target_object = target_object - if initial is None: - initial = {} - initial.update(self.generate_security_data()) - super(CommentSecurityForm, self).__init__(data=data, initial=initial) - - def security_errors(self): - """Return just those errors associated with security""" - errors = ErrorDict() - for f in ["honeypot", "timestamp", "security_hash"]: - if f in self.errors: - errors[f] = self.errors[f] - return errors - - def clean_security_hash(self): - """Check the security hash.""" - security_hash_dict = { - 'content_type' : self.data.get("content_type", ""), - 'object_pk' : self.data.get("object_pk", ""), - 'timestamp' : self.data.get("timestamp", ""), - } - expected_hash = self.generate_security_hash(**security_hash_dict) - actual_hash = self.cleaned_data["security_hash"] - if not constant_time_compare(expected_hash, actual_hash): - raise forms.ValidationError("Security hash check failed.") - return actual_hash - - def clean_timestamp(self): - """Make sure the timestamp isn't too far (> 2 hours) in the past.""" - ts = self.cleaned_data["timestamp"] - if time.time() - ts > (2 * 60 * 60): - raise forms.ValidationError("Timestamp check failed") - return ts - - def generate_security_data(self): - """Generate a dict of security data for "initial" data.""" - timestamp = int(time.time()) - security_dict = { - 'content_type' : str(self.target_object._meta), - 'object_pk' : str(self.target_object._get_pk_val()), - 'timestamp' : str(timestamp), - 'security_hash' : self.initial_security_hash(timestamp), - } - return security_dict - - def initial_security_hash(self, timestamp): - """ - Generate the initial security hash from self.content_object - and a (unix) timestamp. - """ - - initial_security_dict = { - 'content_type' : str(self.target_object._meta), - 'object_pk' : str(self.target_object._get_pk_val()), - 'timestamp' : str(timestamp), - } - return self.generate_security_hash(**initial_security_dict) - - def generate_security_hash(self, content_type, object_pk, timestamp): - """ - Generate a HMAC security hash from the provided info. - """ - info = (content_type, object_pk, timestamp) - key_salt = "django.contrib.forms.CommentSecurityForm" - value = "-".join(info) - return salted_hmac(key_salt, value).hexdigest() - -class CommentDetailsForm(CommentSecurityForm): - """ - Handles the specific details of the comment (name, comment, etc.). - """ - name = forms.CharField(label=_("Name"), max_length=50) - email = forms.EmailField(label=_("Email address")) - url = forms.URLField(label=_("URL"), required=False) - comment = forms.CharField(label=_('Comment'), widget=forms.Textarea, - max_length=COMMENT_MAX_LENGTH) - - def get_comment_object(self): - """ - Return a new (unsaved) comment object based on the information in this - form. Assumes that the form is already validated and will throw a - ValueError if not. - - Does not set any of the fields that would come from a Request object - (i.e. ``user`` or ``ip_address``). - """ - if not self.is_valid(): - raise ValueError("get_comment_object may only be called on valid forms") - - CommentModel = self.get_comment_model() - new = CommentModel(**self.get_comment_create_data()) - new = self.check_for_duplicate_comment(new) - - return new - - def get_comment_model(self): - """ - Get the comment model to create with this form. Subclasses in custom - comment apps should override this, get_comment_create_data, and perhaps - check_for_duplicate_comment to provide custom comment models. - """ - return Comment - - def get_comment_create_data(self): - """ - Returns the dict of data to be used to create a comment. Subclasses in - custom comment apps that override get_comment_model can override this - method to add extra fields onto a custom comment model. - """ - return dict( - content_type=ContentType.objects.get_for_model(self.target_object), - object_pk=force_text(self.target_object._get_pk_val()), - user_name=self.cleaned_data["name"], - user_email=self.cleaned_data["email"], - user_url=self.cleaned_data["url"], - comment=self.cleaned_data["comment"], - submit_date=timezone.now(), - site_id=settings.SITE_ID, - is_public=True, - is_removed=False, - ) - - def check_for_duplicate_comment(self, new): - """ - Check that a submitted comment isn't a duplicate. This might be caused - by someone posting a comment twice. If it is a dup, silently return the *previous* comment. - """ - possible_duplicates = self.get_comment_model()._default_manager.using( - self.target_object._state.db - ).filter( - content_type=new.content_type, - object_pk=new.object_pk, - user_name=new.user_name, - user_email=new.user_email, - user_url=new.user_url, - ) - for old in possible_duplicates: - if old.submit_date.date() == new.submit_date.date() and old.comment == new.comment: - return old - - return new - - def clean_comment(self): - """ - If COMMENTS_ALLOW_PROFANITIES is False, check that the comment doesn't - contain anything in PROFANITIES_LIST. - """ - comment = self.cleaned_data["comment"] - if settings.COMMENTS_ALLOW_PROFANITIES == False: - bad_words = [w for w in settings.PROFANITIES_LIST if w in comment.lower()] - if bad_words: - raise forms.ValidationError(ungettext( - "Watch your mouth! The word %s is not allowed here.", - "Watch your mouth! The words %s are not allowed here.", - len(bad_words)) % get_text_list( - ['"%s%s%s"' % (i[0], '-'*(len(i)-2), i[-1]) - for i in bad_words], ugettext('and'))) - return comment - -class CommentForm(CommentDetailsForm): - honeypot = forms.CharField(required=False, - label=_('If you enter anything in this field '\ - 'your comment will be treated as spam')) - - def clean_honeypot(self): - """Check that nothing's been entered into the honeypot.""" - value = self.cleaned_data["honeypot"] - if value: - raise forms.ValidationError(self.fields["honeypot"].label) - return value diff --git a/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo deleted file mode 100644 index b71c0fdf6b2..00000000000 Binary files a/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ar/LC_MESSAGES/django.po b/django/contrib/comments/locale/ar/LC_MESSAGES/django.po deleted file mode 100644 index d29e4b5ed5b..00000000000 --- a/django/contrib/comments/locale/ar/LC_MESSAGES/django.po +++ /dev/null @@ -1,324 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Ossama Khayat , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Ossama Khayat \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/django/language/" -"ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: admin.py:25 -msgid "Content" -msgstr "محتوى" - -#: admin.py:28 -msgid "Metadata" -msgstr "ميتاداتا" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "لا يوجد" -msgstr[1] "عليه علامة" -msgstr[2] "عليهما علامة" -msgstr[3] "عليها علامة" -msgstr[4] "عليها علامة" -msgstr[5] "عليها علامة" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "تعليم التعليقات المحددة" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "اعتُمد" -msgstr[1] "اعتُمد" -msgstr[2] "اعتُمدا" -msgstr[3] "اعتُمدت" -msgstr[4] "اعتُمدت" -msgstr[5] "اعتُمدت" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "اعتماد التعليقات المحددة" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "أزيل" -msgstr[1] "أزيل" -msgstr[2] "أزيلا" -msgstr[3] "أزيلت" -msgstr[4] "أزيل" -msgstr[5] "أزيل" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "احذف التعليقات المحددة" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "تعليق %(count)s %(action)s." -msgstr[1] "تعليق %(count)s %(action)s." -msgstr[2] "تعليقان %(count)s %(action)s." -msgstr[3] "تعليقات %(count)s %(action)s." -msgstr[4] "تعليق %(count)s %(action)s." -msgstr[5] "تعليقات %(count)s %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "تعليقات %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "آخر التعليقات على %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "الاسم" - -#: forms.py:97 -msgid "Email address" -msgstr "عنوان بريد إلكتروني" - -#: forms.py:98 -msgid "URL" -msgstr "رابط" - -#: forms.py:99 -msgid "Comment" -msgstr "تعليق" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "احفظ لسانك! الكلمة %s ممنوعة هنا." -msgstr[1] "احفظ لسانك! الكلمة %s ممنوعة هنا." -msgstr[2] "احفظ لسانك! الكلمة %s ممنوعة هنا." -msgstr[3] "احفظ لسانك! الكلمة %s ممنوعة هنا." -msgstr[4] "احفظ لسانك! الكلمة %s ممنوعة هنا." -msgstr[5] "احفظ لسانك! الكلمة %s ممنوعة هنا." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "و" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "إن كتبت أي شيء في هذا الحقل فسيُعتبر تعليقك غير مرغوب به" - -#: models.py:23 -msgid "content type" -msgstr "نوع البيانات" - -#: models.py:25 -msgid "object ID" -msgstr "معرف العنصر" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "مستخدم" - -#: models.py:55 -msgid "user's name" -msgstr "اسم المستخدم" - -#: models.py:56 -msgid "user's email address" -msgstr "عنوان البريد الإلكتروني للمستخدم" - -#: models.py:57 -msgid "user's URL" -msgstr "عنوان URL للمستخدم" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "تعليق" - -#: models.py:62 -msgid "date/time submitted" -msgstr "تاريخ ووقت الإرسال" - -#: models.py:63 -msgid "IP address" -msgstr "عنوان IP" - -#: models.py:64 -msgid "is public" -msgstr "عام" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "أزل اختيار هذا المربّع كي تُزيل التعليق نهائياً من الموقع." - -#: models.py:67 -msgid "is removed" -msgstr "محذوف" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"انتق هذا المربع إذا كان التعليق غير لائق، سيتم عرض الرسالة \"تم حذف هذا " -"التعليق\" بدلا منه." - -#: models.py:80 -msgid "comments" -msgstr "تعليقات" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "كتب هذا التعليق مستخدم مُسجّل ولذا كان اسمهللقراءة فقط." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"كتب هذا التعليق مستخدم مُسجّل ولذا كان عنوان بريده الالكتروني للقراءة فقط." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"كتبه %(user)s في %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "علم" - -#: models.py:180 -msgid "date" -msgstr "التاريخ" - -#: models.py:190 -msgid "comment flag" -msgstr "علَم التعليق" - -#: models.py:191 -msgid "comment flags" -msgstr "أعلام التعليقات" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "وافق على تعليق" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "تريد فعلاً جعل هذا التعليق عامّاً؟" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "وافق" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "شكراً لموافقتك" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "شكراً لك على قضاء وقتك في تحسين جودة النقاش على موقعنا" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "أزل تعليق" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "تريد فعلاً إزالة هذا التعليق؟" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "أزل" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "شكراً لإزالته" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "سِم هذا التعليق" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "تريد فعلاً وسم هذا التعليق؟" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "سٍم" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "شكراً لك على الوَسم" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "أرسل " - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "عاين" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "شكراً على تعليقك" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "شكراً لك على تعليقك" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "عاين تعليقك" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "لا يوجد أخطاء" -msgstr[1] "رجاءً صحح الخطأ أدناه" -msgstr[2] "رجاءً صحح الخطأين أدناه" -msgstr[3] "رجاءً صحح الأخطاء أدناه" -msgstr[4] "رجاءً صحح الأخطاء أدناه" -msgstr[5] "رجاءً صحح الأخطاء أدناه" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "أرسال تعليقك" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "أو قم ببعض التغيير" diff --git a/django/contrib/comments/locale/az/LC_MESSAGES/django.mo b/django/contrib/comments/locale/az/LC_MESSAGES/django.mo deleted file mode 100644 index 8660648ee01..00000000000 Binary files a/django/contrib/comments/locale/az/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/az/LC_MESSAGES/django.po b/django/contrib/comments/locale/az/LC_MESSAGES/django.po deleted file mode 100644 index d6fb6db99e3..00000000000 --- a/django/contrib/comments/locale/az/LC_MESSAGES/django.po +++ /dev/null @@ -1,309 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Ali Ismayilov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Ali Ismayilov \n" -"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/django/" -"language/az/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Məzmun" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meta-məlumat" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -"one: işarələndi\n" -"other: işarələndilər" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Seçilmiş şərhləri işarələ" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -"one: təsdiq olundu\n" -"other: təsdiq olundular" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Seçilmiş şərhləri təsdiq et" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -"one: silindi\n" -"other: silindilər" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Seçilmiş şərhləri sil" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -"one: Şərh uğurla %(action)s.\n" -"other: %(count)s şərh uğurlar %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s şərhləri" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s üzrə son şərhlər" - -#: forms.py:96 -msgid "Name" -msgstr "Ad" - -#: forms.py:97 -msgid "Email address" -msgstr "E-poçt" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Şərh" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -"one: Danışığınıza fikir verin! %s sözünü burda işlətməyə icazə verilmir.\n" -"other:Danışığınıza fikir verin! %s sözlərini burda işlətməyə icazə verilmir." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "və" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Bu sahəyə nəsə yazsanız, şərhiniz spam kimi qiymətləndiriləcək." - -#: models.py:23 -msgid "content type" -msgstr "məzmunun tipi" - -#: models.py:25 -msgid "object ID" -msgstr "obyektin ID-si" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "istifadəçi" - -#: models.py:55 -msgid "user's name" -msgstr "istifadəçinin adı" - -#: models.py:56 -msgid "user's email address" -msgstr "istifadəçinin e-poçt ünvanı" - -#: models.py:57 -msgid "user's URL" -msgstr "istifadəçinin URL-ni" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "şərh" - -#: models.py:62 -msgid "date/time submitted" -msgstr "yazılma tarix/vaxtı" - -#: models.py:63 -msgid "IP address" -msgstr "IP ünvanı" - -#: models.py:64 -msgid "is public" -msgstr "hamı görür" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Şərhi saytdan yox etmək üçün buradakı quşu yığışdırın." - -#: models.py:67 -msgid "is removed" -msgstr "yığışdırılıb" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Əgər şərh qeyri-uyğundursa, bura quş qoyun və şərhin yerinə \"Bu şərh " -"yığışdırılıb\" yazısı çıxacaq." - -#: models.py:80 -msgid "comments" -msgstr "şərhlər" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Bu şərh daxil olmuş istifadəçi adından yazılmışdır, buna görə də onun adını " -"dəyişmək mümkün deyil." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Bu şərh daxil olmuş istifadəçi adından yazılmışdır, buna görə də onun e-poçt " -"ünvanını dəyişmək mümkün deyil." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s %(date)s tarixində yazmışdır.\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "işarələ" - -#: models.py:180 -msgid "date" -msgstr "tarix" - -#: models.py:190 -msgid "comment flag" -msgstr "şərh işarəsi" - -#: models.py:191 -msgid "comment flags" -msgstr "şərh işarələri" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Şərhə icazə ver" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Bu şərhi hamı görsün?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Təsdiqləyirəm" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Təsdiqlədiniz" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Saytımızda müzakirəni daha keyfiyyətli etmək üçün sərf etdiyiniz vaxta görə " -"təşəkkür edirik." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Şərhi yığışdır" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Şərhi yığışdıraq?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Yığışdır" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Yığışdırdıq" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Şərhi işarələ" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Şərhi işarələyək?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "İşarələ" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "İşarələdik" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Yaz" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Baxım" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Şərh etdiyiniz üçün təşəkkür edirik" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Şərh etdiyiniz üçün təşəkkür edirik" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Şərhin görünüşü" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -"one: Aşağıdakı səhvi düzəldin.\n" -"other: Aşağıdakı səhvləri düzəldin." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Şərhi göndər" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "və ya düzəliş et" diff --git a/django/contrib/comments/locale/be/LC_MESSAGES/django.mo b/django/contrib/comments/locale/be/LC_MESSAGES/django.mo deleted file mode 100644 index fc86eb86227..00000000000 Binary files a/django/contrib/comments/locale/be/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/be/LC_MESSAGES/django.po b/django/contrib/comments/locale/be/LC_MESSAGES/django.po deleted file mode 100644 index 14fb0cfe541..00000000000 --- a/django/contrib/comments/locale/be/LC_MESSAGES/django.po +++ /dev/null @@ -1,315 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-08-01 10:41+0000\n" -"Last-Translator: Павал Клёк \n" -"Language-Team: Belarusian (http://www.transifex.com/projects/p/django/" -"language/be/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Зьмесьціва" - -#: admin.py:28 -msgid "Metadata" -msgstr "Зьвесткі" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "Пазначылі" -msgstr[1] "пазначылі" -msgstr[2] "Пазначылі" -msgstr[3] "Пазначылі" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Пазначыць абраныя выказваньні" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "Ухвалілі" -msgstr[1] "Ухвалілі" -msgstr[2] "Ухвалілі" -msgstr[3] "Ухвалілі" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Ухваліць абраныя выказваньні" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "Прыбралі" -msgstr[1] "Прыбралі" -msgstr[2] "Прыбралі" -msgstr[3] "Прыбралі" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Прыбраць абраныя выказваньні" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(action)s %(count)s заўвагу." -msgstr[1] "%(action)s %(count)s заўвагі." -msgstr[2] "%(action)s %(count)s заўвагаў." -msgstr[3] "%(action)s %(count)s заўвагаў." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Выказваньні на %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Найноўшыя выказваньні на %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Імя" - -#: forms.py:97 -msgid "Email address" -msgstr "Адрас эл. пошты" - -#: forms.py:98 -msgid "URL" -msgstr "Сеціўная спасылка" - -#: forms.py:99 -msgid "Comment" -msgstr "Выказваньне" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." -msgstr[1] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." -msgstr[2] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." -msgstr[3] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "і" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Калі напісаць нешта ў гэтым полі, выказваньне будзе лічыцца лухтою (спамам)." - -#: models.py:23 -msgid "content type" -msgstr "від зьмесьціва" - -#: models.py:25 -msgid "object ID" -msgstr "нумар аб’екта" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "карыстальнік" - -#: models.py:55 -msgid "user's name" -msgstr "імя карыстальніка" - -#: models.py:56 -msgid "user's email address" -msgstr "эл. пошта карыстальніка" - -#: models.py:57 -msgid "user's URL" -msgstr "сеціўная спасылка карыстальніка" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "выкавзаньне" - -#: models.py:62 -msgid "date/time submitted" -msgstr "час і дата выказваньня" - -#: models.py:63 -msgid "IP address" -msgstr "Адрас IP" - -#: models.py:64 -msgid "is public" -msgstr "бачнае" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Прыбярыце гэтую птушачку, каб выказваньне зьнікла з пляцоўкі." - -#: models.py:67 -msgid "is removed" -msgstr "прыбралі" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Абярыце, калі выказваньне не да месца або не адпавядае правілам. Замест яго " -"будзе надпіс «Выказваньне прыбралі»." - -#: models.py:80 -msgid "comments" -msgstr "выказваньні" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Выказваньне пакінуў карыстальнік, які апазнаўся, таму ягонае імя нельга " -"зьмяняць." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Выказваньне пакінуў карыстальнік, які апазнаўся, таму ягоны адрас эл. пошты " -"нельга зьмяняць." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(date)s, аўтар — %(user)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "пазнака" - -#: models.py:180 -msgid "date" -msgstr "дата" - -#: models.py:190 -msgid "comment flag" -msgstr "пазнака выказваньня" - -#: models.py:191 -msgid "comment flags" -msgstr "пазнакі выказваньняў" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Ухваліць выказваньне" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Ці сапраўды зрабіць выказваньне бачным?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Ухваліць" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Дзякуем, што ўхвалілі" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Мы ўдзячныя, што вы дапамагаеце палепшыць якасьць размовы на нашай пляцоўцы" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Прыбраць выказваньне" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Ці сапраўды прыбраць выказваньне?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Прыбраць" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Дзякуем, што прыбралі" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Пазначыць выказваньне" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Ці сапраўды пазначыць выказваньне?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Пазначыць" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Дзякуем, што пазначылі" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Даслаць" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Прагледзець" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Дзякуем, што выказаліся" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Мы ўдзячныя за вашае выказваньне" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Прагледзець выказваньне" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Выпраўце памылку ніжэй" -msgstr[1] "Выпраўце памылкі ніжэй" -msgstr[2] "Выпраўце памылкі ніжэй" -msgstr[3] "Выпраўце памылкі ніжэй" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Дашліце выказваньне" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "або выпраўце яго" diff --git a/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo b/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo deleted file mode 100644 index f626a1bb850..00000000000 Binary files a/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/bg/LC_MESSAGES/django.po b/django/contrib/comments/locale/bg/LC_MESSAGES/django.po deleted file mode 100644 index 7bbab9fe02d..00000000000 --- a/django/contrib/comments/locale/bg/LC_MESSAGES/django.po +++ /dev/null @@ -1,305 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Boris Chervenkov , 2012. -# Jannis Leidel , 2011. -# Todor Lubenov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Boris Chervenkov \n" -"Language-Team: Bulgarian (http://www.transifex.com/projects/p/django/" -"language/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Благодаря за маркирането" - -#: admin.py:28 -msgid "Metadata" -msgstr "Метаданни" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "маркиран" -msgstr[1] "маркирани" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Маркирай избраните коментари" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "одобрен" -msgstr[1] "одобрени" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Одобри избраните коментари" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "отстранен" -msgstr[1] "отстранени" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Премахване на избраните коментари" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s коментар беше успешно %(action)s." -msgstr[1] "%(count)s коментари бяха успешно %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s коментари" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Последни коментари на %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Име" - -#: forms.py:97 -msgid "Email address" -msgstr "Email адрес" - -#: forms.py:98 -msgid "URL" -msgstr "URL адрес" - -#: forms.py:99 -msgid "Comment" -msgstr "Коментар" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Внимание! Думата %s не се допуска." -msgstr[1] "Внимание! Думите %s не се допускат." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "и" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ако въведете нещо в това поле, вашия коментар ще се третира като спам" - -#: models.py:23 -msgid "content type" -msgstr "тип на съдържанието" - -#: models.py:25 -msgid "object ID" -msgstr "ID на обекта" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "потребител" - -#: models.py:55 -msgid "user's name" -msgstr "потребителско име" - -#: models.py:56 -msgid "user's email address" -msgstr "email адрес на потребителя" - -#: models.py:57 -msgid "user's URL" -msgstr "URL адрес на потребителя" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "коментар" - -#: models.py:62 -msgid "date/time submitted" -msgstr "дата и час на подаване" - -#: models.py:63 -msgid "IP address" -msgstr "IP адрес" - -#: models.py:64 -msgid "is public" -msgstr "е публичен" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Махнете отметката от това поле, за да премахнете коментара от сайта." - -#: models.py:67 -msgid "is removed" -msgstr "е премахнат" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Щракнете тук ако коментарът е неподходящ. Вместо съдържанието на коментара, " -"ще се покаже надписът \"Този коментар беше премахнат.\"" - -#: models.py:80 -msgid "comments" -msgstr "коментари" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Този коментар е публикуван от регистриран потребител, затова името не може " -"да бъде редактирано." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Този коментар е публикуван от регистриран потребител, затова email адресът " -"не може да бъде редактиран." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Публикуван от %(user)s на %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "маркиране" - -#: models.py:180 -msgid "date" -msgstr "дата" - -#: models.py:190 -msgid "comment flag" -msgstr "отбелязване на коментар" - -#: models.py:191 -msgid "comment flags" -msgstr "отбелязване на коментари" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Одобряване на коментар" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Наистина ли да стане този коментар публичен?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Одобри" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Благодарим за одобрението" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Благодарим, че отделихте време, за да се подобри качеството на обсъждането " -"на нашия сайт" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Премахване на коментар" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Сигурни ли сте, че искате да премахнете този коментар?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Премахване" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Благодарим за премахването" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Маркирай този коментар" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Сигурни ли сте, че искате да отбележете този коментар?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Отбелязване" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Благодарим за отбелязването" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Публикувай" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Преглед" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Благодарим за коментара" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Благодарим за Вашия коментар" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Преглед на коментар" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Моля, поправете грешката по-долу" -msgstr[1] "Моля, поправете грешките по-долу" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Публикувай коментар" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "или направете промени" diff --git a/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo b/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo deleted file mode 100644 index 96c2e25b5b1..00000000000 Binary files a/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/bn/LC_MESSAGES/django.po b/django/contrib/comments/locale/bn/LC_MESSAGES/django.po deleted file mode 100644 index 118a229094b..00000000000 --- a/django/contrib/comments/locale/bn/LC_MESSAGES/django.po +++ /dev/null @@ -1,300 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Translators: -# , 2013. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2013-02-20 15:10+0000\n" -"Last-Translator: anubhab91 \n" -"Language-Team: Bengali (http://www.transifex.com/projects/p/django/language/" -"bn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "কনটেন্ট" - -#: admin.py:28 -msgid "Metadata" -msgstr "মেটাডাটা" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "ফ্ল্যাগ করা হয়েছে" -msgstr[1] "ফ্ল্যাগ করা হয়েছে" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "চয়িত মন্তব্যগুলোকে ফ্ল্যাগ করুন" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "অনুমোদিত" -msgstr[1] "অনুমোদিত" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "চিহ্নিত মন্তব্যগুলি অনুমোদন করুন" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "মুছে ফেলা হয়েছে" -msgstr[1] "মুছে ফেলা হয়েছে" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "চয়িত মন্তব্যগুলি মুছে ফেলুন" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "নাম" - -#: forms.py:97 -msgid "Email address" -msgstr "ইমেইল ঠিকানা" - -#: forms.py:98 -msgid "URL" -msgstr "ইউআরএল (URL)" - -#: forms.py:99 -msgid "Comment" -msgstr "মন্তব্য" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "সাবধান! %s শব্দটি এখানে প্রযোজ্য নয়।" -msgstr[1] "সাবধান! %s শব্দগুলো এখানে প্রযোজ্য নয়।" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "এবং" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "আপনি যদি এখানে কোনকিছু লিখেন তবে আপনার মন্তব্যকে স্প্যাম হিসেবে ধরা হবে" - -#: models.py:23 -msgid "content type" -msgstr "কনটেন্ট টাইপ" - -#: models.py:25 -msgid "object ID" -msgstr "অবজেক্ট আইডি" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "সদস্য" - -#: models.py:55 -msgid "user's name" -msgstr "সদস্যের নাম" - -#: models.py:56 -msgid "user's email address" -msgstr "সদস্যের ইমেইল ঠিকানা" - -#: models.py:57 -msgid "user's URL" -msgstr "সদস্যের ইউআরএল (URL)" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "মন্তব্য" - -#: models.py:62 -msgid "date/time submitted" -msgstr "দাখিলের তারিখ/সময়" - -#: models.py:63 -msgid "IP address" -msgstr "আইপি ঠিকানা" - -#: models.py:64 -msgid "is public" -msgstr "সার্বজনীন" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "সাইট থেকে মন্তব্য মুছে ফেলতে এখানে আনচেক করুন।" - -#: models.py:67 -msgid "is removed" -msgstr "মোছা হয়েছে" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"এই বাক্সে চেক করুন যদি মন্তব্যটি যথাযথ না হয়। মন্তব্যের পরিবর্তে \"মন্তব্যদি মুছে ফেলা " -"হয়েছে\" দেখানো হবে।" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "এই মন্তব্যটি একজন নিবন্ধনকৃত সদস্য করেছেন, সেজন্যই নামটি শুধুমাত্র পড়ার যোগ্য।" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"এই মন্তব্যটি একজন নিবন্ধনকৃত সদস্য করেছেন, সেজন্যই ইমেইল ঠিকানা শুধুমাত্র পড়ার যোগ্য।" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"লিখেছেন %(user)s - %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "পতাকা" - -#: models.py:180 -msgid "date" -msgstr "তারিখ" - -#: models.py:190 -msgid "comment flag" -msgstr "মন্তব্য পতাকা" - -#: models.py:191 -msgid "comment flags" -msgstr "মন্তব্য পতাকাসমূহ" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "একটি মন্তব্য অনুমোদন করুন" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "সত্যিই কি এই মন্তব্যকে সাধারণের জন্য উন্মুক্ত করতে চান?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "অনুমোদন" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "অনুমোদন করার জন্য ধন্যবাদ" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "আমাদের সাইটের উন্নতিকল্পে আলোচনায় যোগ দেওয়ার জন্য আপনাকে সাধুবাদ জানাই" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "একটি মন্তব্য মুছে ফেলুন" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "সত্যিই কি এই মন্তব্যকে উড়িয়ে দিতে চান?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "মুছে ফেলুন" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "মুছে ফেলার জন্য ধন্যবাদ" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "এই মন্তব্যকে পতাকাচিহ্নিত করুন" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "সত্যিই কি এই মন্তব্যকে পতাকাচিহ্নিত করতে চান?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "পতাকা" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "পতাকাচিহ্নিত করার জন্য ধন্যবাদ" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "প্রাকদর্শন" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "মন্তব্য লেখার জন্য ধন্যবাদ" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "আপনার মতামতের জন্য ধন্যবাদ" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "আপনার মন্তব্যকে প্রাকদর্শন করুন" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/br/LC_MESSAGES/django.mo b/django/contrib/comments/locale/br/LC_MESSAGES/django.mo deleted file mode 100644 index bf37cd0522e..00000000000 Binary files a/django/contrib/comments/locale/br/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/br/LC_MESSAGES/django.po b/django/contrib/comments/locale/br/LC_MESSAGES/django.po deleted file mode 100644 index dc9ba23a7e0..00000000000 --- a/django/contrib/comments/locale/br/LC_MESSAGES/django.po +++ /dev/null @@ -1,290 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Fulup , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-06-29 18:35+0000\n" -"Last-Translator: Fulup \n" -"Language-Team: Breton (http://www.transifex.com/projects/p/django/language/" -"br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Danvez" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metaroadennoù" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "merket" -msgstr[1] "merket" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Merkañ an evezhiadennoù diuzet" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprouet" -msgstr[1] "aprouet" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprouiñ an evezhiadennoù diuzet" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "dilamet" -msgstr[1] "dilamet" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Dilemel an evezhiadennoù diuzet" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "Anv" - -#: forms.py:97 -msgid "Email address" -msgstr "Chomlec'h postel" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Evezhiadenn" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "seurt danvez" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "implijer" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "chomlec'h postel an implijer" - -#: models.py:57 -msgid "user's URL" -msgstr "URL an implijer" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "danvez" - -#: models.py:62 -msgid "date/time submitted" -msgstr "deiziad/eur kaset" - -#: models.py:63 -msgid "IP address" -msgstr "Chomlec'h IP" - -#: models.py:64 -msgid "is public" -msgstr "zo foran" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "zo bet dilamet" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "evezhiadennoù" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "merker" - -#: models.py:180 -msgid "date" -msgstr "deiziad" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "aprouiñ un evezhiadenn" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprouiñ" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Trugarez da vezañ aprouet" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Diverkañ un evezhiadenn" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Dilemel" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Trugarez evit an diverkadenn-mañ" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Kas" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Rakwelet" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Rakwelet hoc'h evezhiadenn" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo b/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo deleted file mode 100644 index 90e6a3f7c74..00000000000 Binary files a/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/bs/LC_MESSAGES/django.po b/django/contrib/comments/locale/bs/LC_MESSAGES/django.po deleted file mode 100644 index 6b0703c1695..00000000000 --- a/django/contrib/comments/locale/bs/LC_MESSAGES/django.po +++ /dev/null @@ -1,309 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Filip Dupanović , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Filip Dupanović \n" -"Language-Team: Bosnian (http://www.transifex.com/projects/p/django/language/" -"bs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bs\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" - -#: admin.py:25 -msgid "Content" -msgstr "Sadržaj" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metapodaci" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "označen" -msgstr[1] "označena" -msgstr[2] "označena" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označite izabrane komentare" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "odobren" -msgstr[1] "odobrena" -msgstr[2] "odobrena" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Odobri izabrane komentare" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "izbrisan" -msgstr[1] "izbrisana" -msgstr[2] "izbrisan" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Obriši izabrane komentare" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentar je uspješno %(action)s." -msgstr[1] "%(count)s komentara su uspješno %(action)s." -msgstr[2] "%(count)s komentara su uspješno %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Komentari na %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Najnoviji komentari na %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ime" - -#: forms.py:97 -msgid "Email address" -msgstr "Email adresa" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pazite šta pišete! Riječ %s nije dozvoljena ovdje." -msgstr[1] "Pazite šta pišete! Riječi %s nisu dozvoljene ovdje." -msgstr[2] "Pazite šta pišete! Riječi %s nisu dozvoljene ovdje." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "i" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ako unesete bilo šta u ovo polje, Vaš komentar će se smatrati spamom" - -#: models.py:23 -msgid "content type" -msgstr "tip sadržaja" - -#: models.py:25 -msgid "object ID" -msgstr "ID objekta" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "korisnik" - -#: models.py:55 -msgid "user's name" -msgstr "korisnikovo ime" - -#: models.py:56 -msgid "user's email address" -msgstr "korisnikova email adresa" - -#: models.py:57 -msgid "user's URL" -msgstr "korisnikov URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum/vrijeme unosa" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresa" - -#: models.py:64 -msgid "is public" -msgstr "javno dostupan" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Uklonite izbor ovog polja da bi se komentar izbrisao sa stranice." - -#: models.py:67 -msgid "is removed" -msgstr "uklonjen" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Obilježite ovo polje ukoliko je komentar neprikladan. Prikazat će se poruka " -"\"Komentar je ukonjen\" umjesto komentara." - -#: models.py:80 -msgid "comments" -msgstr "komentari" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ovaj komentar je postavio prijavljeni korisnik i ime se ne može mijenjati." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ovaj komentar je postavio prijavljeni korisnik i email se ne može mijenjati." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postavio %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "oznaka" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "oznaka komentara" - -#: models.py:191 -msgid "comment flags" -msgstr "oznake komentara" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Odobri komentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Da li zaista želite da učinite ovaj komentar javno dostupnim?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Odobri" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Hvala na odobrenju" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Hvala što ste izdvojili vrijeme da poboljšate kvalitet diskusije na našoj " -"stranici" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Obriši komentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Da li zaista želite da obrišete ovaj komentar?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Obriši" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Hvala na brisanju" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označi ovaj komentar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Da li zaista želite da označite ovaj komentar?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Označi" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Hvala što ste označili komentar." - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Postavi" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Pregled" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Hvala na komentaru" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Hvala što ste ostavili svoj komentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Pregledaj komentar" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Molimo ispravite navadenu grešku niže" -msgstr[1] "Molimo ispravite navedene greške niže" -msgstr[2] "Molimo ispravite navedene greške" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Postavi komentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ili izvrši izmjene" diff --git a/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo deleted file mode 100644 index 57645466b85..00000000000 Binary files a/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ca/LC_MESSAGES/django.po b/django/contrib/comments/locale/ca/LC_MESSAGES/django.po deleted file mode 100644 index 073ee235a3b..00000000000 --- a/django/contrib/comments/locale/ca/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/django/language/" -"ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contingut" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadades" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcat" -msgstr[1] "marcats" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar els comentaris seleccionats" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprovat" -msgstr[1] "aprovats" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprovar els comentaris seleccionats" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminat" -msgstr[1] "eliminats" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eliminar els comentaris seleccionats" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 comentari ha estat %(action)s satisfactòriament." -msgstr[1] "%(count)s comentaris han estat %(action)s satisfactòriament." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "comentaris de %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últims comentaris a %(site_name)s." - -#: forms.py:96 -msgid "Name" -msgstr "Nom" - -#: forms.py:97 -msgid "Email address" -msgstr "Adreça de correu electrònic" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentari" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Vigileu amb el vostre llenguatge! Aquí no s'admet la paraula: %s." -msgstr[1] "" -"Vigileu amb el vostre llenguatge! Aquí no s'admeten les paraules: %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "i" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Si entreu qualsevol cosa en aquest camp el vostre comentari es tractarà com " -"a spam" - -#: models.py:23 -msgid "content type" -msgstr "tipus de contingut" - -#: models.py:25 -msgid "object ID" -msgstr "ID de l'objecte" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuari" - -#: models.py:55 -msgid "user's name" -msgstr "nom de l'usuari" - -#: models.py:56 -msgid "user's email address" -msgstr "adreça de correu electrònic de l'usuari" - -#: models.py:57 -msgid "user's URL" -msgstr "URL de l'usuari" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentari" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hora d'enviament" - -#: models.py:63 -msgid "IP address" -msgstr "Adreça IP" - -#: models.py:64 -msgid "is public" -msgstr "és públic" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Desmarqueu aquesta casella per fer desaparèixer aquest comentari del lloc " -"web de forma efectiva." - -#: models.py:67 -msgid "is removed" -msgstr "està eliminat" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marqueu aquesta casella si el comentari no és apropiat. En lloc seu es " -"mostrarà \"Aquest comentari ha estat eliminat\" " - -#: models.py:80 -msgid "comments" -msgstr "comentaris" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Aquest comentari va ser publicat per un usuari autentificat, per això el seu " -"nom no es pot modificar." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Aquest comentari va ser publicat per un usuari autentificat, per això la " -"seva adreça de correu electrònic no es pot modificar." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Enviat per %(user)s el %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marcar" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "marca del comentari" - -#: models.py:191 -msgid "comment flags" -msgstr "marques del comentari" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprovar un comentari" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Voleu realment fer públic aquest comentari?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprovar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Gràcies per aprovar" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Gràcies per dedicar el temps a millorar la qualitat del debat al nostre lloc" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eliminar un comentari" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Realment voleu eliminar aquest comentari?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eliminar" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Gràcies per eliminar" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar aquest comentari" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Realment voleu marcar aquest comentari?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Gràcies per marcar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publicar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Vista prèvia" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Gràcies per comentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Gràcies pel vostre comentari" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Previsualitzar el vostre comentari" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Si us plau, corregiu l'error mostrat a sota." -msgstr[1] "Si us plau, corregiu els errors mostrats a sota." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Enviar el seu comentari" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o feu canvis." diff --git a/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo b/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo deleted file mode 100644 index 0fa05b4d369..00000000000 Binary files a/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/cs/LC_MESSAGES/django.po b/django/contrib/comments/locale/cs/LC_MESSAGES/django.po deleted file mode 100644 index 8d6e81cfc57..00000000000 --- a/django/contrib/comments/locale/cs/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/django/language/" -"cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Obsah" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "označen" -msgstr[1] "označeny" -msgstr[2] "označeno" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označit vybrané komentáře" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "schválen" -msgstr[1] "schváleny" -msgstr[2] "schváleno" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Schválit vybrané komentáře" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "odebrán" -msgstr[1] "odebrány" -msgstr[2] "odebráno" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Odebrat vybrané komentáře" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 komentář byl úspěšně %(action)s." -msgstr[1] "%(count)s komentáře byly úspěšně %(action)s." -msgstr[2] "%(count)s komentářů bylo úspěšně %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Komentáře z webu %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Poslední komentáře na webu %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Jméno" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mailová adresa" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentář" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Mluvte slušně! Slovo %s je zde nepřípustné." -msgstr[1] "Mluvte slušně! Slova %s jsou zde nepřípustná." -msgstr[2] "Mluvte slušně! Slova %s jsou zde nepřípustná." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "a" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Jestliže do tohoto pole cokoli zadáte, bude komentář považován za spam" - -#: models.py:23 -msgid "content type" -msgstr "typ obsahu" - -#: models.py:25 -msgid "object ID" -msgstr "ID položky" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "uživatel" - -#: models.py:55 -msgid "user's name" -msgstr "jméno uživatele" - -#: models.py:56 -msgid "user's email address" -msgstr "e-mailová adresa uživatele" - -#: models.py:57 -msgid "user's URL" -msgstr "URL uživatele" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentář" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum a čas byly zaslané" - -#: models.py:63 -msgid "IP address" -msgstr "Adresa IP" - -#: models.py:64 -msgid "is public" -msgstr "je veřejný" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Pokud zrušíte zaškrtnutí tohoto políčka, komentář se na stránce nezobrazí." - -#: models.py:67 -msgid "is removed" -msgstr "je odebrán" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Zaškrtněte, pokud je komentář nevhodný. Místo něj bude zobrazena zpráva " -"\"Tento komentář byl odebrán\"." - -#: models.py:80 -msgid "comments" -msgstr "komentář" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Tento komentář zaslal přihlášený uživatel, jméno tedy není možné změnit." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Tento komentář zaslal přihlášený uživatel, e-mail tedy není možné změnit." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Zadal uživatel %(user)s dne %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "značka" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "značka komentáře" - -#: models.py:191 -msgid "comment flags" -msgstr "značky komentáře" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Schválit komentář" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Opravdu chcete zveřejnit tento komentář?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Schválit" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Děkujeme za schválení" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Děkujeme za váš čas věnovaný zlepšení kvality diskuze na našich stránkách" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Odebrat komentář" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Opravdu chcete odebrat tento komentář?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Odebrat" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Děkujeme za odebrání" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označit tento komentář" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Opravdu chcete označit tento komentář?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Označit" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Děkujeme za označení komentáře" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Odeslat" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Náhled" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Děkujeme za vložení komentáře" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Děkujeme za komentář" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Zobrazit náhled komentáře" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Opravte níže uvedenou chybu." -msgstr[1] "Opravte níže uvedené chyby." -msgstr[2] "Opravte níže uvedené chyby." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Komentář odeslat" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "nebo upravit" diff --git a/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo b/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo deleted file mode 100644 index da547d00021..00000000000 Binary files a/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/cy/LC_MESSAGES/django.po b/django/contrib/comments/locale/cy/LC_MESSAGES/django.po deleted file mode 100644 index fd0c1b92b49..00000000000 --- a/django/contrib/comments/locale/cy/LC_MESSAGES/django.po +++ /dev/null @@ -1,308 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Welsh (http://www.transifex.com/projects/p/django/language/" -"cy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3;\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Sylw" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ac" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "math cynnwys" - -#: models.py:25 -msgid "object ID" -msgstr "ID gwrthrych" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "sylw" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dyddiad/amser wedi ymostwng" - -#: models.py:63 -msgid "IP address" -msgstr "cyfeiriad IP" - -#: models.py:64 -msgid "is public" -msgstr "yn gyhoeddus" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "wedi diddymu" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postiwyd gan %(user)s ar %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/da/LC_MESSAGES/django.mo b/django/contrib/comments/locale/da/LC_MESSAGES/django.mo deleted file mode 100644 index 4a8385ffcee..00000000000 Binary files a/django/contrib/comments/locale/da/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/da/LC_MESSAGES/django.po b/django/contrib/comments/locale/da/LC_MESSAGES/django.po deleted file mode 100644 index 416eb57a6a5..00000000000 --- a/django/contrib/comments/locale/da/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Danish (http://www.transifex.com/projects/p/django/language/" -"da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Indhold" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "Markeret" -msgstr[1] "Markeret" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marker valgte kommentarer" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "Godkendt" -msgstr[1] "Godkendt" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Godkend valgte kommentarer" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "fjernet" -msgstr[1] "fjernet" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Fjern valgte kommentarer" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 kommentar blev %(action)s" -msgstr[1] "%(count)s kommentarer blev %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "kommentarer på %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Seneste kommentarer på %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Navn" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mail-adresse" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Var din mund! Ordet %s er ikke tilladt her." -msgstr[1] "Var din mund! Ordene %s er ikke tilladt her." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "og" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Hvis du indtaster noget i dette felt, vil din kommentar blive betragtet som " -"spam." - -#: models.py:23 -msgid "content type" -msgstr "indholdstype" - -#: models.py:25 -msgid "object ID" -msgstr "objekt-ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "bruger" - -#: models.py:55 -msgid "user's name" -msgstr "brugerens navn" - -#: models.py:56 -msgid "user's email address" -msgstr "brugerens e-mail-adresse" - -#: models.py:57 -msgid "user's URL" -msgstr "brugerens URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dato/tidspunkt for oprettelse" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adresse" - -#: models.py:64 -msgid "is public" -msgstr "er offentlig" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Hvis du fjerner afkrydsningen her, bliver din kommentar slettet fra sitet." - -#: models.py:67 -msgid "is removed" -msgstr "er fjernet" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Afkryds denne boks, hvis kommentaren er upassende. Beskeden \"Denne " -"kommentar er blevet fjernet\" vil blive vist i stedet." - -#: models.py:80 -msgid "comments" -msgstr "kommentarer" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Denne kommentar blev indsendt af en autenticeret bruger; derfor er navnet " -"skrivebeskyttet." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Denne kommentar blev indsendt af en autenticeret bruger; derfor er e-mail-" -"adressen skrivebeskyttet." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Indsendt af %(user)s den %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "Flag" - -#: models.py:180 -msgid "date" -msgstr "dato" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentarflag" - -#: models.py:191 -msgid "comment flags" -msgstr "kommentarflag" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Godkend en kommentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Vil du godkende denne kommentar?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Godkend" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Tak for godkendelsen" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Tak fordi du tog dig tid til at højne kvaliteten af diskussionen på vores " -"website" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Fjern en kommentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Skal kommentaren fjernes?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Fjern" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Tak for fjernelsen" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flag denne kommentar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Skal kommentaren flages?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flag" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Tak for markeringen" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Indsend" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Forhåndsvis" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Tak for kommenteringen" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Tak for kommentaren" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Forhåndsvis kommentar" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Ret venligst fejlen herunder." -msgstr[1] "Ret venligst fejlene herunder." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Indsend din kommentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "eller gennemfør ændringer" diff --git a/django/contrib/comments/locale/de/LC_MESSAGES/django.mo b/django/contrib/comments/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index 4305cc972d0..00000000000 Binary files a/django/contrib/comments/locale/de/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/de/LC_MESSAGES/django.po b/django/contrib/comments/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index f20d522d079..00000000000 --- a/django/contrib/comments/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,309 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: German (http://www.transifex.com/projects/p/django/language/" -"de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Inhalt" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadaten" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "markiert" -msgstr[1] "markiert" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Ausgewählte Kommentare markieren" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "freigegeben" -msgstr[1] "freigegeben" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Ausgewählte Kommentare freigeben" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "entfernt" -msgstr[1] "entfernt" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Ausgewählte Kommentare entfernen" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 Kommentar wurde erfolgreich %(action)s." -msgstr[1] "%(count)s Kommentare wurden erfolgreich %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s-Kommentare" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Die neuesten Kommentare auf %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Name" - -#: forms.py:97 -msgid "Email address" -msgstr "E-Mail-Adresse" - -#: forms.py:98 -msgid "URL" -msgstr "Adresse (URL)" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Keine Schimpfworte! Das Wort %s ist hier nicht erlaubt!" -msgstr[1] "Keine Schimpfworte! Die Wörter %s sind hier nicht erlaubt!" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "und" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Wenn Sie irgendetwas in dieses Feld eintragen, wird der Kommentar als Spam " -"betrachtet" - -#: models.py:23 -msgid "content type" -msgstr "Inhaltstyp" - -#: models.py:25 -msgid "object ID" -msgstr "Objekt-ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "Benutzer" - -#: models.py:55 -msgid "user's name" -msgstr "Benutzername" - -#: models.py:56 -msgid "user's email address" -msgstr "E-Mail-Adresse" - -#: models.py:57 -msgid "user's URL" -msgstr "URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "Kommentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "Datum/Zeit Erstellung" - -#: models.py:63 -msgid "IP address" -msgstr "IP-Adresse" - -#: models.py:64 -msgid "is public" -msgstr "ist öffentlich" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Deaktivieren, um den Kommentar sofort von der Website zu entfernen." - -#: models.py:67 -msgid "is removed" -msgstr "ist gelöscht" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Hier einen Haken setzen, wenn der Kommentar unpassend ist. Stattdessen wird " -"dann \"Dieser Kommentar wurde entfernt\" Meldung angezeigt." - -#: models.py:80 -msgid "comments" -msgstr "Kommentare" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Dieser Kommentar wurde von einem authentifizierten Benutzer geschrieben.\n" -"Der Name ist daher schreibgeschützt.\n" -"\n" -"%(text)s" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Dieser Kommentar wurde von einem authentifizierten Benutzer geschrieben.\n" -"Die E-Mail-Adresse ist daher schreibgeschützt.\n" -"\n" -"%(text)s" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Geschrieben von %(user)s am %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "Markierung" - -#: models.py:180 -msgid "date" -msgstr "Datum" - -#: models.py:190 -msgid "comment flag" -msgstr "Kommentar-Markierung" - -#: models.py:191 -msgid "comment flags" -msgstr "Kommentar-Markierungen" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Kommentar freigeben" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Wollen Sie diesen Kommentar wirklich freigeben?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Freigeben" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Vielen Dank, dass Sie den Kommentar freigegeben haben" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Vielen Dank, dass Sie dabei mithelfen, die Qualität der Diskussion auf " -"unserer Website zu verbessern" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Kommentar entfernen" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Wollen Sie diesen Kommentar wirklich entfernen?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Entfernen" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Vielen Dank, dass Sie diesen Kommentar entfernt haben" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Diesen Kommentar markieren" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Wollen Sie diesen Kommentar wirklich markieren?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Markierung" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Vielen Dank, dass Sie diesen Kommentar markiert haben" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Abschicken" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Vorschau" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Vielen Dank, dass Sie einen Kommentar geschrieben haben" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Vielen Dank für Ihren Kommentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Kommentarvorschau" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Bitte den unten aufgeführten Fehler korrigieren." -msgstr[1] "Bitte die unten aufgeführten Fehler korrigieren." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Kommentar abschicken" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "oder Änderungen vornehmen" diff --git a/django/contrib/comments/locale/el/LC_MESSAGES/django.mo b/django/contrib/comments/locale/el/LC_MESSAGES/django.mo deleted file mode 100644 index dc493a5b1ce..00000000000 Binary files a/django/contrib/comments/locale/el/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/el/LC_MESSAGES/django.po b/django/contrib/comments/locale/el/LC_MESSAGES/django.po deleted file mode 100644 index e0d62c53f36..00000000000 --- a/django/contrib/comments/locale/el/LC_MESSAGES/django.po +++ /dev/null @@ -1,309 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Dimitris Glezos , 2011. -# Jannis Leidel , 2011. -# Yorgos Pagles , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Yorgos Pagles \n" -"Language-Team: Greek (http://www.transifex.com/projects/p/django/language/" -"el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Περιεχόμενο" - -#: admin.py:28 -msgid "Metadata" -msgstr "Μεταδεδομένα" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "επισημασμένο" -msgstr[1] "επισημασμένα" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Επισημανση των επιλεγμένων σχολίων" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "εγκρίθηκε" -msgstr[1] "εγκρίθηκαν" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Έγκριση των συγκεκριμένων σχολίων" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "αφαιρέθηκε" -msgstr[1] "αφαιρέθηκαν" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Αφαίρεση των επιλεγμένων σχολίων" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "Πραγματοποιήθκε επιτυχημένα %(action)s στα %(count)s σχόλια." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Σχόλια στο %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Τελευταία σχόλια στο %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Όνομα" - -#: forms.py:97 -msgid "Email address" -msgstr "Ηλεκτρονική διεύθυνση" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Σχόλιο" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Η λέξη %s δεν επιτρέπεται σε σχόλια." -msgstr[1] "Η λέξεις %s δεν επιτρέπονται σε σχόλια." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "και" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Αφήστε αυτό το πεδίο κενό. Αν εισάγετε κάτι τότε το σχόλιο θα θεωρηθεί spam " -"και δεν θα εμφανιστεί." - -#: models.py:23 -msgid "content type" -msgstr "τύπος περιεχομένου" - -#: models.py:25 -msgid "object ID" -msgstr "ID αντικειμένου" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "χρήστης" - -#: models.py:55 -msgid "user's name" -msgstr "όνομα χρήστη" - -#: models.py:56 -msgid "user's email address" -msgstr "ηλεκτρονική διεύθυνση χρήστη" - -#: models.py:57 -msgid "user's URL" -msgstr "διεύθυνση ιστοτόπου χρήστη" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "σχόλιο" - -#: models.py:62 -msgid "date/time submitted" -msgstr "ημερομηνία/ώρα υποβολής" - -#: models.py:63 -msgid "IP address" -msgstr "διεύθυνση IP" - -#: models.py:64 -msgid "is public" -msgstr "είναι δημόσιο" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Απεπιλέξτε αυτή την επιλογή για να κάνετε το σχόλιο να μην εμφανίζεται." - -#: models.py:67 -msgid "is removed" -msgstr "είναι διαγραμμένο" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Επιλέξτε αυτή την επιλογή εάν το σχόλιο είναι ανάρμοστο. Ένα μήνυμα \"Αυτό " -"το σχόλιο διαγράφηκε\" θα εμφανιστεί στη θέση του." - -#: models.py:80 -msgid "comments" -msgstr "σχόλια" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Αυτό το σχόλιο πραγματοποιήθκε από πιστοποιημένο χρήστη και για τον λόγο " -"αυτό δεν είναι είναι δυνατή η επεξεργασία του ονόματός του." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Αυτό το σχόλιο πραγματοποιήθκε από πιστοποιημένο χρήστη και για τον λόγο " -"αυτό δεν είναι είναι δυνατή η επεξεργασία της διεύθυνσης του ηλεκτρονικού " -"του ταχυδρομείου." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Σχόλιο από %(user)s στις %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "επισήμανση" - -#: models.py:180 -msgid "date" -msgstr "ημερομηνία" - -#: models.py:190 -msgid "comment flag" -msgstr "επισήμανση σχολίου" - -#: models.py:191 -msgid "comment flags" -msgstr "επισημάνσεις σχολίου" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Έγκριση σχολίου" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Επιβεβαιώστε ότι επιθυμείτε την δημόσια εμφάνιση του σχολίου." - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Έγκριση." - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Ευχαριστούμε για την έγκριση." - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Ευχαριστούμε για τον χρόνο που διαθέσατε για την βελτίωση της ποιότητας των " -"σχολίων στον ιστότοπό μας." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Αφαίρεση σχολίου" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Επιβεβαιώστε ότι επιθυμείτε την αφαίρεση του σχολίου." - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Αφαίρεση" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Ευχαριστούμε για την αφαίρεση" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Επισήμανση σχολίου" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Επιβεβαιώστε ότι επιθυμείτε την επισήμανσση του σχολίου." - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Επισήμανση" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Ευχαριστούμε για την επισήμανση" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Δημοσίευση" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Προβολή:" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Ευχαριστούμε για το σχόλιό σας" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Ευχαριστούμε για το σχόλιό σας" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Προβολή του σχολίου σας" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Παρακαλούμε διορθώστε το παρακάτω σφάλμα:" -msgstr[1] "Παρακαλούμε διορθώστε τα παρακάτω σφάλματα:" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Δημοσιοποίηση του σχολίου σας" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ή πραγματοποιήστε αλλαγές" diff --git a/django/contrib/comments/locale/en/LC_MESSAGES/django.mo b/django/contrib/comments/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index 08a7b68596a..00000000000 Binary files a/django/contrib/comments/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/en/LC_MESSAGES/django.po b/django/contrib/comments/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 43ca058b6ca..00000000000 --- a/django/contrib/comments/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,284 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-05-25 14:19+0200\n" -"PO-Revision-Date: 2010-05-13 15:35+0200\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -#, python-format -msgid "%d comment was successfully flagged" -msgid_plural "%d comments were successfully flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:57 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:61 -#, python-format -msgid "%d comment was successfully approved" -msgid_plural "%d comments were successfully approved" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:63 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:67 -#, python-format -msgid "%d comment was successfully removed" -msgid_plural "%d comments were successfully removed" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:69 -msgid "Remove selected comments" -msgstr "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the errors below" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo b/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index 10d308bcaff..00000000000 Binary files a/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po b/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po deleted file mode 100644 index 1cb20745ad2..00000000000 --- a/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Ross Poulton , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Ross Poulton \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" -"django/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Content" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "flagged" -msgstr[1] "flagged" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Flag selected comments" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "approved" -msgstr[1] "approved" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Approve selected comments" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "removed" -msgstr[1] "removed" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Remove selected comments" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "%(count)s comments were successfully %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s comments" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Latest comments on %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Name" - -#: forms.py:97 -msgid "Email address" -msgstr "Email address" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comment" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Watch your mouth! The word %s is not allowed here." -msgstr[1] "Watch your mouth! The words %s are not allowed here." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "and" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"If you enter anything in this field your comment will be treated as spam" - -#: models.py:23 -msgid "content type" -msgstr "content type" - -#: models.py:25 -msgid "object ID" -msgstr "object ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "user" - -#: models.py:55 -msgid "user's name" -msgstr "user's name" - -#: models.py:56 -msgid "user's email address" -msgstr "user's email address" - -#: models.py:57 -msgid "user's URL" -msgstr "user's URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comment" - -#: models.py:62 -msgid "date/time submitted" -msgstr "date/time submitted" - -#: models.py:63 -msgid "IP address" -msgstr "IP address" - -#: models.py:64 -msgid "is public" -msgstr "is public" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Uncheck this box to make the comment effectively disappear from the site." - -#: models.py:67 -msgid "is removed" -msgstr "is removed" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." - -#: models.py:80 -msgid "comments" -msgstr "comments" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flag" - -#: models.py:180 -msgid "date" -msgstr "date" - -#: models.py:190 -msgid "comment flag" -msgstr "comment flag" - -#: models.py:191 -msgid "comment flags" -msgstr "comment flags" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Approve a comment" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Really make this comment public?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Approve" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Thanks for approving" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Thanks for taking the time to improve the quality of discussion on our site" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Remove a comment" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Really remove this comment?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Remove" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Thanks for removing" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flag this comment" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Really flag this comment?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flag" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Thanks for flagging" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Post" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Preview" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Thanks for commenting" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Thank you for your comment" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Preview your comment" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Please correct the error below" -msgstr[1] "Please correct the errors below" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Post your comment" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "or make changes" diff --git a/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo b/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo deleted file mode 100644 index aa1ee954b1f..00000000000 Binary files a/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/eo/LC_MESSAGES/django.po b/django/contrib/comments/locale/eo/LC_MESSAGES/django.po deleted file mode 100644 index ffb9096c7ad..00000000000 --- a/django/contrib/comments/locale/eo/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Baptiste \n" -"Language-Team: Esperanto (http://www.transifex.com/projects/p/django/" -"language/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Enhavo" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadatumo" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "markita" -msgstr[1] "markitaj" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marki elektitajn komentojn" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobita" -msgstr[1] "aprobitaj" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprobi elektitajn komentojn" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "forigita" -msgstr[1] "forigitaj" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Forigi elektitajn komentojn" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 komento estis suksese %(action)s." -msgstr[1] "%(count)s komentoj estis suksese %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s komentoj" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Lastaj komentoj ĉe %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nomo" - -#: forms.py:97 -msgid "Email address" -msgstr "Retpoŝtadreso" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komento" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Atentu via lingvaĵo! La vorto %s ne estas permisita ĉi-tie." -msgstr[1] "Atentu via lingvaĵo! La vortoj %s ne estas permisitaj ĉi-tie." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "kaj" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Se vi enigas ion-ajn en ĉi-tiu kampo, via komento estos traktita kiel spamo" - -#: models.py:23 -msgid "content type" -msgstr "enhava tipo" - -#: models.py:25 -msgid "object ID" -msgstr "objekta identigaĵo" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "uzanto" - -#: models.py:55 -msgid "user's name" -msgstr "uzanta nomo" - -#: models.py:56 -msgid "user's email address" -msgstr "uzanta retpoŝtadreso" - -#: models.py:57 -msgid "user's URL" -msgstr "uzanta URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komento" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dato kaj horo transsenditaj" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adreso" - -#: models.py:64 -msgid "is public" -msgstr "estas publika" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Malŝaltu ĉi-tiun markobutonon por definitive malaperigi la komenton el la " -"retejo." - -#: models.py:67 -msgid "is removed" -msgstr "estas forigita" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Ŝaltu ĉi-tiun markobutonon se la komento estas nekonvena. La mesaĝo \"Ĉi-tiu " -"komento estis forigita\" estos montrita anstataŭe." - -#: models.py:80 -msgid "comments" -msgstr "komentoj" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ĉi-tiu komento estis afiŝita de aŭtentigita uzanto, do tiel la nomo estas " -"nurlega." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ĉi-tiu komento estis afiŝita de aŭtentigita uzanto, do tiel la nomo kaj " -"retpoŝtadreo estas nurlegaj." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Afiŝita de %(user)s - %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marko" - -#: models.py:180 -msgid "date" -msgstr "dato" - -#: models.py:190 -msgid "comment flag" -msgstr "komenta marko" - -#: models.py:191 -msgid "comment flags" -msgstr "komentaj markoj" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobi komenton" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Ĉu certe publikigi ĉi-tiun komenton?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobi" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Dankon por la aprobo" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Dankon por trapasi tempon por plibonigi la diskutan kvaliton ĉe nia retejo" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Forigi komenton" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Ĉu certe forigi ĉi-tiun komenton?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Forigu" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Dankon por la forigo" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marki ĉi-tiun komenton" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Ĉu certe marki ĉi-tiun komenton?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marki" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Dankon por la marko" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Afiŝi" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Antaŭrigardo" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Dankon por al komentado" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Dankon por via komento" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Antaŭrigardi vian komenton" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Bonvolu ĝustigi la eraron sube." -msgstr[1] "Bonvolu ĝustigi la erarojn sube." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publikigi vian komenton" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "aŭ lin redakti" diff --git a/django/contrib/comments/locale/es/LC_MESSAGES/django.mo b/django/contrib/comments/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index cda9b60a2b2..00000000000 Binary files a/django/contrib/comments/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/es/LC_MESSAGES/django.po b/django/contrib/comments/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index 5a15db61583..00000000000 --- a/django/contrib/comments/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Marc Garcia , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Marc Garcia \n" -"Language-Team: Spanish (http://www.transifex.com/projects/p/django/language/" -"es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "contenido" - -#: admin.py:28 -msgid "Metadata" -msgstr "metadatos" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcado" -msgstr[1] "marcados" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar los comentarios seleccionados" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobado" -msgstr[1] "aprobados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "aprobar los comentarios seleccionados" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminado" -msgstr[1] "eliminados" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eliminar los comentarios seleccionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 comentarios ha sido %(action)s satisfactoriamente." -msgstr[1] "%(count)s comentarios han sido %(action)s satisfactoriamente." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "comentarios de %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentarios en %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nombre" - -#: forms.py:97 -msgid "Email address" -msgstr "dirección de correo electrónico" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentario" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "¡Cuide su vocabulario! Aquí no admitimos la palabra %s." -msgstr[1] "¡Cuide su vocabulario! Aquí no admitimos las palabras %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "y" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Si introduce algo en este campo su comentario será tratado como spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de contenido" - -#: models.py:25 -msgid "object ID" -msgstr "ID de objeto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuario" - -#: models.py:55 -msgid "user's name" -msgstr "nombre del usuario" - -#: models.py:56 -msgid "user's email address" -msgstr "dirección de correo electrónico del usuario" - -#: models.py:57 -msgid "user's URL" -msgstr "URL del usuario" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentario" - -#: models.py:62 -msgid "date/time submitted" -msgstr "fecha/hora de envío" - -#: models.py:63 -msgid "IP address" -msgstr "Dirección IP" - -#: models.py:64 -msgid "is public" -msgstr "es público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Desmarque esta casilla para hacer desaparecer el comentario del sitio web de " -"forma efectiva." - -#: models.py:67 -msgid "is removed" -msgstr "está eliminado" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marque esta opción si el comentario es inapropiado. En su lugar se mostrará " -"el mensaje \"Este comentario ha sido eliminado\"." - -#: models.py:80 -msgid "comments" -msgstr "comentarios" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentario ha sido enviado por un usuario autentificado: de modo que su " -"nombre no es modificable." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentario ha sido colocado por un usuario autentificado: de modo que " -"su dirección de correo electrónico no es modificable." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Enviado por %(user)s en %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marcar" - -#: models.py:180 -msgid "date" -msgstr "fecha" - -#: models.py:190 -msgid "comment flag" -msgstr "marca de comentario" - -#: models.py:191 -msgid "comment flags" -msgstr "marcas de comentario" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobar un comentario" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Realmente desea hacer este comentario público?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Gracias por aprobar" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Gracias por tomarse el tiempo para mejorar la calidad del debate en nuestro " -"sitio" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eliminar un comentario" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "¿Realmente desea eliminar este comentario?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eliminar" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Gracias por eliminar" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar este comentario" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "¿Realmente desea marcar este comentario?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Graciar por marcar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Enviar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Previsualizar" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Gracias por comentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Gracias por su comentario" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Previsualizar su comentario" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor, corrija el siguiente error." -msgstr[1] "Por favor, corrija los siguientes errores." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Envie su comentario" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o haga cambios" diff --git a/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo b/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo deleted file mode 100644 index 0ae47666175..00000000000 Binary files a/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po b/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po deleted file mode 100644 index e6971abfe9c..00000000000 --- a/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po +++ /dev/null @@ -1,303 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/" -"django/language/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contenido" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadatos" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcado" -msgstr[1] "marcados" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar comentarios seleccionados" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobado" -msgstr[1] "aprobados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprobar comentario seleccionado" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminado" -msgstr[1] "eliminados" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eliminar comentarios seleccionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "un comentario fue %(action)s satisfactoriamente." -msgstr[1] "%(count)s comentarios fueron %(action)s satisfactoriamente" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "comentarios en %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentarios en %(site_name)s." - -#: forms.py:96 -msgid "Name" -msgstr "Nombre" - -#: forms.py:97 -msgid "Email address" -msgstr "Dirección de correo electrónico" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentario" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "¡Controla tu lenguaje! Aquí no admitimos la palabra %s." -msgstr[1] "¡Controla tu lenguaje! Aquí no admitimos las palabras %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "y" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Si introduce algo en este campo su comentario será tratado como spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de contenido" - -#: models.py:25 -msgid "object ID" -msgstr "ID de objeto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuario" - -#: models.py:55 -msgid "user's name" -msgstr "nombre de usuario" - -#: models.py:56 -msgid "user's email address" -msgstr "dirección de correo electrónico del usuario" - -#: models.py:57 -msgid "user's URL" -msgstr "URL del usuario" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentario" - -#: models.py:62 -msgid "date/time submitted" -msgstr "fecha/hora de envío" - -#: models.py:63 -msgid "IP address" -msgstr "Dirección IP" - -#: models.py:64 -msgid "is public" -msgstr "es público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "desmarque este ítem para que el comentario desaparezca del sitio." - -#: models.py:67 -msgid "is removed" -msgstr "se ha eliminado" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marque este ítem si el comentario es inapropiado. En su lugar se mostrará un " -"mensaje \"Este comentario ha sido eliminado\"." - -#: models.py:80 -msgid "comments" -msgstr "comentarios" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentario ha sido enviado por un usuario identificado, por lo tanto el " -"nombre no puede modificarse." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentario ha sido enviado por un usuario identificado, por lo tanto la " -"dirección de correo electrónico no puede modificarse." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Enviado por %(user)s el %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marca" - -#: models.py:180 -msgid "date" -msgstr "fecha" - -#: models.py:190 -msgid "comment flag" -msgstr "marca de comentario" - -#: models.py:191 -msgid "comment flags" -msgstr "marcas de comentario" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobar un comentario" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "¿Confirma que realmente desea hacer este comentario público?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "¡Gracias por aprobar!" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Gracias por tomarse el tiempo de mejorar la calidad de la discusión en " -"nuestro sitio" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eliminar un comentario" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "¿Confirma que realmente desea eliminar este comentario?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eliminar" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "¡Gracias por eliminar!" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar este comentario" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "¿Confirma que realmente desde marcar este comentario?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "¡Gracias por marcar!" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Remitir" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Previsualización" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Gracias por dejar su comentario" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Gracias por dejar su comentario" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Ver una copia previa de su comentario" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor, corrija el siguiente error." -msgstr[1] "Por favor, corrija los siguientes errores." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Enviar su comentario" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o realice modificaciones" diff --git a/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo b/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo deleted file mode 100644 index d7c92d6e294..00000000000 Binary files a/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po b/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po deleted file mode 100644 index 451da9f5384..00000000000 --- a/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po +++ /dev/null @@ -1,303 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Abraham Estrada , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/django/" -"language/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contenido" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadatos" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcado" -msgstr[1] "marcados" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar comentarios seleccionados" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobado" -msgstr[1] "aprobados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprobar comentario seleccionado" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminado" -msgstr[1] "eliminados" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eliminar comentarios seleccionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "%(count)s comentarios fueron %(action)s satisfactoriamente." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "comentarios en %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentarios en %(site_name)s " - -#: forms.py:96 -msgid "Name" -msgstr "Nombre" - -#: forms.py:97 -msgid "Email address" -msgstr "Dirección de correo electrónico" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentario" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "¡Controla tu lenguaje! Aquí no admitimos la palabra %s." -msgstr[1] "¡Controla tu lenguaje! Aquí no admitimos las palabras %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "y" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Si introduce algo en este campo su comentario será tratado como spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de contenido" - -#: models.py:25 -msgid "object ID" -msgstr "ID de objeto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuario" - -#: models.py:55 -msgid "user's name" -msgstr "nombre de usuario" - -#: models.py:56 -msgid "user's email address" -msgstr "dirección de correo electrónico del usuario" - -#: models.py:57 -msgid "user's URL" -msgstr "URL del usuario" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentario" - -#: models.py:62 -msgid "date/time submitted" -msgstr "fecha/hora de envío" - -#: models.py:63 -msgid "IP address" -msgstr "Dirección IP" - -#: models.py:64 -msgid "is public" -msgstr "es público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Desactive esta casilla para hacer el comentario desaparezca del sitio." - -#: models.py:67 -msgid "is removed" -msgstr "se ha eliminado" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marque esta casilla si el comentario es inapropiado. En su lugar se mostrará " -"un mensaje \"Este comentario ha sido eliminado\"." - -#: models.py:80 -msgid "comments" -msgstr "comentarios" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentario ha sido enviado por un usuario identificado, por lo tanto el " -"nombre no puede modificarse." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentario ha sido enviado por un usuario identificado, por lo tanto la " -"dirección de correo electrónico no puede modificarse." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Enviado por %(user)s el %(date)s \n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marca" - -#: models.py:180 -msgid "date" -msgstr "fecha" - -#: models.py:190 -msgid "comment flag" -msgstr "marca de comentario" - -#: models.py:191 -msgid "comment flags" -msgstr "marcas de comentario" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobar un comentario" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "¿Desea hacer público este comentario?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Gracias por aprovar" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Gracias por tomarse el tiempo para mejorar la calidad de la discución en " -"nuestro sitio" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eliminar comentario" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "¿Desea eliminar este comentario?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eliminar" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Gracias por eliminar" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar este comentario" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "¿Desea marcar este comentario?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Gracias por marcar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Enviar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Previsualizar" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Gracias por comentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Gracier por el comentario" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Previsualizar el comentario" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor corrija el error" -msgstr[1] "Por favor corrija los errores" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Envia comentario" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o hacer cambios" diff --git a/django/contrib/comments/locale/et/LC_MESSAGES/django.mo b/django/contrib/comments/locale/et/LC_MESSAGES/django.mo deleted file mode 100644 index 67e9ef44a5e..00000000000 Binary files a/django/contrib/comments/locale/et/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/et/LC_MESSAGES/django.po b/django/contrib/comments/locale/et/LC_MESSAGES/django.po deleted file mode 100644 index be43a10246a..00000000000 --- a/django/contrib/comments/locale/et/LC_MESSAGES/django.po +++ /dev/null @@ -1,302 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# madisvain , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: madisvain \n" -"Language-Team: Estonian (http://www.transifex.com/projects/p/django/language/" -"et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Sisu" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meta-andmed" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "märgistatud" -msgstr[1] "märgistatud" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Märgista valitud kommentaarid" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "heaks kiidetud" -msgstr[1] "heaks kiidetud" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Kiida heaks valitud kommentaarid" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eemaldatud" -msgstr[1] "eemaldatud" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eemalda valitud kommentaarid" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s comments were successfully %(action)s." -msgstr[1] "%(count)s comments were successfully %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Saidi %(site_name)s kommentaarid" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Viimased kommentaarid saidil %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nimi" - -#: forms.py:97 -msgid "Email address" -msgstr "E-posti aadress" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentaar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Jälgige oma keelekasutust. Sõna %s ei ole lubatud." -msgstr[1] "Jälgige oma keelekasutust. Sõnad %s ei ole lubatud." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ja" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Kui sisestate sellesse lahtrisse midagi, loetakse kommentaar rämpsuks" - -#: models.py:23 -msgid "content type" -msgstr "sisutüüp" - -#: models.py:25 -msgid "object ID" -msgstr "objekti ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "kasutaja" - -#: models.py:55 -msgid "user's name" -msgstr "kasutaja pärisnimi" - -#: models.py:56 -msgid "user's email address" -msgstr "kasutaja e-posti aadress" - -#: models.py:57 -msgid "user's URL" -msgstr "kasutaja URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentaar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "loomise kuupäev/kellaaeg" - -#: models.py:63 -msgid "IP address" -msgstr "IP aadress" - -#: models.py:64 -msgid "is public" -msgstr "on avalik" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Eemaldage siit linnuke, et varjata kommentaar saidilt." - -#: models.py:67 -msgid "is removed" -msgstr "on eemaldatud" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Märkige siia linnuke, kui see kommentaar on ebasobiv. Kommentaari asemel " -"kuvatakse kirja \"Kommentaar on kustutatud\"." - -#: models.py:80 -msgid "comments" -msgstr "kommentaarid" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Selle kommentaari postitas sisselogitud kasutaja, mistõttu ei ole nimetus " -"muudetav." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Selle kommentaari postitas sisselogitud kasutaja, mistõttu ei ole e-posti " -"aadress muudetav." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postitatud kasutaja %(user)s poolt %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "märge" - -#: models.py:180 -msgid "date" -msgstr "kuupäev" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentaari märge" - -#: models.py:191 -msgid "comment flags" -msgstr "kommentaari märked" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Märgi kommentaar sobivaks" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Oled kindel, et soovid teha selle kommentaari avalikuks?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Sobib" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Aitäh, et märkisid kommentaari sobivaks" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Aitäh, et leidsid aega parandamaks arutelude kvaliteeti meie lehel" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eemalda kommentaar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Oled kindel, et soovid selle kommentaari eemaldada?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eemalda" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Aitäh, et eemaldasid kommentaari" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Märgi see kommentaar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Oled kindel, et soovid selle kommentaari märkida?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Märge" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Aitäh, et märkisid kommentaari" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Postita" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Eelvaade" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Tänan kommenteerimast" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Aitäh kommentaari eest" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Kommentaari eelvaade" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Palun parandage allolev viga" -msgstr[1] "Palun parandage allolevad vead" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Postita kommentaar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "või tee muudatused" diff --git a/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo b/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo deleted file mode 100644 index 68ea84e57a7..00000000000 Binary files a/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/eu/LC_MESSAGES/django.po b/django/contrib/comments/locale/eu/LC_MESSAGES/django.po deleted file mode 100644 index 3689aaeaa48..00000000000 --- a/django/contrib/comments/locale/eu/LC_MESSAGES/django.po +++ /dev/null @@ -1,305 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Aitzol Naberan , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Aitzol Naberan \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/django/language/" -"eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Edukia" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metada" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "markaduna" -msgstr[1] "markadunak" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Markatu aukeratutako iruzkinak" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "onartua" -msgstr[1] "onartuak" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Onartu aukeratutako iruzkinak" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "ezabatua" -msgstr[1] "ezabatuak" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Ezabatu aukeratutako iruzkinak" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "%(count)s iruzkin ondo %(action)s dira." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s guneko iruzkinak" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s guneko azken iruzkinak" - -#: forms.py:96 -msgid "Name" -msgstr "Izena" - -#: forms.py:97 -msgid "Email address" -msgstr "Eposta helbidea" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Iruzkina" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Txiiist! %s hitza ez zaigu gustatzen" -msgstr[1] "Txiiist! %s hitzak ez zaizkigu gustatzen" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "eta" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Eremu honetan zerbait idazten baduzu zure iruzkina spam gisa tratatuko da." - -#: models.py:23 -msgid "content type" -msgstr "eduki mota" - -#: models.py:25 -msgid "object ID" -msgstr "objetuaren ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "Erabiltzailea" - -#: models.py:55 -msgid "user's name" -msgstr "erabiltzailearen izena" - -#: models.py:56 -msgid "user's email address" -msgstr "erabiltzailearen eposta helbidea" - -#: models.py:57 -msgid "user's URL" -msgstr "erabiltzailearen URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "iruzkina" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hordua bidalia" - -#: models.py:63 -msgid "IP address" -msgstr "IP helbidea" - -#: models.py:64 -msgid "is public" -msgstr "publikoa" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Markatu kutxa hau iruzkina webgunetik desagertarazteko." - -#: models.py:67 -msgid "is removed" -msgstr "ezabatua" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Markatu kutxa hau komentario ezegokia bada. \"Komentario hau ezabatua izan da" -"\" mezua erakutsiko da bere ordez." - -#: models.py:80 -msgid "comments" -msgstr "iruzkinak" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Iruzkin hau autentikatutako erabiltzaile batek egin du. Hori dela eta, izena " -"irakurtzeko moduan dago bakarrik. " - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Iruzkin hau autentikatutako erabiltzaile batek egin du. Hori dela eta, " -"eposta irakurtzeko moduan dago bakarrik. " - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s erabiltzileak bidalia %(date)s datan\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marka" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "iruzkin marka" - -#: models.py:191 -msgid "comment flags" -msgstr "iruzkin markak" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Onartu iruzkina" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Publikatu iruzkina?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Onartu" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Eskerrik asko onartzearren" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Eskerrik asko webguneko estabaidaren kalitatea hobetzeko hartutako " -"denboragatik" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Ezabatu iruzkina" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Ziur iruzkin hau ezabtu nahi duzula?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Ezabatu" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Eskerrik asko ezabatzearren" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Markatu iruzkina" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Ziur iruzkin hau markatu nahi duzula?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marka" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Eskerrik asko markatzearren" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Bidali" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Aurreikusi" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Eskerrik asko iruzkintzearren" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Eskerrik asko zure iruzkinagatik" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Aurreikusi zure iruzkina" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Mesedez zuzendu azpiko errorea" -msgstr[1] "Mesedez zuzendu azpiko erroreak" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Bidali zure iruzkina" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "edo egin aldaketak" diff --git a/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo b/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo deleted file mode 100644 index 5ff3c5bfb9b..00000000000 Binary files a/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/fa/LC_MESSAGES/django.po b/django/contrib/comments/locale/fa/LC_MESSAGES/django.po deleted file mode 100644 index 8adc006d106..00000000000 --- a/django/contrib/comments/locale/fa/LC_MESSAGES/django.po +++ /dev/null @@ -1,295 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Ali Nikneshan , 2012. -# Arash Fazeli , 2012. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-08-11 08:27+0000\n" -"Last-Translator: Ali Nikneshan \n" -"Language-Team: Persian (http://www.transifex.com/projects/p/django/language/" -"fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "محتوا" - -#: admin.py:28 -msgid "Metadata" -msgstr "فوق داده" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "پرچم دار" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "نشان‌گذاری نظرات انتخاب شده" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "تایید شده" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "تایید نظرات انتخاب شده" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "حذف شده" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "حذف نظر های انتخاب شده" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s کامنت با موفقیت %(action)s شدند." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "نظرات %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "آخرین نظرات در %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "نام" - -#: forms.py:97 -msgid "Email address" -msgstr "نشانی پست الکترونیکی" - -#: forms.py:98 -msgid "URL" -msgstr "نشانی اینترنتی" - -#: forms.py:99 -msgid "Comment" -msgstr "نظر:" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "حرف دهنت رو بفهم! کلمهٔ %s اینجا قابل قبول نیست" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "و" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "اگر چیزی در این فیلد وارد کنید، نظر شما به عنوان اسپم شناخته خواهد شد" - -#: models.py:23 -msgid "content type" -msgstr "نوع محتوا" - -#: models.py:25 -msgid "object ID" -msgstr "مشخصهٔ شیء" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "کاربر" - -#: models.py:55 -msgid "user's name" -msgstr "نام کاربر" - -#: models.py:56 -msgid "user's email address" -msgstr "نشانی پست الکترونیکی کاربر" - -#: models.py:57 -msgid "user's URL" -msgstr "نشانی اینترنتی کاربر" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "نظر" - -#: models.py:62 -msgid "date/time submitted" -msgstr "تاریخ/زمان فرستاده شد" - -#: models.py:63 -msgid "IP address" -msgstr "نشانی IP" - -#: models.py:64 -msgid "is public" -msgstr "عمومی است" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "تیک این جعبه را بردارید تا نظر به طور کارا از وبگاه ناپدید شود." - -#: models.py:67 -msgid "is removed" -msgstr "حذف شده است" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"اگر نظر نامناسب است این جا علامت بزنید. پیغام \"این نظر حذف شد\" به جای آن " -"نمایش داده می شود." - -#: models.py:80 -msgid "comments" -msgstr "نظرات" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "این نظر توسط یک کاربر ثبت‌شده فرستاده شده و لذا نامش فقط-خواندنی است." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"این نظر توسط یک کاربر ثبت‌شده فرستاده شده و لذا پست الکترونیکی‌اش فقط-خواندنی " -"است." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"ارسال‌شده توسط %(user)s در تاریخ %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "علامت گذاری " - -#: models.py:180 -msgid "date" -msgstr "تاریخ" - -#: models.py:190 -msgid "comment flag" -msgstr "علامت گذاری نظر" - -#: models.py:191 -msgid "comment flags" -msgstr "علامت گذاری های نظر" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "تایید یک نظر" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "واقعا این نظر به صورت عمومی نمایش داده شود؟" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "تایید" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "ممنون از تایید." - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "ممنون از وقتی که برای افزایش کیفیت بحث در سایت ما گذاشتید." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "حذف یک نظر" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "واقعا این نظر حذف شود؟" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "حذف" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "ممنون از حذف" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "علامت گذاری این نظر" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "واقعا این نظر علامت گذاری شود؟" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "علامت گذاری " - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "ممنون از علامت گذاری " - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "پست" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "پیش نمایش" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "برای اظهار نظر" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "با تشکر از نظر شما" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "پیش نمایش نظر شما" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "لطفا خطاهای زیر را تصحیح" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "نظر خود را ارسال کنید" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "و یا تغییر ایجاد کنید." diff --git a/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo b/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo deleted file mode 100644 index c8adefe40f6..00000000000 Binary files a/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/fi/LC_MESSAGES/django.po b/django/contrib/comments/locale/fi/LC_MESSAGES/django.po deleted file mode 100644 index e52ed18c7cf..00000000000 --- a/django/contrib/comments/locale/fi/LC_MESSAGES/django.po +++ /dev/null @@ -1,302 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/django/language/" -"fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Sisältö" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metatieto" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "merkitty" -msgstr[1] "merkitty" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Merkitse valitut kommentit" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "hyväksytty" -msgstr[1] "hyväksytty" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Hyväksy valitut kommentit" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "poistettu" -msgstr[1] "poistettu" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Poista valitut kommentit" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 kommentti %(count)s onnistuneesti." -msgstr[1] "%(count)s kommenttia %(action)s onnistuneesti." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Kommentit sivustolle %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Sivuston %(site_name)s viimeisimmät kommentit" - -#: forms.py:96 -msgid "Name" -msgstr "Nimi" - -#: forms.py:97 -msgid "Email address" -msgstr "Sähköpostiosoite" - -#: forms.py:98 -msgid "URL" -msgstr "URL-osoite" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentti" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Siivoa suusi! Sanaa \"%s\" ei saa käyttää tässä." -msgstr[1] "Siivoa suusi! Sanoja \"%s\" ei saa käyttää tässä." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ja" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Jos syötät tähän kenttään jotain, kommenttisi luokitellaan roskapostiksi" - -#: models.py:23 -msgid "content type" -msgstr "sisältötyyppi" - -#: models.py:25 -msgid "object ID" -msgstr "kohteen tunniste" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "käyttäjä" - -#: models.py:55 -msgid "user's name" -msgstr "käyttäjän nimi" - -#: models.py:56 -msgid "user's email address" -msgstr "käyttäjän sähköpostiosoite" - -#: models.py:57 -msgid "user's URL" -msgstr "käyttäjän URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentti" - -#: models.py:62 -msgid "date/time submitted" -msgstr "lähettämishetki" - -#: models.py:63 -msgid "IP address" -msgstr "IP-osoite" - -#: models.py:64 -msgid "is public" -msgstr "on julkinen" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Piilottaaksesi kommentin näkymästä sivustolta, poista tämä ruksi." - -#: models.py:67 -msgid "is removed" -msgstr "on poistettu" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Rastita jos kommentti on asiaankuulumaton. Kommentin tilalla näytetään\n" -"viesti \"Tämä kommentti on poistettu\"." - -#: models.py:80 -msgid "comments" -msgstr "kommentit" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Kommentin lähettäjän nimeä ei voi muuttaa, koska lähettäjä on kirjautunut " -"käyttäjä." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Kommentin lähettäjän sähköpostiosoitetta ei voi muuttaa, koska lähettäjä on " -"kirjautunut käyttäjä." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -" Kirjoittanut %(user)s, pvm %(date)s\\n\n" -" \\n\n" -" %(comment)s\\n\n" -" \\n\n" -" http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "merkintä" - -#: models.py:180 -msgid "date" -msgstr "päivä" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentin merkintä" - -#: models.py:191 -msgid "comment flags" -msgstr "kommenttien merkinnät" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Hyväksy kommentti" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Haluatko varmasti tehdä kommentista julkisen?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Hyväksy" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Kiitos hyväksynnästäsi" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Kiitos sivustomme keskusteluihin panostamastasi ajasta" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Poista kommentti" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Haluatko varmasti poistaa tämän kommentin?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Poista" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Kiitos poistamisesta" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Merkitse tämä kommentti" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Haluatko varmasti merkitä tämän kommentin?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Merkitse" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Kiitos merkitsemisestä" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Lähetä" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Esikatsele" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Kiitos kommentista" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Kiitos kommentistasi" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Esikatsele kommenttia" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Korjaa allaoleva virhe" -msgstr[1] "Korjaa allaolevat virheet" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Lähetä kommentti" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "tai tee muutoksia" diff --git a/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo b/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 730424d9529..00000000000 Binary files a/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/fr/LC_MESSAGES/django.po b/django/contrib/comments/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index ff1ac9e664c..00000000000 --- a/django/contrib/comments/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,308 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: claudep \n" -"Language-Team: French (http://www.transifex.com/projects/p/django/language/" -"fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contenu" - -#: admin.py:28 -msgid "Metadata" -msgstr "Métadonnées" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marqué" -msgstr[1] "marqués" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marquer les commentaires sélectionnés" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "approuvé" -msgstr[1] "approuvés" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Approuver les commentaires sélectionnés" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "supprimé" -msgstr[1] "supprimés" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Masquer les commentaires sélectionnés" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 commentaire a été %(action)s avec succès." -msgstr[1] "%(count)s commentaires ont été %(action)ss avec succès." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Commentaires sur %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Derniers commentaires sur %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nom" - -#: forms.py:97 -msgid "Email address" -msgstr "Adresse électronique" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Commentaire" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Attention à votre langage ! Le terme %s n'est pas autorisé ici." -msgstr[1] "" -"Attention à votre langage ! Les termes %s ne sont pas autorisés ici." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "et" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Si vous saisissez quelque chose dans ce champ, votre commentaire sera " -"considéré comme étant indésirable" - -#: models.py:23 -msgid "content type" -msgstr "type de contenu" - -#: models.py:25 -msgid "object ID" -msgstr "ID de l'objet" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "utilisateur" - -#: models.py:55 -msgid "user's name" -msgstr "nom de l'utilisateur" - -#: models.py:56 -msgid "user's email address" -msgstr "adresse électronique de l'utilisateur" - -#: models.py:57 -msgid "user's URL" -msgstr "URL de l'utilisateur" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "commentaire" - -#: models.py:62 -msgid "date/time submitted" -msgstr "date et heure soumises" - -#: models.py:63 -msgid "IP address" -msgstr "adresse IP" - -#: models.py:64 -msgid "is public" -msgstr "est public" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Décochez cette case pour faire vraiment disparaître ce commentaire du site." - -#: models.py:67 -msgid "is removed" -msgstr "est masqué" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Cochez cette case si le commentaire est inadéquat. Un message type « Ce " -"commentaire a été supprimé » sera affiché en lieu et place de celui-ci." - -#: models.py:80 -msgid "comments" -msgstr "commentaires" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ce commentaire a été posté par un utilisateur authentifié, le nom est donc " -"en lecture seule." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ce commentaire a été posté par un utilisateur authentifié et le courriel est " -"donc en lecture seule" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Posté par %(user)s le %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "indicateur" - -#: models.py:180 -msgid "date" -msgstr "date" - -#: models.py:190 -msgid "comment flag" -msgstr "indicateur de commentaire" - -#: models.py:191 -msgid "comment flags" -msgstr "indicateurs de commentaire" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Valider un commentaire" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Voulez-vous rendre ce commentaire public ?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Valider" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Merci pour cette validation" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Merci d'avoir pris le temps d'améliorer la qualité de la discussion sur " -"notre site" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Supprimer un commentaire" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Voulez-vous supprimer définitivement ce commentaire ?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Supprimer" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Merci pour cette suppression" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Signaler ce commentaire" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Voulez-vous vraiment signaler ce commentaire ?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Signaler" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Merci d'avoir signalé ce commentaire" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Envoyer" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Prévisualiser" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Merci pour votre commentaire" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Merci pour votre commentaire" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Prévisualiser votre commentaire" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Veuillez corriger l'erreur suivante." -msgstr[1] "Veuillez corriger les erreurs suivantes." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Envoyer votre commentaire" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ou le modifier" diff --git a/django/contrib/comments/locale/fy/LC_MESSAGES/django.mo b/django/contrib/comments/locale/fy/LC_MESSAGES/django.mo deleted file mode 100644 index b59ac52ad98..00000000000 Binary files a/django/contrib/comments/locale/fy/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/fy/LC_MESSAGES/django.po b/django/contrib/comments/locale/fy/LC_MESSAGES/django.po deleted file mode 100644 index 95473f5c1a1..00000000000 --- a/django/contrib/comments/locale/fy/LC_MESSAGES/django.po +++ /dev/null @@ -1,287 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-23 02:37+0100\n" -"PO-Revision-Date: 2011-03-15 15:37+0000\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"Language: fy_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: admin.py:12 -msgid "Content" -msgstr "" - -#: admin.py:15 -msgid "Metadata" -msgstr "" - -#: admin.py:42 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:43 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:47 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:48 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:52 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:53 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:65 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:13 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:23 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:22 -msgid "content type" -msgstr "" - -#: models.py:24 -msgid "object ID" -msgstr "" - -#: models.py:50 models.py:168 -msgid "user" -msgstr "" - -#: models.py:52 -msgid "user's name" -msgstr "" - -#: models.py:53 -msgid "user's email address" -msgstr "" - -#: models.py:54 -msgid "user's URL" -msgstr "" - -#: models.py:56 models.py:76 models.py:169 -msgid "comment" -msgstr "" - -#: models.py:59 -msgid "date/time submitted" -msgstr "" - -#: models.py:60 -msgid "IP address" -msgstr "" - -#: models.py:61 -msgid "is public" -msgstr "" - -#: models.py:62 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:64 -msgid "is removed" -msgstr "" - -#: models.py:65 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:77 -msgid "comments" -msgstr "" - -#: models.py:119 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:128 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:153 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:170 -msgid "flag" -msgstr "" - -#: models.py:171 -msgid "date" -msgstr "" - -#: models.py:181 -msgid "comment flag" -msgstr "" - -#: models.py:182 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo deleted file mode 100644 index 1f29ae1b24b..00000000000 Binary files a/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ga/LC_MESSAGES/django.po b/django/contrib/comments/locale/ga/LC_MESSAGES/django.po deleted file mode 100644 index d7cd749aa54..00000000000 --- a/django/contrib/comments/locale/ga/LC_MESSAGES/django.po +++ /dev/null @@ -1,324 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Michael Thornhill , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Michael Thornhill \n" -"Language-Team: Irish (http://www.transifex.com/projects/p/django/language/" -"ga/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Inneachar" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meiteashonraí" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "bratach curtha leis " -msgstr[1] "bratach curtha leis " -msgstr[2] "bratach curtha leis " -msgstr[3] "bratach curtha leis " -msgstr[4] "bratach curtha leis " - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Bratach nótaí tráchta roghnaithe" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "ceadaithe" -msgstr[1] "ceadaithe" -msgstr[2] "ceadaithe" -msgstr[3] "ceadaithe" -msgstr[4] "ceadaithe" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Cheadú nótaí tráchta roghnaithe" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "bhaint" -msgstr[1] "bhaint" -msgstr[2] "bhaint" -msgstr[3] "bhaint" -msgstr[4] "bhaint" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Bain nótaí tráchta roghnaithe" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "Bhí %(count)s nóta tráchta %(action)s go rathúil." -msgstr[1] "Bhí %(count)s nótaí tráchta %(action)s go rathúil." -msgstr[2] "Bhí %(count)s nótaí tráchta %(action)s go rathúil." -msgstr[3] "Bhí %(count)s nótaí tráchta %(action)s go rathúil." -msgstr[4] "Bhí %(count)s nótaí tráchta %(action)s go rathúil." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s nótaí" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Nótaí tráchtaí is déanaí ar %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ainm" - -#: forms.py:97 -msgid "Email address" -msgstr "R-phost" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Nóta tráchta" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Féach ar do bhéal! Níl an focal %s cheadaítear anseo." -msgstr[1] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." -msgstr[2] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." -msgstr[3] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." -msgstr[4] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "agus" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Má cuireann tú aon rud sa réimse seo, beidh do nóta déileálfar mar spam" - -#: models.py:23 -msgid "content type" -msgstr "tíopa inneachar " - -#: models.py:25 -msgid "object ID" -msgstr "oibiacht ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "úsáideoir" - -#: models.py:55 -msgid "user's name" -msgstr "Ainm úsáideoir" - -#: models.py:56 -msgid "user's email address" -msgstr "seoladh r-phost an t-úsáideoir" - -#: models.py:57 -msgid "user's URL" -msgstr "URL an t-úsáideora" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "trácht" - -#: models.py:62 -msgid "date/time submitted" -msgstr "Dáta/am curtha isteach" - -#: models.py:63 -msgid "IP address" -msgstr "Seol IP" - -#: models.py:64 -msgid "is public" -msgstr "poiblí" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Díthiceáil an bosca seo chun an nóta a thógáil as an suíomh." - -#: models.py:67 -msgid "is removed" -msgstr "Scrioste" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Seic an bosca seo dá bbéadh an nóta tráchta seo míchuí. Taispeantar \"Bhí an " -"nóta tráchta scrioste\" in áit an nóta tráchta seo." - -#: models.py:80 -msgid "comments" -msgstr "nótaí tráchta" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Bhí an nóta tráchta póstailte trí uaire trí úsáideoir fíordheimhnithe mar " -"sin tá an ainm léamh-amhain." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Bhí an nóta tráchta póstailte trí úsáideoir fíordeimhnite mar sin tá an r-" -"phost léamh amháin." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postáilte trí %(user)s ar %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "brat" - -#: models.py:180 -msgid "date" -msgstr "dáta" - -#: models.py:190 -msgid "comment flag" -msgstr "brat nóta tráchta" - -#: models.py:191 -msgid "comment flags" -msgstr "bratacha nótaí tráchta" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Ceadaigh nóta tráchta" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Cuir an nóta seo poiblí?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Fhormheas" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Go raibh maith agait le hadhaigh to formheas" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Go raibh maith agat as an am chun feabhas a chur ar chaighdeán na " -"díospóireachta ar ár suíomh" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Tóg amach nóta tráchta" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Dáiríre, cuir amach an nóta seo?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Tóg amach" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Go raibh maith agat le hadhaigh do thógail amach" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Cuir brat ar an nóta tráchta seo" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Go deimhin cuir brat ar an nóta tráchta seo?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Brat" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Go raibh maith agat le hadhaigh do brat" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Post" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Réamhamharc" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Go raibh maith agat le hadhaign do nóta tráchta" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Go raibh maith agat le hadhaigh do nóta tráchta" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Nóta tráchta réamhamharc" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Le do thoil, ceartaigh an botún thíos." -msgstr[1] "Le do thoil, ceartaigh na botúin thíos." -msgstr[2] "Le do thoil, ceartaigh na botúin thíos." -msgstr[3] "Le do thoil, ceartaigh na botúin thíos." -msgstr[4] "Le do thoil, ceartaigh na botúin thíos." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Seol do Nóta tráchta" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "nó déan aithraithe" diff --git a/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo b/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo deleted file mode 100644 index 9885a755164..00000000000 Binary files a/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/gl/LC_MESSAGES/django.po b/django/contrib/comments/locale/gl/LC_MESSAGES/django.po deleted file mode 100644 index 829b404a91d..00000000000 --- a/django/contrib/comments/locale/gl/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# fasouto , 2011. -# fonso , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: fonso \n" -"Language-Team: Galician (http://www.transifex.com/projects/p/django/language/" -"gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contido" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadatos" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "con indicador" -msgstr[1] "con indicador" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Poñer un indicador" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobado" -msgstr[1] "aprobados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprobar os comentarios seleccionados" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminado" -msgstr[1] "eliminados" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Eliminar os comentarios seleccionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "%(count)s comentarios foron %(action)s con éxito." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Comentarios en %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentarios en %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nome" - -#: forms.py:97 -msgid "Email address" -msgstr "Enderezo electrónico" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentario" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Sen palabrotas, por favor! Aquí non se pode usar a palabra %s." -msgstr[1] "Sen palabrotas, por favor! Aquí non se poden usar as palabras %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "e" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Se insire calquera cousa neste campo o seu comentario será tratado coma spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de contido" - -#: models.py:25 -msgid "object ID" -msgstr "ID do obxecto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuario" - -#: models.py:55 -msgid "user's name" -msgstr "nome de usuario" - -#: models.py:56 -msgid "user's email address" -msgstr "enderedo electrónico do usuario" - -#: models.py:57 -msgid "user's URL" -msgstr "URL do usuario" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentario" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hora do envío" - -#: models.py:63 -msgid "IP address" -msgstr "Enderezo IP" - -#: models.py:64 -msgid "is public" -msgstr "é público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Desmarque esta casilla para eliminar o comentario definitivamente deste " -"sitio." - -#: models.py:67 -msgid "is removed" -msgstr "está borrado" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marque esta caixa se o comentario non é apropiado. Verase a mensaxe \"Este " -"comentario foi borrado\" no canto do seu contido." - -#: models.py:80 -msgid "comments" -msgstr "comentarios" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentario foi publicado por un usuario identificado e polo tanto o " -"nome é de só lectura." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentario foi publicado por un usuario identificado e polo tanto o " -"enderezo de correo electrónico é de só lectura." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Publicado por %(user)s o %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "indicador" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "indicador de comentarios" - -#: models.py:191 -msgid "comment flags" -msgstr "indicadores de comentarios" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobar un comentario" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Realmente desexa facer público este comentario?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Grazas pola aprobación" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Grazas por tomar o tempo de mellorar a calidade da discusión no noso sitio" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Eliminar un comentario" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Realmente desexa eliminar este comentario?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Eliminar" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Grazas pola eliminación" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Poñerlle un indicador a este comentario" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Realmente desexa poñerlle un indicador a este comentario?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Indicador" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Grazas por colocar o indicador" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publicar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Vista previa" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Grazas polo seu comentario" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Grazas polo seu comentario" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Vista previa do seu comentario" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor, corrixa o erro de embaixo" -msgstr[1] "Por favor, corrixa os erros de embaixo" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publicar o seu comentario" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ou facer cambios" diff --git a/django/contrib/comments/locale/he/LC_MESSAGES/django.mo b/django/contrib/comments/locale/he/LC_MESSAGES/django.mo deleted file mode 100644 index fdbd124556c..00000000000 Binary files a/django/contrib/comments/locale/he/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/he/LC_MESSAGES/django.po b/django/contrib/comments/locale/he/LC_MESSAGES/django.po deleted file mode 100644 index 3567e8e59c4..00000000000 --- a/django/contrib/comments/locale/he/LC_MESSAGES/django.po +++ /dev/null @@ -1,297 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Hebrew (http://www.transifex.com/projects/p/django/language/" -"he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "תוכן" - -#: admin.py:28 -msgid "Metadata" -msgstr "מטא־נתונים" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "סומנה" -msgstr[1] "סומנו" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "סמן תגובות שנבחרו" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "אושרה" -msgstr[1] "אושרו" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "אשר תגובות שנבחרו" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "הוסרה" -msgstr[1] "הוסרו" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "הסר תגובות שנבחרו" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "תגובה אחת %(action)s בהצלחה" -msgstr[1] "%(count)s תגובות %(action)s בהצלחה" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "תגובות עבור %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "התגובות האחרונות על %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "שם" - -#: forms.py:97 -msgid "Email address" -msgstr "כתובת דוא\"ל" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "תגובה" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "שמור על לשונך! המילה %s אסורה לשימוש כאן." -msgstr[1] "שמור על לשונך! המילים %s אסורות לשימוש כאן." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ו" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "אם יוזן משהו בשדה זה תגובתך תטופל כספאם" - -#: models.py:23 -msgid "content type" -msgstr "סוג תוכן" - -#: models.py:25 -msgid "object ID" -msgstr "מזהה אובייקט" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "משתמש" - -#: models.py:55 -msgid "user's name" -msgstr "שם משתמש" - -#: models.py:56 -msgid "user's email address" -msgstr "כתובת דוא\"ל משתמש" - -#: models.py:57 -msgid "user's URL" -msgstr "אתר המשתמש" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "תגובה" - -#: models.py:62 -msgid "date/time submitted" -msgstr "תאריך/שעת הגשה" - -#: models.py:63 -msgid "IP address" -msgstr "כתובת IP" - -#: models.py:64 -msgid "is public" -msgstr "פומבי " - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "ביטול סימון התיבה יעלים בפועל את התגובה מהאתר" - -#: models.py:67 -msgid "is removed" -msgstr "האם הוסר" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"יש לסמן תיבה זו עבור תגובה לא נאותה. הודעת \"תגובה זו נמחקה\" תוצג במקום " -"התגובה." - -#: models.py:80 -msgid "comments" -msgstr "תגובות" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "הודעה זו נשלחה ע\"י משתמש מחובר לכן השם אינו ניתן לשינוי." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "הודעה זו נשלחה ע\"י משתמש מחובר לכן כתובת הדוא\"ל אינה ניתנת לשינוי." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"הוגש ע\"י %(user)s ב %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "סימן" - -#: models.py:180 -msgid "date" -msgstr "תאריך" - -#: models.py:190 -msgid "comment flag" -msgstr "סמן הערה" - -#: models.py:191 -msgid "comment flags" -msgstr "סמני הערה" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "אשר הערה" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "באמת להפוך את התגובה לפומבית?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "אשר" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "תודה על אישור התגובה" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "תודה על שהקדשת מזמנך כדי לשפר את איכות הדיון באתר שלנו" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "הסר תגובה" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "באמת להסיר תגובה זו?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "להסיר" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "תודה על ההסרה" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "סמן תגובה זו" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "באמת לסמן תגובה זו?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "סימן" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "תודה על הסימון" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "פוסט" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "תצוגה מקדימה" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "תודה על התגובה" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "תודה על התגובה" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "תצוגה מקדימה של התגובה" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "בבקשה לתקן את השגיאה למטה" -msgstr[1] "אנא תקן את שגיאות למטה" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "פרסם את התגובה" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "או לבצע שינויים" diff --git a/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo b/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo deleted file mode 100644 index 358fcf827f1..00000000000 Binary files a/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/hi/LC_MESSAGES/django.po b/django/contrib/comments/locale/hi/LC_MESSAGES/django.po deleted file mode 100644 index 2dd003a03a9..00000000000 --- a/django/contrib/comments/locale/hi/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Sandeep Satavlekar , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Sandeep Satavlekar \n" -"Language-Team: Hindi (http://www.transifex.com/projects/p/django/language/" -"hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "विषय सूची" - -#: admin.py:28 -msgid "Metadata" -msgstr "मेटाडाटा" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "झंडी ऊंचायी" -msgstr[1] "झंडी ऊंचायी" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "चयनित टिप्पणियों के लिए झंडी ऊंचाओ" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "स्वीकृत" -msgstr[1] "स्वीकृत" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "चयनित टिप्पणियों को स्वीकार करो" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "हटाया" -msgstr[1] "हटाया" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "चयनित टिप्पणियाँ हटाएँ" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s टिप्पणि सफलतापूर्वक %(action)s" -msgstr[1] "%(count)s टिप्पणियाँ सफलतापूर्वक %(action)s" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s टिप्पणियाँ " - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s पर नवीनतम टिप्पणियाँ" - -#: forms.py:96 -msgid "Name" -msgstr "नाम" - -#: forms.py:97 -msgid "Email address" -msgstr "ईमेल पता" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "टिप्पणी" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "अपनी ज़बान संभालो %s यह शब्द इस्तेमाल करने की यहाँ अनुमति नहीं हैं " -msgstr[1] "अपनी ज़बान संभालो %s यह शब्द इस्तेमाल करने की यहाँ अनुमति नहीं हैं " - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "और" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"अगर आप इस क्षेत्र में कुछ भी दर्ज करते हो तो आप की टिप्पणी के साथ spam के जैसा सुलुख किया " -"जायेगा" - -#: models.py:23 -msgid "content type" -msgstr "विषय-सूची प्रकार" - -#: models.py:25 -msgid "object ID" -msgstr "वस्तु आइ डी" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "उपभोक्ता" - -#: models.py:55 -msgid "user's name" -msgstr "प्रयोक्ता नाम" - -#: models.py:56 -msgid "user's email address" -msgstr "प्रयोक्ता ईमेल पता" - -#: models.py:57 -msgid "user's URL" -msgstr "प्रयोक्ता यू.आर.एल" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "टिप्पणी" - -#: models.py:62 -msgid "date/time submitted" -msgstr "तिथि/समय निवेदित" - -#: models.py:63 -msgid "IP address" -msgstr "आइ.पि पता" - -#: models.py:64 -msgid "is public" -msgstr "सार्वजनिक है" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "इस टिप्पणी को प्रभावी रूप से साइट से गायब करने के लिए यह बॉक्स को अनचेक करें." - -#: models.py:67 -msgid "is removed" -msgstr "हटाया गया" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"अगर टिप्पणी अनुचित है तो इस बॉक्स को चेक करें. एक \"यह टिप्पणी हटा दी गयी हैं\" संदेश " -"प्रदर्शित किया जाएगा." - -#: models.py:80 -msgid "comments" -msgstr "टिप्पणियाँ" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"इस टिप्पणी को किसी प्राधिकृत उपयोगकर्ता द्वारा पोस्ट किया गया था और इसीलिए इस नाम " -"को केवल पढ़ने के लिए है." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"इस टिप्पणी को किसी प्राधिकृत उपयोगकर्ता द्वारा पोस्ट किया गया था और इसीलिए यह ईमेल " -"केवल पढ़ने के लिए है." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s द्वारा %(date)s पर पोस्ट की गयी हैं\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "झंडा" - -#: models.py:180 -msgid "date" -msgstr "तिथि" - -#: models.py:190 -msgid "comment flag" -msgstr "टिप्पणी झंडा" - -#: models.py:191 -msgid "comment flags" -msgstr "टिप्पणी झंडे" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "टिप्पणी पसंद करें" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "क्या इस टिप्पणी को सार्वजनिक बनाएँ ?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "पसंद करें" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "पसंद करने के लिए धन्यवाद" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "हमारी साइट पर चर्चा की गुणवत्ता में सुधार के लिए समय देने के लिए धन्यवाद" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "टिप्पणी निकालें" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "क्या आप इस टिप्पणी को हटाना चाहते हैं ?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "निकालें" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "निकालने के लिये धन्यवाद" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "टिप्पनी को फ्लैग करो" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "क्या आप इस टिप्पणी को फ्लैग करना चाहते हैं ?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "फ्लैग" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "फ्लैग करने के लिए धन्यवाद" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "प्रस्तुत" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "पूर्व दर्शन" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "टिप्पणी के लिये धन्यवाद" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "टिप्पणी के लिये धन्यवाद" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "आपके टिप्पणी का पूर्व दर्शन देखे`" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "कृपया नीचे पायी गयी गलती को ठीक करें" -msgstr[1] "कृपया नीचे पाये गये गलतियाँ को ठीक करें" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "टिप्पणी प्रस्तुत करें" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "अथवा बदलें" diff --git a/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo b/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo deleted file mode 100644 index 2c2a09eb918..00000000000 Binary files a/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/hr/LC_MESSAGES/django.po b/django/contrib/comments/locale/hr/LC_MESSAGES/django.po deleted file mode 100644 index 27b64e4273b..00000000000 --- a/django/contrib/comments/locale/hr/LC_MESSAGES/django.po +++ /dev/null @@ -1,313 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/django/language/" -"hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Sadržaj" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "oznaka" -msgstr[1] "oznake" -msgstr[2] "oznake" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označi ovaj komentar" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "odobreno" -msgstr[1] "odobrene" -msgstr[2] "odobrene" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Odobri odabrane komentare" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "uklonjeno" -msgstr[1] "uklonjena" -msgstr[2] "uklonjena" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Ukloni odabrane komentare" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentar je uspješno %(action)s." -msgstr[1] "%(count)s komentara su uspješno %(action)s." -msgstr[2] "%(count)s komentara su uspješno %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "komentari za %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Najnoviji komentari na %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ime" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mail adresa" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pazite na izražavanje! Riječ %s nije dopuštena." -msgstr[1] "Pazite na izražavanje! Riječi %s nisu dopuštene." -msgstr[2] "Pazite na izražavanje! Riječi %s nisu dopuštene." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "i" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ako unesete nešto u ovo polje vaš komentar biti će tretiran kao spam" - -#: models.py:23 -msgid "content type" -msgstr "tip sadržaja" - -#: models.py:25 -msgid "object ID" -msgstr "ID objekta" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "korisnik" - -#: models.py:55 -msgid "user's name" -msgstr "korisničko ime" - -#: models.py:56 -msgid "user's email address" -msgstr "e-mail adresa korisnika" - -#: models.py:57 -msgid "user's URL" -msgstr "korisnikov URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum/vrijeme unosa" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresa" - -#: models.py:64 -msgid "is public" -msgstr "javno dostupno" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Uklonite oznaku da bi komentar nestao sa stranica." - -#: models.py:67 -msgid "is removed" -msgstr "uklonjeno" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Uključite ako je komentar neprikladan. Umjesto komentara biti će prikazana " -"poruka \"Komentar je uklonjen.\"." - -#: models.py:80 -msgid "comments" -msgstr "komentari" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ovaj komentar je napisao prijavljeni korisnik te se ime ne može mijenjati.\n" -"\n" -"%(text)s" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ovaj komentar je napisao prijavljeni korisnik te se email ne može " -"mijenjati.\n" -"\n" -"%(text)s" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Napisao %(user)s dana %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "oznaka" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "oznaka za komentar" - -#: models.py:191 -msgid "comment flags" -msgstr "oznake komentara" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Odobri komentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Učini komentar javno dostupnim?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Odobri" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Hvala na odobrenju" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Hvala što ste izdvojili vrijeme da poboljšate kvalitetu rasprava na " -"stranicama" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Ukloni komentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Stvarno ukloni ovaj komentar?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Ukloni" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Hvala na brisanju" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označi ovaj komentar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Stvarno označi ovaj komentar?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Oznaka" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Hvala na označavanju" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Unos" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Prikaz" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Hvala što ste komentirali" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Hvala na komentaru" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Prikaz komentara" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Molimo ispravite navedenu grešku." -msgstr[1] "Molimo ispravite navedene greške." -msgstr[2] "Molimo ispravite navedene greške." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Objava komentara" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ili unesite promjene" diff --git a/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo b/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo deleted file mode 100644 index 46125d43dc2..00000000000 Binary files a/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/hu/LC_MESSAGES/django.po b/django/contrib/comments/locale/hu/LC_MESSAGES/django.po deleted file mode 100644 index e42066892cf..00000000000 --- a/django/contrib/comments/locale/hu/LC_MESSAGES/django.po +++ /dev/null @@ -1,308 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Szilveszter Farkas , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Szilveszter Farkas \n" -"Language-Team: Hungarian (http://www.transifex.com/projects/p/django/" -"language/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Tartalom" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metaadat" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "megjelölve" -msgstr[1] "megjelölve" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Kiválasztott hozzászólások megjelölése" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "jóváhagyva" -msgstr[1] "jóváhagyva" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Kiválasztott hozzászólások jóváhagyása" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "törölve" -msgstr[1] "törölve" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Kiválasztott hozzászólások törlése" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s hozzászólás sikeresen %(action)s." -msgstr[1] "%(count)s hozzászólás sikeresen %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s hozzászólások" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s legfrissebb hozzászólásai" - -#: forms.py:96 -msgid "Name" -msgstr "Név" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mail cím" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Hozzászólás" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Vigyázzon a szájára! Az ilyen szó (%s) itt nem megengedett." -msgstr[1] "Vigyázzon a szájára! Az ilyen szavak (%s) itt nem megengedettek." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "és" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Ha bármit begépel ebbe a mezőbe, akkor azt szemétként fogja kezelni a " -"rendszer" - -#: models.py:23 -msgid "content type" -msgstr "tartalom típusa" - -#: models.py:25 -msgid "object ID" -msgstr "objektum ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "felhasználó" - -#: models.py:55 -msgid "user's name" -msgstr "felhasználó neve" - -#: models.py:56 -msgid "user's email address" -msgstr "felhasználó e-mail címe" - -#: models.py:57 -msgid "user's URL" -msgstr "felhasználó URL-je" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "megjegyzés" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dátum/idő beállítva" - -#: models.py:63 -msgid "IP address" -msgstr "IP cím" - -#: models.py:64 -msgid "is public" -msgstr "publikus" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Vegye ki a pipát a jelölőnégyzetből, hogy eltűntesse a hozzászólást az " -"oldalról." - -#: models.py:67 -msgid "is removed" -msgstr "eltávolítva" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Jelöld be a négyzetet, ha a megjegyzés nem megfelelő. Az \"Ezt a megjegyzést " -"törölték\" üzenet fog megjelenni helyette." - -#: models.py:80 -msgid "comments" -msgstr "hozzászólások" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ezt a hozzászólást egy hitelesített felhasználó küldte be, ezért a név csak " -"olvasható." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ezt a hozzászólást egy hitelesített felhasználó küldte be, ezért az e-mail " -"csak olvasható." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Beküldte %(user)s ekkor: %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "megjelölés" - -#: models.py:180 -msgid "date" -msgstr "dátum" - -#: models.py:190 -msgid "comment flag" -msgstr "hozzászólás megjelölés" - -#: models.py:191 -msgid "comment flags" -msgstr "hozzászólás megjelölés" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Hozzászólás jóváhagyása" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Biztosan publikálni szeretné ezt a hozzászólást?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Jóváhagyás" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Köszönjük a jóváhagyást" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Köszönjük, hogy időt szánt az oldalunkon zajló beszélgetések minőségének " -"javítására" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Hozzászólás törlése" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Biztosan törli ezt a hozzászólást?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Törlés" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Köszönjük a törlést" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Hozzászólás megjelölése" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Biztosan megjelöli ezt a hozzászólást?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Megjelölés" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Köszönjük a megjelölést" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Elküldés" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Előnézet" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Köszönjük a hozzászólást" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Köszönjük, hogy hozzászólt" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Hozzászólás előnézetének megtekintése" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Javítsa ki az alábbi hibát" -msgstr[1] "Javítsa ki az alábbi hibákat" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Hozzászólás elküldése" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "vagy módosítása" diff --git a/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo deleted file mode 100644 index 8c728c4ce28..00000000000 Binary files a/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ia/LC_MESSAGES/django.po b/django/contrib/comments/locale/ia/LC_MESSAGES/django.po deleted file mode 100644 index 06e863102b8..00000000000 --- a/django/contrib/comments/locale/ia/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Martijn Dekker , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-09-19 23:34+0000\n" -"Last-Translator: Martijn Dekker \n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/django/" -"language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contento" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadatos" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcate" -msgstr[1] "marcate" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar le commentos seligite" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "approbate" -msgstr[1] "approbate" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Approbar le commentos seligite" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "removite" -msgstr[1] "removite" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Remover le commentos seligite" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 commento ha essite %(action)s con successo." -msgstr[1] "%(count)s commentos ha essite %(action)s con successo." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Commentos de %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Ultime commentos in %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nomine" - -#: forms.py:97 -msgid "Email address" -msgstr "Adresse de e-mail" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Commento" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Le parola %s non es permittite hic." -msgstr[1] "Le parolas %s non es permittite hic." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "e" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Si tu insere qualcosa in iste campo, tu commento essera tractate como spam." - -#: models.py:23 -msgid "content type" -msgstr "typo de contento" - -#: models.py:25 -msgid "object ID" -msgstr "ID del objecto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usator" - -#: models.py:55 -msgid "user's name" -msgstr "nomine del usator" - -#: models.py:56 -msgid "user's email address" -msgstr "adresse de e-mail del usator" - -#: models.py:57 -msgid "user's URL" -msgstr "URL del usator" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "commento" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hora de submission" - -#: models.py:63 -msgid "IP address" -msgstr "adresse IP" - -#: models.py:64 -msgid "is public" -msgstr "es public" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Dismarca iste quadro pro facer le commento effectivemente disparer de iste " -"sito." - -#: models.py:67 -msgid "is removed" -msgstr "es removite" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Marca iste quadro si le commento es inappropriate. Un message \"iste " -"commento ha essite removite\" essera monstrate in su loco." - -#: models.py:80 -msgid "comments" -msgstr "commentos" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Iste commento ha essite publicate per un usator authenticate e dunque le " -"nomine es immodificabile." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Iste commento ha essite publicate per un usator authenticate e dunque le " -"adresse de e-mail es immodificabile." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Publicate per %(user)s le %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marca" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "marcation de commento" - -#: models.py:191 -msgid "comment flags" -msgstr "marcationes de commento" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Approbar un commento" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Es tu secur de voler render iste commento public?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Approbar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Gratias pro approbar" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Gratias pro prender le tempore pro meliorar le qualitate del discussion in " -"nostre sito" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Remover un commento" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Es tu secur de voler remover iste commento?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Remover" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Gratias pro remover" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar iste commento" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Es tu secur de voler marcar iste commento?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Gratias pro marcar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publicar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Previsualisar" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Gratias pro commentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Gratias pro tu commento" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Previsualisar tu commento" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Per favor corrige le error sequente" -msgstr[1] "Per favor corrige le errores sequente" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publicar tu commento" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o facer modificationes" diff --git a/django/contrib/comments/locale/id/LC_MESSAGES/django.mo b/django/contrib/comments/locale/id/LC_MESSAGES/django.mo deleted file mode 100644 index d58452d3a84..00000000000 Binary files a/django/contrib/comments/locale/id/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/id/LC_MESSAGES/django.po b/django/contrib/comments/locale/id/LC_MESSAGES/django.po deleted file mode 100644 index 812f7a2de01..00000000000 --- a/django/contrib/comments/locale/id/LC_MESSAGES/django.po +++ /dev/null @@ -1,298 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# rodin , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: rodin \n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/django/" -"language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Isi" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "ditandai" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Tandai komentar terpilih" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "disetujui" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Setujui komentar terpilih" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "dihapus" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Hapus komentar terpilih" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentar berhasil %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "komentar pada %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Komentar terbaru pada %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nama" - -#: forms.py:97 -msgid "Email address" -msgstr "Alamat email" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Awas! Kata %s tidak diizinkan di sini." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "dan" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Jika Anda mengisi bidang ini, komentar Anda akan dianggap sebagai spam" - -#: models.py:23 -msgid "content type" -msgstr "tipe konten" - -#: models.py:25 -msgid "object ID" -msgstr "ID objek" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "pengguna" - -#: models.py:55 -msgid "user's name" -msgstr "nama pengguna" - -#: models.py:56 -msgid "user's email address" -msgstr "alamat email pengguna" - -#: models.py:57 -msgid "user's URL" -msgstr "URL pengguna" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "tanggal/waktu dikirim" - -#: models.py:63 -msgid "IP address" -msgstr "alamat IP" - -#: models.py:64 -msgid "is public" -msgstr "untuk umum" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Hapus centang pada kotak ini agar komentar tidak ditampilkan pada situs." - -#: models.py:67 -msgid "is removed" -msgstr "telah dihapus" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Centang kotak ini jika komentar tidak pantas. Pesan \"Komentar ini telah " -"dihapus\" akan ditampilkan sebagai penggantinya." - -#: models.py:80 -msgid "comments" -msgstr "komentar" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Komentar ini dikirim oleh seorang pengguna terautentikasi sehingga nama " -"pengguna tidak dapat diubah." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Komentar ini dikirim oleh seorang pengguna terautentikasi sehingga alamat " -"email tidak dapat diubah." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Dikirim oleh %(user)s pada %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "tanda" - -#: models.py:180 -msgid "date" -msgstr "tanggal" - -#: models.py:190 -msgid "comment flag" -msgstr "tanda komentar" - -#: models.py:191 -msgid "comment flags" -msgstr "tanda komentar" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Setujui komentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Yakin ingin menampilkan komentar ini untuk umum?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Setujui" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Terima kasih telah menyetujui komentar" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Terima kasih telah membantu meningkatkan kualitas diskusi pada situs kami" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Hapus komentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Yakin ingin menghapus komentar ini?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Hapus" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Terima kasih telah menghapus" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Tandai komentar ini" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Yakin ingin menandai komentar ini?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Tandai" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Terima kasih telah menandai" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Kirim" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Pratinjau" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Terima kasih telah meninggalkan komentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Terima kasih atas komentar Anda" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Pratinjau komentar Anda" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Mohon perbaiki kesalahan di bawah ini" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Kirim komentar Anda" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "atau lakukan perubahan" diff --git a/django/contrib/comments/locale/is/LC_MESSAGES/django.mo b/django/contrib/comments/locale/is/LC_MESSAGES/django.mo deleted file mode 100644 index 63e04116851..00000000000 Binary files a/django/contrib/comments/locale/is/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/is/LC_MESSAGES/django.po b/django/contrib/comments/locale/is/LC_MESSAGES/django.po deleted file mode 100644 index 1918df31939..00000000000 --- a/django/contrib/comments/locale/is/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Hafsteinn Einarsson , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Hafsteinn Einarsson \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/django/" -"language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Innihald" - -#: admin.py:28 -msgid "Metadata" -msgstr "Hengigögn" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "flaggað" -msgstr[1] "flaggað" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Flagga valdar athugasemdir" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "samþykkt" -msgstr[1] "samþykkt" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Samþykkja valdar athugasemdir" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "fjarlægð" -msgstr[1] "fjarlægðar" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Fjarlægja valdar athugasemdir" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "Það tókst að %(action)s %(count)s athugasemdum." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s: athugasemdir" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Nýjustu athugasemdir á %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nafn" - -#: forms.py:97 -msgid "Email address" -msgstr "Netfang" - -#: forms.py:98 -msgid "URL" -msgstr "Veffang" - -#: forms.py:99 -msgid "Comment" -msgstr "Athugasemd" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Passaðu orðbragðið! Orðið %s er ekki leyft hér." -msgstr[1] "Passaðu orðbragðið! Orðin %s eru ekki leyfð hér." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "og" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Ef þú skrifar eitthvað hérna verður athugasemdin sjálfkrafa meðhöndluð sem " -"ruslpóstur" - -#: models.py:23 -msgid "content type" -msgstr "efnistag" - -#: models.py:25 -msgid "object ID" -msgstr "kenni hlutar" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "notandi" - -#: models.py:55 -msgid "user's name" -msgstr "nafn notanda" - -#: models.py:56 -msgid "user's email address" -msgstr "netfang notanda" - -#: models.py:57 -msgid "user's URL" -msgstr "veffang notanda" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "athugasemd" - -#: models.py:62 -msgid "date/time submitted" -msgstr "innsent dags/tími" - -#: models.py:63 -msgid "IP address" -msgstr "IP tala" - -#: models.py:64 -msgid "is public" -msgstr "er öllum sýnilegt" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Taktu hakið úr til að fjarlægja athugasemdina af vefsíðunni." - -#: models.py:67 -msgid "is removed" -msgstr "hefur verið fjarlægt" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Hakaðu við þennan reit ef athugasemdin er óviðeigandi. Skilaboðin „Þessi " -"athugasemd hefur verið fjarlægð“ birtist í staðinn." - -#: models.py:80 -msgid "comments" -msgstr "athugasemdir" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Athugasemdin var send inn af innskráðum notanda og því er ekki hægt að " -"breyta nafninu." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Athugasemdin var send inn af innskráðum notanda og því er ekki hægt að " -"breyta netfanginu." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s sendi inn %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flagga" - -#: models.py:180 -msgid "date" -msgstr "dagsetning" - -#: models.py:190 -msgid "comment flag" -msgstr "flagg athugasemdar" - -#: models.py:191 -msgid "comment flags" -msgstr "flögg athugasemdar" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Samþykkja athugasemd" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Gera þessa athugasemd sýnilega?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Samþykkja" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Takk fyrir að samþykkja" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Takk fyrir að gefa þér tíma til að bæta gæði umræðunnar á síðunni." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Fjarlægja athugasemd" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Eyða þessari athugasemd?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Fjarlægja" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Takk fyrir að fjarlægja" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flagga athugasemd" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Flagga þesa athugasemd?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flagg" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Takk fyrir að flagga" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Birta" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Skoða" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Takk fyrir að senda athugasemd" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Takk fyrir athugasemdina" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Skoða athugasemd" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Vinsamlegast lagfærðu villuna fyrir neðan" -msgstr[1] "Vinsamlegast lagfærðu villurnar fyrir neðan" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Birta athugasemd" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "eða breyta" diff --git a/django/contrib/comments/locale/it/LC_MESSAGES/django.mo b/django/contrib/comments/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index 7a81e75d945..00000000000 Binary files a/django/contrib/comments/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/it/LC_MESSAGES/django.po b/django/contrib/comments/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index 73192f7d352..00000000000 --- a/django/contrib/comments/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Nicola Larosa , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Nicola Larosa \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/django/language/" -"it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Contenuto" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadati" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "segnalato" -msgstr[1] "segnalati" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Segnala i commenti selezionati" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "approvato" -msgstr[1] "approvati" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Approva i commenti selezionati" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminato" -msgstr[1] "eliminati" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Elimina i commenti selezionati" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "Ad 1 commento è stata applicata con successo l'azione %(action)s." -msgstr[1] "" -"A %(count)s commenti è stata applicata con successo l'azione %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "commenti su %(site_name)s " - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Commenti più recenti su %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nome" - -#: forms.py:97 -msgid "Email address" -msgstr "Indirizzo email" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Commento" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Modera i termini: la parola %s non è ammessa qui." -msgstr[1] "Modera i termini: le parole %s non sono ammesse qui." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "e" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Se inserisci qualcosa in questo campo, il tuo commento verrà considerato spam" - -#: models.py:23 -msgid "content type" -msgstr "content type" - -#: models.py:25 -msgid "object ID" -msgstr "ID dell'oggetto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "utente" - -#: models.py:55 -msgid "user's name" -msgstr "nome utente" - -#: models.py:56 -msgid "user's email address" -msgstr "indirizzo email utente" - -#: models.py:57 -msgid "user's URL" -msgstr "URL utente" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "commento" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/ora di inserimento" - -#: models.py:63 -msgid "IP address" -msgstr "indirizzo IP" - -#: models.py:64 -msgid "is public" -msgstr "è pubblico" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Deseleziona questa casella per far sparire del tutto il commento dal sito." - -#: models.py:67 -msgid "is removed" -msgstr "è eliminato" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Seleziona la casella se il commento è inappropriato. Verrà sostituito dal " -"messaggio \"Questo commento è stato rimosso\"." - -#: models.py:80 -msgid "comments" -msgstr "commenti" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Questo commento è stato inserito da un utente autenticato e quindi il nome " -"non è modificabile." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Questo commento è stato inserito da un utente autenticato e quindi l'email " -"non è modificabile." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Inserito da %(user)s il %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "Segnala" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "segnalazione commento" - -#: models.py:191 -msgid "comment flags" -msgstr "segnalazioni commenti" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Approva un commento" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Sicuro di voler pubblicare questo commento?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Approva" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Grazie per aver approvato" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Grazie per aver speso tempo a migliorare la qualità della discussione sul " -"nostro sito" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Elimina un commento" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Sicuro di voler eliminare questo commento?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Elimina" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Grazie per aver eliminato" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Segnala questo commento" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Sicuro di voler segnalare questo commento?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Segnala" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Grazie per aver segnalato" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Pubblica" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Anteprima" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Grazie per aver commentato" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Grazie per il tuo commento" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Mostra l'anteprima del tuo commento" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Correggi l'errore qui sotto" -msgstr[1] "Correggi gli errori qui sotto" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Pubblica il tuo commento" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "o fai dei cambiamenti" diff --git a/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo deleted file mode 100644 index e8600c3a4ff..00000000000 Binary files a/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ja/LC_MESSAGES/django.po b/django/contrib/comments/locale/ja/LC_MESSAGES/django.po deleted file mode 100644 index 50605ab4792..00000000000 --- a/django/contrib/comments/locale/ja/LC_MESSAGES/django.po +++ /dev/null @@ -1,296 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-06-04 16:06+0000\n" -"Last-Translator: Yoichi Fujimoto \n" -"Language-Team: Japanese (http://www.transifex.com/projects/p/django/language/" -"ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "内容" - -#: admin.py:28 -msgid "Metadata" -msgstr "メタデータ" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "にフラグが付きました" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "選択したコメントにフラグを付ける" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "は承認されました" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "選択したコメントを承認する" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "は削除されました" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "コメントを削除する" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s個のコメント%(action)s。" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s のコメント" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s の最新コメント" - -#: forms.py:96 -msgid "Name" -msgstr "名前" - -#: forms.py:97 -msgid "Email address" -msgstr "メールアドレス" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "コメント" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "言葉使いに気を付けて! %s という言葉は使えません。" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "と" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "このフィールドに入力するとコメントはスパム扱いされます" - -#: models.py:23 -msgid "content type" -msgstr "コンテンツタイプ" - -#: models.py:25 -msgid "object ID" -msgstr "オブジェクト ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "ユーザー" - -#: models.py:55 -msgid "user's name" -msgstr "名前" - -#: models.py:56 -msgid "user's email address" -msgstr "メールアドレス" - -#: models.py:57 -msgid "user's URL" -msgstr "URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "コメント" - -#: models.py:62 -msgid "date/time submitted" -msgstr "コメント投稿日時" - -#: models.py:63 -msgid "IP address" -msgstr "IP アドレス" - -#: models.py:64 -msgid "is public" -msgstr "は公開中です" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"手っ取り早くコメントをサイトから消すにはここのチェックを外してください。" - -#: models.py:67 -msgid "is removed" -msgstr "は削除されました" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"コメントが不適切な場合はチェックを入れてください。「コメントは削除されまし" -"た」と表示されるようになります。" - -#: models.py:80 -msgid "comments" -msgstr "コメント" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"このコメントは認証済みユーザーによって投稿されたため、名前は読み取り専用で" -"す。" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"このコメントは認証済みユーザーによって投稿されたため、メールアドレスは読み取" -"り専用です。" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s が %(date)s に投稿\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "フラグ" - -#: models.py:180 -msgid "date" -msgstr "フラグを付けた日時" - -#: models.py:190 -msgid "comment flag" -msgstr "コメントフラグ" - -#: models.py:191 -msgid "comment flags" -msgstr "コメントフラグ" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "コメントを承認する" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "本当にこのコメントを承認しますか?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "承認" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "ご利用ありがとうございました!" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "当サイトの品質向上にご協力いただきありがとうございました" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "コメントを削除する" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "本当にこのコメントを削除しますか?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "削除" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "ご利用ありがとうございました!" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "このコメントにフラグを付ける" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "本当にこのコメントにフラグを付けますか?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "フラグを付ける" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "ご利用ありがとうございました!" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "投稿" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "プレビュー" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "コメントしてくれてありがとうございました" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "コメントありがとうございました" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "コメントのプレビュー" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "下記のエラーを修正してください。" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "コメントを投稿" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "さらに編集" diff --git a/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo deleted file mode 100644 index 850becbe3b6..00000000000 Binary files a/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ka/LC_MESSAGES/django.po b/django/contrib/comments/locale/ka/LC_MESSAGES/django.po deleted file mode 100644 index afedc53e596..00000000000 --- a/django/contrib/comments/locale/ka/LC_MESSAGES/django.po +++ /dev/null @@ -1,297 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# avsd05 , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Georgian (http://www.transifex.com/projects/p/django/language/" -"ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "კონტენტი" - -#: admin.py:28 -msgid "Metadata" -msgstr "მეტა-მონაცემები" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "დროშა" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "არჩეულ კომენტარებზე დროშის დასმა" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "დამტკიცებულია" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "არჩეული კომენტარების დამტკიცება" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "წაშლილია" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "არჩეული კომენტარების წაშლა" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "წარმატებით %(action)s %(count)s კომენტარი" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s-ის კომენტარები" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "ბოლო კომენტარები %(site_name)s-ზე" - -#: forms.py:96 -msgid "Name" -msgstr "სახელი" - -#: forms.py:97 -msgid "Email address" -msgstr "ელ. ფოსტის მისამართი" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "კომენტარი" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "დაიცავით წესრიგი! სიტყვა \"%s\" აქ დაუშვებელია." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "და" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "თუ თვენ შეიყვანთ რამეს ამ ველში, თქვენი კომენტარი სპამად აღიქმება" - -#: models.py:23 -msgid "content type" -msgstr "კონტენტის ტიპი" - -#: models.py:25 -msgid "object ID" -msgstr "ობიექტის ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "მომხმარებელი" - -#: models.py:55 -msgid "user's name" -msgstr "მომხმარებლის სახელი" - -#: models.py:56 -msgid "user's email address" -msgstr "მომხმარებლის ელ. ფოსტა" - -#: models.py:57 -msgid "user's URL" -msgstr "მომხმარებლის URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "კომენტარი" - -#: models.py:62 -msgid "date/time submitted" -msgstr "გაგზავნის თარიღი და დრო" - -#: models.py:63 -msgid "IP address" -msgstr "IP-მისამართი" - -#: models.py:64 -msgid "is public" -msgstr "საყოველთაოა" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "გადანიშნეთ ეს დროშა, რათა კომენტარი რეალურად გაქრეს საიტიდან." - -#: models.py:67 -msgid "is removed" -msgstr "წაშლილია" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"მონიშნეთ ეს დროშა, თუ კომენტარი შეუსაბამოა. მის ნაცვლად გაჩნდება " -"შეტყობინება: \"კომენტარი წაშლილია\"." - -#: models.py:80 -msgid "comments" -msgstr "კომენტარები" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"ეს კომენტარი გამოგზავნილია აუდენტიფიცირებული მომხმარებლის მიერ, და ამიტომ " -"სახელის შეცვლა შეუძლებელია." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"ეს კომენტარი გამოგზავნილია აუდენტიფიცირებული მომხმარებლის მიერ, და ამიტომ " -"ელ. ფოსტის შეცვლა შეუძლებელია." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"გამოგზავნილია %(user)s-ს მიერ, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "დროშა" - -#: models.py:180 -msgid "date" -msgstr "თარიღი" - -#: models.py:190 -msgid "comment flag" -msgstr "კომენტარის დროშა" - -#: models.py:191 -msgid "comment flags" -msgstr "კომენტარის დროშები" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "კომენტარის დადასტურება" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "ნამდვილად გსურთ ამ კომენტარის გამოქვეყნება?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "დასტური" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "გმადლობთ, კომენტარის დადასტურებისათვის" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"გმადლობთ, რომ დრო დახარჯეთ ჩვენს საიტზე დისკუსიის ხარისხის გასაუმჯობესებლად" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "წავშალოთ კომენტარები" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "ნამდვილად გსურთ ამ კომენტარის წაშლა?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "წაშლა" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "გმადლობთ, წაშლისათვის" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "კომენტარის მარკირება" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "ნამდვილად გსურთ ამ კომენტარის მარკირება?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "დროშა" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "გმადლობთ, მარკირებისათვის" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "გაგზავნა" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "წინასწარი ნახვა" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "გმადლობთ კომენტარისთვის" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "გმადლობთ თქვენი კომენტარისათვის" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "კომენტარის წინასწარი ნახვა" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "გთხოვთ, შეასწოროთ შეცდომა ქვემოთ" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "კომენტარის გაგზავნა" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ან შეიტანეთ ცვლილებები" diff --git a/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo b/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo deleted file mode 100644 index 4ec3c83f0be..00000000000 Binary files a/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/kk/LC_MESSAGES/django.po b/django/contrib/comments/locale/kk/LC_MESSAGES/django.po deleted file mode 100644 index d8e04f9b127..00000000000 --- a/django/contrib/comments/locale/kk/LC_MESSAGES/django.po +++ /dev/null @@ -1,301 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# , 2011. -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: yun_man_ger \n" -"Language-Team: Kazakh (http://www.transifex.com/projects/p/django/language/" -"kk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kk\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Мазмұн" - -#: admin.py:28 -msgid "Metadata" -msgstr "Метадата" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "белгіленген" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Таңдалған коментарийлерді белгілеу" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "Расталған" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Таңдалған аңғартпаларды бекіту" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "өшірілген" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Таңдалған аңғартпаларды өшіру" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -"one: 1 аңғартпа ойдағыдай %(action)s.\n" -"other: %(count)s аңғартпа ойдағыдай %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s аңғартпалары" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Соңғы %(site_name)s аңғартпалары" - -#: forms.py:96 -msgid "Name" -msgstr "Атау" - -#: forms.py:97 -msgid "Email address" -msgstr "Email адрес" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Аңғартпа" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -"one: Байқап сөйлеңіз! Бұл жерде %s сөзіне тыйым салынған.\n" -"\n" -"other: Байқап сөйлеңіз! Бұл жерде %s сөздеріне тыйым салынған." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "және" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Егер сіз бұл жолаққа қандай да бір нарсені енгізсеңіз, сіздің коментариіңіз " -"спам ретінде белгіленеді." - -#: models.py:23 -msgid "content type" -msgstr "мазмұн түрі" - -#: models.py:25 -msgid "object ID" -msgstr "нысан ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "пайдаланушы" - -#: models.py:55 -msgid "user's name" -msgstr "пайдаланушының есімі" - -#: models.py:56 -msgid "user's email address" -msgstr "пайдаланушының email адресі" - -#: models.py:57 -msgid "user's URL" -msgstr "пайдаланушының URLі" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "аңғартпа" - -#: models.py:62 -msgid "date/time submitted" -msgstr "жіберілген күні/уықыты" - -#: models.py:63 -msgid "IP address" -msgstr "IP адрес" - -#: models.py:64 -msgid "is public" -msgstr "ашық" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Анғартпаның сайттан жоғалуы үшін құсбелгіні алып тастаңыз." - -#: models.py:67 -msgid "is removed" -msgstr "өшірілген" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Анғартпа дұрыс болмаса құсбелгігі қойыңыз. Орнына \"Бұл анғартпа өшірілді\" " -"деген хабар көрінеді." - -#: models.py:80 -msgid "comments" -msgstr "анғартпалар" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "Бұл аңғартпа пайдаланушы орналастырған үшін аты өзгертілмейді." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "Бұл аңғартпа пайдаланушы орналастырған үшін email өзгертілмейді." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s %(date)s орналастырды\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "жалауша" - -#: models.py:180 -msgid "date" -msgstr "мерзім" - -#: models.py:190 -msgid "comment flag" -msgstr "Аңғартпа жалаушасы" - -#: models.py:191 -msgid "comment flags" -msgstr "Аңғартпа жалаушалары" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Аңғартпаны мақұлда" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Бұл аңғартпаны ашық қылуға сенімдісіз бе?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Мақұлдау" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Мақұлдау үшін рахмет" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Торпабымыздағы" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Аңғартпаны өшір" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Аңғартпаны өшіруге сенімдісіз бе?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Өшір" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Өшіргеніңіз үшін рахмет" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Бұл аңғартпаға жалауша қой" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Бұл аңғартпаға жалауша қоюға сенімдісіз бе?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Жалауша" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Жалауша қойғаныңыз үшін рахмет" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Орналастыру" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Алдын ала қарап алу" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Аңғартпаңыз үшін рахмет" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Аңғартпаңыз үшін рахмет" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Аңғартпаны алдын ала қарап алу" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -"one: Төмендегі қатені түзеңіз\n" -"other: Төмендегі қателерді түзеңіз" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Аңғартпаңызды орналастырыңыз" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "немесе өзгертіңіз" diff --git a/django/contrib/comments/locale/km/LC_MESSAGES/django.mo b/django/contrib/comments/locale/km/LC_MESSAGES/django.mo deleted file mode 100644 index d5262058028..00000000000 Binary files a/django/contrib/comments/locale/km/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/km/LC_MESSAGES/django.po b/django/contrib/comments/locale/km/LC_MESSAGES/django.po deleted file mode 100644 index d15e7146634..00000000000 --- a/django/contrib/comments/locale/km/LC_MESSAGES/django.po +++ /dev/null @@ -1,290 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "អត្ថបទ" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "ឈ្មោះ" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "អាស័យដ្ឋានគេហទំព័រ(URL)" - -#: forms.py:99 -msgid "Comment" -msgstr "ផ្សេងៗ" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "និង" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "ប្រភេទអត្ថន័យ" - -#: models.py:25 -msgid "object ID" -msgstr "លេខ​សំគាល់​កម្មវិធី" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "សមាជិក" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "មតិ​យោបល់" - -#: models.py:62 -msgid "date/time submitted" -msgstr "កាល​បរិច្ឆេទនៃ​ការ​សរសេរ​​" - -#: models.py:63 -msgid "IP address" -msgstr "លេខ IP" - -#: models.py:64 -msgid "is public" -msgstr "ផ្សព្វផ្សាយ​ជាសធារណៈ" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "ត្រូវ​បាន​លប់​ចេញ" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"សូម​ចុច​ជ្រើសរើស​យក​ប្រអប់​នេះ​ ប្រសិន​បើ​មតិ​យោបល់​មិនសមរម្យ។ ឃ្លា \" មតិ​យោបល់​នេះ​ត្រូវបាន​គេលប់​\" នឹងត្រូវ​" -"បង្ហាញ​ជំនួស​វិញ។" - -#: models.py:80 -msgid "comments" -msgstr "មតិ​យោបល់" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"សរសេរ​ដោយ %(user)s នៅថ្ងៃ​ %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "​កាលបរិច្ឆេទ" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo b/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo deleted file mode 100644 index f18618bba5a..00000000000 Binary files a/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/kn/LC_MESSAGES/django.po b/django/contrib/comments/locale/kn/LC_MESSAGES/django.po deleted file mode 100644 index 2aea3902414..00000000000 --- a/django/contrib/comments/locale/kn/LC_MESSAGES/django.po +++ /dev/null @@ -1,292 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: karthikbgl \n" -"Language-Team: Kannada (http://www.transifex.com/projects/p/django/language/" -"kn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "ವಿಷಯ" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "ಹೆಸರು" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "ಅಭಿಪ್ರಾಯ" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ಮತ್ತು" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "ಒಳವಿಷಯದ ಬಗೆ" - -#: models.py:25 -msgid "object ID" -msgstr "ವಸ್ತುವಿನ ಐಡಿ" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "ಬಳಕೆದಾರ" - -#: models.py:55 -msgid "user's name" -msgstr "ಬಳಕೆದಾರನ ಹೆಸರು" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "ಟಿಪ್ಪಣಿ" - -#: models.py:62 -msgid "date/time submitted" -msgstr "ಸಲ್ಲಿಸಿದ ದಿನಾಂಕ/ಸಮಯ" - -#: models.py:63 -msgid "IP address" -msgstr "IP ವಿಳಾಸ" - -#: models.py:64 -msgid "is public" -msgstr "ಸಾರ್ವಜನಿಕವಾಗಿದೆ" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "ತೆಗೆದು ಹಾಕಲಾಗಿದೆ" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"ಟಿಪ್ಪಣಿ ಅನುಚಿತವಾಗಿ ಇದ್ದಲ್ಲಿ ಈ ಚೌಕದಲ್ಲಿ ಗುರುತು ಮಾಡಿ. ಅದರ ಬದಲಾಗಿ \"ಈ ಟಿಪ್ಪಣಿ " -"ತೆಗೆದುಹಾಕಲಾಗಿದೆ\" ಎಂಬ ಸಂದೇಶವನ್ನು ತೋರಿಸಲಾಗುವುದು." - -#: models.py:80 -msgid "comments" -msgstr "ಟಿಪ್ಪಣಿಗಳು" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"ಸಲ್ಲಿಸಿದವರು %(user)s ರವರು %(date)s\n" -"\n" -" ದಿನ/ಸಮಯಕ್ಕೆ %(comment)s\n" -"\n" -"http://%(domain)s%(url)s ಸಲ್ಲಿಸಿದ್ದು" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "ದಿನಾಂಕ" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "ಅಭಿಪ್ರಾಯ ಒಪ್ಪಿಗೆ" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "ಒಪ್ಪಿಗೆ" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo deleted file mode 100644 index 4d344082794..00000000000 Binary files a/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ko/LC_MESSAGES/django.po b/django/contrib/comments/locale/ko/LC_MESSAGES/django.po deleted file mode 100644 index 51f5bace196..00000000000 --- a/django/contrib/comments/locale/ko/LC_MESSAGES/django.po +++ /dev/null @@ -1,291 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Korean (http://www.transifex.com/projects/p/django/language/" -"ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "내용" - -#: admin.py:28 -msgid "Metadata" -msgstr "메타데이터" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "플래그되었습니다" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "선택된 코멘트에 플래그 달기" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "승인되었습니다" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "선택된 코멘트 승인하기" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "삭제되었습니다" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "선택된 코멘트 삭제" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s개의 코멘트가 성공적으로 %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s 의 코멘트" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s 의 사용자 비밀번호가 초기화 되었습니다." - -#: forms.py:96 -msgid "Name" -msgstr "이름" - -#: forms.py:97 -msgid "Email address" -msgstr "이메일 주소" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "코멘트:" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "비속어/욕설입니다. %s (은)는 사용하실 수 없습니다." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "또한" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "이 필드에 무엇이라도 입력하면 코멘트는 스팸으로 처리될 것입니다." - -#: models.py:23 -msgid "content type" -msgstr "콘텐츠 타입" - -#: models.py:25 -msgid "object ID" -msgstr "오브젝트 ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "사용자" - -#: models.py:55 -msgid "user's name" -msgstr "사용자명" - -#: models.py:56 -msgid "user's email address" -msgstr "사용자 이메일 주소" - -#: models.py:57 -msgid "user's URL" -msgstr "사용자 URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "코멘트" - -#: models.py:62 -msgid "date/time submitted" -msgstr "날짜/시간 확인" - -#: models.py:63 -msgid "IP address" -msgstr "IP 주소" - -#: models.py:64 -msgid "is public" -msgstr "공개합니다." - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "이 사이트에서 코멘트가 나타나지 않게 하려면 체크 해제하세요." - -#: models.py:67 -msgid "is removed" -msgstr "삭제합니다." - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"코멘트가 부적절한 경우 체크하세요. \"코멘트가 삭제되었습니다.\" 메시지가 표시" -"됩니다." - -#: models.py:80 -msgid "comments" -msgstr "코멘트(들)" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "이 코멘트는 등록된 사용자가 작성하였으므로 읽기 전용입니다." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "이 코멘트는 등록된 사용자가 작성하였으므로 읽기 전용입니다." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s (이)가 %(date)s 등록\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "플래그" - -#: models.py:180 -msgid "date" -msgstr "날짜" - -#: models.py:190 -msgid "comment flag" -msgstr "코멘트 플래그" - -#: models.py:191 -msgid "comment flags" -msgstr "코멘트 플래그" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "코멘트 승인" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "정말로 이 코멘트를 공개하시겠습니까?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "승인" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "승인해주셔서 고맙습니다." - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "우리 사이트의 토론에 기여해주셔서 감사합니다." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "코멘트 삭제" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "정말로 이 코멘트를 삭제하시겠습니까?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "삭제하기" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "삭제해주셔서 고맙습니다." - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "코멘트에 플래그 달기" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "정말로 플래그를 다시겠습니까?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "플래그를 답니다." - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "플래그를 달아주셔서 고맙습니다." - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "작성하기" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "미리보기" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "코멘트 작성 완료" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "코멘트를 달아주셔서 고맙습니다." - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "코멘트 미리보기" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "아래의 오류를 수정해 주세요." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "코멘트 작성하기" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "또는 변경하기" diff --git a/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo b/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo deleted file mode 100644 index 3e165431f87..00000000000 Binary files a/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/lt/LC_MESSAGES/django.po b/django/contrib/comments/locale/lt/LC_MESSAGES/django.po deleted file mode 100644 index dcd12982cad..00000000000 --- a/django/contrib/comments/locale/lt/LC_MESSAGES/django.po +++ /dev/null @@ -1,311 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# lauris , 2011. -# Simonas Simas , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-03-09 16:58+0000\n" -"Last-Translator: Simonas Kazlauskas \n" -"Language-Team: Lithuanian (http://www.transifex.com/projects/p/django/" -"language/lt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Turinys" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meta-duomenys" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "pažymėtas" -msgstr[1] "pažymėti" -msgstr[2] "pažymėti" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Žymėti pasirinktus komentarus" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "patvirtintas" -msgstr[1] "patvirtinti" -msgstr[2] "patvirtinti" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Patvirtinti pasirinktus komentarus" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "pašalintas" -msgstr[1] "pašalinti" -msgstr[2] "pašalinti" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Pašalinti pasirinktus įrašus" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentaras buvo sėkmingai %(action)s." -msgstr[1] "%(count)s komentarai buvo sėkmingai %(action)s." -msgstr[2] "%(count)s komentarai buvo sėkmingai %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s komentarai" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Paskutiniai %(site_name)s komentarai" - -#: forms.py:96 -msgid "Name" -msgstr "Vardas" - -#: forms.py:97 -msgid "Email address" -msgstr "El. pašto adresas" - -#: forms.py:98 -msgid "URL" -msgstr "Nuoroda" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentaras" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Žiūrėk ką kalbi! Žodis %s yra čia uždraustas." -msgstr[1] "Žiūrėk ką kalbi! Žodžiai %s yra čia uždrausti." -msgstr[2] "Žiūrėk ką kalbi! Žodžiai %s yra čia uždrausti." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ir" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Jei ką nors įrašysite į šį laukelį, jūsų komentaras bus laikomas brukalu" - -#: models.py:23 -msgid "content type" -msgstr "turinio tipas" - -#: models.py:25 -msgid "object ID" -msgstr "objekto ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "vartotojas" - -#: models.py:55 -msgid "user's name" -msgstr "vartotojo vardas" - -#: models.py:56 -msgid "user's email address" -msgstr "vartotojo el. pašto adresas" - -#: models.py:57 -msgid "user's URL" -msgstr "vartotojo nuoroda" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentaras" - -#: models.py:62 -msgid "date/time submitted" -msgstr "įvesta data/laikas" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresas" - -#: models.py:64 -msgid "is public" -msgstr "viešas" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Nuimkite šį žymejimą, kad komentaras būtų panaikintas." - -#: models.py:67 -msgid "is removed" -msgstr "pašalintas" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Pažymėkite šį laukelį, jei komentaras netinkamas. \"Šis komentaras ištrintas" -"\" bus rodoma." - -#: models.py:80 -msgid "comments" -msgstr "komentarai" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Šis komentaras buvo paskelbtas neprisijungusio vartotojo, todel vardas yra " -"neredaguojamas." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Šis komentaras buvo paskelbtas neprisijungusio vartotojo, todel el. pašto " -"adresas yra neredaguojamas." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Paskelbta %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "žymė" - -#: models.py:180 -msgid "date" -msgstr "Data" - -#: models.py:190 -msgid "comment flag" -msgstr "Komentaro žymė" - -#: models.py:191 -msgid "comment flags" -msgstr "Komentaro žymės" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Patvirtinti komentarą" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Tikrai publikuoti šį komentarą?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Patvirtinti" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Ačiū už patvirtinimą" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Ačiū, kad radote laiko pagerinti diskusijų kokybę mūsų svetainėje" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Pašalinti komentarą" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Tikrai ištrinti šį komentarą?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Pašalinti" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Ačiū už pašalinimą" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Pažymėti šį komentarą" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Tikrai žymėti šį komentarą?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Žymė" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Ačiū už žymėjimą" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Siųsti" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Peržiūra" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Ačiū už komentarą" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Ačiū už jūsų komentarą" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Peržiūrėti savo komentarą" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Prašau ištaisyti žemiau esančią klaidą" -msgstr[1] "Prašau ištaisyti žemiau esančias klaidas" -msgstr[2] "Prašau ištaisyti žemiau esančias klaidas" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publikuoti komentarą" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "arba keisti" diff --git a/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo b/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo deleted file mode 100644 index dda6b21f737..00000000000 Binary files a/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/lv/LC_MESSAGES/django.po b/django/contrib/comments/locale/lv/LC_MESSAGES/django.po deleted file mode 100644 index 0914841ea34..00000000000 --- a/django/contrib/comments/locale/lv/LC_MESSAGES/django.po +++ /dev/null @@ -1,309 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/django/language/" -"lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Saturs" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadati" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "atzīmēts" -msgstr[1] "atzīmēti" -msgstr[2] "atzīmēts" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Atzīmēt izvēlētos komentārus" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "apstiprināts" -msgstr[1] "apstiprināti" -msgstr[2] "apstiprināti" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Apstiprināt izvēlētos komentārus" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "dzēsts" -msgstr[1] "dzēsti" -msgstr[2] "dzēsts" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Dzēst izvēlētos komentārus" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentārs tika veiksmīgi %(action)s." -msgstr[1] "%(count)s komentāri tika veiksmīgi %(action)s." -msgstr[2] "%(count)s komentāru tika veiksmīgi %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s komentāri" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Pēdējie komentāri lapā %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Vārds" - -#: forms.py:97 -msgid "Email address" -msgstr "E-pasta adrese" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentārs" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Lūdzam ievērot pieklājību! Vārds %s šeit nav atļauts." -msgstr[1] "Lūdzam ievērot pieklājību! Vārdi %s šeit nav atļauti." -msgstr[2] "Lūdzam ievērot pieklājību! Vārdi %s šeit nav atļauti." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "un" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ja aizpildīsiet šo lauku, tad komentārs tiks uzskatīts par spamu" - -#: models.py:23 -msgid "content type" -msgstr "satura tips" - -#: models.py:25 -msgid "object ID" -msgstr "objekta ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "lietotājs" - -#: models.py:55 -msgid "user's name" -msgstr "lietotāja vārds" - -#: models.py:56 -msgid "user's email address" -msgstr "lietotāja e-pasta adrese" - -#: models.py:57 -msgid "user's URL" -msgstr "lietotāja URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentārs" - -#: models.py:62 -msgid "date/time submitted" -msgstr "nosūtīšanas datums/laiks" - -#: models.py:63 -msgid "IP address" -msgstr "IP adrese" - -#: models.py:64 -msgid "is public" -msgstr "publisks" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Noņemiet ķeksi, lai komentārs neparādītos lapā." - -#: models.py:67 -msgid "is removed" -msgstr "dzēsts" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Atķeksējiet, ja komentārs ir neatbilstošs (nepieklājīgs). Tā vietā tiks " -"rādīts paziņojums \"Šis komentārs ir izdzēsts\"." - -#: models.py:80 -msgid "comments" -msgstr "komentāri" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Šo komentāru rakstīja autentificēts lietotājs, tāpēc vārds ir tikai " -"lasīšanas režīmā." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Šo komentāru rakstīja autentificēts lietotājs, tāpēc e-pasts ir tikai " -"lasīšanas režīmā." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Pievienojis %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "atzīmēt" - -#: models.py:180 -msgid "date" -msgstr "datums" - -#: models.py:190 -msgid "comment flag" -msgstr "komentāra atzīmējums" - -#: models.py:191 -msgid "comment flags" -msgstr "komentāra atzīmējumi" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Apstiprināt komentāru" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Patiešām padarīt šo komentāru publisku?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Apstiprināt" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Paldies par apstiprināšanu" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Paldies par laika veltīšanu mūsu lapas diskusiju kvalitātes uzlabošanai" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Dzēst komentāru" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Patiešām dzēst šo komentāru?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Dzēst" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Paldies par dzēšanu" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Atzīmēt šo komentāru" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Patiešām atzīmēt šo komentāru?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Atzīmējums" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Paldies par komentāra atzīmēšanu" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Iesūtīt" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Priekšskats" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Paldies par komentēšanu" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Paldies par Jūsu komentāru" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Pirmsskatīt komentāru" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Lūdzu izlabojiet kļūdu zemāk." -msgstr[1] "Lūdzu izlabojiet kļūdas zemāk." -msgstr[2] "Lūdzu, izlabojiet kļūdu zemāk." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Iesūtīt komentāru" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "vai veikt izmaiņas" diff --git a/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo b/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo deleted file mode 100644 index a2b3dc49d9a..00000000000 Binary files a/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/mk/LC_MESSAGES/django.po b/django/contrib/comments/locale/mk/LC_MESSAGES/django.po deleted file mode 100644 index d98772b431d..00000000000 --- a/django/contrib/comments/locale/mk/LC_MESSAGES/django.po +++ /dev/null @@ -1,305 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/django/" -"language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Содржина" - -#: admin.py:28 -msgid "Metadata" -msgstr "Метаподатоци" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "обележан" -msgstr[1] "обележани" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Обележи го одбраните коментари" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "одобрен" -msgstr[1] "одобрени" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Одобри ги одбраните коментари" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "отстранет" -msgstr[1] "отстранети" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Отстрани ги избраните коментари" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 коментар беше успешно %(action)s." -msgstr[1] "%(count)s коментари беа успешно %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "коментари за %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Последни коментари за %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Име" - -#: forms.py:97 -msgid "Email address" -msgstr "Е-пошта" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Коментар" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Внимавајте на јазикот. Тука не е дозволен зборот %s." -msgstr[1] "Внимавајте на јазикот. Тука не се дозволени зборовите %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "и" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Ако внесете нешто во ова поле вашиот коментар ќе биде означен како спам" - -#: models.py:23 -msgid "content type" -msgstr "тип на содржина" - -#: models.py:25 -msgid "object ID" -msgstr "object ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "корисник" - -#: models.py:55 -msgid "user's name" -msgstr "името на корисникот" - -#: models.py:56 -msgid "user's email address" -msgstr "е-пошта на корисникот" - -#: models.py:57 -msgid "user's URL" -msgstr "веб страна на корсникот" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "коментар" - -#: models.py:62 -msgid "date/time submitted" -msgstr "датум/време пријавен" - -#: models.py:63 -msgid "IP address" -msgstr "ИП адреса" - -#: models.py:64 -msgid "is public" -msgstr "е јавен" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Одштиклирајте го ова за да направите коментаров да исчезне од овој сајт." - -#: models.py:67 -msgid "is removed" -msgstr "е отстранет" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Штиклирајте го ова поле ако коментарот не е пригоден. Наместо него пораката " -"„Овој коментар беше отстранет“ ќе биде прикажана." - -#: models.py:80 -msgid "comments" -msgstr "коментари" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Овој коментар бил пратен од автентициран корисник и затоа името е заштитено " -"од промена." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Овој коментар бил пратен од автентициран корисник и затоа е-пошта е " -"заштитена од промена." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Напишан од %(user)s на %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "обележи" - -#: models.py:180 -msgid "date" -msgstr "датум" - -#: models.py:190 -msgid "comment flag" -msgstr "обележје за коментар" - -#: models.py:191 -msgid "comment flags" -msgstr "обележја за коментари" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Одобри коментар" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Навистина ли сакате овој коментар да биде објавен?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Одобри" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Ви благодариме што одобривте" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Ви благодариме што допринесовте да се подобри квалитетот на дискусиите на " -"нашиот сајт" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Избриши коментар" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Навистина ли сакате да го отстраните овој коментар?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Отстрани" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Ви благодариме што отстранивте" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Обележи го овој коментар" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Навистина ли сакате да го обележите овој коментар?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Обележи" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Ви благодариме што обележавте" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Објави" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Преглед" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Ви благодариме за коментарот" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Ви благодариме за коментарот" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Прегледајте го вашиот коментар" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Ве молам поправете ја грешката подолу." -msgstr[1] "Ве молам поправете ги грешките подолу." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Објавете го вашиот коментар" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "или направете измени" diff --git a/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo deleted file mode 100644 index 8f3bb1c3d69..00000000000 Binary files a/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ml/LC_MESSAGES/django.po b/django/contrib/comments/locale/ml/LC_MESSAGES/django.po deleted file mode 100644 index 35a5a8e7ea2..00000000000 --- a/django/contrib/comments/locale/ml/LC_MESSAGES/django.po +++ /dev/null @@ -1,300 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Rajeesh Nair , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Rajeesh Nair \n" -"Language-Team: Malayalam (http://www.transifex.com/projects/p/django/" -"language/ml/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "ഉള്ളടക്കം" - -#: admin.py:28 -msgid "Metadata" -msgstr "മെറ്റാ-ഡാറ്റ" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "അടയാളപ്പെടുത്തി" -msgstr[1] "അടയാളപ്പെടുത്തി" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള്‍ അടയാളപ്പെടുത്തുക" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "അംഗീകരിച്ചു" -msgstr[1] "അംഗീകരിച്ചു" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള്‍ അംഗീകരിക്കുക" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "നീക്കം ചെയ്തു" -msgstr[1] "നീക്കം ചെയ്തു" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള്‍ നീക്കം ചെയ്യുക" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 അഭിപ്രായം വിജയകരമായി %(action)s." -msgstr[1] "%(count)s അഭിപ്രായങ്ങള്‍ വിജയകരമായി %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s അഭിപ്രായങ്ങള്‍" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s ലെ ഏറ്റവും പുതിയ അഭിപ്രായങ്ങള്‍" - -#: forms.py:96 -msgid "Name" -msgstr "പേര്" - -#: forms.py:97 -msgid "Email address" -msgstr "ഇ-മെയില്‍ വിലാസം" - -#: forms.py:98 -msgid "URL" -msgstr "URL(വെബ്-വിലാസം)" - -#: forms.py:99 -msgid "Comment" -msgstr "അഭിപ്രായം" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "ശ്ശ്ശ്! %s എന്ന വാക്ക് ഇവിടെ അനുവദനീയമല്ല." -msgstr[1] "ശ്ശ്ശ്! %s എന്നീ വാക്കുകള്‍ ഇവിടെ അനുവദനീയമല്ല." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ഉം" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "ഈ കള്ളിയില്‍ എന്തെങ്കിലും രേഖപ്പെടുത്തിയാല്‍ നിങ്ങളുടെ അഭിപ്രായം സ്പാം ആയി കണക്കാക്കും" - -#: models.py:23 -msgid "content type" -msgstr "ഏതു തരം ഉള്ളടക്കം" - -#: models.py:25 -msgid "object ID" -msgstr "വസ്തുവിന്റെ ID (തിരിച്ചറിയല്‍ സംഖ്യ)" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "യൂസര്‍ (ഉപയോക്താവ്)" - -#: models.py:55 -msgid "user's name" -msgstr "യൂസറുടെ പേര്" - -#: models.py:56 -msgid "user's email address" -msgstr "യൂസറുടെ ഇ-മെയില്‍ വിലാസം" - -#: models.py:57 -msgid "user's URL" -msgstr "യൂസറുടെ URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "അഭിപ്രായം" - -#: models.py:62 -msgid "date/time submitted" -msgstr "സമര്‍പ്പിച്ച തീയതി/സമയം" - -#: models.py:63 -msgid "IP address" -msgstr "IP വിലാസം" - -#: models.py:64 -msgid "is public" -msgstr "പരസ്യമാണ്" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "അഭിപ്രായം സൈറ്റില്‍ നിന്നും ഫലപ്രദമായി നീക്കം ചെയ്യാന്‍ ഈ ബോക്സിലെ ടിക് ഒഴിവാക്കുക." - -#: models.py:67 -msgid "is removed" -msgstr "നീക്കം ചെയ്തു." - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"അഭിപ്രായം അനുചിതമെങ്കില്‍ ഈ ബോക്സ് ടിക് ചെയ്യുക. \"ഈ അഭിപ്രായം നീക്കം ചെയ്തു \" എന്ന സന്ദേശം " -"ആയിരിക്കും പകരം കാണുക." - -#: models.py:80 -msgid "comments" -msgstr "അഭിപ്രായങ്ങള്‍" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "ഈ അഭിപ്രായം ഒരു അംഗീകൃത യൂസര്‍ രേഖപ്പെടുത്തിയതാണ്. അതിനാല്‍ പേര് വായിക്കാന്‍ മാത്രം." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"ഈ അഭിപ്രായം ഒരു അംഗീകൃത യൂസര്‍ രേഖപ്പെടുത്തിയതാണ്. അതിനാല്‍ ഇ-മെയില്‍ വിലാസം വായിക്കാന്‍ " -"മാത്രം." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(date)sന് %(user)s രേഖപ്പെടുത്തിയത്:\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "അടയാളം" - -#: models.py:180 -msgid "date" -msgstr "തീയതി" - -#: models.py:190 -msgid "comment flag" -msgstr "അഭിപ്രായ അടയാളം" - -#: models.py:191 -msgid "comment flags" -msgstr "അഭിപ്രായ അടയാളങ്ങള്‍" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "അഭിപ്രായം അംഗീകരിക്കൂ" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "ശരിക്കും ഈ അഭിപ്രായം പരസ്യമാക്കണോ?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "അംഗീകരിക്കൂ" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "അംഗീകരിച്ചതിനു നന്ദി" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "നമ്മുടെ സൈറ്റിലെ ചര്‍ച്ചകളുടെ നിലവാരം ഉയര്‍ത്താന്‍ സമയം ചെലവഴിച്ചതിനു നന്ദി." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "അഭിപ്രായം നീക്കം ചെയ്യൂ" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "ശരിക്കും ഈ അഭിപ്രായം നീക്കം ചെയ്യണോ?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "നീക്കം ചെയ്യുക" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "നീക്കം ചെയ്തതിനു നന്ദി" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "ഈ അഭിപ്രായം അടയാളപ്പെടുത്തൂ" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "ഈ അഭിപ്രായം ശരിക്കും അടയാളപ്പെടുത്തണോ?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "അടയാളം" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "അടയാളപ്പെടുത്തിയതിനു നന്ദി" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "രേഖപ്പെടുത്തൂ" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "അവലോകനം" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "അഭിപ്രായം രേഖപ്പെടുത്തിയതിനു നന്ദി" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "അഭിപ്രായത്തിനു നന്ദി" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "അഭിപ്രായം അവലോകനം ചെയ്യുക" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "ദയവായി താഴെ പറയുന്ന തെറ്റ് തിരുത്തുക" -msgstr[1] "ദയവായി താഴെ പറയുന്ന തെറ്റുകള്‍ തിരുത്തുക" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "അഭിപ്രായം രേഖപ്പെടുത്തുക" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "അല്ലെങ്കില്‍ മാറ്റം വരുത്തുക." diff --git a/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo b/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo deleted file mode 100644 index 1f2d18648c2..00000000000 Binary files a/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/mn/LC_MESSAGES/django.po b/django/contrib/comments/locale/mn/LC_MESSAGES/django.po deleted file mode 100644 index a18be88721a..00000000000 --- a/django/contrib/comments/locale/mn/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Анхбаяр Анхаа , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Анхбаяр Анхаа \n" -"Language-Team: Mongolian (http://www.transifex.com/projects/p/django/" -"language/mn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Агуулга" - -#: admin.py:28 -msgid "Metadata" -msgstr "Мета өгөгдөл" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "тэгдэглсэн" -msgstr[1] "тэгдэглсэн" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Сонгосон сэтгэгдэлүүдийг тэмдэглэ" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "зөвшөөрөх" -msgstr[1] "зөвшөөрөх" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Сонгосон сэтгэгдэлүүдийг зөвшөөрөх" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "устгасан" -msgstr[1] "устгасан" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Сонгосон сэтгэгдэлүүдийг утсгах" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s сэтгэгдэлийг амжилттай %(action)s." -msgstr[1] "%(count)s сэтгэгдэлүүдийг амжилттай %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s сэтгэгдэлүүд" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr " %(site_name)s сүүлийн сэтгэгдэлүүд" - -#: forms.py:96 -msgid "Name" -msgstr "Нэр" - -#: forms.py:97 -msgid "Email address" -msgstr "Цахим шуудангийн хаяг" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Сэтгэгдэл" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Соёлтой байна уу! %s гэсэн үг оруулах хориотой." -msgstr[1] "Соёлтой байна уу! %s гэсэн үгүүд оруулах хориотой." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ба" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Та энэ хэсэгт ямар нэг зүйл оруулбал таний сэтгэгдэлийг спам гэж үзэх болно." - -#: models.py:23 -msgid "content type" -msgstr "агуулгын төрөл" - -#: models.py:25 -msgid "object ID" -msgstr "объектийн ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "хэрэглэгч " - -#: models.py:55 -msgid "user's name" -msgstr "хэрэглэгчийн нэр" - -#: models.py:56 -msgid "user's email address" -msgstr "хэрэглэгчийн цахим шуудангийн хаяг" - -#: models.py:57 -msgid "user's URL" -msgstr "хэрэглэгчийн URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "сэтгэгдэл" - -#: models.py:62 -msgid "date/time submitted" -msgstr "оруулсан огноо/цаг" - -#: models.py:63 -msgid "IP address" -msgstr "IP хаяг" - -#: models.py:64 -msgid "is public" -msgstr "нийтийн" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Сайтаас санал сэтгэгдлийг байнга устгахын тулд энэ хайрцагны өмнөх чагтыг " -"авна уу." - -#: models.py:67 -msgid "is removed" -msgstr "устлаа" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Ирсэн санал сэтгэгдэл зүй зохисгүй бол энэ хайрцгийг чагтла. Ингэснээр " -"тухайн санал сэтгэгдлийн оронд \"Энэ санал сэтгэгдлийг устгалаа\" гэсэн " -"бичиг гарч ирнэ." - -#: models.py:80 -msgid "comments" -msgstr "сэтгэгдэлүүд" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Энэ санал сэтгэгдлийг баталгаажсан хэрэглэгч оруулсан учир зөвхөн нэрийг нь " -"харж болно." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Энэ санал сэтгэгдлийг баталгаажсан хэрэглэгч оруулсан учир зөвхөн цахим " -"шууданг нь харж болно." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(date)s-д %(user)s дараах санал сэтгэгдлийг үлдээжээ\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "тэмдэг" - -#: models.py:180 -msgid "date" -msgstr "огноо" - -#: models.py:190 -msgid "comment flag" -msgstr "Тайлбарын тэмдэг" - -#: models.py:191 -msgid "comment flags" -msgstr "тайлбарын тэмдэгүүд" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Сэтгэгдэл зөвшөөрөх" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Үнэхээр энэ сэтгэгдэлийн нийтийн болгох гэж байна у?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Зөвшөөрөх" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Зөвшөөрсөнд баяраллаа" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Манай сайтанд цаг гаргаж хэлэлцүүлэгийг сонирхолтой болгосонд баяраллаа." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Үнэхээр энэ сэтгэдэлийг" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Үнхээр энэ сэтгэдэлийг устгах уу?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Устгах" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Устгасанд баяраллаа" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Энэ сэтгэгдэлийг тэмлэглэ" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Үнэхээр энэ сэтгэдэлийг тэмдэглэх үү?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Тэмдэг" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Тэмдэглсэнд баяраллаа" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Бичлэг" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Урьдчилан харах" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Сэтгэгдэл үлдээсэнд баяраллаа" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Сэтгэгдэл үлдээсэн таньд баяраллаа" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Өөрийн сэтгэгдэлээ урьдчилан харах" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Доорх алдааг засна у" -msgstr[1] "Доорх алдаануудыг засна у" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Сэтгэгдэл оруулах" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "эсвэл засвар хийх" diff --git a/django/contrib/comments/locale/my/LC_MESSAGES/django.mo b/django/contrib/comments/locale/my/LC_MESSAGES/django.mo deleted file mode 100644 index b5b20d4e20d..00000000000 Binary files a/django/contrib/comments/locale/my/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/my/LC_MESSAGES/django.po b/django/contrib/comments/locale/my/LC_MESSAGES/django.po deleted file mode 100644 index 07dbf344687..00000000000 --- a/django/contrib/comments/locale/my/LC_MESSAGES/django.po +++ /dev/null @@ -1,285 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Translators: -# Yhal Htet Aung , 2013. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2013-03-17 06:50+0000\n" -"Last-Translator: Yhal Htet Aung \n" -"Language-Team: Burmese (http://www.transifex.com/projects/p/django/language/" -"my/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "နာမည်" - -#: forms.py:97 -msgid "Email address" -msgstr "အီးမေးလ်လိပ်စာ" - -#: forms.py:98 -msgid "URL" -msgstr "ယူအာအယ်" - -#: forms.py:99 -msgid "Comment" -msgstr "မှတ်ချက်" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "နှင့်" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "အကြောင်းအရာအမျိုးအစား" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "အိုင်ပီလိပ်စာ" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "အလံ" - -#: models.py:180 -msgid "date" -msgstr "ရက်စွဲ" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "ဖယ်ရှား" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "အလံ" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo b/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo deleted file mode 100644 index 2e4002c419b..00000000000 Binary files a/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/nb/LC_MESSAGES/django.po b/django/contrib/comments/locale/nb/LC_MESSAGES/django.po deleted file mode 100644 index fd8247277a9..00000000000 --- a/django/contrib/comments/locale/nb/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# , 2012. -# , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-03-12 21:43+0000\n" -"Last-Translator: Sigurd Gartmann \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/django/" -"language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Innhold" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "flagget" -msgstr[1] "flagget" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Flagg valgte kommentarer" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "godkjent" -msgstr[1] "godkjent" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Tillat valgte kommentarer" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "fjernet" -msgstr[1] "fjernet" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Fjern valgte kommentarer" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 kommentar ble %(action)s." -msgstr[1] "%(count)s kommentarer ble %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s kommentarer" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Siste kommentarer fra %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Navn" - -#: forms.py:97 -msgid "Email address" -msgstr "E-postadresse" - -#: forms.py:98 -msgid "URL" -msgstr "Nettadresse" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pass munnen din! Ordet %s er ikke tillatt her." -msgstr[1] "Pass munnen din! Ordene %s er ikke tillatt her." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "og" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Hvis du oppgir noe i dette feltet, vil kommentaren bli behandlet som spam" - -#: models.py:23 -msgid "content type" -msgstr "innholdstype" - -#: models.py:25 -msgid "object ID" -msgstr "objekt-ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "bruker" - -#: models.py:55 -msgid "user's name" -msgstr "brukerens navn" - -#: models.py:56 -msgid "user's email address" -msgstr "brukerens e-postadresse" - -#: models.py:57 -msgid "user's URL" -msgstr "brukerens nettadresse" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dato/tid for innsendelse" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adresse" - -#: models.py:64 -msgid "is public" -msgstr "er tilgjengelig for alle" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Fjern avhuking av denne boksen for å fjerne kommentaren fra siden." - -#: models.py:67 -msgid "is removed" -msgstr "er fjernet" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Huk av denne hvis kommentaren er upassende. Meldingen «Denne kommentaren har " -"blitt fjernet» vil bli vist i stedet." - -#: models.py:80 -msgid "comments" -msgstr "kommentarer" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Denne kommentaren er skrevet av en innlogget bruker og navnet kan derfor " -"ikke endres." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Denne kommentaren er skrevet av en innlogget bruker og e-postadressen kan " -"derfor ikke endres." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Skrevet av %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flagg" - -#: models.py:180 -msgid "date" -msgstr "dato" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentarflagg" - -#: models.py:191 -msgid "comment flags" -msgstr "kommentarflagg" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Tillat en kommentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Gjør denne kommentaren offentlig?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Godkjenn" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Takk for godkjennelse" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Takk for at du tok deg tid til å forbedre kvaliteten på diskusjonen på siden " -"vår" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Fjern en kommentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Fjern denne kommentaren?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Fjern" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Takk for fjerningen" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flagg denne kommentaren" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Flagg denne kommentaren?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flagg" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Takk for flagging" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publiser" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Forhåndsvisning" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Takk for kommentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Takk for din kommentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Forhåndsvis kommentaren din" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Vennligst korriger feilen under" -msgstr[1] "Vennligst korriger feilene under" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publiser din kommentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "eller gjør endringer" diff --git a/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo deleted file mode 100644 index d2418831f66..00000000000 Binary files a/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ne/LC_MESSAGES/django.po b/django/contrib/comments/locale/ne/LC_MESSAGES/django.po deleted file mode 100644 index ee04a2de57c..00000000000 --- a/django/contrib/comments/locale/ne/LC_MESSAGES/django.po +++ /dev/null @@ -1,292 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Paras Nath Chaudhary , 2012. -# Sagar Chalise , 2011. -# , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-12-05 19:55+0000\n" -"Last-Translator: Paras Nath Chaudhary \n" -"Language-Team: Nepali (http://www.transifex.com/projects/p/django/language/" -"ne/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "विषय" - -#: admin.py:28 -msgid "Metadata" -msgstr "मेटाडाटा" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "स्वीकृत" -msgstr[1] "स्वीकृत" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "चुनिएको प्रतिकृया स्वीकार गर्नुहोस ।" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "हटाइएको छ" -msgstr[1] "हटाइएको छ" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "चुनिएको प्रतिकृया हटाउनुहोस ।" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s प्रतिकृया" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)sका ताजा प्रतिकृया" - -#: forms.py:96 -msgid "Name" -msgstr "नाम" - -#: forms.py:97 -msgid "Email address" -msgstr "ई-मेल ठेगाना" - -#: forms.py:98 -msgid "URL" -msgstr "" - -#: forms.py:99 -msgid "Comment" -msgstr "प्रतिकृया" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "र" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "याहा केहि पनि नलेख्नु होला । याहा केहि लेखियेमा तेसला" - -#: models.py:23 -msgid "content type" -msgstr "विषयको ढाँचा" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "प्रयोगकर्ता " - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "प्रतिकृया" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "हटाइएको छ" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "प्रतिकृया" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "मिति" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "प्रतिकृया स्वीकार गर्नुहोस" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "स्वीकार गर्नुहोस" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "स्वीकार गरेकोमा धन्यवाद" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "प्रतिकृया हटाउनुहोस" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "के साच्चै प्रतिकृया हटाउनुहुन्छ ?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "हटाउनुहोस" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "हटाएकोमा धन्यवाद" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "लेख " - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "पूर्व समीक्षा" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "प्रतिकृयाको लागि धन्यवाद" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "तपाइको प्रतिकृयाको लागि धन्यवाद" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "तपाइको प्रतिकृयाको पूर्व समीक्षा" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "कृपया तलका त्रुटि सच्याउनुहोस ।" -msgstr[1] "कृपया तलका त्रुटि सच्याउनुहोस ।" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "तपाइको प्रतिकृयाको पठाउनुहोस" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "अथवा फेरबदल गर्नुहोस" diff --git a/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo b/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo deleted file mode 100644 index 8060a7b5faf..00000000000 Binary files a/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/nl/LC_MESSAGES/django.po b/django/contrib/comments/locale/nl/LC_MESSAGES/django.po deleted file mode 100644 index a5d6b9f186f..00000000000 --- a/django/contrib/comments/locale/nl/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# , 2011. -# Jannis Leidel , 2011. -# Tino de Bruijn , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: go2people \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/django/language/" -"nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Inhoud" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "gemarkeerd" -msgstr[1] "gemarkeerd" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Markeer geselecteerde commentaren" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "goedgekeurd" -msgstr[1] "goedgekeurd" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Keur geselecteerde commentaren goed" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "verwijderd" -msgstr[1] "verwijderd" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Verwijder geselecteerde commentaren" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] " %(count)s opmerking werd met succes %(action)s ." -msgstr[1] " %(count)s opmerkingen werden met succes %(action)s ." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s opmerkingen" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Laatste opmerkingen op %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Naam" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mailadres" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Opmerking" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pas op uw taalgebruik! Gebruik van %s niet toegestaan." -msgstr[1] "" -"Pas op uw taalgebruik! Gebruik van de woorden %s is niet toegestaan." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "en" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Indien u hier iets invult dan wordt uw opmerking behandeld als spam" - -#: models.py:23 -msgid "content type" -msgstr "inhoudstype" - -#: models.py:25 -msgid "object ID" -msgstr "object-ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "gebruiker" - -#: models.py:55 -msgid "user's name" -msgstr "naam gebruiker" - -#: models.py:56 -msgid "user's email address" -msgstr "e-mailadres gebruiker" - -#: models.py:57 -msgid "user's URL" -msgstr "URL gebruiker" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "opmerking" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum/tijd toegevoegd" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adres" - -#: models.py:64 -msgid "is public" -msgstr "is openbaar" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Vink dit vakje uit zodat de opmerking niet meer zichtbaar is op de site." - -#: models.py:67 -msgid "is removed" -msgstr "is verwijderd" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Vink dit vak aan indien de opmerking niet gepast is. Een \"Dit commentaar is " -"verwijderd\" bericht wordt dan getoond." - -#: models.py:80 -msgid "comments" -msgstr "opmerkingen" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Deze opmerking is gepost door een ingelogde gebruiker en daardoor is de naam " -"niet aan te passen." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Deze opmerking is gepost door een ingelogde gebruiker en daardoor is het e-" -"mailadres niet aan te passen." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Geplaatst door %(user)s op %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "vlag" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "opmerking vlag" - -#: models.py:191 -msgid "comment flags" -msgstr "opmerking vlaggen" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Een opmerking toestaan" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Weet u zeker dat u deze opmerking openbaar wilt maken?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Goedkeuren" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Bedankt voor het goedkeuren" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Bedankt dat u de tijd heeft genomen om de kwaliteit van de discussie op onze " -"site te verbeteren" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Een opmerking verwijderen" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Weet u zeker dat u deze opmerking wilt verwijderen?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Verwijderen" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Bedankt voor het verwijderen" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Vlag deze opmerking" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Weet u zeker dat u deze opmerking wilt vlaggen?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Vlag" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Bedankt voor het vlaggen" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Bericht" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Voorbeeld" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Bedankt voor uw opmerking" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Bedankt voor uw opmerking" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Toon voorbeeld van uw opmerking" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Herstel de fout hieronder" -msgstr[1] "Herstel de fouten hieronder" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Plaats uw opmerking" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "of maak aanpassingen" diff --git a/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo b/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo deleted file mode 100644 index 8dd02130488..00000000000 Binary files a/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/nn/LC_MESSAGES/django.po b/django/contrib/comments/locale/nn/LC_MESSAGES/django.po deleted file mode 100644 index 4216f04e1a9..00000000000 --- a/django/contrib/comments/locale/nn/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/django/" -"language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Innhald" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "flagga" -msgstr[1] "flagga" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Flagg valde kommentarar" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "Godkjend" -msgstr[1] "Godkjende" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Tillat valde kommentarar" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "er fjerna" -msgstr[1] "er fjerna" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Fjern valdte kommentarar" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "Ein kommentar vart %(action)s." -msgstr[1] "%(count)s kommentarar vart %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s - kommentarar" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Siste kommentarar frå %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Namn" - -#: forms.py:97 -msgid "Email address" -msgstr "E-postadresse" - -#: forms.py:98 -msgid "URL" -msgstr "Nettadresse" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pass munnen din! Ordet %s er ikkje lovleg her." -msgstr[1] "Pass munnen din! Orda %s er ikkje lovlege her." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "og" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Dersom du oppgjev noko i dette feltet, vil kommentaren bli behandla som spam" - -#: models.py:23 -msgid "content type" -msgstr "innhaldstype" - -#: models.py:25 -msgid "object ID" -msgstr "objekt-ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "brukar" - -#: models.py:55 -msgid "user's name" -msgstr "brukaren sitt namn" - -#: models.py:56 -msgid "user's email address" -msgstr "brukaren si e-postadresse" - -#: models.py:57 -msgid "user's URL" -msgstr "brukaren si nettadresse" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dato/tid for innsending" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adresse" - -#: models.py:64 -msgid "is public" -msgstr "er tilgjengeleg for alle" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Avmerk denne boksen for å fjerne kommentaren frå sida." - -#: models.py:67 -msgid "is removed" -msgstr "er fjerna" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Kryss av denne dersom kommentaren er upassande. Meldinga \"Denne kommentaren " -"har blitt fjerna\" vil bli vist i staden." - -#: models.py:80 -msgid "comments" -msgstr "kommentarar" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Denne kommentaren er skriven av ein innlogga brukar og namnnet kan difor " -"ikkje endrast." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Denne kommentaren er skriven av ein innlogga brukar og e-postadressa kan " -"derfor ikkje endrast." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Skrive av %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flagg" - -#: models.py:180 -msgid "date" -msgstr "dato" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentarflagg" - -#: models.py:191 -msgid "comment flags" -msgstr "kommentarflagg" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Tillat ein kommentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Gjere denne kommentaren offentleg?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Godkjenn" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Takk for godkjenning" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Takk for at du tok deg tid til å forbetre kvaliteten på diskusjonen på sida " -"vår" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Fjern ein kommentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Fjerne denne kommentaren?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Fjern" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Takk for fjerninga" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flagg denne kommentaren" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Flagg denne kommentaren?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flagg" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Takk for flagging" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publiser" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Førehandsvising" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Takk for kommentaren" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Takk for kommentaren din" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Førehandsvis kommentaren din" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Korriger feilen under" -msgstr[1] "Korriger feila under" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publiser kommentaren din" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "eller gjer endringar" diff --git a/django/contrib/comments/locale/os/LC_MESSAGES/django.mo b/django/contrib/comments/locale/os/LC_MESSAGES/django.mo deleted file mode 100644 index 790f04b317d..00000000000 Binary files a/django/contrib/comments/locale/os/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/os/LC_MESSAGES/django.po b/django/contrib/comments/locale/os/LC_MESSAGES/django.po deleted file mode 100644 index 18e94c1d7d5..00000000000 --- a/django/contrib/comments/locale/os/LC_MESSAGES/django.po +++ /dev/null @@ -1,290 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2011-01-19 15:42+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Ossetic (http://www.transifex.com/projects/p/django/language/" -"os/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: os\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "Электрон посты адрис" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ӕмӕ" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "архайӕг" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "IP адрис" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Схафын" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo b/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo deleted file mode 100644 index 998f557c75b..00000000000 Binary files a/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/pa/LC_MESSAGES/django.po b/django/contrib/comments/locale/pa/LC_MESSAGES/django.po deleted file mode 100644 index d3a42d37dc0..00000000000 --- a/django/contrib/comments/locale/pa/LC_MESSAGES/django.po +++ /dev/null @@ -1,295 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/django/" -"language/pa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "ਸਮੱਗਰੀ" - -#: admin.py:28 -msgid "Metadata" -msgstr "ਮੇਟਾਡਾਟਾ" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਫਲੈਗ ਕਰੋ" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "ਮਨਜ਼ੂਰ ਹੈ" -msgstr[1] "ਮਨਜ਼ੂਰ ਹਨ" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਮਨਜ਼ੂਰ" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "ਹਟਾਈ" -msgstr[1] "ਹਟਾਈਆਂ" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਹਟਾਓ" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "੧ ਟਿੱਪਣੀ ਠੀਕ ਤਰ੍ਹਾਂ %(action)s ਗਈ।" -msgstr[1] "%(count)s ਟਿੱਪਣੀਆਂ ਠੀਕ ਤਰ੍ਹਾਂ %(action)s ਗਈਆਂ।" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s ਟਿੱਪਣੀਆਂ" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s ਉੱਤੇ ਤਾਜ਼ਾ ਟਿੱਪਣੀਆਂ" - -#: forms.py:96 -msgid "Name" -msgstr "ਨਾਂ" - -#: forms.py:97 -msgid "Email address" -msgstr "ਈਮੇਲ ਐਡਰੈੱਸ" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "ਟਿੱਪਣੀ" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ਅਤੇ" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "ਸਮੱਗਰੀ ਕਿਸਮ" - -#: models.py:25 -msgid "object ID" -msgstr "ਆਬਜੈਕਟ ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "ਯੂਜ਼ਰ" - -#: models.py:55 -msgid "user's name" -msgstr "ਯੂਜ਼ਰ ਦਾ ਨਾਂ" - -#: models.py:56 -msgid "user's email address" -msgstr "ਯੂਜ਼ਰ ਦਾ ਈਮੇਲ ਐਡਰੈੱਸ" - -#: models.py:57 -msgid "user's URL" -msgstr "ਯੂਜ਼ਰ ਦਾ URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "ਟਿੱਪਣੀ" - -#: models.py:62 -msgid "date/time submitted" -msgstr "ਭੇਜਣ ਮਿਤੀ/ਸਮਾਂ" - -#: models.py:63 -msgid "IP address" -msgstr "IP ਐਡਰੈੱਸ" - -#: models.py:64 -msgid "is public" -msgstr "ਪਬਲਿਕ ਹੈ" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "ਹਟਾਇਆ ਗਿਆ" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "ਟਿੱਪਣੀਆਂ" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s ਵਲੋਂ %(date)s ਨੂੰ ਪੋਸਟ ਕੀਤੀ\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "ਫਲੈਗ" - -#: models.py:180 -msgid "date" -msgstr "ਮਿਤੀ" - -#: models.py:190 -msgid "comment flag" -msgstr "ਟਿੱਪਣੀ ਫਲੈਗ" - -#: models.py:191 -msgid "comment flags" -msgstr "ਟਿੱਪਣੀ ਫਲੈਗ" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "ਟਿੱਪਣੀ ਮਨਜ਼ੂਰ ਕਰੋ" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "ਇਹ ਟਿੱਪਣੀ ਪਬਲਿਕ ਬਣਾਉਣੀ ਹੈ?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "ਮਨਜ਼ੂਰ" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ ਧੰਨਵਾਦ ਜੀ" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "ਟਿੱਪਣੀ ਹਟਾਓ" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "ਇਹ ਟਿੱਪਣੀ ਹਟਾਉਣੀ ਹੈ?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "ਹਟਾਓ" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "ਹਟਾਉਣ ਲਈ ਧੰਨਵਾਦ" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "ਇਹ ਟਿੱਪਣੀ ਲਈ ਫਲੈਗ" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "ਇਹ ਟਿੱਪਣੀ ਲਈ ਫਲੈਗ ਲਾਉਣਾ ਹੈ?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "ਫਲੈਗ" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "ਫਲੈਗ ਲਗਾਉਣ ਲਈ ਧੰਨਵਾਦ" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "ਪੋਸਟ ਕਰੋ" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "ਝਲਕ" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "ਟਿੱਪਣੀ ਦੇਣ ਲਈ ਧੰਨਵਾਦ" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "ਤੁਹਾਡੀ ਟਿੱਪਣੀ ਲਈ ਤੁਹਾਡਾ ਧੰਨਵਾਦ" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "ਆਪਣੀ ਟਿੱਪਣੀ ਦੀ ਝਲਕ ਵੇਖੋ" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "ਹੇਠਾਂ ਦਿੱਤੀ ਗਲਤੀ ਠੀਕ ਕਰੋ ਜੀ।" -msgstr[1] "ਹੇਠ ਦਿੱਤੀਆਂ ਗਲਤੀਆਂ ਠੀਕ ਕਰੋ ਜੀ।" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "ਆਪਣੀ ਟਿੱਪਣੀ ਪੋਸਟ ਕਰੋ" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ਜਾਂ ਬਦਲਾਅ ਕਰੋ" diff --git a/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo b/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index b8894b6d216..00000000000 Binary files a/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/pl/LC_MESSAGES/django.po b/django/contrib/comments/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index f510f485fb6..00000000000 --- a/django/contrib/comments/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,311 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Polish (http://www.transifex.com/projects/p/django/language/" -"pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Zawartość" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadane" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "oflagowany" -msgstr[1] "oflagowane" -msgstr[2] "oflagowanych" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Oflaguj wybrane komentarze" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "zaakceptowany" -msgstr[1] "zaakceptowane" -msgstr[2] "zaakceptowanych" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Zaakceptuj wybrane komentarze" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "usunięty" -msgstr[1] "usunięte" -msgstr[2] "usuniętych" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Usuń wybrane komentarze" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 komentarz został %(action)s" -msgstr[1] "%(count)s komentarze zostały %(action)s" -msgstr[2] "%(count)s komentarzy zostało %(action)s" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "komentarze na %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Ostatnie komentarze na %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nazwa" - -#: forms.py:97 -msgid "Email address" -msgstr "Adres e-mail" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentarz" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Nie wolno przeklinać! Słowo %s nie jest dozwolone." -msgstr[1] "Nie wolno przeklinać! Słowa %s nie są dozwolone." -msgstr[2] "Nie wolno przeklinać! Słowa %s nie są dozwolone." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "i" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Jeżeli wpiszesz cokolwiek w to pole, Twój komentarz zostanie uznany za spam" - -#: models.py:23 -msgid "content type" -msgstr "typ zawartości" - -#: models.py:25 -msgid "object ID" -msgstr "ID obiektu" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "użytkownik" - -#: models.py:55 -msgid "user's name" -msgstr "nazwa użytkownika" - -#: models.py:56 -msgid "user's email address" -msgstr "adres e-mail użytkownika" - -#: models.py:57 -msgid "user's URL" -msgstr "URL użytkownika" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentarz" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/czas dodania" - -#: models.py:63 -msgid "IP address" -msgstr "Adres IP" - -#: models.py:64 -msgid "is public" -msgstr "publicznie dostępny" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Odznacz to pole, aby komentarz nie był wyświetlany w serwisie." - -#: models.py:67 -msgid "is removed" -msgstr "usunięty" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Zaznacz to pole jeżeli komentarz jest nieodpowiedni. Wyświetlony zostanie " -"tekst \"Ten komentarz został usunięty\"." - -#: models.py:80 -msgid "comments" -msgstr "komentarze" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ten komentarz został dodany przez zalogowanego użytkownika i dlatego nazwa " -"jest tylko do odczytu." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ten komentarz został dodany przez zalogowanego użytkownika i dlatego adres e-" -"mail jest tylko do odczytu." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Dodane przez %(user)s dnia %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flaga" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "flaga dla komentarza" - -#: models.py:191 -msgid "comment flags" -msgstr "flagi dla komentarzy" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Zaakceptuj komentarz" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Czy ten komentarz na pewno ma być publiczny?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Zaakceptuj" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Dziękujemy za zaakceptowanie" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Dziękujemy za poświęcenie czasu na podniesienie jakości dyskusji w naszym " -"serwisie" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Usuń komentarz" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Czy na pewno usunąć ten komentarz?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Usuń" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Dziękujemy za usunięcie" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Oflaguj ten komentarz" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Czy na pewno oflagować ten komentarz?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flaga" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Dziękujemy za oflagowanie" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Zapisz" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Podgląd" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Dziękujemy za dodanie komentarza" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Dziękujemy za komentarz" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Podgląd komentarza" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Proszę popraw poniższy błąd." -msgstr[1] "Proszę popraw poniższe błędy." -msgstr[2] "Proszę popraw poniższe błędy." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Zapisz swój komentarz" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "lub wprowadź jakieś zmiany" diff --git a/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo b/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index bb7657d7abe..00000000000 Binary files a/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/pt/LC_MESSAGES/django.po b/django/contrib/comments/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index 110978943c5..00000000000 --- a/django/contrib/comments/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Nuno Mariz , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Nuno Mariz \n" -"Language-Team: Portuguese (http://www.transifex.com/projects/p/django/" -"language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Conteúdo" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcado" -msgstr[1] "marcados" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar os comentários selecionados" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprovado" -msgstr[1] "aprovados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprovar os comentários selecionados" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "removido" -msgstr[1] "removidos" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Remover os comentários selecionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 comentário foi %(action)s com sucesso." -msgstr[1] "%(count)s comentários foram %(action)s com sucesso." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "comentários em %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentários em %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nome" - -#: forms.py:97 -msgid "Email address" -msgstr "Endereço de e-mail" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentário" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Atenção à linguagem! A palavra %s não é permitida aqui." -msgstr[1] "Atenção à linguagem! As palavras %s não são permitidas aqui." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "e" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Se introduzir alguma coisa neste campo o seu comentário irá ser tratado como " -"spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de conteúdo" - -#: models.py:25 -msgid "object ID" -msgstr "ID do objeto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "utilizador" - -#: models.py:55 -msgid "user's name" -msgstr "o nome do utilizador" - -#: models.py:56 -msgid "user's email address" -msgstr "endereço de e-mail do utilizador" - -#: models.py:57 -msgid "user's URL" -msgstr "URL do utilizador" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentário" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hora de submissão" - -#: models.py:63 -msgid "IP address" -msgstr "Endereço IP" - -#: models.py:64 -msgid "is public" -msgstr "é público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Não selecione esta caixa para que o comentário desapareça do site." - -#: models.py:67 -msgid "is removed" -msgstr "foi removido" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Selecione esta opção se o comentário não é apropriado. Uma mensagem \"Este " -"comentário foi removido\" será mostrada no seu lugar." - -#: models.py:80 -msgid "comments" -msgstr "comentários" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentário foi colocado por um utilizador autenticado, portanto o nome " -"é apenas de leitura." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentário foi colocado por um utilizador autenticado, portanto o e-" -"mail é apenas de leitura." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Colocado pelo utilizador %(user)s em %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marcar" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "marca de comentário" - -#: models.py:191 -msgid "comment flags" -msgstr "marcas de comentários" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprovar um comentário" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Tem a certeza que deseja tornar este comentário público?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprovar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Obrigado pela aprovação" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Obrigado por dedicar o seu tempo para melhorar a qualidade de discussão no " -"nosso site" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Remover um comentário" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Tem a certeza que deseja remover este comentário?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Remover" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Obrigado pela remoção" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar este comentário" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Tem a certeza que deseja marcar este comentário?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Obrigado por marcar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publicar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Prever" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Obrigado por comentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Obrigado pelo seu comentário" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Pré-visualizar comentário" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor corrija o seguinte erro." -msgstr[1] "Por favor corrija os seguintes erros." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publique o seu comentário" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ou faça modificações" diff --git a/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo b/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index 581735cfabd..00000000000 Binary files a/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po b/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po deleted file mode 100644 index 907b1e2350a..00000000000 --- a/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po +++ /dev/null @@ -1,307 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Portuguese (Brazil) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Conteúdo" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meta-dados" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcado" -msgstr[1] "marcados" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marcar comentários selecionados" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprovado" -msgstr[1] "aprovados" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprovar comentários selecionados" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "removido" -msgstr[1] "removidos" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Remover comentários selecionados" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 comentários foi %(action)s com sucesso." -msgstr[1] "%(count)s comentários foram %(action)s com sucesso." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Comentários de %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Últimos comentários em %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nome" - -#: forms.py:97 -msgid "Email address" -msgstr "Endereço de e-mail" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentário" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Olha sua boca! A palavra %s não é permitida aqui." -msgstr[1] "Olha sua boca! As palavras %s não são permitidas aqui." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "e" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Se você inserir qualquer coisa neste campo, seu comentário será tratado como " -"spam" - -#: models.py:23 -msgid "content type" -msgstr "tipo de conteúdo" - -#: models.py:25 -msgid "object ID" -msgstr "id do objeto" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "usuário" - -#: models.py:55 -msgid "user's name" -msgstr "nome do usuário" - -#: models.py:56 -msgid "user's email address" -msgstr "endereço de e-mail do usuário" - -#: models.py:57 -msgid "user's URL" -msgstr "URL do usuário" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentário" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/hora de envio" - -#: models.py:63 -msgid "IP address" -msgstr "Endereço IP" - -#: models.py:64 -msgid "is public" -msgstr "é público" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Desmarque esta caixa para fazer o comentário desaparecer efetivamente deste " -"site." - -#: models.py:67 -msgid "is removed" -msgstr "foi removido" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Selecione esta opção se o comentário é inapropriado. A mensagem \"Este " -"comentário foi removido\" será mostrada no lugar." - -#: models.py:80 -msgid "comments" -msgstr "comentários" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Este comentário foi feito por um usuário autenticado e portanto seu nome é " -"apenas para leitura." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Este comentário foi feito por um usuário autenticado e portanto seu e-mail é " -"apenas para leitura." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Enviado por %(user)s em %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marcar" - -#: models.py:180 -msgid "date" -msgstr "data" - -#: models.py:190 -msgid "comment flag" -msgstr "marca de comentário" - -#: models.py:191 -msgid "comment flags" -msgstr "marcas de comentários" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprovar um comentário" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Realmente tornar este comentário público?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprovar" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Obrigado pela aprovação" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Obrigado por dedicar tempo para melhorar a qualidade de discussão de nosso " -"site." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Remover um comentário" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Realmente remover este comentário?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Remover" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Obrigado pela remoção" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcar um comentário" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Realmente marcar este comentário?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marcar" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Obrigado pela marcação" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publicar" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Visualizar" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Obrigado por comentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Obrigado pelo seu comentário" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Visualizar seu comentário" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Por favor, corrija o erro abaixo." -msgstr[1] "Por favor, corrija os erros abaixo." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publique seu comentário" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ou faça modificações" diff --git a/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo deleted file mode 100644 index 709b61ec693..00000000000 Binary files a/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ro/LC_MESSAGES/django.po b/django/contrib/comments/locale/ro/LC_MESSAGES/django.po deleted file mode 100644 index 53c49c6f5a4..00000000000 --- a/django/contrib/comments/locale/ro/LC_MESSAGES/django.po +++ /dev/null @@ -1,315 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Daniel Ursache-Dogariu , 2011. -# Denis Darii , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Daniel Ursache-Dogariu \n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/django/language/" -"ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#: admin.py:25 -msgid "Content" -msgstr "Conţinut" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadate" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "marcat" -msgstr[1] "marcate" -msgstr[2] "marcate" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Marchează comentariile selectate" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "aprobat" -msgstr[1] "aprobate" -msgstr[2] "aprobate" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Aprobă comentariile selectate" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "eliminat" -msgstr[1] "eliminate" -msgstr[2] "eliminate" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Elimină comentariile selectate" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s comentariu a fost %(action)s cu succes." -msgstr[1] "%(count)s comentarii au fost %(action)s cu succes." -msgstr[2] "%(count)s de comentarii au fost %(action)s cu succes." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Comentariile de la %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Ultimele comentarii la %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Nume" - -#: forms.py:97 -msgid "Email address" -msgstr "Adresă e-mail" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Comentariu" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Atenție la limbajul folosit! Cuvântul %s nu este permis aici." -msgstr[1] "Atenție la limbajul folosit! Cuvintele %s nu sunt permise aici." -msgstr[2] "Atenție la limbajul folosit! Cuvintele %s nu sunt permise aici." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "și" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Dacă introduceți ceva în acest câmp, comentariul dumneavoastră va fi " -"considerat ca spam" - -#: models.py:23 -msgid "content type" -msgstr "tip conţinut" - -#: models.py:25 -msgid "object ID" -msgstr "ID obiect" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "utilizator" - -#: models.py:55 -msgid "user's name" -msgstr "numele utilizatorului" - -#: models.py:56 -msgid "user's email address" -msgstr "adresa e-mail a utilizatorului" - -#: models.py:57 -msgid "user's URL" -msgstr "URL-ul utilizatorului" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "comentariu" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/ora creării" - -#: models.py:63 -msgid "IP address" -msgstr "adresă ip" - -#: models.py:64 -msgid "is public" -msgstr "este public" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Debifaţi această casetă pentru a face comentariul să dispară de pe site." - -#: models.py:67 -msgid "is removed" -msgstr "este șters" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Bifați această casuța dacă acest comentariu nu este adecvat. Un mesaj de " -"tipul \"Acest comentariu a fost șters\" va fi afișat în schimb." - -#: models.py:80 -msgid "comments" -msgstr "comentarii" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Acest comentariu a fost scris de către un utilizator autentificat, astfel " -"numele poate fi doar citit." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Acest comentariu a fost scris de către un utilizator autentificat, astfel " -"adresa e-mail poate fi doar citită." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Scris de %(user)s la %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "marcaj" - -#: models.py:180 -msgid "date" -msgstr "dată" - -#: models.py:190 -msgid "comment flag" -msgstr "marcaj comentariu" - -#: models.py:191 -msgid "comment flags" -msgstr "marcaje comentarii" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Aprobă un comentariu" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Chiar doriți să faceți public acest comentariu?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Aprobă" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Mulțumiri pentru aprobare" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Vă mulţumim pentru a timpul acordat spre a îmbunătăți calitatea discuțiilor " -"de pe situl nostru" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Elimină un comentariu" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Chiar doriți să eliminați acest comentariu?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Elimină" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Mulțumiri pentru eliminare" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Marcați acest comentariu" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Chiar doriți să marcați acest comentariu?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Marchează" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Mulțumiri pentru marcare" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Publică" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Previzualizează" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Mulțumiri pentru comentariu" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Vă mulțumim pentru comentariu" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Previzualizați-vă comentariul" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Corectați eroarea de mai jos" -msgstr[1] "Corectați erorile de mai jos" -msgstr[2] "Corectați erorile de mai jos" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Publicați-vă comentariul" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "sau faceți modificări" diff --git a/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index aba2443455c..00000000000 Binary files a/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ru/LC_MESSAGES/django.po b/django/contrib/comments/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index d962cf53c77..00000000000 --- a/django/contrib/comments/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,315 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Translators: -# Denis Darii , 2011. -# Jannis Leidel , 2011. -# Алексей Борискин , 2013. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2013-02-05 20:10+0000\n" -"Last-Translator: Алексей Борискин \n" -"Language-Team: Russian (http://www.transifex.com/projects/p/django/language/" -"ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\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" - -#: admin.py:25 -msgid "Content" -msgstr "Содержание" - -#: admin.py:28 -msgid "Metadata" -msgstr "Метаданные" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "помечен" -msgstr[1] "помечены" -msgstr[2] "помечены" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Пометить выбранные комментарии" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "одобрен" -msgstr[1] "одобрены" -msgstr[2] "одобрены" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Одобрить выбранные комментарии" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "удален" -msgstr[1] "удалены" -msgstr[2] "удалены" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Удалить выбранные комментарии" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s комментарий был успешно %(action)s." -msgstr[1] "%(count)s комментария были успешно %(action)s." -msgstr[2] "%(count)s комментариев были успешно %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Комментарии %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Последние комментарии на %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Имя" - -#: forms.py:97 -msgid "Email address" -msgstr "Адрес электронной почты" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Комментарий" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -"Следите за своими словами! Употребление слова \"%s\" здесь запрещено." -msgstr[1] "" -"Следите за своими словами! Употребление слов \"%s\" здесь запрещено." -msgstr[2] "" -"Следите за своими словами! Употребление слов \"%s\" здесь запрещено." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "и" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Если вы что-то введете в это поле, то ваш комментарий будет помечен как спам" - -#: models.py:23 -msgid "content type" -msgstr "тип содержимого" - -#: models.py:25 -msgid "object ID" -msgstr "идентификатор объекта" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "пользователь" - -#: models.py:55 -msgid "user's name" -msgstr "имя пользователя" - -#: models.py:56 -msgid "user's email address" -msgstr "адрес электронной почты пользователя" - -#: models.py:57 -msgid "user's URL" -msgstr "URL пользователя" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "комментарий" - -#: models.py:62 -msgid "date/time submitted" -msgstr "дата и время добавления" - -#: models.py:63 -msgid "IP address" -msgstr "IP-адрес" - -#: models.py:64 -msgid "is public" -msgstr "публичный" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Снимите выделение, чтобы убрать комментарий с сайта." - -#: models.py:67 -msgid "is removed" -msgstr "удалён" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Отметьте, если комментарий нежелателен. Взамен будет показано сообщение " -"\"Этот комментарий был удален\"." - -#: models.py:80 -msgid "comments" -msgstr "Комментарии" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Комментарий был добавлен зарегистрированным пользователем, поэтому имя " -"пользователя доступно только для чтения." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Комментарий был добавлен зарегистрированным пользователем, поэтому адрес " -"электронной почты доступен только для чтения." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Добавил %(user)s %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "отметка" - -#: models.py:180 -msgid "date" -msgstr "дата" - -#: models.py:190 -msgid "comment flag" -msgstr "отметка комментария" - -#: models.py:191 -msgid "comment flags" -msgstr "отметки комментариев" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Одобрить комментарий" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Вы уверены, что хотите опубликовать этот комментарий?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Одобрить" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Спасибо, что одобрили комментарий" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Спасибо, что заботитесь о качестве общения на нашем сайте" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Удалить комментарий" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Вы уверены, что хотите удалить этот комментарий?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Удалить" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Спасибо за удаление" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Отметить этот комментарий" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Вы уверены, что хотите отметить этот комментарий?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Отметить" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Спасибо" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Опубликовать" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Предпросмотр" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Спасибо за комментарий" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Спасибо за ваш комментарий" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Предпросмотр вашего комментария" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Пожалуйста, исправьте ошибку ниже" -msgstr[1] "Пожалуйста, исправьте ошибки ниже" -msgstr[2] "Пожалуйста, исправьте ошибки ниже" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Опубликуйте ваш комментарий" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "или внесите изменения" diff --git a/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo deleted file mode 100644 index a505d1a2cde..00000000000 Binary files a/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sk/LC_MESSAGES/django.po b/django/contrib/comments/locale/sk/LC_MESSAGES/django.po deleted file mode 100644 index 9308793f742..00000000000 --- a/django/contrib/comments/locale/sk/LC_MESSAGES/django.po +++ /dev/null @@ -1,310 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/django/language/" -"sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Obsah" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metaúdaje" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "označený" -msgstr[1] "označené" -msgstr[2] "označených" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označiť vybraný komentár" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "schválený" -msgstr[1] "schválené" -msgstr[2] "schválených" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Schváliť vybraný komentár" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "odstránený" -msgstr[1] "odstránené" -msgstr[2] "odstránených" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Odstrániť vybrané komentáre" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 komentár bol úspešne %(action)s." -msgstr[1] "%(count)s komentáre boli úspešne %(action)s." -msgstr[2] "%(count)s komentárov bolo úspešne %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s komentáre" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Najnovšie komentáre na %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Meno" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mail adresa" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentár" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Vyjadrujte sa slušne! Slovo %s tu nie je dovolené používať." -msgstr[1] "Vyjadrujte sa slušne! Slová %s tu nie je dovolené používať." -msgstr[2] "Vyjadrujte sa slušne! Slová %s tu nie je dovolené používať." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "a" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Ak ste do tohoto poľa čokoľvek zadali, váš komentár bude považovaný za spam" - -#: models.py:23 -msgid "content type" -msgstr "typ obsahu" - -#: models.py:25 -msgid "object ID" -msgstr "identifikátor objektu" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "používateľ" - -#: models.py:55 -msgid "user's name" -msgstr "meno používateľa" - -#: models.py:56 -msgid "user's email address" -msgstr "e-mail adresa používateľa" - -#: models.py:57 -msgid "user's URL" -msgstr "URL používateľa" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentár" - -#: models.py:62 -msgid "date/time submitted" -msgstr "dátum a čas odoslania" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresa" - -#: models.py:64 -msgid "is public" -msgstr "je verejný" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Ak chcete, aby komentár zmizol zo stránky, zrušte zaškrtnutie tohoto políčka." - -#: models.py:67 -msgid "is removed" -msgstr "je odstránený" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Zaškrtnite toto pole, ak je komentár nevhodný. Namiesto neho sa zobrazí " -"správa \"Tento komenár bol odstránený\"." - -#: models.py:80 -msgid "comments" -msgstr "komentáre" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Tento komentár je od autentifikovaného používateľa a preto je jeho meno len " -"na čítanie." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Tento komentár je od autentifikovaného používateľa a preto je jeho e-mail " -"len na čítanie." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Pridaný užívateľom %(user)s dňa %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "príznak" - -#: models.py:180 -msgid "date" -msgstr "dátum" - -#: models.py:190 -msgid "comment flag" -msgstr "komentárový príznak" - -#: models.py:191 -msgid "comment flags" -msgstr "komentárové príznaky" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Povoliť komentár" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Skutočne chcete zverejniť tento komentár?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Povoliť" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Ďakujeme za povolenie" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Ďakujeme za čas, ktorý ste venovali zvýšniu kvality diskusie na našej stránke" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Zmazať komentár" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Naozaj chcete zmazať tento komentár?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Odstrániť" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Ďakujeme za odstránenie" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označiť tento komentár" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Naozaj chcete označiť tento komentár?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Príznak" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Ďakujeme za označenie" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Poslať" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Náhľad" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Vďaka za komentár" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Ďakujeme za váš komentár" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Náhľad komentára" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Opravte, prosím, chybu uvedenú nižšie" -msgstr[1] "Opravte, prosím, chyby uvedené nižšie" -msgstr[2] "Opravte, prosím, chyby uvedené nižšie" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Poslať váš komentár" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "alebo urobiť zmeny" diff --git a/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo deleted file mode 100644 index 8fc4cbadc1c..00000000000 Binary files a/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sl/LC_MESSAGES/django.po b/django/contrib/comments/locale/sl/LC_MESSAGES/django.po deleted file mode 100644 index 7299673b7c6..00000000000 --- a/django/contrib/comments/locale/sl/LC_MESSAGES/django.po +++ /dev/null @@ -1,317 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-10-31 20:17+0000\n" -"Last-Translator: mateju <>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/django/" -"language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Vsebina" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metapodatki" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "označenih" -msgstr[1] "označen" -msgstr[2] "označena" -msgstr[3] "označeni" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označi izbrane komentarje" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "odobrenih" -msgstr[1] "odobren" -msgstr[2] "odobrena" -msgstr[3] "odobreni" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Odobri izbrane opokomentarje" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "odstranjenih" -msgstr[1] "odstranjen" -msgstr[2] "odstranjena" -msgstr[3] "odstranjeni" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Odstrani izbrane komentarje" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentarev je uspešno %(action)s." -msgstr[1] "%(count)s komentar je uspešno %(action)s." -msgstr[2] "%(count)s komentarja sta uspešno %(action)s." -msgstr[3] "%(count)s komentarji so uspešno %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Komentarji %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Zadnji komentarji na %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ime" - -#: forms.py:97 -msgid "Email address" -msgstr "Elektronski naslov" - -#: forms.py:98 -msgid "URL" -msgstr "Naslov URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pazite na jezik! Besede %s tu niso dovoljene." -msgstr[1] "Pazite na jezik! Beseda %s tu ni dovoljena." -msgstr[2] "Pazite na jezik! Besedi %s tu nista dovoljeni." -msgstr[3] "Pazite na jezik! Besede %s tu niso dovoljene." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "in" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Če v to polje vnesete kakršnokoli besedilo, bo vaš komentar označen kot " -"neželen komentar." - -#: models.py:23 -msgid "content type" -msgstr "vrsta vsebine" - -#: models.py:25 -msgid "object ID" -msgstr "ID predmeta" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "uporabnik" - -#: models.py:55 -msgid "user's name" -msgstr "ime uporabnika" - -#: models.py:56 -msgid "user's email address" -msgstr "elektronski naslov uporabnika" - -#: models.py:57 -msgid "user's URL" -msgstr "naslov URL uporabnika" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum in čas objave" - -#: models.py:63 -msgid "IP address" -msgstr "naslov IP" - -#: models.py:64 -msgid "is public" -msgstr "je javno" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Odkljukajte izbor in komentar bo izginil s strani." - -#: models.py:67 -msgid "is removed" -msgstr "je odstranjen" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Odkljukajte, če je komentarj neprimeren. Namesto komentarja bo prikazano " -"obvestilo \"Komentar je bil odstranjen\"." - -#: models.py:80 -msgid "comments" -msgstr "komentarji" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Komentar je objavil prijavljen uporabnik, zato je ime na voljo le za branje." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Komentar je objavil prijavljen uporabnik, zato je elektronski naslov na " -"voljo le za branje." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Objavljeno z računa %(user)s ob %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "označi" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "oznaka komentarja" - -#: models.py:191 -msgid "comment flags" -msgstr "oznake komentarja" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Odobri komentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Ali ste prepričani, da želite ta komentar objaviti?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Odobri" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Hvala za odobritev" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Hvala, da ste si vzeli čas in pomagali izboljšati kakovost pogovorov na naši " -"strani." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Odstrani komentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Ali res želite odstraniti ta komentar?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Odstrani" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Hvala, ker ste odstranili komentar." - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označi ta komentar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Ali res želite označiti ta komentar?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Označi" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Hvala, ker ste označili komentar" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Objavi" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Predogled" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Hvala za objavljanje komentarjev" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Hvala za vaš komentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Predogled komentarja" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Odpravite naslednje napake" -msgstr[1] "Odpravite naslednjo napako" -msgstr[2] "Odpravite naslednji napaki" -msgstr[3] "Odpravite naslednje napake" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Objavite komentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ali naredite spremembe" diff --git a/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo deleted file mode 100644 index 3fcfb785607..00000000000 Binary files a/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sq/LC_MESSAGES/django.po b/django/contrib/comments/locale/sq/LC_MESSAGES/django.po deleted file mode 100644 index 869b4eec049..00000000000 --- a/django/contrib/comments/locale/sq/LC_MESSAGES/django.po +++ /dev/null @@ -1,306 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Besnik , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Albanian (http://www.transifex.com/projects/p/django/language/" -"sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Lëndë" - -#: admin.py:28 -msgid "Metadata" -msgstr "Tejtëdhëna" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "me shenjë" -msgstr[1] "me shenjë" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Vëru shenjë komenteve të përzgjedhura" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "i miratuar" -msgstr[1] "të miratuar" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Miratoji komentet e përzgjedhura" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "i hequr" -msgstr[1] "të hequr" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Hiqi komentet e përzgjedhur" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 koment %(action)s me sukses." -msgstr[1] "%(count)s komente %(action)s me sukses." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "komente te %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Komentet më të fundit te %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Emër" - -#: forms.py:97 -msgid "Email address" -msgstr "Adresë email" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Koment" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Mbani gojën! Këtu nuk lejohet fjala %s." -msgstr[1] "Mbani gojën! Këtu nuk lejohen fjalët %s." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr " dhe " - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Nëse fusni diçka në këtë fushë komenti juaj do të trajtohet si i pavlerë" - -#: models.py:23 -msgid "content type" -msgstr "lloj lënde" - -#: models.py:25 -msgid "object ID" -msgstr "ID objekti" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "përdorues" - -#: models.py:55 -msgid "user's name" -msgstr "emri i përdoruesit" - -#: models.py:56 -msgid "user's email address" -msgstr "adresa email e përdoruesit" - -#: models.py:57 -msgid "user's URL" -msgstr "URL përdoruesi" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "koment" - -#: models.py:62 -msgid "date/time submitted" -msgstr "data/koha e parashtrimit" - -#: models.py:63 -msgid "IP address" -msgstr "Adresë IP" - -#: models.py:64 -msgid "is public" -msgstr "është publike" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Hiqjani shenjën kësaj kutize që ta bëni komentin të zhduket faktikisht prej " -"site-it." - -#: models.py:67 -msgid "is removed" -msgstr "është hequr" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"I vini shenjë kësaj kutie, nëse komenti është i papërshtatshëm. Në vend të " -"tij do të shfaqet një mesazh \"Ky koment është hequr\"." - -#: models.py:80 -msgid "comments" -msgstr "komente" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ky koment u postua nga një përdorues i mirëfilltësuar, ndaj emri është nën " -"atributin vetëm-lexim." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ky koment u postua nga një përdorues i mirëfilltësuar, ndaj email-i është " -"nën atributin vetëm-lexim." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postuar nga %(user)s më %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "shenjë" - -#: models.py:180 -msgid "date" -msgstr "datë" - -#: models.py:190 -msgid "comment flag" -msgstr "shenjë komenti" - -#: models.py:191 -msgid "comment flags" -msgstr "shenja komenti" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Miratoni një koment" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Të bëhet vërtet publik ky koment?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Miratoje" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Faleminderit që e miratuat" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Faleminderit për kohën e harxhuar për përmirësimin e cilësisë së diskutimit " -"në site-in tonë." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Hiqni një koment" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Të hiqet vërtet ky koment?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Hiqe" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Faleminderit që e hoqët" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "I vini shenjë këtij komenti" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "T'i vihet shenjë vërtet këtij komenti?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Vëri shenjë" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Faleminderit që i vutë shenjë" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Postoje" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Paraparje" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Faleminderit që komentuat" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Faleminderit për komentin tuaj" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Parashiheni komentin tuaj" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Ju lutem, ndreqni gabimin e mëposhtëm" -msgstr[1] "Ju lutem, ndreqni gabimet e mëposhtme" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Postojeni komentin tuaj" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ose bëni ndryshime" diff --git a/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo deleted file mode 100644 index b3540d1dced..00000000000 Binary files a/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sr/LC_MESSAGES/django.po b/django/contrib/comments/locale/sr/LC_MESSAGES/django.po deleted file mode 100644 index 0093bf2788e..00000000000 --- a/django/contrib/comments/locale/sr/LC_MESSAGES/django.po +++ /dev/null @@ -1,310 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Janos Guljas , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/django/language/" -"sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\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" - -#: admin.py:25 -msgid "Content" -msgstr "Садржај" - -#: admin.py:28 -msgid "Metadata" -msgstr "Метаподаци" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "означен" -msgstr[1] "означена" -msgstr[2] "означена" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Означавање изабраних коментара" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "одобрен" -msgstr[1] "одобрена" -msgstr[2] "одобрена" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Одобрење изабраних коментара" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "избрисан" -msgstr[1] "избрисана" -msgstr[2] "избрисана" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Обриши изабране коментаре" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s коментар је успешно %(action)s." -msgstr[1] "%(count)s коментара су успешно %(action)s." -msgstr[2] "%(count)s коментара су успешно %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Коментари на сајту %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Скорији коментари на сајту %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Име" - -#: forms.py:97 -msgid "Email address" -msgstr "Имејл адреса" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Коментари" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Пазите шта пишете! Реч %s није дозвољена овде." -msgstr[1] "Пазите шта пишете! Речи %s нису дозвољене овде." -msgstr[2] "Пазите шта пишете! Речи %s нису дозвољене овде." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "и" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ако ишта унесете у ово поље, Ваш коментар ће се сматрати спамом." - -#: models.py:23 -msgid "content type" -msgstr "тип садржаја" - -#: models.py:25 -msgid "object ID" -msgstr "ID објекта" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "корисник" - -#: models.py:55 -msgid "user's name" -msgstr "корисниково име" - -#: models.py:56 -msgid "user's email address" -msgstr "корисникова имејл адреса" - -#: models.py:57 -msgid "user's URL" -msgstr "корисников URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "коментар" - -#: models.py:62 -msgid "date/time submitted" -msgstr "датум/време постављања" - -#: models.py:63 -msgid "IP address" -msgstr "IP адреса" - -#: models.py:64 -msgid "is public" -msgstr "јавно" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Деселектујте ово поље ако желите да порука фактички нестане са овог сајта." - -#: models.py:67 -msgid "is removed" -msgstr "уклоњен" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Обележите ову кућицу ако је коментар неприкладан. Порука о уклањању ће бити " -"приказана уместо коментара." - -#: models.py:80 -msgid "comments" -msgstr "коментари" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Овај коментар је поставио пријављен корисник и зато је поље са именом " -"закључано." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Овај коментар је поставио пријављен корисник и зато је поље са имејл адресом " -"закључано." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Поставио %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "ознака" - -#: models.py:180 -msgid "date" -msgstr "датум" - -#: models.py:190 -msgid "comment flag" -msgstr "ознака коментара" - -#: models.py:191 -msgid "comment flags" -msgstr "ознаке коментара" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Одобрење коментара" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Да ли заиста желите да означите овај коментар јавним?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Одобри" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Хвала на одобрењу!" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Хвала на учешћу у унапређењу квалитета дискусија на нашем сајту." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Обриши коментар" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Да ли заиста желите да обришете овај коментар?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Обриши" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Хвала што користите наш сајт!" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Означавање коментара" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Да ли заиста желите да означите овај коментар?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Означи" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Хвала што сте означили коментар." - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Постави" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Преглед" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Хвала на коментару" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Хвала што сте оставили свој коментар" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Прегледај коментар" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Исправите наведену грешку" -msgstr[1] "Исправите наведене грешке" -msgstr[2] "Исправите наведене грешке" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Постави коментар" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "или изврши измене" diff --git a/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo deleted file mode 100644 index a3f3f981ac8..00000000000 Binary files a/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po b/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po deleted file mode 100644 index 190e285c3c4..00000000000 --- a/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po +++ /dev/null @@ -1,310 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Janos Guljas , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/django/" -"language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\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" - -#: admin.py:25 -msgid "Content" -msgstr "Sadržaj" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metapodaci" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "označen" -msgstr[1] "označena" -msgstr[2] "označena" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Označavanje izabranih komentara" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "odobren" -msgstr[1] "odobrena" -msgstr[2] "odobrena" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Odobrenje izabranih komentara" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "izbrisan" -msgstr[1] "izbrisana" -msgstr[2] "izbrisana" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Obriši izabrane komentare" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s komentar je uspešno %(action)s." -msgstr[1] "%(count)s komentara su uspešno %(action)s." -msgstr[2] "%(count)s komentara su uspešno %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "Komentari na sajtu %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Skoriji komentari na sajtu %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ime" - -#: forms.py:97 -msgid "Email address" -msgstr "Imejl adresa" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Komentari" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Pazite šta pišete! Reč %s nije dozvoljena ovde." -msgstr[1] "Pazite šta pišete! Reči %s nisu dozvoljene ovde." -msgstr[2] "Pazite šta pišete! Reči %s nisu dozvoljene ovde." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "i" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Ako išta unesete u ovo polje, Vaš komentar će se smatrati spamom." - -#: models.py:23 -msgid "content type" -msgstr "tip sadržaja" - -#: models.py:25 -msgid "object ID" -msgstr "ID objekta" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "korisnik" - -#: models.py:55 -msgid "user's name" -msgstr "korisnikovo ime" - -#: models.py:56 -msgid "user's email address" -msgstr "korisnikova imejl adresa" - -#: models.py:57 -msgid "user's URL" -msgstr "korisnikov URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "komentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "datum/vreme postavljanja" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresa" - -#: models.py:64 -msgid "is public" -msgstr "javno" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Deselektujte ovo polje ako želite da poruka faktički nestane sa ovog sajta." - -#: models.py:67 -msgid "is removed" -msgstr "uklonjen" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Obeležite ovu kućicu ako je komentar neprikladan. Poruka o uklanjanju će " -"biti prikazana umesto komentara." - -#: models.py:80 -msgid "comments" -msgstr "komentari" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Ovaj komentar je postavio prijavljen korisnik i zato je polje sa imenom " -"zaključano." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Ovaj komentar je postavio prijavljen korisnik i zato je polje sa imejl " -"adresom zaključano." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Postavio %(user)s, %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "oznaka" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "oznaka komentara" - -#: models.py:191 -msgid "comment flags" -msgstr "oznake komentara" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Odobrenje komentara" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Da li zaista želite da označite ovaj komentar javnim?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Odobri" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Hvala na odobrenju!" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "Hvala na učešću u unapređenju kvaliteta diskusija na našem sajtu." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Obriši komentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Da li zaista želite da obrišete ovaj komentar?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Obriši" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Hvala što koristite naš sajt!" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Označavanje komentara" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Da li zaista želite da označite ovaj komentar?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Označi" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Hvala što ste označili komentar." - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Postavi" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Pregled" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Hvala na komentaru" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Hvala što ste ostavili svoj komentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Pregledaj komentar" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Ispravite navedenu grešku" -msgstr[1] "Ispravite navedene greške" -msgstr[2] "Ispravite navedene greške" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Postavi komentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "ili izvrši izmene" diff --git a/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo deleted file mode 100644 index c6803e05d9d..00000000000 Binary files a/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sv/LC_MESSAGES/django.po b/django/contrib/comments/locale/sv/LC_MESSAGES/django.po deleted file mode 100644 index a204b910e9b..00000000000 --- a/django/contrib/comments/locale/sv/LC_MESSAGES/django.po +++ /dev/null @@ -1,304 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Andreas Pelme , 2011. -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Andreas Pelme \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/django/language/" -"sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Innehåll" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "flaggad" -msgstr[1] "flaggade" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Flagga markerade kommentarer" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "godkänd" -msgstr[1] "godkända" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Godkänn valda kommentarer" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "borttagen" -msgstr[1] "borttagna" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Ta bort valda kommentarer" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "%(count)s kommentarer har blivit %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s kommentarer" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Senaste kommentarer på %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Namn" - -#: forms.py:97 -msgid "Email address" -msgstr "E-postadress" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Kommentar" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Akta din tunga! Ordet %s är inte tillåtet här." -msgstr[1] "Akta din tunga! Orden %s är inte tillåtna här." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "och" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Om du fyller i detta fält kommer din kommentar att betraktas som spam" - -#: models.py:23 -msgid "content type" -msgstr "innehålls typ" - -#: models.py:25 -msgid "object ID" -msgstr "objektets ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "användare" - -#: models.py:55 -msgid "user's name" -msgstr "användares namn" - -#: models.py:56 -msgid "user's email address" -msgstr "användares e-postadress" - -#: models.py:57 -msgid "user's URL" -msgstr "användares URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "kommentar" - -#: models.py:62 -msgid "date/time submitted" -msgstr "skickat datum/tid" - -#: models.py:63 -msgid "IP address" -msgstr "IP-adress" - -#: models.py:64 -msgid "is public" -msgstr "är offentlig" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Avmarkeras detta kommer kommentaren inte synas på webbplatsen." - -#: models.py:67 -msgid "is removed" -msgstr "är borttaget" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Bocka för denna ruta om kommentaren är olämplig. Ett \"Denna kommentar har " -"tagits bort\"-meddelande kommer visas istället." - -#: models.py:80 -msgid "comments" -msgstr "kommentarer" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Denna kommentar postades av en autentiserad användare och därför är namnet " -"skrivskyddat." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Denna kommentar postades av en autentiserad användare och därför är e-" -"postadressen skrivskyddad." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Inlagt av %(user)s %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "flagga" - -#: models.py:180 -msgid "date" -msgstr "datum" - -#: models.py:190 -msgid "comment flag" -msgstr "kommentarsflagga" - -#: models.py:191 -msgid "comment flags" -msgstr "kommentarsflaggor" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Godkänn en kommentar" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Är du säker på att du vill offentliggöra kommentaren?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Godkänn" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Tack för ditt godkännande" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Tack för att du tog dig tid att förbättra kvaliteten på denna sites " -"diskussioner" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Tag bort en kommentar" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Är du säker på att du vill ta bort denna kommentar?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Tag bort" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Tack för att du tog bort" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Flagga denna kommentar" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Är du säker på att du vill flagga kommentaren?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flagga" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Tack för att ditt flaggande" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Skicka" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Förhandsgranska" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Tack för din kommentar" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Tack för din kommentar" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Förhandsgranska din kommentar" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Rätta till felet nedan." -msgstr[1] "Rätta till felen nedan." - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Skicka kommentar" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "eller gör ändringar" diff --git a/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo b/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo deleted file mode 100644 index 6c3447a9378..00000000000 Binary files a/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/sw/LC_MESSAGES/django.po b/django/contrib/comments/locale/sw/LC_MESSAGES/django.po deleted file mode 100644 index efc0c0cbcc9..00000000000 --- a/django/contrib/comments/locale/sw/LC_MESSAGES/django.po +++ /dev/null @@ -1,302 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-07-06 16:44+0000\n" -"Last-Translator: machaku \n" -"Language-Team: Swahili (http://www.transifex.com/projects/p/django/language/" -"sw/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "Maudhui" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "yameidhinishwa" -msgstr[1] "yameidhinishwa" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Idhinisha maoni yaliyochaguliwa" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "yameondolewa" -msgstr[1] "yameondolewa" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Ondoa maoni yaliyochaguliwa" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "maoni %(action)s kwa mafanikio." -msgstr[1] "maoni %(count)s %(action)s kwa mafanikio." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "maoni ya %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Maoni ya karibuni ya %(site_name)s." - -#: forms.py:96 -msgid "Name" -msgstr "Jina" - -#: forms.py:97 -msgid "Email address" -msgstr "Anuani ya baruapepe" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Maoni" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Chunga mdomo wako! Neno %s haliruhusiwi hapa." -msgstr[1] "Chunga mdomo wako! Maneno %s hayaruhusiwi hapa." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "na" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Ikiwa utaingiza chochote katika uga huu maoni yako yatachukuliwa kama taka" - -#: models.py:23 -msgid "content type" -msgstr "aina ya maudhui" - -#: models.py:25 -msgid "object ID" -msgstr "ID ya kitu" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "mtumiaji" - -#: models.py:55 -msgid "user's name" -msgstr "jina la mtumiaji" - -#: models.py:56 -msgid "user's email address" -msgstr "anuani ya baruapepe ya mtumiaji" - -#: models.py:57 -msgid "user's URL" -msgstr "URL ya mtumiaji" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "maoni" - -#: models.py:62 -msgid "date/time submitted" -msgstr "tarehe/muda yalipotolewa" - -#: models.py:63 -msgid "IP address" -msgstr "anuani ya IP" - -#: models.py:64 -msgid "is public" -msgstr "kwa umma" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" -"Toa tiki katika kisanduku hiki na maoni yako yatatolewa kikamilifu kutoka " -"tovuti hii." - -#: models.py:67 -msgid "is removed" -msgstr "yameondolewa" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "maoni" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Maoni haya yametumwa na mtumiaji aliyethibitishwa na hivyo jina ni la kusoma " -"tu." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Maoni haya yametumwa na mtumiaji aliyethibitishwa na hivyo anuani ya " -"baruapepe ni ya kusoma tu." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Yametumwa na %(user)s %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "tarehe" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Kweli toa maoni haya kwa umma?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Pitisha" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Ahsante kwa kupitisha" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Asante kwa kutumia muda ili kuboresha ubora wa mjadala katika tovuti yetu" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Ondoa maoni" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Kweli, ondoa maoni haya?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Ondoa" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Ahsante kwa kuondoa" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Tuma" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Hakikisha" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Ahsante kwa kutoa maoni" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Ahsante kwa maoni yako" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Hakikisha maoni haya" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Tafadhali sahihisha kosa lifuatalo" -msgstr[1] "Tafadhali sahihisha makosa yafuatayo" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Tuma maoni yako" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "au fanya mabadiliko" diff --git a/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo deleted file mode 100644 index e4bc7368253..00000000000 Binary files a/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ta/LC_MESSAGES/django.po b/django/contrib/comments/locale/ta/LC_MESSAGES/django.po deleted file mode 100644 index a454d001766..00000000000 --- a/django/contrib/comments/locale/ta/LC_MESSAGES/django.po +++ /dev/null @@ -1,297 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Tamil (http://www.transifex.com/projects/p/django/language/" -"ta/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "வார்த்தைகளை அளன்து பேசுங்கள்! %s என்ற வார்த்தை இங்கு அனுமதி இல்லை" -msgstr[1] "வார்த்தைகளை அளந்து பேசுங்கள்! %s என்ற வார்த்தைகள் இங்கு அனுமதி இல்லை" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "மற்றும்" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "பொருளடக்க வகை" - -#: models.py:25 -msgid "object ID" -msgstr "அடையாளம்" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "பயனர்" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "குறிப்பு" - -#: models.py:62 -msgid "date/time submitted" -msgstr "தேதி/நேரம் சமர்ப்பிக்கப்பட்டுள்ளது" - -#: models.py:63 -msgid "IP address" -msgstr "IP விலாசம்" - -#: models.py:64 -msgid "is public" -msgstr "பொதுவானது" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "நீக்கபட்டது" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"குறிப்பு சரியாக இல்லையென்றால் இந்த பெட்டியில் குறியிடவும். இதற்கு பதிலாக \"இந்த " -"குறிப்பு நீக்கபட்டது\" காண்பிக்கபடும்." - -#: models.py:80 -msgid "comments" -msgstr "குறிப்பு" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(user)s ஆல் %(date)s இல் அளிக்கப்பட்டது \n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/te/LC_MESSAGES/django.mo b/django/contrib/comments/locale/te/LC_MESSAGES/django.mo deleted file mode 100644 index cfa87b50cc8..00000000000 Binary files a/django/contrib/comments/locale/te/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/te/LC_MESSAGES/django.po b/django/contrib/comments/locale/te/LC_MESSAGES/django.po deleted file mode 100644 index 92f2f40b8db..00000000000 --- a/django/contrib/comments/locale/te/LC_MESSAGES/django.po +++ /dev/null @@ -1,292 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# bhaskar teja yerneni , 2011. -# Jannis Leidel , 2011. -# Veeven , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: bhaskar teja yerneni \n" -"Language-Team: Telugu (http://www.transifex.com/projects/p/django/language/" -"te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "విషయం" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "అంగికరించబడినది" -msgstr[1] "అంగికరించబడినది" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "ఎంచుకున్న వ్యాఖ్యానమునలను సంమతించుము" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "తీసివేయబడినది " -msgstr[1] "తీసివేయబడినది " - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "ఎంచుకున్న వ్యాఖ్యానమునలను తీసివేయుము " - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "1 వ్యాఖ్యానము జయప్రదముగా %(action)s." -msgstr[1] "%(count)s వ్యాఖ్యానములు జయప్రదముగా %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s వ్యాఖ్యలు" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "తాజా వ్యాఖ్యానములు %(site_name)s నందు కలదు " - -#: forms.py:96 -msgid "Name" -msgstr "పేరు" - -#: forms.py:97 -msgid "Email address" -msgstr "ఈమెయిలు చిరునామా" - -#: forms.py:98 -msgid "URL" -msgstr "యు ఆర్ యల్ " - -#: forms.py:99 -msgid "Comment" -msgstr "వ్యాఖ్య" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "సరిచూసుకోండి! %s పదము ఇక్కడ సరియినది కాదు " -msgstr[1] "సరిచూసుకోండి! %s పదములు ఇక్కడ సరియినది కాదు " - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "మరియు" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "ఈ క్షేత్రములో ఏదయినా వ్యాఖ్య రాసినట్లయితే అది అసంధర్బ వ్యాఖ్య గా పరిగనించబడుతుంది " - -#: models.py:23 -msgid "content type" -msgstr "సూచన రకం" - -#: models.py:25 -msgid "object ID" -msgstr "వస్తువు ఐడి" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "వాడుకరి" - -#: models.py:55 -msgid "user's name" -msgstr "వాడుకరి పేరు" - -#: models.py:56 -msgid "user's email address" -msgstr "వాడుకరి ఈమెయిలు చిరునామా" - -#: models.py:57 -msgid "user's URL" -msgstr "వాడుకరి URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "వ్యాఖ్య" - -#: models.py:62 -msgid "date/time submitted" -msgstr "సమర్పించిన తేదీ/సమయం" - -#: models.py:63 -msgid "IP address" -msgstr "ఐపీ చిరునామా" - -#: models.py:64 -msgid "is public" -msgstr "బహిరంగమయినది" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "తీసివేయబడినది" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr " ఈ వ్యాఖ్యానము సరిగ్గా లేదని తోచినచో ఈ డబ్బా ని చెక్ చేయండి " - -#: models.py:80 -msgid "comments" -msgstr "వ్యాఖ్యలు" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "తేదీ" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "నిరాటంకమైన వ్యాఖ్యానము" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "ఖచితముగా ఈ వ్యాఖ్యను జాతియము చేయమంటారా?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "అనుమతించు " - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "అనుమతించినందుకు ధన్యవాదములు " - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "వ్యాఖ్యను తొలగించుము " - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "ఖచితముగా ఈ వ్యాఖ్యను తొలగించవలసినదేనా? " - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "తొలగించు" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "తొలగించినందుకు ధన్యవాదములు " - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "సమర్పణ" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "ముందస్తు వీక్షణం" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "వ్యాఖ్యానిచినందుకు ధన్యవాదములు " - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "వ్యాఖ్యానిచినందుకు ధన్యవాదములు " - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "వ్యాఖ్యను ముందస్తు గా వీక్షిపుము " - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "దయచేసి క్రింద వున్న వ్యాఖ్యను సరిచేసుకోండి " -msgstr[1] "దయచేసి క్రింద వున్న వ్యాఖ్యలను సరిచేసుకోండి " - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "మీ వ్యాఖ్యని టపాచేయండి" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "లేదా మార్పులు చేయండి" diff --git a/django/contrib/comments/locale/th/LC_MESSAGES/django.mo b/django/contrib/comments/locale/th/LC_MESSAGES/django.mo deleted file mode 100644 index 1a69fafb730..00000000000 Binary files a/django/contrib/comments/locale/th/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/th/LC_MESSAGES/django.po b/django/contrib/comments/locale/th/LC_MESSAGES/django.po deleted file mode 100644 index 049bd0e8aa0..00000000000 --- a/django/contrib/comments/locale/th/LC_MESSAGES/django.po +++ /dev/null @@ -1,293 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Kowit Charoenratchatabhan , 2012. -# Suteepat Damrongyingsupab , 2012. -# Vichai Vongvorakul , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-03-12 06:23+0000\n" -"Last-Translator: Suteepat Damrongyingsupab \n" -"Language-Team: Thai (http://www.transifex.com/projects/p/django/language/" -"th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "เนื้อหา" - -#: admin.py:28 -msgid "Metadata" -msgstr "Metadata" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "ถูกแจ้งเตือนแล้ว" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "แจ้งเตือนความคิดเห็นที่เลือก" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "ได้รับการอนุมัติ" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "อนุมัติความคิดเห็นที่เลือกไว้" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "ลบ" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "ลบความคิดเห็นที่เลือกไว้" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s ความคิดเห็นได้ถูก%(action)sเรียบร้อยแล้ว" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "ความเห็นของ %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "ความเห็นล่าสุดเมื่อ %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "ชื่อ" - -#: forms.py:97 -msgid "Email address" -msgstr "อีเมล" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "ข้อคิดเห็น" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "ระวังนะ ไม่สามารถใช้คำว่า %s ที่นี่ได้" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "และ" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "ถ้าคุณใส่ข้อมูลใดๆ ก็ตามในส่วนนี้ มันจะกลายเป็นสแปม" - -#: models.py:23 -msgid "content type" -msgstr "content type" - -#: models.py:25 -msgid "object ID" -msgstr "อ็อบเจ็กต์ไอดี" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "ผู้ใช้" - -#: models.py:55 -msgid "user's name" -msgstr "ชื่อของผู้ใช้" - -#: models.py:56 -msgid "user's email address" -msgstr "อีเมลของผู้ใช้" - -#: models.py:57 -msgid "user's URL" -msgstr "URL ของผู้ใช้" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "ข้อคิดเห็น" - -#: models.py:62 -msgid "date/time submitted" -msgstr "วันและเวลาที่ส่งข้อมูล" - -#: models.py:63 -msgid "IP address" -msgstr "หมายเลขไอพี" - -#: models.py:64 -msgid "is public" -msgstr "สาธารณะ" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "เลือกออกเพื่อที่จะทำให้ข้อคิดเห็นนั้นหายไปจากเว็บไซต์" - -#: models.py:67 -msgid "is removed" -msgstr "ถอดออกแล้ว" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"เลือกเมื่อเห็นว่าข้อคิดเห็นไหนไม่เหมาะสม เมื่อข้อคิดเห็นนี้ได้ถูกลบแล้ว ข้อมูลอื่นจะถูกแสดงขึ้นแทน" - -#: models.py:80 -msgid "comments" -msgstr "ความคิดเห็น" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "ข้อคิดเห็นนี้ได้ถูกเขียนไว้โดยผู้ใช้ที่สามารถเชื่อถือได้ จะถูกอ่านได้เพียงอย่างเดียว" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "ข้อคิดเห็นนี้ถูกเขียนไว้โดยผู้ใช้ที่สามารถเชื่อถือได้ ดังนั้นอีเมลนั้นจะถูกอ่านเท่านั้น" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"โพสต์โดย %(user)s ที่ %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "ธง" - -#: models.py:180 -msgid "date" -msgstr "วันที่" - -#: models.py:190 -msgid "comment flag" -msgstr "ธงแสดงความเห็น" - -#: models.py:191 -msgid "comment flags" -msgstr "ปักธงแสดงความคิดเห็น" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "อนุมัติความคิดเห็น" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "ยืนยันที่จะให้ประชาชนแสดงความคิดเห็นนี้ไหม?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "อนุมัติ" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "ขอบคุณสำหรับการอนุมัติ" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "ขอบคุณที่สละเวลาเพื่อปรับปรุงคุณภาพของการสนทนาในเว็บไซต์ของเรา" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "ลบออกความคิดเห็น" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "ยืนยันที่จะลบความคิดเห็นนี้?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "ลบ" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "ขอบคุณสำหรับการลบ" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "ปักธงความคิดเห็นนี้" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "ยืยยันที่จะปักธงความคิดเห็นนี้นี้?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "ปักธง" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "ขอบคุณสำหรับการปักธง" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "โพสต์" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "ดูตัวอย่าง" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "ขอบคุณสำหรับการให้ความคิดเห็น" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "แสดงตัวอย่างความคิดเห็นของคุณ" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "กรุณาแก้ไขข้อผิดพลาดด้านล่าง" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "โพสต์ความคิดเห็นของคุณ" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "หรือทำการเปลี่ยนแปลง" diff --git a/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo b/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo deleted file mode 100644 index 5e37593d0b6..00000000000 Binary files a/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/tr/LC_MESSAGES/django.po b/django/contrib/comments/locale/tr/LC_MESSAGES/django.po deleted file mode 100644 index 63dcd68511a..00000000000 --- a/django/contrib/comments/locale/tr/LC_MESSAGES/django.po +++ /dev/null @@ -1,298 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/django/language/" -"tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "İçerik" - -#: admin.py:28 -msgid "Metadata" -msgstr "Meta bilgi" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "işaretli" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Seçili yorumları işaretle" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "onaylandı" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Seçili yorumları onayla" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "silinmiş" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Seçili yorumları sil" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s adet yorum başarıyla %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s sitesine ait yorumlar" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s sitesindeki son yorumlar" - -#: forms.py:96 -msgid "Name" -msgstr "İsim" - -#: forms.py:97 -msgid "Email address" -msgstr "E-posta adresi" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Yorum" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Söylediğinize dikkat edin! %s kelimeleri burada kullanılamaz." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "ve" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" -"Eğer bu alana herhangi bir şey girerseniz, yorumunuz spam olarak kabul " -"edilecektir" - -#: models.py:23 -msgid "content type" -msgstr "içerik türü" - -#: models.py:25 -msgid "object ID" -msgstr "nesne no" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "kullanıcı" - -#: models.py:55 -msgid "user's name" -msgstr "kullanıcının adı" - -#: models.py:56 -msgid "user's email address" -msgstr "kullanıcının e-posta adresi" - -#: models.py:57 -msgid "user's URL" -msgstr "kullanıcının URL'si" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "yorum" - -#: models.py:62 -msgid "date/time submitted" -msgstr "gönderim tarihi/saati" - -#: models.py:63 -msgid "IP address" -msgstr "IP adresi" - -#: models.py:64 -msgid "is public" -msgstr "görünürlük" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Yorumu site üzerinden kaldırmak için bu kutucuğun seçimini kaldırın." - -#: models.py:67 -msgid "is removed" -msgstr "silinmiş" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Yorum uygunsuz ise bu işareti kaldırın. \"Yorum silindi\" uyarısı " -"görüntülenecek." - -#: models.py:80 -msgid "comments" -msgstr "yorumlar" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Bu yorum kayıtlı kullanıcı tarafından yazıldığı için başlığı salt okunurdur." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Bu yorum kayıtlı kullanıcı tarafından yazıldığı için e-posta adresi salt " -"okunurdur." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"%(date)s tarihinde %(user)s göndermiş:\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "işaret" - -#: models.py:180 -msgid "date" -msgstr "tarih" - -#: models.py:190 -msgid "comment flag" -msgstr "yorum işareti" - -#: models.py:191 -msgid "comment flags" -msgstr "yorum işaretleri" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Yorumu onayla" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Bu yorum gerçekten umuma açılsın mı?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Onayla" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Onayınız için teşekkürler" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Sitemizdeki tartışma kalitesini yükseltmek amacıyla ayırdığınız zaman için " -"teşekkür ederiz." - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Yorumu sil" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Yorum silinsin mi?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Sil" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Sildiğiniz için teşekkürler" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Bu yorumu işlaretle" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Yorum işaretlensin mi?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "İşaret" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "İşaretlediğiniz için teşekkürler" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Gönderi" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Önizleme" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Yorumunuz için teşekkürler" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Yorumunuz için teşekkür ederiz" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Yorumunuzun önüzlemesini görün" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Lütfen aşağıdaki hataları düzeltin" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Yorumunuzu gönderin" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "veya düzenleme yapmak" diff --git a/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo b/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo deleted file mode 100644 index e4ab7be6fde..00000000000 Binary files a/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/tt/LC_MESSAGES/django.po b/django/contrib/comments/locale/tt/LC_MESSAGES/django.po deleted file mode 100644 index 7c0f5e230e1..00000000000 --- a/django/contrib/comments/locale/tt/LC_MESSAGES/django.po +++ /dev/null @@ -1,283 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2011-01-19 15:42+0000\n" -"Last-Translator: Django team\n" -"Language-Team: Tatar (http://www.transifex.com/projects/p/django/language/" -"tt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo b/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo deleted file mode 100644 index 13784c10d18..00000000000 Binary files a/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/uk/LC_MESSAGES/django.po b/django/contrib/comments/locale/uk/LC_MESSAGES/django.po deleted file mode 100644 index 7e09d2b4497..00000000000 --- a/django/contrib/comments/locale/uk/LC_MESSAGES/django.po +++ /dev/null @@ -1,312 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Sergey Lysach , 2011. -# Sergiy Kuzmenko , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Jannis Leidel \n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/django/" -"language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\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" - -#: admin.py:25 -msgid "Content" -msgstr "Зміст" - -#: admin.py:28 -msgid "Metadata" -msgstr "Мета-дані" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "позначено" -msgstr[1] "позначено" -msgstr[2] "позначено" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Позначити відзначені коментарі" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "апробовано" -msgstr[1] "апробовано" -msgstr[2] "апробовано" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Апробувати відзначені коментарі" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "видалено" -msgstr[1] "видалено" -msgstr[2] "видалено" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Видалити відзначені коментарі" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s коментар було %(action)s." -msgstr[1] "%(count)s коментарі було %(action)s." -msgstr[2] "%(count)s коментарів було %(action)s." - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "коментарі сайту %(site_name)s" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Останні коментарі на сайті %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Ім'я" - -#: forms.py:97 -msgid "Email address" -msgstr "E-mail адреса" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Коментар" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Слідкуйте за своїм язиком! Тут не дозволено вживати слово %s. " -msgstr[1] "Слідкуйте за своїм язиком! Тут не дозволено вживати слова %s. " -msgstr[2] "Слідкуйте за своїм язиком! Тут не дозволено вживати слова %s. " - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "та" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Якщо ви введете щось в це поле, ваш коментар буде вважатися спамом" - -#: models.py:23 -msgid "content type" -msgstr "content type" - -#: models.py:25 -msgid "object ID" -msgstr "ID об'єкту" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "користувач" - -#: models.py:55 -msgid "user's name" -msgstr "ім'я користувача" - -#: models.py:56 -msgid "user's email address" -msgstr "e-mail адреса користувача" - -#: models.py:57 -msgid "user's URL" -msgstr "URL користувачів" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "коментар" - -#: models.py:62 -msgid "date/time submitted" -msgstr "дата/час додавання" - -#: models.py:63 -msgid "IP address" -msgstr "IP адреса" - -#: models.py:64 -msgid "is public" -msgstr "публічний" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Видаліть галочку звідси, щоб коментар зник з сайту." - -#: models.py:67 -msgid "is removed" -msgstr "видалений" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Поставте тут галочку, якщо коментар неприйнятний. Повідомлення \"Цей " -"коментар було видалено\" буде відображено замість цього коментаря." - -#: models.py:80 -msgid "comments" -msgstr "коментарі" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"Цей коментар був розміщений зареєстрованим користувачем і тому ім'я не може " -"бути відредаговано." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"Цей коментар був розміщений зареєстрованим користувачем і тому email не може " -"бути відредагований." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Додав %(user)s %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "позначка" - -#: models.py:180 -msgid "date" -msgstr "число" - -#: models.py:190 -msgid "comment flag" -msgstr "позначка коментаря" - -#: models.py:191 -msgid "comment flags" -msgstr "позначки коментаря" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Затвердіть коментар" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "Дійсно, зробити цей коментар публічним?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Затвердити" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Дякуємо за затвердження." - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Дякуємо за те, що ви приділили увагу покращенню якості дискусії на нашому " -"сайті" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Видалити коментар" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Дійсно, видалити цей коментар?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Видалити" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Дякуємо за видалення." - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "Відмітити цей коментар?" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "Дійсно відмітити цей коментар?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Відмітити" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "Дякуємо за користування нашим сайтом." - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Надіслати" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Попередній перегляд" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Дякуємо за коментування" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Дякуємо за ваш коментар" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Попередній перегляд коментаря" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Будь ласка, виправте помилку зазначену нижче" -msgstr[1] "Будь ласка, виправте помилки зазначені нижче" -msgstr[2] "Будь ласка, виправте помилки зазначені нижче" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Опублікувати коментар" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "або зробити зміни" diff --git a/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo b/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo deleted file mode 100644 index b83d36c59e0..00000000000 Binary files a/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/ur/LC_MESSAGES/django.po b/django/contrib/comments/locale/ur/LC_MESSAGES/django.po deleted file mode 100644 index d15ecc05e00..00000000000 --- a/django/contrib/comments/locale/ur/LC_MESSAGES/django.po +++ /dev/null @@ -1,289 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2011-01-19 15:42+0000\n" -"Last-Translator: Django team\n" -"Language-Team: Urdu (http://www.transifex.com/projects/p/django/language/" -"ur/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin.py:25 -msgid "Content" -msgstr "" - -#: admin.py:28 -msgid "Metadata" -msgstr "" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" -msgstr[1] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "" - -#: forms.py:96 -msgid "Name" -msgstr "" - -#: forms.py:97 -msgid "Email address" -msgstr "" - -#: forms.py:98 -msgid "URL" -msgstr "" - -#: forms.py:99 -msgid "Comment" -msgstr "" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "" -msgstr[1] "" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "" - -#: models.py:23 -msgid "content type" -msgstr "" - -#: models.py:25 -msgid "object ID" -msgstr "" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "" - -#: models.py:55 -msgid "user's name" -msgstr "" - -#: models.py:56 -msgid "user's email address" -msgstr "" - -#: models.py:57 -msgid "user's URL" -msgstr "" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "" - -#: models.py:62 -msgid "date/time submitted" -msgstr "" - -#: models.py:63 -msgid "IP address" -msgstr "" - -#: models.py:64 -msgid "is public" -msgstr "" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "" - -#: models.py:67 -msgid "is removed" -msgstr "" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" - -#: models.py:80 -msgid "comments" -msgstr "" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "" - -#: models.py:190 -msgid "comment flag" -msgstr "" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "" -msgstr[1] "" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "" diff --git a/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo b/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo deleted file mode 100644 index c7c842d1dac..00000000000 Binary files a/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/vi/LC_MESSAGES/django.po b/django/contrib/comments/locale/vi/LC_MESSAGES/django.po deleted file mode 100644 index a4ea7fc2786..00000000000 --- a/django/contrib/comments/locale/vi/LC_MESSAGES/django.po +++ /dev/null @@ -1,296 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Tran , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Tran \n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/django/" -"language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "Nội dung" - -#: admin.py:28 -msgid "Metadata" -msgstr "Siêu dữ liệu" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "Đặt cờ những nhận xét được chọn" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "phê duyệt" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "Phê duyệt những nhận xét đã chọn" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "loại bỏ" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "Loại bỏ nhận xét được chọn" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "Nhận xét cuối cùng trên %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "Tên" - -#: forms.py:97 -msgid "Email address" -msgstr "Địa chỉ email" - -#: forms.py:98 -msgid "URL" -msgstr "Đường dẫn URL" - -#: forms.py:99 -msgid "Comment" -msgstr "Bình luận" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Hãy cẩn thận! Cụm từ %s không được sử dụng ở đây." - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "và" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "Bất kì bình luận nào bạn nhập vào đây cũng sẽ bị coi là thư rác" - -#: models.py:23 -msgid "content type" -msgstr "kiểu nội dung" - -#: models.py:25 -msgid "object ID" -msgstr "object ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "Người dùng" - -#: models.py:55 -msgid "user's name" -msgstr "Tên người sử dụng" - -#: models.py:56 -msgid "user's email address" -msgstr "Địa chỉ email của người sử dụng" - -#: models.py:57 -msgid "user's URL" -msgstr "Đường dẫn URL của người sử dụng" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "Bình luận" - -#: models.py:62 -msgid "date/time submitted" -msgstr "Ngày/giờ đã đăng kí" - -#: models.py:63 -msgid "IP address" -msgstr "Địa chỉ IP" - -#: models.py:64 -msgid "is public" -msgstr "Được phổ biến" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "Không đánh dấu vào hộp này để gỡ bình luận ra khỏi Site" - -#: models.py:67 -msgid "is removed" -msgstr "Bị xóa" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"Đánh dấu vào hộp này nếu bình luận không thích hợp. Tin nhắn \"Bình luận đã " -"bị xóa\" sẽ thay thế vào đó." - -#: models.py:80 -msgid "comments" -msgstr "những nhận xét" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "" -"nhận xét này đã được đăng bởi một người dùng xác thực và do đó đặt tên cho " -"là chỉ đọc." - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "" -"nhận xét này đã được đăng bởi một người dùng xác thực và do đó email là chỉ " -"đọc." - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"Gửi bởi %(user)s vào %(date)s \n" -"%(comment)s\n" -"http://%(domain)s%(url)s " - -#: models.py:179 -msgid "flag" -msgstr "" - -#: models.py:180 -msgid "date" -msgstr "ngày" - -#: models.py:190 -msgid "comment flag" -msgstr "cờ nhận xét" - -#: models.py:191 -msgid "comment flags" -msgstr "" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "Phê duyệt một nhận xét" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "Chấp thuận" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "Cảm ơn bạn đã phê duyệt" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "" -"Cảm ơn bạn đã dành thời gian để cải thiện chất lượng cuộc thảo luận trên " -"trang web của chúng tôi" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "Hủy bỏ một nhận xét" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "Thực sự loại bỏ bình luận này?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "Hủy bỏ" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "Cảm ơn đã loại bỏ" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "Flag" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "Post" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "Xem trước" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "Cảm ơn đã bình luận" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "Cảm ơn vì bình luận của bạn" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "Xem trước bình luận của bạn" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "Hãy sửa các lỗi dưới đây" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "Đăng bình luận của bạn" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "hoặc thay đổi" diff --git a/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo b/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index 7a4d8abedb8..00000000000 Binary files a/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po b/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po deleted file mode 100644 index 8f9871d45ba..00000000000 --- a/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po +++ /dev/null @@ -1,292 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# Lele Long , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: Lele Long \n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/django/" -"language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "内容" - -#: admin.py:28 -msgid "Metadata" -msgstr "元数据" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "标记" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "标记选中的评论" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "批准" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "批准选中的评论" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "移除" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "移除选中的评论" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s 条评论被成功 %(action)s。" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s的评论" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "%(site_name)s的最新评论" - -#: forms.py:96 -msgid "Name" -msgstr "名称" - -#: forms.py:97 -msgid "Email address" -msgstr "Email 地址" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "评论" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "注意言论!%s 不允许在这里出现。" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "和" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "如果你在该字段中输入任何内容,那么你的评论就会被视为垃圾评论。" - -#: models.py:23 -msgid "content type" -msgstr "内容类型" - -#: models.py:25 -msgid "object ID" -msgstr "对象ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "用户" - -#: models.py:55 -msgid "user's name" -msgstr "用户名" - -#: models.py:56 -msgid "user's email address" -msgstr "用户的 email 地址" - -#: models.py:57 -msgid "user's URL" -msgstr "用户的网址" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "评论" - -#: models.py:62 -msgid "date/time submitted" -msgstr "提交日期/时间" - -#: models.py:63 -msgid "IP address" -msgstr "IP 地址" - -#: models.py:64 -msgid "is public" -msgstr "公开" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "取消选中此复选框,可隐藏该条评论。" - -#: models.py:67 -msgid "is removed" -msgstr "已删除" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "" -"若评论内容不妥,则选中这个复选框。该评论将被一条\"此评论已经被删除\"的消息所" -"替换。" - -#: models.py:80 -msgid "comments" -msgstr "评论" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "此评论由一位验证用户发表,因此该用户名是只读的。" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "此评论由一位验证用户发表,因此该 email 是只读的。" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"由 %(user)s 在 %(date)s 张贴\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "标记" - -#: models.py:180 -msgid "date" -msgstr "标记时间" - -#: models.py:190 -msgid "comment flag" -msgstr "评论标记" - -#: models.py:191 -msgid "comment flags" -msgstr "评论标记" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "批准评论" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "真的要公开该评论?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "批准" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "感谢批准" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "感谢花费时间改善本站点的讨论质量。" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "删除评论" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "真的要删除该评论?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "删除" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "感谢删除" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "标记该评论" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "真的要标记该评论?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "标记" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "感谢标记" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "张贴" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "预览" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "感谢评论" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "感谢您所作的评论" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "预览您的评论" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "请修正如下错误" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "张贴您的评论" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "或进行修改" diff --git a/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo b/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo deleted file mode 100644 index a3f711d4ae8..00000000000 Binary files a/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo and /dev/null differ diff --git a/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po b/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po deleted file mode 100644 index 41a5df92f71..00000000000 --- a/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po +++ /dev/null @@ -1,290 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -# Translators: -# Jannis Leidel , 2011. -# tcc , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 10:56+0200\n" -"PO-Revision-Date: 2012-02-14 13:24+0000\n" -"Last-Translator: tcc \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/django/" -"language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin.py:25 -msgid "Content" -msgstr "內容" - -#: admin.py:28 -msgid "Metadata" -msgstr "元資料" - -#: admin.py:55 -msgid "flagged" -msgid_plural "flagged" -msgstr[0] "已標記" - -#: admin.py:56 -msgid "Flag selected comments" -msgstr "標記已選評論" - -#: admin.py:60 -msgid "approved" -msgid_plural "approved" -msgstr[0] "已核可" - -#: admin.py:61 -msgid "Approve selected comments" -msgstr "核可已選評論" - -#: admin.py:65 -msgid "removed" -msgid_plural "removed" -msgstr[0] "已移除" - -#: admin.py:66 -msgid "Remove selected comments" -msgstr "移除已選評論" - -#: admin.py:78 -#, python-format -msgid "1 comment was successfully %(action)s." -msgid_plural "%(count)s comments were successfully %(action)s." -msgstr[0] "%(count)s 個評論已成功完成%(action)s。" - -#: feeds.py:14 -#, python-format -msgid "%(site_name)s comments" -msgstr "%(site_name)s 評論" - -#: feeds.py:20 -#, python-format -msgid "Latest comments on %(site_name)s" -msgstr "最新評論在 %(site_name)s" - -#: forms.py:96 -msgid "Name" -msgstr "名稱" - -#: forms.py:97 -msgid "Email address" -msgstr "電子郵件地址" - -#: forms.py:98 -msgid "URL" -msgstr "URL" - -#: forms.py:99 -msgid "Comment" -msgstr "評論" - -#: forms.py:177 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "看住你的嘴!此處不允許 %s 這樣的字眼。" - -#: forms.py:181 templates/comments/preview.html:16 -msgid "and" -msgstr "和" - -#: forms.py:186 -msgid "" -"If you enter anything in this field your comment will be treated as spam" -msgstr "如果你在這一個欄位輸入任何內容,會被視為是垃圾評論" - -#: models.py:23 -msgid "content type" -msgstr "內容類型" - -#: models.py:25 -msgid "object ID" -msgstr "物件 ID" - -#: models.py:53 models.py:177 -msgid "user" -msgstr "使用者" - -#: models.py:55 -msgid "user's name" -msgstr "使用者名稱" - -#: models.py:56 -msgid "user's email address" -msgstr "使用者電子郵件" - -#: models.py:57 -msgid "user's URL" -msgstr "使用者 URL" - -#: models.py:59 models.py:79 models.py:178 -msgid "comment" -msgstr "評論" - -#: models.py:62 -msgid "date/time submitted" -msgstr "日期/時間已送出" - -#: models.py:63 -msgid "IP address" -msgstr "IP 位址" - -#: models.py:64 -msgid "is public" -msgstr "公開" - -#: models.py:65 -msgid "" -"Uncheck this box to make the comment effectively disappear from the site." -msgstr "取消這個選項可讓評論立刻在網站消失。" - -#: models.py:67 -msgid "is removed" -msgstr "已刪除" - -#: models.py:68 -msgid "" -"Check this box if the comment is inappropriate. A \"This comment has been " -"removed\" message will be displayed instead." -msgstr "如果此評論不恰當則選取這個檢查框,其將以 \"此評論已被移除\" 訊息取代。" - -#: models.py:80 -msgid "comments" -msgstr "評論" - -#: models.py:124 -msgid "" -"This comment was posted by an authenticated user and thus the name is read-" -"only." -msgstr "這個評論由認證的使用者張貼, 因此名稱是唯讀的。" - -#: models.py:134 -msgid "" -"This comment was posted by an authenticated user and thus the email is read-" -"only." -msgstr "這個評論由認證的使用者張貼, 因此名稱是唯讀的。" - -#: models.py:160 -#, python-format -msgid "" -"Posted by %(user)s at %(date)s\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" -msgstr "" -"由 %(user)s 在 %(date)s 張貼\n" -"\n" -"%(comment)s\n" -"\n" -"http://%(domain)s%(url)s" - -#: models.py:179 -msgid "flag" -msgstr "標記" - -#: models.py:180 -msgid "date" -msgstr "日期" - -#: models.py:190 -msgid "comment flag" -msgstr "標記評論" - -#: models.py:191 -msgid "comment flags" -msgstr "評論標記" - -#: templates/comments/approve.html:4 -msgid "Approve a comment" -msgstr "審核一個評論" - -#: templates/comments/approve.html:7 -msgid "Really make this comment public?" -msgstr "真的要讓這個評論公開?" - -#: templates/comments/approve.html:12 -msgid "Approve" -msgstr "核可" - -#: templates/comments/approved.html:4 -msgid "Thanks for approving" -msgstr "感謝進行審核" - -#: templates/comments/approved.html:7 templates/comments/deleted.html:7 -#: templates/comments/flagged.html:7 -msgid "" -"Thanks for taking the time to improve the quality of discussion on our site" -msgstr "感謝花費時間增進網站討論的品質" - -#: templates/comments/delete.html:4 -msgid "Remove a comment" -msgstr "移除一個評論" - -#: templates/comments/delete.html:7 -msgid "Really remove this comment?" -msgstr "真的要移除這個評論?" - -#: templates/comments/delete.html:12 -msgid "Remove" -msgstr "移除" - -#: templates/comments/deleted.html:4 -msgid "Thanks for removing" -msgstr "感謝移除" - -#: templates/comments/flag.html:4 -msgid "Flag this comment" -msgstr "標記這個評論" - -#: templates/comments/flag.html:7 -msgid "Really flag this comment?" -msgstr "真的要標記這個評論?" - -#: templates/comments/flag.html:12 -msgid "Flag" -msgstr "標記" - -#: templates/comments/flagged.html:4 -msgid "Thanks for flagging" -msgstr "感謝標記" - -#: templates/comments/form.html:17 templates/comments/preview.html:32 -msgid "Post" -msgstr "張貼" - -#: templates/comments/form.html:18 templates/comments/preview.html:33 -msgid "Preview" -msgstr "預覽" - -#: templates/comments/posted.html:4 -msgid "Thanks for commenting" -msgstr "感謝寫下評論" - -#: templates/comments/posted.html:7 -msgid "Thank you for your comment" -msgstr "謝謝你的評論" - -#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 -msgid "Preview your comment" -msgstr "預覽你的評論" - -#: templates/comments/preview.html:11 -msgid "Please correct the error below" -msgid_plural "Please correct the errors below" -msgstr[0] "請修正下面的錯誤" - -#: templates/comments/preview.html:16 -msgid "Post your comment" -msgstr "張貼你的評論" - -#: templates/comments/preview.html:16 -msgid "or make changes" -msgstr "或進行變更" diff --git a/django/contrib/comments/managers.py b/django/contrib/comments/managers.py deleted file mode 100644 index 656200437b6..00000000000 --- a/django/contrib/comments/managers.py +++ /dev/null @@ -1,22 +0,0 @@ -from django.db import models -from django.contrib.contenttypes.models import ContentType -from django.utils.encoding import force_text - -class CommentManager(models.Manager): - - def in_moderation(self): - """ - QuerySet for all comments currently in the moderation queue. - """ - return self.get_queryset().filter(is_public=False, is_removed=False) - - def for_model(self, model): - """ - QuerySet for all comments for a particular model (either an instance or - a class). - """ - ct = ContentType.objects.get_for_model(model) - qs = self.get_queryset().filter(content_type=ct) - if isinstance(model, models.Model): - qs = qs.filter(object_pk=force_text(model._get_pk_val())) - return qs diff --git a/django/contrib/comments/models.py b/django/contrib/comments/models.py deleted file mode 100644 index 24cd7b59cd1..00000000000 --- a/django/contrib/comments/models.py +++ /dev/null @@ -1,200 +0,0 @@ -from django.conf import settings -from django.contrib.comments.managers import CommentManager -from django.contrib.contenttypes.fields import GenericForeignKey -from django.contrib.contenttypes.models import ContentType -from django.contrib.sites.models import Site -from django.core import urlresolvers -from django.db import models -from django.utils.translation import ugettext_lazy as _ -from django.utils import timezone -from django.utils.encoding import python_2_unicode_compatible - -COMMENT_MAX_LENGTH = getattr(settings, 'COMMENT_MAX_LENGTH', 3000) - - -class BaseCommentAbstractModel(models.Model): - """ - An abstract base class that any custom comment models probably should - subclass. - """ - - # Content-object field - content_type = models.ForeignKey(ContentType, - verbose_name=_('content type'), - related_name="content_type_set_for_%(class)s") - object_pk = models.TextField(_('object ID')) - content_object = GenericForeignKey(ct_field="content_type", fk_field="object_pk") - - # Metadata about the comment - site = models.ForeignKey(Site) - - class Meta: - abstract = True - - def get_content_object_url(self): - """ - Get a URL suitable for redirecting to the content object. - """ - return urlresolvers.reverse( - "comments-url-redirect", - args=(self.content_type_id, self.object_pk) - ) - - -@python_2_unicode_compatible -class Comment(BaseCommentAbstractModel): - """ - A user comment about some object. - """ - - # Who posted this comment? If ``user`` is set then it was an authenticated - # user; otherwise at least user_name should have been set and the comment - # was posted by a non-authenticated user. - user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('user'), - blank=True, null=True, related_name="%(class)s_comments") - user_name = models.CharField(_("user's name"), max_length=50, blank=True) - user_email = models.EmailField(_("user's email address"), blank=True) - user_url = models.URLField(_("user's URL"), blank=True) - - comment = models.TextField(_('comment'), max_length=COMMENT_MAX_LENGTH) - - # Metadata about the comment - submit_date = models.DateTimeField(_('date/time submitted'), default=None) - ip_address = models.GenericIPAddressField(_('IP address'), unpack_ipv4=True, blank=True, null=True) - is_public = models.BooleanField(_('is public'), default=True, - help_text=_('Uncheck this box to make the comment effectively ' \ - 'disappear from the site.')) - is_removed = models.BooleanField(_('is removed'), default=False, - help_text=_('Check this box if the comment is inappropriate. ' \ - 'A "This comment has been removed" message will ' \ - 'be displayed instead.')) - - # Manager - objects = CommentManager() - - class Meta: - db_table = "django_comments" - ordering = ('submit_date',) - permissions = [("can_moderate", "Can moderate comments")] - verbose_name = _('comment') - verbose_name_plural = _('comments') - - def __str__(self): - return "%s: %s..." % (self.name, self.comment[:50]) - - def save(self, *args, **kwargs): - if self.submit_date is None: - self.submit_date = timezone.now() - super(Comment, self).save(*args, **kwargs) - - def _get_userinfo(self): - """ - Get a dictionary that pulls together information about the poster - safely for both authenticated and non-authenticated comments. - - This dict will have ``name``, ``email``, and ``url`` fields. - """ - if not hasattr(self, "_userinfo"): - userinfo = { - "name": self.user_name, - "email": self.user_email, - "url": self.user_url - } - if self.user_id: - u = self.user - if u.email: - userinfo["email"] = u.email - - # If the user has a full name, use that for the user name. - # However, a given user_name overrides the raw user.username, - # so only use that if this comment has no associated name. - if u.get_full_name(): - userinfo["name"] = self.user.get_full_name() - elif not self.user_name: - userinfo["name"] = u.get_username() - self._userinfo = userinfo - return self._userinfo - userinfo = property(_get_userinfo, doc=_get_userinfo.__doc__) - - def _get_name(self): - return self.userinfo["name"] - - def _set_name(self, val): - if self.user_id: - raise AttributeError(_("This comment was posted by an authenticated "\ - "user and thus the name is read-only.")) - self.user_name = val - name = property(_get_name, _set_name, doc="The name of the user who posted this comment") - - def _get_email(self): - return self.userinfo["email"] - - def _set_email(self, val): - if self.user_id: - raise AttributeError(_("This comment was posted by an authenticated "\ - "user and thus the email is read-only.")) - self.user_email = val - email = property(_get_email, _set_email, doc="The email of the user who posted this comment") - - def _get_url(self): - return self.userinfo["url"] - - def _set_url(self, val): - self.user_url = val - url = property(_get_url, _set_url, doc="The URL given by the user who posted this comment") - - def get_absolute_url(self, anchor_pattern="#c%(id)s"): - return self.get_content_object_url() + (anchor_pattern % self.__dict__) - - def get_as_text(self): - """ - Return this comment as plain text. Useful for emails. - """ - d = { - 'user': self.user or self.name, - 'date': self.submit_date, - 'comment': self.comment, - 'domain': self.site.domain, - 'url': self.get_absolute_url() - } - return _('Posted by %(user)s at %(date)s\n\n%(comment)s\n\nhttp://%(domain)s%(url)s') % d - - -@python_2_unicode_compatible -class CommentFlag(models.Model): - """ - Records a flag on a comment. This is intentionally flexible; right now, a - flag could be: - - * A "removal suggestion" -- where a user suggests a comment for (potential) removal. - - * A "moderator deletion" -- used when a moderator deletes a comment. - - You can (ab)use this model to add other flags, if needed. However, by - design users are only allowed to flag a comment with a given flag once; - if you want rating look elsewhere. - """ - user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('user'), related_name="comment_flags") - comment = models.ForeignKey(Comment, verbose_name=_('comment'), related_name="flags") - flag = models.CharField(_('flag'), max_length=30, db_index=True) - flag_date = models.DateTimeField(_('date'), default=None) - - # Constants for flag types - SUGGEST_REMOVAL = "removal suggestion" - MODERATOR_DELETION = "moderator deletion" - MODERATOR_APPROVAL = "moderator approval" - - class Meta: - db_table = 'django_comment_flags' - unique_together = [('user', 'comment', 'flag')] - verbose_name = _('comment flag') - verbose_name_plural = _('comment flags') - - def __str__(self): - return "%s flag of comment ID %s by %s" % \ - (self.flag, self.comment_id, self.user.get_username()) - - def save(self, *args, **kwargs): - if self.flag_date is None: - self.flag_date = timezone.now() - super(CommentFlag, self).save(*args, **kwargs) diff --git a/django/contrib/comments/moderation.py b/django/contrib/comments/moderation.py deleted file mode 100644 index 504b8be3b27..00000000000 --- a/django/contrib/comments/moderation.py +++ /dev/null @@ -1,356 +0,0 @@ -""" -A generic comment-moderation system which allows configuration of -moderation options on a per-model basis. - -To use, do two things: - -1. Create or import a subclass of ``CommentModerator`` defining the - options you want. - -2. Import ``moderator`` from this module and register one or more - models, passing the models and the ``CommentModerator`` options - class you want to use. - - -Example -------- - -First, we define a simple model class which might represent entries in -a Weblog:: - - from django.db import models - - class Entry(models.Model): - title = models.CharField(maxlength=250) - body = models.TextField() - pub_date = models.DateField() - enable_comments = models.BooleanField() - -Then we create a ``CommentModerator`` subclass specifying some -moderation options:: - - from django.contrib.comments.moderation import CommentModerator, moderator - - class EntryModerator(CommentModerator): - email_notification = True - enable_field = 'enable_comments' - -And finally register it for moderation:: - - moderator.register(Entry, EntryModerator) - -This sample class would apply two moderation steps to each new -comment submitted on an Entry: - -* If the entry's ``enable_comments`` field is set to ``False``, the - comment will be rejected (immediately deleted). - -* If the comment is successfully posted, an email notification of the - comment will be sent to site staff. - -For a full list of built-in moderation options and other -configurability, see the documentation for the ``CommentModerator`` -class. - -""" - -import datetime - -from django.conf import settings -from django.core.mail import send_mail -from django.contrib.comments import signals -from django.db.models.base import ModelBase -from django.template import Context, loader -from django.contrib import comments -from django.contrib.sites.shortcuts import get_current_site -from django.utils import timezone - -class AlreadyModerated(Exception): - """ - Raised when a model which is already registered for moderation is - attempting to be registered again. - - """ - pass - -class NotModerated(Exception): - """ - Raised when a model which is not registered for moderation is - attempting to be unregistered. - - """ - pass - -class CommentModerator(object): - """ - Encapsulates comment-moderation options for a given model. - - This class is not designed to be used directly, since it doesn't - enable any of the available moderation options. Instead, subclass - it and override attributes to enable different options:: - - ``auto_close_field`` - If this is set to the name of a ``DateField`` or - ``DateTimeField`` on the model for which comments are - being moderated, new comments for objects of that model - will be disallowed (immediately deleted) when a certain - number of days have passed after the date specified in - that field. Must be used in conjunction with - ``close_after``, which specifies the number of days past - which comments should be disallowed. Default value is - ``None``. - - ``auto_moderate_field`` - Like ``auto_close_field``, but instead of outright - deleting new comments when the requisite number of days - have elapsed, it will simply set the ``is_public`` field - of new comments to ``False`` before saving them. Must be - used in conjunction with ``moderate_after``, which - specifies the number of days past which comments should be - moderated. Default value is ``None``. - - ``close_after`` - If ``auto_close_field`` is used, this must specify the - number of days past the value of the field specified by - ``auto_close_field`` after which new comments for an - object should be disallowed. Default value is ``None``. - - ``email_notification`` - If ``True``, any new comment on an object of this model - which survives moderation will generate an email to site - staff. Default value is ``False``. - - ``enable_field`` - If this is set to the name of a ``BooleanField`` on the - model for which comments are being moderated, new comments - on objects of that model will be disallowed (immediately - deleted) whenever the value of that field is ``False`` on - the object the comment would be attached to. Default value - is ``None``. - - ``moderate_after`` - If ``auto_moderate_field`` is used, this must specify the number - of days past the value of the field specified by - ``auto_moderate_field`` after which new comments for an - object should be marked non-public. Default value is - ``None``. - - Most common moderation needs can be covered by changing these - attributes, but further customization can be obtained by - subclassing and overriding the following methods. Each method will - be called with three arguments: ``comment``, which is the comment - being submitted, ``content_object``, which is the object the - comment will be attached to, and ``request``, which is the - ``HttpRequest`` in which the comment is being submitted:: - - ``allow`` - Should return ``True`` if the comment should be allowed to - post on the content object, and ``False`` otherwise (in - which case the comment will be immediately deleted). - - ``email`` - If email notification of the new comment should be sent to - site staff or moderators, this method is responsible for - sending the email. - - ``moderate`` - Should return ``True`` if the comment should be moderated - (in which case its ``is_public`` field will be set to - ``False`` before saving), and ``False`` otherwise (in - which case the ``is_public`` field will not be changed). - - Subclasses which want to introspect the model for which comments - are being moderated can do so through the attribute ``_model``, - which will be the model class. - - """ - auto_close_field = None - auto_moderate_field = None - close_after = None - email_notification = False - enable_field = None - moderate_after = None - - def __init__(self, model): - self._model = model - - def _get_delta(self, now, then): - """ - Internal helper which will return a ``datetime.timedelta`` - representing the time between ``now`` and ``then``. Assumes - ``now`` is a ``datetime.date`` or ``datetime.datetime`` later - than ``then``. - - If ``now`` and ``then`` are not of the same type due to one of - them being a ``datetime.date`` and the other being a - ``datetime.datetime``, both will be coerced to - ``datetime.date`` before calculating the delta. - - """ - if now.__class__ is not then.__class__: - now = datetime.date(now.year, now.month, now.day) - then = datetime.date(then.year, then.month, then.day) - if now < then: - raise ValueError("Cannot determine moderation rules because date field is set to a value in the future") - return now - then - - def allow(self, comment, content_object, request): - """ - Determine whether a given comment is allowed to be posted on - a given object. - - Return ``True`` if the comment should be allowed, ``False - otherwise. - - """ - if self.enable_field: - if not getattr(content_object, self.enable_field): - return False - if self.auto_close_field and self.close_after is not None: - close_after_date = getattr(content_object, self.auto_close_field) - if close_after_date is not None and self._get_delta(timezone.now(), close_after_date).days >= self.close_after: - return False - return True - - def moderate(self, comment, content_object, request): - """ - Determine whether a given comment on a given object should be - allowed to show up immediately, or should be marked non-public - and await approval. - - Return ``True`` if the comment should be moderated (marked - non-public), ``False`` otherwise. - - """ - if self.auto_moderate_field and self.moderate_after is not None: - moderate_after_date = getattr(content_object, self.auto_moderate_field) - if moderate_after_date is not None and self._get_delta(timezone.now(), moderate_after_date).days >= self.moderate_after: - return True - return False - - def email(self, comment, content_object, request): - """ - Send email notification of a new comment to site staff when email - notifications have been requested. - - """ - if not self.email_notification: - return - recipient_list = [manager_tuple[1] for manager_tuple in settings.MANAGERS] - t = loader.get_template('comments/comment_notification_email.txt') - c = Context({'comment': comment, - 'content_object': content_object}) - subject = '[%s] New comment posted on "%s"' % (get_current_site(request).name, - content_object) - message = t.render(c) - send_mail(subject, message, settings.DEFAULT_FROM_EMAIL, recipient_list, fail_silently=True) - -class Moderator(object): - """ - Handles moderation of a set of models. - - An instance of this class will maintain a list of one or more - models registered for comment moderation, and their associated - moderation classes, and apply moderation to all incoming comments. - - To register a model, obtain an instance of ``Moderator`` (this - module exports one as ``moderator``), and call its ``register`` - method, passing the model class and a moderation class (which - should be a subclass of ``CommentModerator``). Note that both of - these should be the actual classes, not instances of the classes. - - To cease moderation for a model, call the ``unregister`` method, - passing the model class. - - For convenience, both ``register`` and ``unregister`` can also - accept a list of model classes in place of a single model; this - allows easier registration of multiple models with the same - ``CommentModerator`` class. - - The actual moderation is applied in two phases: one prior to - saving a new comment, and the other immediately after saving. The - pre-save moderation may mark a comment as non-public or mark it to - be removed; the post-save moderation may delete a comment which - was disallowed (there is currently no way to prevent the comment - being saved once before removal) and, if the comment is still - around, will send any notification emails the comment generated. - - """ - def __init__(self): - self._registry = {} - self.connect() - - def connect(self): - """ - Hook up the moderation methods to pre- and post-save signals - from the comment models. - - """ - signals.comment_will_be_posted.connect(self.pre_save_moderation, sender=comments.get_model()) - signals.comment_was_posted.connect(self.post_save_moderation, sender=comments.get_model()) - - def register(self, model_or_iterable, moderation_class): - """ - Register a model or a list of models for comment moderation, - using a particular moderation class. - - Raise ``AlreadyModerated`` if any of the models are already - registered. - - """ - if isinstance(model_or_iterable, ModelBase): - model_or_iterable = [model_or_iterable] - for model in model_or_iterable: - if model in self._registry: - raise AlreadyModerated("The model '%s' is already being moderated" % model._meta.model_name) - self._registry[model] = moderation_class(model) - - def unregister(self, model_or_iterable): - """ - Remove a model or a list of models from the list of models - whose comments will be moderated. - - Raise ``NotModerated`` if any of the models are not currently - registered for moderation. - - """ - if isinstance(model_or_iterable, ModelBase): - model_or_iterable = [model_or_iterable] - for model in model_or_iterable: - if model not in self._registry: - raise NotModerated("The model '%s' is not currently being moderated" % model._meta.model_name) - del self._registry[model] - - def pre_save_moderation(self, sender, comment, request, **kwargs): - """ - Apply any necessary pre-save moderation steps to new - comments. - - """ - model = comment.content_type.model_class() - if model not in self._registry: - return - content_object = comment.content_object - moderation_class = self._registry[model] - - # Comment will be disallowed outright (HTTP 403 response) - if not moderation_class.allow(comment, content_object, request): - return False - - if moderation_class.moderate(comment, content_object, request): - comment.is_public = False - - def post_save_moderation(self, sender, comment, request, **kwargs): - """ - Apply any necessary post-save moderation steps to new - comments. - - """ - model = comment.content_type.model_class() - if model not in self._registry: - return - self._registry[model].email(comment, comment.content_object, request) - -# Import this instance in your own code to use in registering -# your models for moderation. -moderator = Moderator() diff --git a/django/contrib/comments/signals.py b/django/contrib/comments/signals.py deleted file mode 100644 index 079afaf03a0..00000000000 --- a/django/contrib/comments/signals.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -Signals relating to comments. -""" -from django.dispatch import Signal - -# Sent just before a comment will be posted (after it's been approved and -# moderated; this can be used to modify the comment (in place) with posting -# details or other such actions. If any receiver returns False the comment will be -# discarded and a 400 response. This signal is sent at more or less -# the same time (just before, actually) as the Comment object's pre-save signal, -# except that the HTTP request is sent along with this signal. -comment_will_be_posted = Signal(providing_args=["comment", "request"]) - -# Sent just after a comment was posted. See above for how this differs -# from the Comment object's post-save signal. -comment_was_posted = Signal(providing_args=["comment", "request"]) - -# Sent after a comment was "flagged" in some way. Check the flag to see if this -# was a user requesting removal of a comment, a moderator approving/removing a -# comment, or some other custom user flag. -comment_was_flagged = Signal(providing_args=["comment", "flag", "created", "request"]) diff --git a/django/contrib/comments/templates/comments/400-debug.html b/django/contrib/comments/templates/comments/400-debug.html deleted file mode 100644 index 0d2efaff5a2..00000000000 --- a/django/contrib/comments/templates/comments/400-debug.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - Comment post not allowed (400) - - - - -
-

Comment post not allowed (400)

- - - - - -
Why:{{ why }}
-
-
-

- The comment you tried to post to this view wasn't saved because something - tampered with the security information in the comment form. The message - above should explain the problem, or you can check the comment - documentation for more help. -

-
- -
-

- You're seeing this error because you have DEBUG = True in - your Django settings file. Change that to False, and Django - will display a standard 400 error page. -

-
- - diff --git a/django/contrib/comments/templates/comments/approve.html b/django/contrib/comments/templates/comments/approve.html deleted file mode 100644 index 78d15dbb0e0..00000000000 --- a/django/contrib/comments/templates/comments/approve.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Approve a comment" %}{% endblock %} - -{% block content %} -

{% trans "Really make this comment public?" %}

-
{{ comment|linebreaks }}
-
{% csrf_token %} - {% if next %}
{% endif %} -

- or cancel -

-
-{% endblock %} diff --git a/django/contrib/comments/templates/comments/approved.html b/django/contrib/comments/templates/comments/approved.html deleted file mode 100644 index d4ba2454656..00000000000 --- a/django/contrib/comments/templates/comments/approved.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Thanks for approving" %}.{% endblock %} - -{% block content %} -

{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.

-{% endblock %} diff --git a/django/contrib/comments/templates/comments/base.html b/django/contrib/comments/templates/comments/base.html deleted file mode 100644 index 9828ff64d0e..00000000000 --- a/django/contrib/comments/templates/comments/base.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - {% block title %}{% endblock %} - - - {% block content %}{% endblock %} - - diff --git a/django/contrib/comments/templates/comments/delete.html b/django/contrib/comments/templates/comments/delete.html deleted file mode 100644 index 50c9a4d1b18..00000000000 --- a/django/contrib/comments/templates/comments/delete.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Remove a comment" %}{% endblock %} - -{% block content %} -

{% trans "Really remove this comment?" %}

-
{{ comment|linebreaks }}
-
{% csrf_token %} - {% if next %}
{% endif %} -

- or cancel -

-
-{% endblock %} diff --git a/django/contrib/comments/templates/comments/deleted.html b/django/contrib/comments/templates/comments/deleted.html deleted file mode 100644 index e6084815d57..00000000000 --- a/django/contrib/comments/templates/comments/deleted.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Thanks for removing" %}.{% endblock %} - -{% block content %} -

{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.

-{% endblock %} diff --git a/django/contrib/comments/templates/comments/flag.html b/django/contrib/comments/templates/comments/flag.html deleted file mode 100644 index ca7c77f111b..00000000000 --- a/django/contrib/comments/templates/comments/flag.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Flag this comment" %}{% endblock %} - -{% block content %} -

{% trans "Really flag this comment?" %}

-
{{ comment|linebreaks }}
-
{% csrf_token %} - {% if next %}
{% endif %} -

- or cancel -

-
-{% endblock %} diff --git a/django/contrib/comments/templates/comments/flagged.html b/django/contrib/comments/templates/comments/flagged.html deleted file mode 100644 index e558019bffe..00000000000 --- a/django/contrib/comments/templates/comments/flagged.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Thanks for flagging" %}.{% endblock %} - -{% block content %} -

{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.

-{% endblock %} diff --git a/django/contrib/comments/templates/comments/form.html b/django/contrib/comments/templates/comments/form.html deleted file mode 100644 index 2a9ad557dd8..00000000000 --- a/django/contrib/comments/templates/comments/form.html +++ /dev/null @@ -1,20 +0,0 @@ -{% load comments i18n %} -
{% csrf_token %} - {% if next %}
{% endif %} - {% for field in form %} - {% if field.is_hidden %} -
{{ field }}
- {% else %} - {% if field.errors %}{{ field.errors }}{% endif %} - - {% endif %} - {% endfor %} -

- - -

-
diff --git a/django/contrib/comments/templates/comments/list.html b/django/contrib/comments/templates/comments/list.html deleted file mode 100644 index 3d4ec1ed8f6..00000000000 --- a/django/contrib/comments/templates/comments/list.html +++ /dev/null @@ -1,10 +0,0 @@ -
- {% for comment in comment_list %} -
- {{ comment.submit_date }} - {{ comment.name }} -
-
-

{{ comment.comment }}

-
- {% endfor %} -
diff --git a/django/contrib/comments/templates/comments/posted.html b/django/contrib/comments/templates/comments/posted.html deleted file mode 100644 index 76f7f6d5868..00000000000 --- a/django/contrib/comments/templates/comments/posted.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Thanks for commenting" %}.{% endblock %} - -{% block content %} -

{% trans "Thank you for your comment" %}.

-{% endblock %} diff --git a/django/contrib/comments/templates/comments/preview.html b/django/contrib/comments/templates/comments/preview.html deleted file mode 100644 index 0e7056795be..00000000000 --- a/django/contrib/comments/templates/comments/preview.html +++ /dev/null @@ -1,36 +0,0 @@ -{% extends "comments/base.html" %} -{% load i18n %} - -{% block title %}{% trans "Preview your comment" %}{% endblock %} - -{% block content %} - {% load comments %} -
{% csrf_token %} - {% if next %}
{% endif %} - {% if form.errors %} -

{% if form.errors|length == 1 %}{% trans "Please correct the error below" %}{% else %}{% trans "Please correct the errors below" %}{% endif %}

- {% else %} -

{% trans "Preview your comment" %}

-
{{ comment|linebreaks }}
-

- {% trans "and" %} {% trans "or make changes" %}: -

- {% endif %} - {% for field in form %} - {% if field.is_hidden %} -
{{ field }}
- {% else %} - {% if field.errors %}{{ field.errors }}{% endif %} - - {% endif %} - {% endfor %} -

- - -

-
-{% endblock %} diff --git a/django/contrib/comments/templatetags/__init__.py b/django/contrib/comments/templatetags/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py deleted file mode 100644 index 02001de2046..00000000000 --- a/django/contrib/comments/templatetags/comments.py +++ /dev/null @@ -1,340 +0,0 @@ -from django import template -from django.template.loader import render_to_string -from django.conf import settings -from django.contrib.contenttypes.models import ContentType -from django.contrib import comments -from django.utils import six -from django.utils.deprecation import RenameMethodsBase, RemovedInDjango18Warning -from django.utils.encoding import smart_text - -register = template.Library() - - -class RenameBaseCommentNodeMethods(RenameMethodsBase): - renamed_methods = ( - ('get_query_set', 'get_queryset', RemovedInDjango18Warning), - ) - - -class BaseCommentNode(six.with_metaclass(RenameBaseCommentNodeMethods, template.Node)): - """ - Base helper class (abstract) for handling the get_comment_* template tags. - Looks a bit strange, but the subclasses below should make this a bit more - obvious. - """ - - @classmethod - def handle_token(cls, parser, token): - """Class method to parse get_comment_list/count/form and return a Node.""" - tokens = token.split_contents() - if tokens[1] != 'for': - raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) - - # {% get_whatever for obj as varname %} - if len(tokens) == 5: - if tokens[3] != 'as': - raise template.TemplateSyntaxError("Third argument in %r must be 'as'" % tokens[0]) - return cls( - object_expr=parser.compile_filter(tokens[2]), - as_varname=tokens[4], - ) - - # {% get_whatever for app.model pk as varname %} - elif len(tokens) == 6: - if tokens[4] != 'as': - raise template.TemplateSyntaxError("Fourth argument in %r must be 'as'" % tokens[0]) - return cls( - ctype=BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), - object_pk_expr=parser.compile_filter(tokens[3]), - as_varname=tokens[5] - ) - - else: - raise template.TemplateSyntaxError("%r tag requires 4 or 5 arguments" % tokens[0]) - - @staticmethod - def lookup_content_type(token, tagname): - try: - app, model = token.split('.') - return ContentType.objects.get_by_natural_key(app, model) - except ValueError: - raise template.TemplateSyntaxError("Third argument in %r must be in the format 'app.model'" % tagname) - except ContentType.DoesNotExist: - raise template.TemplateSyntaxError("%r tag has non-existant content-type: '%s.%s'" % (tagname, app, model)) - - def __init__(self, ctype=None, object_pk_expr=None, object_expr=None, as_varname=None, comment=None): - if ctype is None and object_expr is None: - raise template.TemplateSyntaxError("Comment nodes must be given either a literal object or a ctype and object pk.") - self.comment_model = comments.get_model() - self.as_varname = as_varname - self.ctype = ctype - self.object_pk_expr = object_pk_expr - self.object_expr = object_expr - self.comment = comment - - def render(self, context): - qs = self.get_queryset(context) - context[self.as_varname] = self.get_context_value_from_queryset(context, qs) - return '' - - def get_queryset(self, context): - ctype, object_pk = self.get_target_ctype_pk(context) - if not object_pk: - return self.comment_model.objects.none() - - qs = self.comment_model.objects.filter( - content_type=ctype, - object_pk=smart_text(object_pk), - site__pk=settings.SITE_ID, - ) - - # The is_public and is_removed fields are implementation details of the - # built-in comment model's spam filtering system, so they might not - # be present on a custom comment model subclass. If they exist, we - # should filter on them. - field_names = [f.name for f in self.comment_model._meta.fields] - if 'is_public' in field_names: - qs = qs.filter(is_public=True) - if getattr(settings, 'COMMENTS_HIDE_REMOVED', True) and 'is_removed' in field_names: - qs = qs.filter(is_removed=False) - - return qs - - def get_target_ctype_pk(self, context): - if self.object_expr: - try: - obj = self.object_expr.resolve(context) - except template.VariableDoesNotExist: - return None, None - return ContentType.objects.get_for_model(obj), obj.pk - else: - return self.ctype, self.object_pk_expr.resolve(context, ignore_failures=True) - - def get_context_value_from_queryset(self, context, qs): - """Subclasses should override this.""" - raise NotImplementedError('subclasses of BaseCommentNode must provide a get_context_value_from_queryset() method') - -class CommentListNode(BaseCommentNode): - """Insert a list of comments into the context.""" - def get_context_value_from_queryset(self, context, qs): - return list(qs) - -class CommentCountNode(BaseCommentNode): - """Insert a count of comments into the context.""" - def get_context_value_from_queryset(self, context, qs): - return qs.count() - -class CommentFormNode(BaseCommentNode): - """Insert a form for the comment model into the context.""" - - def get_form(self, context): - obj = self.get_object(context) - if obj: - return comments.get_form()(obj) - else: - return None - - def get_object(self, context): - if self.object_expr: - try: - return self.object_expr.resolve(context) - except template.VariableDoesNotExist: - return None - else: - object_pk = self.object_pk_expr.resolve(context, - ignore_failures=True) - return self.ctype.get_object_for_this_type(pk=object_pk) - - def render(self, context): - context[self.as_varname] = self.get_form(context) - return '' - -class RenderCommentFormNode(CommentFormNode): - """Render the comment form directly""" - - @classmethod - def handle_token(cls, parser, token): - """Class method to parse render_comment_form and return a Node.""" - tokens = token.split_contents() - if tokens[1] != 'for': - raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) - - # {% render_comment_form for obj %} - if len(tokens) == 3: - return cls(object_expr=parser.compile_filter(tokens[2])) - - # {% render_comment_form for app.models pk %} - elif len(tokens) == 4: - return cls( - ctype=BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), - object_pk_expr=parser.compile_filter(tokens[3]) - ) - - def render(self, context): - ctype, object_pk = self.get_target_ctype_pk(context) - if object_pk: - template_search_list = [ - "comments/%s/%s/form.html" % (ctype.app_label, ctype.model), - "comments/%s/form.html" % ctype.app_label, - "comments/form.html" - ] - context.push() - formstr = render_to_string(template_search_list, {"form" : self.get_form(context)}, context) - context.pop() - return formstr - else: - return '' - -class RenderCommentListNode(CommentListNode): - """Render the comment list directly""" - - @classmethod - def handle_token(cls, parser, token): - """Class method to parse render_comment_list and return a Node.""" - tokens = token.split_contents() - if tokens[1] != 'for': - raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) - - # {% render_comment_list for obj %} - if len(tokens) == 3: - return cls(object_expr=parser.compile_filter(tokens[2])) - - # {% render_comment_list for app.models pk %} - elif len(tokens) == 4: - return cls( - ctype=BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), - object_pk_expr=parser.compile_filter(tokens[3]) - ) - - def render(self, context): - ctype, object_pk = self.get_target_ctype_pk(context) - if object_pk: - template_search_list = [ - "comments/%s/%s/list.html" % (ctype.app_label, ctype.model), - "comments/%s/list.html" % ctype.app_label, - "comments/list.html" - ] - qs = self.get_queryset(context) - context.push() - liststr = render_to_string(template_search_list, { - "comment_list" : self.get_context_value_from_queryset(context, qs) - }, context) - context.pop() - return liststr - else: - return '' - -# We could just register each classmethod directly, but then we'd lose out on -# the automagic docstrings-into-admin-docs tricks. So each node gets a cute -# wrapper function that just exists to hold the docstring. - -@register.tag -def get_comment_count(parser, token): - """ - Gets the comment count for the given params and populates the template - context with a variable containing that value, whose name is defined by the - 'as' clause. - - Syntax:: - - {% get_comment_count for [object] as [varname] %} - {% get_comment_count for [app].[model] [object_id] as [varname] %} - - Example usage:: - - {% get_comment_count for event as comment_count %} - {% get_comment_count for calendar.event event.id as comment_count %} - {% get_comment_count for calendar.event 17 as comment_count %} - - """ - return CommentCountNode.handle_token(parser, token) - -@register.tag -def get_comment_list(parser, token): - """ - Gets the list of comments for the given params and populates the template - context with a variable containing that value, whose name is defined by the - 'as' clause. - - Syntax:: - - {% get_comment_list for [object] as [varname] %} - {% get_comment_list for [app].[model] [object_id] as [varname] %} - - Example usage:: - - {% get_comment_list for event as comment_list %} - {% for comment in comment_list %} - ... - {% endfor %} - - """ - return CommentListNode.handle_token(parser, token) - -@register.tag -def render_comment_list(parser, token): - """ - Render the comment list (as returned by ``{% get_comment_list %}``) - through the ``comments/list.html`` template - - Syntax:: - - {% render_comment_list for [object] %} - {% render_comment_list for [app].[model] [object_id] %} - - Example usage:: - - {% render_comment_list for event %} - - """ - return RenderCommentListNode.handle_token(parser, token) - -@register.tag -def get_comment_form(parser, token): - """ - Get a (new) form object to post a new comment. - - Syntax:: - - {% get_comment_form for [object] as [varname] %} - {% get_comment_form for [app].[model] [object_id] as [varname] %} - """ - return CommentFormNode.handle_token(parser, token) - -@register.tag -def render_comment_form(parser, token): - """ - Render the comment form (as returned by ``{% render_comment_form %}``) through - the ``comments/form.html`` template. - - Syntax:: - - {% render_comment_form for [object] %} - {% render_comment_form for [app].[model] [object_id] %} - """ - return RenderCommentFormNode.handle_token(parser, token) - -@register.simple_tag -def comment_form_target(): - """ - Get the target URL for the comment form. - - Example:: - -
- """ - return comments.get_form_target() - -@register.simple_tag -def get_comment_permalink(comment, anchor_pattern=None): - """ - Get the permalink for a comment, optionally specifying the format of the - named anchor to be appended to the end of the URL. - - Example:: - {% get_comment_permalink comment "#c%(id)s-by-%(user_name)s" %} - """ - - if anchor_pattern: - return comment.get_absolute_url(anchor_pattern) - return comment.get_absolute_url() diff --git a/django/contrib/comments/urls.py b/django/contrib/comments/urls.py deleted file mode 100644 index 69a022288bc..00000000000 --- a/django/contrib/comments/urls.py +++ /dev/null @@ -1,16 +0,0 @@ -from django.conf.urls import patterns, url - -urlpatterns = patterns('django.contrib.comments.views', - url(r'^post/$', 'comments.post_comment', name='comments-post-comment'), - url(r'^posted/$', 'comments.comment_done', name='comments-comment-done'), - url(r'^flag/(\d+)/$', 'moderation.flag', name='comments-flag'), - url(r'^flagged/$', 'moderation.flag_done', name='comments-flag-done'), - url(r'^delete/(\d+)/$', 'moderation.delete', name='comments-delete'), - url(r'^deleted/$', 'moderation.delete_done', name='comments-delete-done'), - url(r'^approve/(\d+)/$', 'moderation.approve', name='comments-approve'), - url(r'^approved/$', 'moderation.approve_done', name='comments-approve-done'), -) - -urlpatterns += patterns('', - url(r'^cr/(\d+)/(.+)/$', 'django.contrib.contenttypes.views.shortcut', name='comments-url-redirect'), -) diff --git a/django/contrib/comments/views/__init__.py b/django/contrib/comments/views/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/django/contrib/comments/views/comments.py b/django/contrib/comments/views/comments.py deleted file mode 100644 index c1246340880..00000000000 --- a/django/contrib/comments/views/comments.py +++ /dev/null @@ -1,136 +0,0 @@ -from django import http -from django.apps import apps -from django.conf import settings -from django.contrib import comments -from django.contrib.comments import signals -from django.contrib.comments.views.utils import next_redirect, confirmation_view -from django.core.exceptions import ObjectDoesNotExist, ValidationError -from django.db import models -from django.shortcuts import render_to_response -from django.template import RequestContext -from django.template.loader import render_to_string -from django.utils.html import escape -from django.views.decorators.csrf import csrf_protect -from django.views.decorators.http import require_POST - - -class CommentPostBadRequest(http.HttpResponseBadRequest): - """ - Response returned when a comment post is invalid. If ``DEBUG`` is on a - nice-ish error message will be displayed (for debugging purposes), but in - production mode a simple opaque 400 page will be displayed. - """ - def __init__(self, why): - super(CommentPostBadRequest, self).__init__() - if settings.DEBUG: - self.content = render_to_string("comments/400-debug.html", {"why": why}) - - -@csrf_protect -@require_POST -def post_comment(request, next=None, using=None): - """ - Post a comment. - - HTTP POST is required. If ``POST['submit'] == "preview"`` or if there are - errors a preview template, ``comments/preview.html``, will be rendered. - """ - # Fill out some initial data fields from an authenticated user, if present - data = request.POST.copy() - if request.user.is_authenticated(): - if not data.get('name', ''): - data["name"] = request.user.get_full_name() or request.user.get_username() - if not data.get('email', ''): - data["email"] = request.user.email - - # Look up the object we're trying to comment about - ctype = data.get("content_type") - object_pk = data.get("object_pk") - if ctype is None or object_pk is None: - return CommentPostBadRequest("Missing content_type or object_pk field.") - try: - model = apps.get_model(ctype) - target = model._default_manager.using(using).get(pk=object_pk) - except TypeError: - return CommentPostBadRequest( - "Invalid content_type value: %r" % escape(ctype)) - except LookupError: - return CommentPostBadRequest( - "The given content-type %r does not resolve to a valid model." % \ - escape(ctype)) - except ObjectDoesNotExist: - return CommentPostBadRequest( - "No object matching content-type %r and object PK %r exists." % \ - (escape(ctype), escape(object_pk))) - except (ValueError, ValidationError) as e: - return CommentPostBadRequest( - "Attempting go get content-type %r and object PK %r exists raised %s" % \ - (escape(ctype), escape(object_pk), e.__class__.__name__)) - - # Do we want to preview the comment? - preview = "preview" in data - - # Construct the comment form - form = comments.get_form()(target, data=data) - - # Check security information - if form.security_errors(): - return CommentPostBadRequest( - "The comment form failed security verification: %s" % \ - escape(str(form.security_errors()))) - - # If there are errors or if we requested a preview show the comment - if form.errors or preview: - template_list = [ - # These first two exist for purely historical reasons. - # Django v1.0 and v1.1 allowed the underscore format for - # preview templates, so we have to preserve that format. - "comments/%s_%s_preview.html" % (model._meta.app_label, model._meta.model_name), - "comments/%s_preview.html" % model._meta.app_label, - # Now the usual directory based template hierarchy. - "comments/%s/%s/preview.html" % (model._meta.app_label, model._meta.model_name), - "comments/%s/preview.html" % model._meta.app_label, - "comments/preview.html", - ] - return render_to_response( - template_list, { - "comment": form.data.get("comment", ""), - "form": form, - "next": data.get("next", next), - }, - RequestContext(request, {}) - ) - - # Otherwise create the comment - comment = form.get_comment_object() - comment.ip_address = request.META.get("REMOTE_ADDR", None) - if request.user.is_authenticated(): - comment.user = request.user - - # Signal that the comment is about to be saved - responses = signals.comment_will_be_posted.send( - sender=comment.__class__, - comment=comment, - request=request - ) - - for (receiver, response) in responses: - if response == False: - return CommentPostBadRequest( - "comment_will_be_posted receiver %r killed the comment" % receiver.__name__) - - # Save the comment and signal that it was saved - comment.save() - signals.comment_was_posted.send( - sender=comment.__class__, - comment=comment, - request=request - ) - - return next_redirect(request, fallback=next or 'comments-comment-done', - c=comment._get_pk_val()) - -comment_done = confirmation_view( - template="comments/posted.html", - doc="""Display a "comment was posted" success page.""" -) diff --git a/django/contrib/comments/views/moderation.py b/django/contrib/comments/views/moderation.py deleted file mode 100644 index 3bf70f321c0..00000000000 --- a/django/contrib/comments/views/moderation.py +++ /dev/null @@ -1,163 +0,0 @@ -from django import template -from django.conf import settings -from django.contrib import comments -from django.contrib.auth.decorators import login_required, permission_required -from django.contrib.comments import signals -from django.contrib.comments.views.utils import next_redirect, confirmation_view -from django.shortcuts import get_object_or_404, render_to_response -from django.views.decorators.csrf import csrf_protect - - -@csrf_protect -@login_required -def flag(request, comment_id, next=None): - """ - Flags a comment. Confirmation on GET, action on POST. - - Templates: :template:`comments/flag.html`, - Context: - comment - the flagged `comments.comment` object - """ - comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) - - # Flag on POST - if request.method == 'POST': - perform_flag(request, comment) - return next_redirect(request, fallback=next or 'comments-flag-done', - c=comment.pk) - - # Render a form on GET - else: - return render_to_response('comments/flag.html', - {'comment': comment, "next": next}, - template.RequestContext(request) - ) - -@csrf_protect -@permission_required("comments.can_moderate") -def delete(request, comment_id, next=None): - """ - Deletes a comment. Confirmation on GET, action on POST. Requires the "can - moderate comments" permission. - - Templates: :template:`comments/delete.html`, - Context: - comment - the flagged `comments.comment` object - """ - comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) - - # Delete on POST - if request.method == 'POST': - # Flag the comment as deleted instead of actually deleting it. - perform_delete(request, comment) - return next_redirect(request, fallback=next or 'comments-delete-done', - c=comment.pk) - - # Render a form on GET - else: - return render_to_response('comments/delete.html', - {'comment': comment, "next": next}, - template.RequestContext(request) - ) - -@csrf_protect -@permission_required("comments.can_moderate") -def approve(request, comment_id, next=None): - """ - Approve a comment (that is, mark it as public and non-removed). Confirmation - on GET, action on POST. Requires the "can moderate comments" permission. - - Templates: :template:`comments/approve.html`, - Context: - comment - the `comments.comment` object for approval - """ - comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) - - # Delete on POST - if request.method == 'POST': - # Flag the comment as approved. - perform_approve(request, comment) - return next_redirect(request, fallback=next or 'comments-approve-done', - c=comment.pk) - - # Render a form on GET - else: - return render_to_response('comments/approve.html', - {'comment': comment, "next": next}, - template.RequestContext(request) - ) - -# The following functions actually perform the various flag/approve/delete -# actions. They've been broken out into separate functions to that they -# may be called from admin actions. - -def perform_flag(request, comment): - """ - Actually perform the flagging of a comment from a request. - """ - flag, created = comments.models.CommentFlag.objects.get_or_create( - comment=comment, - user=request.user, - flag=comments.models.CommentFlag.SUGGEST_REMOVAL - ) - signals.comment_was_flagged.send( - sender=comment.__class__, - comment=comment, - flag=flag, - created=created, - request=request, - ) - -def perform_delete(request, comment): - flag, created = comments.models.CommentFlag.objects.get_or_create( - comment=comment, - user=request.user, - flag=comments.models.CommentFlag.MODERATOR_DELETION - ) - comment.is_removed = True - comment.save() - signals.comment_was_flagged.send( - sender=comment.__class__, - comment=comment, - flag=flag, - created=created, - request=request, - ) - - -def perform_approve(request, comment): - flag, created = comments.models.CommentFlag.objects.get_or_create( - comment=comment, - user=request.user, - flag=comments.models.CommentFlag.MODERATOR_APPROVAL, - ) - - comment.is_removed = False - comment.is_public = True - comment.save() - - signals.comment_was_flagged.send( - sender=comment.__class__, - comment=comment, - flag=flag, - created=created, - request=request, - ) - -# Confirmation views. - -flag_done = confirmation_view( - template="comments/flagged.html", - doc='Displays a "comment was flagged" success page.' -) -delete_done = confirmation_view( - template="comments/deleted.html", - doc='Displays a "comment was deleted" success page.' -) -approve_done = confirmation_view( - template="comments/approved.html", - doc='Displays a "comment was approved" success page.' -) diff --git a/django/contrib/comments/views/utils.py b/django/contrib/comments/views/utils.py deleted file mode 100644 index 3705b7e0bf2..00000000000 --- a/django/contrib/comments/views/utils.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -A few bits of helper functions for comment views. -""" - -import textwrap - -from django.http import HttpResponseRedirect -from django.shortcuts import render_to_response, resolve_url -from django.template import RequestContext -from django.core.exceptions import ObjectDoesNotExist -from django.contrib import comments -from django.utils.http import is_safe_url -from django.utils.six.moves.urllib.parse import urlencode - -def next_redirect(request, fallback, **get_kwargs): - """ - Handle the "where should I go next?" part of comment views. - - The next value could be a - ``?next=...`` GET arg or the URL of a given view (``fallback``). See - the view modules for examples. - - Returns an ``HttpResponseRedirect``. - """ - next = request.POST.get('next') - if not is_safe_url(url=next, host=request.get_host()): - next = resolve_url(fallback) - - if get_kwargs: - if '#' in next: - tmp = next.rsplit('#', 1) - next = tmp[0] - anchor = '#' + tmp[1] - else: - anchor = '' - - joiner = '&' if '?' in next else '?' - next += joiner + urlencode(get_kwargs) + anchor - return HttpResponseRedirect(next) - -def confirmation_view(template, doc="Display a confirmation view."): - """ - Confirmation view generator for the "comment was - posted/flagged/deleted/approved" views. - """ - def confirmed(request): - comment = None - if 'c' in request.GET: - try: - comment = comments.get_model().objects.get(pk=request.GET['c']) - except (ObjectDoesNotExist, ValueError): - pass - return render_to_response(template, - {'comment': comment}, - context_instance=RequestContext(request) - ) - - confirmed.__doc__ = textwrap.dedent("""\ - %s - - Templates: :template:`%s`` - Context: - comment - The posted comment - """ % (doc, template) - ) - return confirmed diff --git a/django/views/debug.py b/django/views/debug.py index efb3079d7eb..c1acd8191ca 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -17,7 +17,7 @@ from django.utils.encoding import force_bytes, smart_text from django.utils.module_loading import import_string from django.utils import six -HIDDEN_SETTINGS = re.compile('API|TOKEN|KEY|SECRET|PASS|PROFANITIES_LIST|SIGNATURE') +HIDDEN_SETTINGS = re.compile('API|TOKEN|KEY|SECRET|PASS|SIGNATURE') CLEANSED_SUBSTITUTE = '********************' diff --git a/docs/ref/contrib/comments/custom.txt b/docs/ref/contrib/comments/custom.txt deleted file mode 100644 index fd70a6a2243..00000000000 --- a/docs/ref/contrib/comments/custom.txt +++ /dev/null @@ -1,216 +0,0 @@ -================================== -Customizing the comments framework -================================== - -.. currentmodule:: django.contrib.comments - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -If the built-in comment framework doesn't quite fit your needs, you can extend -the comment app's behavior to add custom data and logic. The comments framework -lets you extend the built-in comment model, the built-in comment form, and the -various comment views. - -The :setting:`COMMENTS_APP` setting is where this customization begins. Set -:setting:`COMMENTS_APP` to the name of the app you'd like to use to provide -custom behavior. You'll use the same syntax as you'd use for -:setting:`INSTALLED_APPS`, and the app given must also be in the -:setting:`INSTALLED_APPS` list. - -For example, if you wanted to use an app named ``my_comment_app``, your -settings file would contain:: - - INSTALLED_APPS = [ - ... - 'my_comment_app', - ... - ] - - COMMENTS_APP = 'my_comment_app' - -The app named in :setting:`COMMENTS_APP` provides its custom behavior by -defining some module-level functions in the app's ``__init__.py``. The -:ref:`complete list of these functions ` can be found -below, but first let's look at a quick example. - -An example custom comments app -============================== - -One of the most common types of customization is modifying the set of fields -provided on the built-in comment model. For example, some sites that allow -comments want the commentator to provide a title for their comment; the built-in -comment model has no field for that title. - -To make this kind of customization, we'll need to do three things: - -#. Create a custom comment :class:`~django.db.models.Model` that adds on the - "title" field. - -#. Create a custom comment :class:`~django.forms.Form` that also adds this - "title" field. - -#. Inform Django of these objects by defining a few functions in a - custom :setting:`COMMENTS_APP`. - -So, carrying on the example above, we're dealing with a typical app structure in -the ``my_comment_app`` directory:: - - my_comment_app/ - __init__.py - models.py - forms.py - -In the ``models.py`` we'll define a ``CommentWithTitle`` model:: - - from django.db import models - from django.contrib.comments.models import Comment - - class CommentWithTitle(Comment): - title = models.CharField(max_length=300) - -Most custom comment models will subclass the -:class:`~django.contrib.comments.models.Comment` model. However, -if you want to substantially remove or change the fields available in the -:class:`~django.contrib.comments.models.Comment` model, but don't want to -rewrite the templates, you could try subclassing from -``BaseCommentAbstractModel``. - -Next, we'll define a custom comment form in ``forms.py``. This is a little more -tricky: we have to both create a form and override -``CommentForm.get_comment_model()`` and -``CommentForm.get_comment_create_data()`` to return deal with our custom title -field:: - - from django import forms - from django.contrib.comments.forms import CommentForm - from my_comment_app.models import CommentWithTitle - - class CommentFormWithTitle(CommentForm): - title = forms.CharField(max_length=300) - - def get_comment_model(self): - # Use our custom comment model instead of the built-in one. - return CommentWithTitle - - def get_comment_create_data(self): - # Use the data of the superclass, and add in the title field - data = super(CommentFormWithTitle, self).get_comment_create_data() - data['title'] = self.cleaned_data['title'] - return data - -Django provides a couple of "helper" classes to make writing certain types of -custom comment forms easier; see :mod:`django.contrib.comments.forms` for -more. - -Finally, we'll define a couple of methods in ``my_comment_app/__init__.py`` to -point Django at these classes we've created:: - - from my_comment_app.models import CommentWithTitle - from my_comment_app.forms import CommentFormWithTitle - - def get_model(): - return CommentWithTitle - - def get_form(): - return CommentFormWithTitle - - -.. warning:: - - Be careful not to create cyclic imports in your custom comments app. - If you feel your comment configuration isn't being used as defined -- - for example, if your comment moderation policy isn't being applied -- - you may have a cyclic import problem. - - If you are having unexplained problems with comments behavior, check - if your custom comments application imports (even indirectly) - any module that itself imports Django's comments module. - -The above process should take care of most common situations. For more -advanced usage, there are additional methods you can define. Those are -explained in the next section. - -.. _custom-comment-app-api: - -Custom comment app API -====================== - -The :mod:`django.contrib.comments` app defines the following methods; any -custom comment app must define at least one of them. All are optional, -however. - -.. function:: get_model() - - Return the :class:`~django.db.models.Model` class to use for comments. This - model should inherit from - ``django.contrib.comments.models.BaseCommentAbstractModel``, which - defines necessary core fields. - - The default implementation returns - :class:`django.contrib.comments.models.Comment`. - -.. function:: get_form() - - Return the :class:`~django.forms.Form` class you want to use for - creating, validating, and saving your comment model. Your custom - comment form should accept an additional first argument, - ``target_object``, which is the object the comment will be - attached to. - - The default implementation returns - :class:`django.contrib.comments.forms.CommentForm`. - - .. note:: - - The default comment form also includes a number of unobtrusive - spam-prevention features (see - :ref:`notes-on-the-comment-form`). If replacing it with your - own form, you may want to look at the source code for the - built-in form and consider incorporating similar features. - -.. function:: get_form_target() - - Return the URL for POSTing comments. This will be the ```` - attribute when rendering your comment form. - - The default implementation returns a reverse-resolved URL pointing - to the ``post_comment()`` view. - - .. note:: - - If you provide a custom comment model and/or form, but you - want to use the default ``post_comment()`` view, you will - need to be aware that it requires the model and form to have - certain additional attributes and methods: see the - ``django.contrib.comments.views.post_comment()`` view for details. - -.. function:: get_flag_url() - - Return the URL for the "flag this comment" view. - - The default implementation returns a reverse-resolved URL pointing - to the ``django.contrib.comments.views.moderation.flag()`` view. - -.. function:: get_delete_url() - - Return the URL for the "delete this comment" view. - - The default implementation returns a reverse-resolved URL pointing - to the ``django.contrib.comments.views.moderation.delete()`` view. - -.. function:: get_approve_url() - - Return the URL for the "approve this comment from moderation" view. - - The default implementation returns a reverse-resolved URL pointing - to the ``django.contrib.comments.views.moderation.approve()`` view. diff --git a/docs/ref/contrib/comments/example.txt b/docs/ref/contrib/comments/example.txt deleted file mode 100644 index abf79c5f142..00000000000 --- a/docs/ref/contrib/comments/example.txt +++ /dev/null @@ -1,217 +0,0 @@ -.. highlightlang:: html+django - -=========================================== -Example of using the built-in comments app -=========================================== - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -Follow the first three steps of the quick start guide in the -:doc:`documentation `. - -Now suppose, you have an app (``blog``) with a model (``Post``) -to which you want to attach comments. Let's also suppose that -you have a template called ``blog_detail.html`` where you want -to display the comments list and comment form. - -Template -======== - -First, we should load the ``comment`` template tags in the -``blog_detail.html`` so that we can use its functionality. So -just like all other custom template tag libraries:: - - {% load comments %} - -Next, let's add the number of comments attached to the particular -model instance of ``Post``. For this we assume that a context -variable ``object_pk`` is present which gives the ``id`` of the -instance of ``Post``. - -The usage of the :ttag:`get_comment_count` tag is like below:: - - {% get_comment_count for blog.post object_pk as comment_count %} -

{{ comment_count }} comments have been posted.

- -If you have the instance (say ``entry``) of the model (``Post``) -available in the context, then you can refer to it directly:: - - {% get_comment_count for entry as comment_count %} -

{{ comment_count }} comments have been posted.

- -Next, we can use the :ttag:`render_comment_list` tag, to render all comments -to the given instance (``entry``) by using the ``comments/list.html`` template:: - - {% render_comment_list for entry %} - -Django will will look for the ``list.html`` under the following directories -(for our example):: - - comments/blog/post/list.html - comments/blog/list.html - comments/list.html - -To get a list of comments, we make use of the :ttag:`get_comment_list` tag. -Using this tag is very similar to the :ttag:`get_comment_count` tag. We -need to remember that :ttag:`get_comment_list` returns a list of comments -and hence we have to iterate through them to display them:: - - {% get_comment_list for blog.post object_pk as comment_list %} - {% for comment in comment_list %} -

Posted by: {{ comment.user_name }} on {{ comment.submit_date }}

- ... -

Comment: {{ comment.comment }}

- ... - {% endfor %} - -Finally, we display the comment form, enabling users to enter their -comments. There are two ways of doing so. The first is when you want to -display the comments template available under your ``comments/form.html``. -The other method gives you a chance to customize the form. - -The first method makes use of the :ttag:`render_comment_form` tag. Its usage -too is similar to the other three tags we have discussed above:: - - {% render_comment_form for entry %} - -It looks for the ``form.html`` under the following directories -(for our example):: - - comments/blog/post/form.html - comments/blog/form.html - comments/form.html - -Since we customize the form in the second method, we make use of another -tag called :ttag:`comment_form_target`. This tag on rendering gives the URL -where the comment form is posted. Without any :doc:`customization -`, :ttag:`comment_form_target` evaluates to -``/comments/post/``. We use this tag in the form's ``action`` attribute. - -The :ttag:`get_comment_form` tag renders a ``form`` for a model instance by -creating a context variable. One can iterate over the ``form`` object to -get individual fields. This gives you fine-grain control over the form:: - - {% for field in form %} - {% ifequal field.name "comment" %} - - ... - {% endfor %} - -But let's look at a simple example:: - - {% get_comment_form for entry as form %} - - - - {% csrf_token %} - {{ form }} - - - - -
- - -
- -Flagging -======== - -If you want your users to be able to flag comments (say for profanity), you -can just direct them (by placing a link in your comment list) to ``/flag/{{ -comment.id }}/``. Similarly, a user with requisite permissions (``"Can -moderate comments"``) can approve and delete comments. This can also be -done through the ``admin`` as you'll see later. You might also want to -customize the following templates: - -* ``flag.html`` -* ``flagged.html`` -* ``approve.html`` -* ``approved.html`` -* ``delete.html`` -* ``deleted.html`` - -found under the directory structure we saw for ``form.html``. - -Feeds -===== - -Suppose you want to export a :doc:`feed ` of the -latest comments, you can use the built-in ``LatestCommentFeed``. Just -enable it in your project's ``urls.py``: - -.. code-block:: python - - from django.conf.urls import patterns - from django.contrib.comments.feeds import LatestCommentFeed - - urlpatterns = patterns('', - # ... - (r'^feeds/latest/$', LatestCommentFeed()), - # ... - ) - -Now you should have the latest comment feeds being served off ``/feeds/latest/``. - - -Moderation -========== - -Now that we have the comments framework working, we might want to have some -moderation setup to administer the comments. The comments framework comes -built-in with :doc:`generic comment moderation -`. The comment moderation has the following -features (all of which or only certain can be enabled): - -* Enable comments for a particular model instance. -* Close comments after a particular (user-defined) number of days. -* Email new comments to the site-staff. - -To enable comment moderation, we subclass the ``CommentModerator`` and -register it with the moderation features we want. Let's suppose we want to -close comments after 7 days of posting and also send out an email to the -site staff. In ``blog/models.py``, we register a comment moderator in the -following way: - -.. code-block:: python - - from django.contrib.comments.moderation import CommentModerator, moderator - from django.db import models - - class Post(models.Model): - title = models.CharField(max_length = 255) - content = models.TextField() - posted_date = models.DateTimeField() - - class PostModerator(CommentModerator): - email_notification = True - auto_close_field = 'posted_date' - # Close the comments after 7 days. - close_after = 7 - - moderator.register(Post, PostModerator) - -The generic comment moderation also has the facility to remove comments. -These comments can then be moderated by any user who has access to the -``admin`` site and the ``Can moderate comments`` permission (can be set -under the ``Users`` page in the ``admin``). - -The moderator can ``Flag``, ``Approve`` or ``Remove`` comments using the -``Action`` drop-down in the ``admin`` under the ``Comments`` page. - -.. note:: - - Only a super-user will be able to delete comments from the database. - ``Remove Comments`` only sets the ``is_public`` attribute to - ``False``. diff --git a/docs/ref/contrib/comments/forms.txt b/docs/ref/contrib/comments/forms.txt deleted file mode 100644 index f2624ca8709..00000000000 --- a/docs/ref/contrib/comments/forms.txt +++ /dev/null @@ -1,58 +0,0 @@ -==================== -Comment form classes -==================== - -.. module:: django.contrib.comments.forms - :synopsis: Forms for dealing with the built-in comment model. - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -The ``django.contrib.comments.forms`` module contains a handful of forms -you'll use when writing custom views dealing with comments, or when writing -:doc:`custom comment apps `. - -.. class:: CommentForm - - The main comment form representing the standard, built-in way of handling - submitted comments. This is the class used by all the views - :mod:`django.contrib.comments` to handle submitted comments. - - If you want to build custom views that are similar to Django's built-in - comment handling views, you'll probably want to use this form. - -Abstract comment forms for custom comment apps ----------------------------------------------- - -If you're building a :doc:`custom comment app `, -you might want to replace *some* of the form logic but still rely on parts of -the existing form. - -:class:`CommentForm` is actually composed of a couple of abstract base class -forms that you can subclass to reuse pieces of the form handling logic: - -.. class:: CommentSecurityForm - - Handles the anti-spoofing protection aspects of the comment form handling. - - This class contains the ``content_type`` and ``object_pk`` fields pointing - to the object the comment is attached to, along with a ``timestamp`` and a - ``security_hash`` of all the form data. Together, the timestamp and the - security hash ensure that spammers can't "replay" form submissions and - flood you with comments. - -.. class:: CommentDetailsForm - - Handles the details of the comment itself. - - This class contains the ``name``, ``email``, ``url``, and the ``comment`` - field itself, along with the associated validation logic. diff --git a/docs/ref/contrib/comments/index.txt b/docs/ref/contrib/comments/index.txt deleted file mode 100644 index 35cd137e490..00000000000 --- a/docs/ref/contrib/comments/index.txt +++ /dev/null @@ -1,369 +0,0 @@ -=========================== -Django's comments framework -=========================== - -.. module:: django.contrib.comments - :synopsis: Django's comment framework - -.. highlightlang:: html+django - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -Django includes a simple, yet customizable comments framework. The built-in -comments framework can be used to attach comments to any model, so you can use -it for comments on blog entries, photos, book chapters, or anything else. - -Quick start guide -================= - -To get started using the ``comments`` app, follow these steps: - -#. Install the comments framework by adding ``'django.contrib.comments'`` to - :setting:`INSTALLED_APPS`. - -#. Run ``manage.py migrate`` so that Django will create the comment tables. - -#. Add the comment app's URLs to your project's ``urls.py``: - - .. code-block:: python - - urlpatterns = patterns('', - ... - (r'^comments/', include('django.contrib.comments.urls')), - ... - ) - -#. Use the `comment template tags`_ below to embed comments in your - templates. - -You might also want to examine :ref:`the available settings -`. - -Comment template tags -===================== - -You'll primarily interact with the comment system through a series of template -tags that let you embed comments and generate forms for your users to post them. - -Like all custom template tag libraries, you'll need to :ref:`load the custom -tags ` before you can use them:: - - {% load comments %} - -Once loaded you can use the template tags below. - -Specifying which object comments are attached to ------------------------------------------------- - -Django's comments are all "attached" to some parent object. This can be any -instance of a Django model. Each of the tags below gives you a couple of -different ways you can specify which object to attach to: - -#. Refer to the object directly -- the more common method. Most of the - time, you'll have some object in the template's context you want - to attach the comment to; you can simply use that object. - - For example, in a blog entry page that has a variable named ``entry``, - you could use the following to load the number of comments:: - - {% get_comment_count for entry as comment_count %}. - -#. Refer to the object by content-type and object id. You'd use this method - if you, for some reason, don't actually have direct access to the object. - - Following the above example, if you knew the object ID was ``14`` but - didn't have access to the actual object, you could do something like:: - - {% get_comment_count for blog.entry 14 as comment_count %} - - In the above, ``blog.entry`` is the app label and (lower-cased) model - name of the model class. - -Displaying comments -------------------- - -To display a list of comments, you can use the template tags -:ttag:`render_comment_list` or :ttag:`get_comment_list`. - -.. templatetag:: render_comment_list - -Quickly rendering a comment list -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The easiest way to display a list of comments for some object is by using -:ttag:`render_comment_list`:: - - {% render_comment_list for [object] %} - -For example:: - - {% render_comment_list for event %} - -This will render comments using a template named ``comments/list.html``, a -default version of which is included with Django. - -.. templatetag:: get_comment_list - -Rendering a custom comment list -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To get the list of comments for some object, use :ttag:`get_comment_list`:: - - {% get_comment_list for [object] as [varname] %} - -For example:: - - {% get_comment_list for event as comment_list %} - {% for comment in comment_list %} - ... - {% endfor %} - -This returns a list of :class:`~django.contrib.comments.models.Comment` objects; -see :doc:`the comment model documentation ` for -details. - -.. templatetag:: get_comment_permalink - -Linking to comments -------------------- - -To provide a permalink to a specific comment, use :ttag:`get_comment_permalink`:: - - {% get_comment_permalink comment_obj [format_string] %} - -By default, the named anchor that will be appended to the URL will be the letter -'c' followed by the comment id, for example 'c82'. You may specify a custom -format string if you wish to override this behavior:: - - {% get_comment_permalink comment "#c%(id)s-by-%(user_name)s"%} - -The format string is a standard python format string. Valid mapping keys -include any attributes of the comment object. - -Regardless of whether you specify a custom anchor pattern, you must supply a -matching named anchor at a suitable place in your template. - -For example:: - - {% for comment in comment_list %} - - - permalink for comment #{{ forloop.counter }} - - ... - {% endfor %} - -.. warning:: - - There's a `known bug`_ in Safari/WebKit which causes the named anchor to be - forgotten following a redirect. The practical impact for comments is that - the Safari/webkit browsers will arrive at the correct page but will not - scroll to the named anchor. - -.. _`known bug`: https://bugs.webkit.org/show_bug.cgi?id=24175 - -.. templatetag:: get_comment_count - -Counting comments ------------------ - -To count comments attached to an object, use :ttag:`get_comment_count`:: - - {% get_comment_count for [object] as [varname] %} - -For example:: - - {% get_comment_count for event as comment_count %} - -

This event has {{ comment_count }} comments.

- - -Displaying the comment post form --------------------------------- - -To show the form that users will use to post a comment, you can use -:ttag:`render_comment_form` or :ttag:`get_comment_form` - -.. templatetag:: render_comment_form - -Quickly rendering the comment form -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The easiest way to display a comment form is by using -:ttag:`render_comment_form`:: - - {% render_comment_form for [object] %} - -For example:: - - {% render_comment_form for event %} - -This will render comments using a template named ``comments/form.html``, a -default version of which is included with Django. - -.. templatetag:: get_comment_form - -Rendering a custom comment form -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -If you want more control over the look and feel of the comment form, you may use -:ttag:`get_comment_form` to get a :doc:`form object ` that -you can use in the template:: - - {% get_comment_form for [object] as [varname] %} - -A complete form might look like:: - - {% get_comment_form for event as form %} - - - {% csrf_token %} - {{ form }} - - - - -
- - -
- -Be sure to read the `notes on the comment form`_, below, for some special -considerations you'll need to make if you're using this approach. - -.. templatetag:: comment_form_target - -Getting the comment form target -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You may have noticed that the above example uses another template tag -- -:ttag:`comment_form_target` -- to actually get the ``action`` attribute of the -form. This will always return the correct URL that comments should be posted to; -you'll always want to use it like above:: - -
- -Redirecting after the comment post -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To specify the URL you want to redirect to after the comment has been posted, -you can include a hidden form input called ``next`` in your comment form. For example:: - - - -Providing a comment form for authenticated users -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -If a user is already authenticated, it makes little sense to display the name, -email, and URL fields, since these can already be retrieved from their login -data and profile. In addition, some sites will only accept comments from -authenticated users. - -To provide a comment form for authenticated users, you can manually provide the -additional fields expected by the Django comments framework. For example, -assuming comments are attached to the model "object":: - - {% if user.is_authenticated %} - {% get_comment_form for object as form %} - - {% csrf_token %} - {{ form.comment }} - {{ form.honeypot }} - {{ form.content_type }} - {{ form.object_pk }} - {{ form.timestamp }} - {{ form.security_hash }} - - -
- {% else %} -

Please log in to leave a comment.

- {% endif %} - -The honeypot, content_type, object_pk, timestamp, and security_hash fields are -fields that would have been created automatically if you had simply used -``{{ form }}`` in your template, and are referred to in `Notes on the comment -form`_ below. - -Note that we do not need to specify the user to be associated with comments -submitted by authenticated users. This is possible because the :doc:`Built-in -Comment Models` that come with Django associate -comments with authenticated users by default. - -In this example, the honeypot field will still be visible to the user; you'll -need to hide that field in your CSS:: - - #id_honeypot { - display: none; - } - -If you want to accept either anonymous or authenticated comments, replace the -contents of the "else" clause above with a standard comment form and the right -thing will happen whether a user is logged in or not. - -.. _notes-on-the-comment-form: - -Notes on the comment form -------------------------- - -The form used by the comment system has a few important anti-spam attributes you -should know about: - -* It contains a number of hidden fields that contain timestamps, information - about the object the comment should be attached to, and a "security hash" - used to validate this information. If someone tampers with this data -- - something comment spammers will try -- the comment submission will fail. - - If you're rendering a custom comment form, you'll need to make sure to - pass these values through unchanged. - -* The timestamp is used to ensure that "reply attacks" can't continue very - long. Users who wait too long between requesting the form and posting a - comment will have their submissions refused. - -* The comment form includes a "honeypot_" field. It's a trap: if any data is - entered in that field, the comment will be considered spam (spammers often - automatically fill in all fields in an attempt to make valid submissions). - - The default form hides this field with a piece of CSS and further labels - it with a warning field; if you use the comment form with a custom - template you should be sure to do the same. - -The comments app also depends on the more general :doc:`Cross Site Request -Forgery protection ` that comes with Django. As described in -the documentation, it is best to use ``CsrfViewMiddleware``. However, if you -are not using that, you will need to use the ``csrf_protect`` decorator on any -views that include the comment form, in order for those views to be able to -output the CSRF token and cookie. - -.. _honeypot: http://en.wikipedia.org/wiki/Honeypot_(computing) - - -Configuration -============= - -See :ref:`comment settings `. - - -More information -================ - -.. toctree:: - :maxdepth: 1 - - models - signals - custom - forms - moderation - example diff --git a/docs/ref/contrib/comments/models.txt b/docs/ref/contrib/comments/models.txt deleted file mode 100644 index 3f9ac740bde..00000000000 --- a/docs/ref/contrib/comments/models.txt +++ /dev/null @@ -1,91 +0,0 @@ -=========================== -The built-in comment models -=========================== - -.. module:: django.contrib.comments.models - :synopsis: The built-in comment models - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -.. class:: Comment - - Django's built-in comment model. Has the following fields: - - .. attribute:: content_object - - A :class:`~django.contrib.contenttypes.fields.GenericForeignKey` - attribute pointing to the object the comment is attached to. You can use - this to get at the related object (i.e. ``my_comment.content_object``). - - Since this field is a - :class:`~django.contrib.contenttypes.fields.GenericForeignKey`, it's - actually syntactic sugar on top of two underlying attributes, described - below. - - .. attribute:: content_type - - A :class:`~django.db.models.ForeignKey` to - :class:`~django.contrib.contenttypes.models.ContentType`; this is the - type of the object the comment is attached to. - - .. attribute:: object_pk - - A :class:`~django.db.models.TextField` containing the primary - key of the object the comment is attached to. - - .. attribute:: site - - A :class:`~django.db.models.ForeignKey` to the - :class:`~django.contrib.sites.models.Site` on which the comment was - posted. - - .. attribute:: user - - A :class:`~django.db.models.ForeignKey` to the - :class:`~django.contrib.auth.models.User` who posted the comment. - May be blank if the comment was posted by an unauthenticated user. - - .. attribute:: user_name - - The name of the user who posted the comment. - - .. attribute:: user_email - - The email of the user who posted the comment. - - .. attribute:: user_url - - The URL entered by the person who posted the comment. - - .. attribute:: comment - - The actual content of the comment itself. - - .. attribute:: submit_date - - The date the comment was submitted. - - .. attribute:: ip_address - - The IP address of the user posting the comment. - - .. attribute:: is_public - - ``False`` if the comment is in moderation (see - :doc:`/ref/contrib/comments/moderation`); If ``True``, the comment will - be displayed on the site. - - .. attribute:: is_removed - - ``True`` if the comment was removed. Used to keep track of removed - comments instead of just deleting them. diff --git a/docs/ref/contrib/comments/moderation.txt b/docs/ref/contrib/comments/moderation.txt deleted file mode 100644 index 2f14064191c..00000000000 --- a/docs/ref/contrib/comments/moderation.txt +++ /dev/null @@ -1,245 +0,0 @@ -========================== -Generic comment moderation -========================== - -.. module:: django.contrib.comments.moderation - :synopsis: Support for automatic comment moderation. - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -Django's bundled comments application is extremely useful on its own, -but the amount of comment spam circulating on the Web today -essentially makes it necessary to have some sort of automatic -moderation system in place for any application which makes use of -comments. To make this easier to handle in a consistent fashion, -``django.contrib.comments.moderation`` provides a generic, extensible -comment-moderation system which can be applied to any model or set of -models which want to make use of Django's comment system. - - -Overview -======== - -The entire system is contained within ``django.contrib.comments.moderation``, -and uses a two-step process to enable moderation for any given model: - -1. A subclass of :class:`CommentModerator` - is defined which specifies the moderation options the model wants to - enable. - -2. The model is registered with the moderation system, passing in the - model class and the class which specifies its moderation options. - -A simple example is the best illustration of this. Suppose we have the -following model, which would represent entries in a Weblog:: - - from django.db import models - - class Entry(models.Model): - title = models.CharField(maxlength=250) - body = models.TextField() - pub_date = models.DateField() - enable_comments = models.BooleanField() - -Now, suppose that we want the following steps to be applied whenever a -new comment is posted on an ``Entry``: - -1. If the ``Entry``’s ``enable_comments`` field is ``False``, the - comment will simply be disallowed (i.e., immediately deleted). - -2. If the ``enable_comments`` field is ``True``, the comment will be - allowed to save. - -3. Once the comment is saved, an email should be sent to site staff - notifying them of the new comment. - -Accomplishing this is fairly straightforward and requires very little -code:: - - from django.contrib.comments.moderation import CommentModerator, moderator - - class EntryModerator(CommentModerator): - email_notification = True - enable_field = 'enable_comments' - - moderator.register(Entry, EntryModerator) - -The :class:`CommentModerator` class pre-defines a number of useful moderation -options which subclasses can enable or disable as desired, and ``moderator`` -knows how to work with them to determine whether to allow a comment, whether -to moderate a comment which will be allowed to post, and whether to email -notifications of new comments. - -Built-in moderation options ---------------------------- - -.. class:: CommentModerator - - Most common comment-moderation needs can be handled by subclassing - :class:`CommentModerator` and - changing the values of pre-defined attributes; the full range of built-in - options is as follows. - - .. attribute:: auto_close_field - - If this is set to the name of a - :class:`~django.db.models.DateField` or - :class:`~django.db.models.DateTimeField` on the model for which - comments are being moderated, new comments for objects of that model - will be disallowed (immediately deleted) when a certain number of days - have passed after the date specified in that field. Must be - used in conjunction with :attr:`close_after`, which specifies the - number of days past which comments should be - disallowed. Default value is ``None``. - - .. attribute:: auto_moderate_field - - Like :attr:`auto_close_field`, but instead of outright deleting - new comments when the requisite number of days have elapsed, - it will simply set the ``is_public`` field of new comments to - ``False`` before saving them. Must be used in conjunction with - :attr:`moderate_after`, which specifies the number of days past - which comments should be moderated. Default value is ``None``. - - .. attribute:: close_after - - If :attr:`auto_close_field` is used, this must specify the number - of days past the value of the field specified by - :attr:`auto_close_field` after which new comments for an object - should be disallowed. Allowed values are ``None``, 0 (which disallows - comments immediately), or any positive integer. Default value is - ``None``. - - .. attribute:: email_notification - - If ``True``, any new comment on an object of this model which - survives moderation (i.e., is not deleted) will generate an - email to site staff. Default value is ``False``. - - .. attribute:: enable_field - - If this is set to the name of a - :class:`~django.db.models.BooleanField` on the model - for which comments are being moderated, new comments on - objects of that model will be disallowed (immediately deleted) - whenever the value of that field is ``False`` on the object - the comment would be attached to. Default value is ``None``. - - .. attribute:: moderate_after - - If :attr:`auto_moderate_field` is used, this must specify the number - of days past the value of the field specified by - :attr:`auto_moderate_field` after which new comments for an object - should be marked non-public. Allowed values are ``None``, 0 (which - moderates comments immediately), or any positive integer. Default - value is ``None``. - -Simply subclassing :class:`CommentModerator` and changing the values of these -options will automatically enable the various moderation methods for any -models registered using the subclass. - -Adding custom moderation methods --------------------------------- - -For situations where the built-in options listed above are not -sufficient, subclasses of :class:`CommentModerator` can also override -the methods which actually perform the moderation, and apply any logic -they desire. :class:`CommentModerator` defines three methods which -determine how moderation will take place; each method will be called -by the moderation system and passed two arguments: ``comment``, which -is the new comment being posted, ``content_object``, which is the -object the comment will be attached to, and ``request``, which is the -:class:`~django.http.HttpRequest` in which the comment is being submitted: - -.. method:: CommentModerator.allow(comment, content_object, request) - - Should return ``True`` if the comment should be allowed to - post on the content object, and ``False`` otherwise (in which - case the comment will be immediately deleted). - -.. method:: CommentModerator.email(comment, content_object, request) - - If email notification of the new comment should be sent to - site staff or moderators, this method is responsible for - sending the email. - -.. method:: CommentModerator.moderate(comment, content_object, request) - - Should return ``True`` if the comment should be moderated (in - which case its ``is_public`` field will be set to ``False`` - before saving), and ``False`` otherwise (in which case the - ``is_public`` field will not be changed). - - -Registering models for moderation ---------------------------------- - -The moderation system, represented by -``django.contrib.comments.moderation.moderator`` is an instance of the class -:class:`Moderator`, which allows registration and "unregistration" of models -via two methods: - -.. function:: moderator.register(model_or_iterable, moderation_class) - - Takes two arguments: the first should be either a model class - or list of model classes, and the second should be a subclass - of ``CommentModerator``, and register the model or models to - be moderated using the options defined in the - ``CommentModerator`` subclass. If any of the models are - already registered for moderation, the exception - ``AlreadyModerated`` will be raised. - -.. function:: moderator.unregister(model_or_iterable) - - Takes one argument: a model class or list of model classes, - and removes the model or models from the set of models which - are being moderated. If any of the models are not currently - being moderated, the exception ``NotModerated`` will be raised. - - -Customizing the moderation system ---------------------------------- - -Most use cases will work easily with simple subclassing of -:class:`CommentModerator` and registration with the provided -:class:`Moderator` instance, but customization of global moderation behavior -can be achieved by subclassing :class:`Moderator` and instead registering -models with an instance of the subclass. - -.. class:: Moderator - - In addition to the :func:`moderator.register` and - :func:`moderator.unregister` methods detailed above, the following methods - on :class:`Moderator` can be overridden to achieve customized behavior: - - .. method:: connect() - - Determines how moderation is set up globally. The base - implementation in - :class:`Moderator` does this by - attaching listeners to the :data:`~django.contrib.comments.signals.comment_will_be_posted` - and :data:`~django.contrib.comments.signals.comment_was_posted` signals from the - comment models. - - .. method:: pre_save_moderation(sender, comment, request, **kwargs) - - In the base implementation, applies all pre-save moderation - steps (such as determining whether the comment needs to be - deleted, or whether it needs to be marked as non-public or - generate an email). - - .. method:: post_save_moderation(sender, comment, request, **kwargs) - - In the base implementation, applies all post-save moderation - steps (currently this consists entirely of deleting comments - which were disallowed). diff --git a/docs/ref/contrib/comments/signals.txt b/docs/ref/contrib/comments/signals.txt deleted file mode 100644 index f9df8980d77..00000000000 --- a/docs/ref/contrib/comments/signals.txt +++ /dev/null @@ -1,103 +0,0 @@ -================================ -Signals sent by the comments app -================================ - -.. module:: django.contrib.comments.signals - :synopsis: Signals sent by the comment module. - -.. warning:: - - Django's comment framework has been deprecated and is no longer supported. - Most users will be better served with a custom solution, or a hosted - product like Disqus__. - - The code formerly known as ``django.contrib.comments`` is `still available - in an external repository`__. - - __ https://disqus.com/ - __ https://github.com/django/django-contrib-comments - -The comment app sends a series of :doc:`signals ` to allow for -comment moderation and similar activities. See :doc:`the introduction to signals -` for information about how to register for and receive these -signals. - -comment_will_be_posted -====================== - -.. data:: django.contrib.comments.signals.comment_will_be_posted - :module: - -Sent just before a comment will be saved, after it's been sanity checked and -submitted. This can be used to modify the comment (in place) with posting -details or other such actions. - -If any receiver returns ``False`` the comment will be discarded and a 400 -response will be returned. - -This signal is sent at more or less the same time (just before, actually) as the -``Comment`` object's :data:`~django.db.models.signals.pre_save` signal. - -Arguments sent with this signal: - -``sender`` - The comment model. - -``comment`` - The comment instance about to be posted. Note that it won't have been - saved into the database yet, so it won't have a primary key, and any - relations might not work correctly yet. - -``request`` - The :class:`~django.http.HttpRequest` that posted the comment. - -comment_was_posted -================== - -.. data:: django.contrib.comments.signals.comment_was_posted - :module: - -Sent just after the comment is saved. - -Arguments sent with this signal: - -``sender`` - The comment model. - -``comment`` - The comment instance that was posted. Note that it will have already - been saved, so if you modify it you'll need to call - :meth:`~django.db.models.Model.save` again. - -``request`` - The :class:`~django.http.HttpRequest` that posted the comment. - -comment_was_flagged -=================== - -.. data:: django.contrib.comments.signals.comment_was_flagged - :module: - -Sent after a comment was "flagged" in some way. Check the flag to see if this -was a user requesting removal of a comment, a moderator approving/removing a -comment, or some other custom user flag. - -Arguments sent with this signal: - -``sender`` - The comment model. - -``comment`` - The comment instance that was posted. Note that it will have already - been saved, so if you modify it you'll need to call - :meth:`~django.db.models.Model.save` again. - -``flag`` - The ``django.contrib.comments.models.CommentFlag`` that's been attached to - the comment. - -``created`` - ``True`` if this is a new flag; ``False`` if it's a duplicate flag. - -``request`` - The :class:`~django.http.HttpRequest` that posted the comment. diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index bc8f5388570..ee4f7f13181 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -51,9 +51,6 @@ installed; several of Django's other bundled applications require it: * Django's :mod:`authentication framework ` uses it to tie user permissions to specific models. -* Django's comments system (:mod:`django.contrib.comments`) uses it to - "attach" comments to any installed model. - .. currentmodule:: django.contrib.contenttypes.models The ``ContentType`` model @@ -442,8 +439,8 @@ same types of lookups manually:: Note that if the model in a :class:`~django.contrib.contenttypes.fields.GenericRelation` uses a non-default value for ``ct_field`` or ``fk_field`` in its -:class:`~django.contrib.contenttypes.fields.GenericForeignKey` (e.g. the -:mod:`django.contrib.comments` app uses ``ct_field="object_pk"``), +:class:`~django.contrib.contenttypes.fields.GenericForeignKey` (for example, if +you had a ``Comment`` model that uses ``ct_field="object_pk"``), you'll need to set ``content_type_field`` and/or ``object_id_field`` in the :class:`~django.contrib.contenttypes.fields.GenericRelation` to match the ``ct_field`` and ``fk_field``, respectively, in the diff --git a/docs/ref/contrib/index.txt b/docs/ref/contrib/index.txt index 3b57ba8c17d..533680659ea 100644 --- a/docs/ref/contrib/index.txt +++ b/docs/ref/contrib/index.txt @@ -24,7 +24,6 @@ those packages have. admin/index auth - comments/index contenttypes csrf flatpages @@ -55,11 +54,6 @@ Django's authentication framework. See :doc:`/topics/auth/index`. -comments -======== - -A simple yet flexible comments system. See :doc:`/ref/contrib/comments/index`. - contenttypes ============ diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index d7b87c0bd74..8f9e7ba0537 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1002,14 +1002,12 @@ environment, such as all the currently defined Django settings (from ``settings.py``). As a security measure, Django will *not* include settings that might be -sensitive (or offensive), such as :setting:`SECRET_KEY` or -:setting:`PROFANITIES_LIST`. Specifically, it will exclude any setting whose -name includes any of the following: +sensitive (or offensive), such as :setting:`SECRET_KEY`. Specifically, it will +exclude any setting whose name includes any of the following: * ``'API'`` * ``'KEY'`` * ``'PASS'`` -* ``'PROFANITIES_LIST'`` * ``'SECRET'`` * ``'SIGNATURE'`` * ``'TOKEN'`` @@ -2469,53 +2467,6 @@ Default:: 'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher', 'django.contrib.auth.hashers.CryptPasswordHasher',) - -.. _settings-comments: - -Comments -======== - -Settings for :mod:`django.contrib.comments`. - -.. setting:: COMMENTS_HIDE_REMOVED - -COMMENTS_HIDE_REMOVED ---------------------- - -If ``True`` (default), removed comments will be excluded from comment -lists/counts (as taken from template tags). Otherwise, the template author is -responsible for some sort of a "this comment has been removed by the site staff" -message. - -.. setting:: COMMENT_MAX_LENGTH - -COMMENT_MAX_LENGTH ------------------- - -The maximum length of the comment field, in characters. Comments longer than -this will be rejected. Defaults to 3000. - -.. setting:: COMMENTS_APP - -COMMENTS_APP ------------- - -An app which provides :doc:`customization of the comments framework -`. Use the same dotted-string notation -as in :setting:`INSTALLED_APPS`. Your custom :setting:`COMMENTS_APP` -must also be listed in :setting:`INSTALLED_APPS`. - -.. setting:: PROFANITIES_LIST - -PROFANITIES_LIST ----------------- - -Default: ``()`` (Empty tuple) - -A tuple of profanities, as strings, that will be forbidden in comments when -``COMMENTS_ALLOW_PROFANITIES`` is ``False``. - - .. _settings-messages: Messages diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 25def4490dc..7bdb1889fff 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -9,9 +9,6 @@ A list of all the signals that Django sends. See the documentation on the :doc:`signal dispatcher ` for information regarding how to register for and receive signals. - The :doc:`comment framework ` sends a :doc:`set - of comment-related signals `. - The :doc:`authentication framework ` sends :ref:`signals when a user is logged in / out `. diff --git a/docs/releases/1.0-beta-2.txt b/docs/releases/1.0-beta-2.txt index 0c5225b6e1d..7bd3f396da0 100644 --- a/docs/releases/1.0-beta-2.txt +++ b/docs/releases/1.0-beta-2.txt @@ -30,11 +30,7 @@ This beta release includes two major features: Refactored ``django.contrib.comments`` As part of a Google Summer of Code project, Thejaswi Puthraya carried out a major rewrite and refactoring of Django's bundled - comment system, greatly increasing its flexibility and - customizability. :doc:`Full documentation - ` is available, as well as an - upgrade guide if you were using - the previous incarnation of the comments application.. + comment system, greatly increasing its flexibility and customizability. Refactored documentation Django's bundled and online documentation has also been diff --git a/docs/releases/1.0.txt b/docs/releases/1.0.txt index 65ecde2fea4..1e24ba138f6 100644 --- a/docs/releases/1.0.txt +++ b/docs/releases/1.0.txt @@ -194,10 +194,7 @@ Refactored ``django.contrib.comments`` As part of a Google Summer of Code project, Thejaswi Puthraya carried out a major rewrite and refactoring of Django's bundled comment system, greatly -increasing its flexibility and customizability. :doc:`Full documentation -` is available, as well as an upgrade guide -if you were using the previous incarnation of -the comments application. +increasing its flexibility and customizability. Removal of deprecated features ------------------------------ @@ -244,4 +241,3 @@ backends. However, not all database backends are alike, and in particular many o - :ref:`mysql-notes` - :ref:`sqlite-notes` - :ref:`oracle-notes` - diff --git a/docs/releases/1.3-alpha-1.txt b/docs/releases/1.3-alpha-1.txt index 8898fe67b3f..f2c44830e99 100644 --- a/docs/releases/1.3-alpha-1.txt +++ b/docs/releases/1.3-alpha-1.txt @@ -234,9 +234,8 @@ No more naughty words ~~~~~~~~~~~~~~~~~~~~~ Django has historically provided (and enforced) a list of profanities. -The :doc:`comments app ` has enforced this -list of profanities, preventing people from submitting comments that -contained one of those profanities. +The comments app has enforced this list of profanities, preventing people from +submitting comments that contained one of those profanities. Unfortunately, the technique used to implement this profanities list was woefully naive, and prone to the `Scunthorpe problem`_. Fixing the @@ -246,7 +245,7 @@ framework, we have "fixed" the problem by making the list of prohibited words an empty list. If you want to restore the old behavior, simply put a -:setting:`PROFANITIES_LIST` setting in your settings file that includes the +``PROFANITIES_LIST`` setting in your settings file that includes the words that you want to prohibit (see the `commit that implemented this change`_ if you want to see the list of words that was historically prohibited). However, if avoiding profanities is important to you, you diff --git a/docs/releases/1.3.txt b/docs/releases/1.3.txt index b77668ac3d2..e817e1c3eb7 100644 --- a/docs/releases/1.3.txt +++ b/docs/releases/1.3.txt @@ -441,9 +441,8 @@ No more naughty words ~~~~~~~~~~~~~~~~~~~~~ Django has historically provided (and enforced) a list of profanities. -The :doc:`comments app ` has enforced this -list of profanities, preventing people from submitting comments that -contained one of those profanities. +The comments app has enforced this list of profanities, preventing people from +submitting comments that contained one of those profanities. Unfortunately, the technique used to implement this profanities list was woefully naive, and prone to the `Scunthorpe problem`_. Improving @@ -453,7 +452,7 @@ of a web framework, we have "fixed" the problem by making the list of prohibited words an empty list. If you want to restore the old behavior, simply put a -:setting:`PROFANITIES_LIST` setting in your settings file that includes the +``PROFANITIES_LIST`` setting in your settings file that includes the words that you want to prohibit (see the `commit that implemented this change`_ if you want to see the list of words that was historically prohibited). However, if avoiding profanities is important to you, you diff --git a/docs/releases/1.4-alpha-1.txt b/docs/releases/1.4-alpha-1.txt index 6dce90bd8cd..d27a5b404f4 100644 --- a/docs/releases/1.4-alpha-1.txt +++ b/docs/releases/1.4-alpha-1.txt @@ -770,7 +770,7 @@ Check their documentation for details. `COMMENTS_BANNED_USERS_GROUP` setting ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Django's :doc:`comments app ` has historically +Django's comments app has historically supported excluding the comments of a special user group, but we've never documented the feature properly and didn't enforce the exclusion in other parts of the app such as the template tags. To fix this problem, we removed the code @@ -792,8 +792,7 @@ a custom comment model manager to exclude the user group, like this:: return qs Save this model manager in your custom comment app (e.g. in -``my_comments_app/managers.py``) and add it your -:ref:`custom comment app model `:: +``my_comments_app/managers.py``) and add it your custom comment app model:: from django.db import models from django.contrib.comments.models import Comment @@ -805,9 +804,6 @@ Save this model manager in your custom comment app (e.g. in objects = BanningCommentManager() -For more details, see the documentation about -:doc:`customizing the comments framework `. - `IGNORABLE_404_STARTS` and `IGNORABLE_404_ENDS` settings ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/1.4-beta-1.txt b/docs/releases/1.4-beta-1.txt index d6074ba0ef5..84928ad5704 100644 --- a/docs/releases/1.4-beta-1.txt +++ b/docs/releases/1.4-beta-1.txt @@ -838,7 +838,7 @@ Check their documentation for details. `COMMENTS_BANNED_USERS_GROUP` setting ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Django's :doc:`comments app ` has historically +Django's comments app has historically supported excluding the comments of a special user group, but we've never documented the feature properly and didn't enforce the exclusion in other parts of the app such as the template tags. To fix this problem, we removed the code @@ -860,8 +860,7 @@ a custom comment model manager to exclude the user group, like this:: return qs Save this model manager in your custom comment app (e.g. in -``my_comments_app/managers.py``) and add it your -:ref:`custom comment app model `:: +``my_comments_app/managers.py``) and add it your custom comment app model:: from django.db import models from django.contrib.comments.models import Comment @@ -873,9 +872,6 @@ Save this model manager in your custom comment app (e.g. in objects = BanningCommentManager() -For more details, see the documentation about -:doc:`customizing the comments framework `. - `IGNORABLE_404_STARTS` and `IGNORABLE_404_ENDS` settings ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/1.4.6.txt b/docs/releases/1.4.6.txt index cac640ad978..e6ed040c425 100644 --- a/docs/releases/1.4.6.txt +++ b/docs/releases/1.4.6.txt @@ -13,7 +13,7 @@ Mitigated possible XSS attack via user-supplied redirect URLs ------------------------------------------------------------- Django relies on user input in some cases (e.g. -:func:`django.contrib.auth.views.login`, :mod:`django.contrib.comments`, and +:func:`django.contrib.auth.views.login`, ``django.contrib.comments``, and :doc:`i18n `) to redirect the user to an "on success" URL. The security checks for these redirects (namely ``django.util.http.is_safe_url()``) didn't check if the scheme is ``http(s)`` diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt index 054a89a7784..436645d87fd 100644 --- a/docs/releases/1.4.txt +++ b/docs/releases/1.4.txt @@ -923,7 +923,7 @@ Check their documentation for details. `COMMENTS_BANNED_USERS_GROUP` setting ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Django's :doc:`comments app ` has historically +Django's comments has historically supported excluding the comments of a special user group, but we've never documented the feature properly and didn't enforce the exclusion in other parts of the app such as the template tags. To fix this problem, we removed the code @@ -945,8 +945,7 @@ comment model manager to exclude the user group, like this:: return qs Save this model manager in your custom comment app (e.g., in -``my_comments_app/managers.py``) and add it your -:ref:`custom comment app model `:: +``my_comments_app/managers.py``) and add it your custom comment app model:: from django.db import models from django.contrib.comments.models import Comment @@ -958,9 +957,6 @@ Save this model manager in your custom comment app (e.g., in objects = BanningCommentManager() -For more details, see the documentation about -:doc:`customizing the comments framework `. - `IGNORABLE_404_STARTS` and `IGNORABLE_404_ENDS` settings ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/1.5.2.txt b/docs/releases/1.5.2.txt index 6414aab5096..01147951b73 100644 --- a/docs/releases/1.5.2.txt +++ b/docs/releases/1.5.2.txt @@ -10,7 +10,7 @@ Mitigated possible XSS attack via user-supplied redirect URLs ------------------------------------------------------------- Django relies on user input in some cases (e.g. -:func:`django.contrib.auth.views.login`, :mod:`django.contrib.comments`, and +:func:`django.contrib.auth.views.login`, ``django.contrib.comments``, and :doc:`i18n `) to redirect the user to an "on success" URL. The security checks for these redirects (namely ``django.util.http.is_safe_url()``) didn't check if the scheme is ``http(s)`` diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index d3c9dca22e8..5e7134a714c 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -589,7 +589,7 @@ your code. Storage of IP addresses in the comments app ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The :doc:`comments ` app now uses a +The comments app now uses a ``GenericIPAddressField`` for storing commenters' IP addresses, to support comments submitted from IPv6 addresses. Until now, it stored them in an ``IPAddressField``, which is only meant to support IPv4. When saving a comment diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 36a43ed7046..b8d73d572b2 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -336,7 +336,6 @@ itself. It includes a number of other URLconfs:: urlpatterns = patterns('', # ... snip ... - url(r'^comments/', include('django.contrib.comments.urls')), url(r'^community/', include('django_website.aggregator.urls')), url(r'^contact/', include('django_website.contact.urls')), # ... snip ... diff --git a/setup.cfg b/setup.cfg index 1b2e4718a12..25d339cb087 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst install-script = scripts/rpm-install.sh [flake8] -exclude=build,.git,./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./django/utils/lru_cache.py,./tests/comment_tests/*,./django/test/_doctest.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py +exclude=build,.git,./django/utils/dictconfig.py,./django/utils/unittest.py,./django/utils/lru_cache.py,./tests/comment_tests/*,./django/test/_doctest.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py ignore=E128,E501,W601 [metadata] diff --git a/tests/comment_tests/__init__.py b/tests/comment_tests/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/tests/comment_tests/custom_comments/__init__.py b/tests/comment_tests/custom_comments/__init__.py deleted file mode 100644 index 14c614f610b..00000000000 --- a/tests/comment_tests/custom_comments/__init__.py +++ /dev/null @@ -1,32 +0,0 @@ -from django.core import urlresolvers -from comment_tests.custom_comments.models import CustomComment -from comment_tests.custom_comments.forms import CustomCommentForm - -def get_model(): - return CustomComment - -def get_form(): - return CustomCommentForm - -def get_form_target(): - return urlresolvers.reverse( - "comment_tests.custom_comments.views.custom_submit_comment" - ) - -def get_flag_url(c): - return urlresolvers.reverse( - "comment_tests.custom_comments.views.custom_flag_comment", - args=(c.id,) - ) - -def get_delete_url(c): - return urlresolvers.reverse( - "comment_tests.custom_comments.views.custom_delete_comment", - args=(c.id,) - ) - -def get_approve_url(c): - return urlresolvers.reverse( - "comment_tests.custom_comments.views.custom_approve_comment", - args=(c.id,) - ) diff --git a/tests/comment_tests/custom_comments/forms.py b/tests/comment_tests/custom_comments/forms.py deleted file mode 100644 index 07918ddb8ce..00000000000 --- a/tests/comment_tests/custom_comments/forms.py +++ /dev/null @@ -1,5 +0,0 @@ -from django import forms - - -class CustomCommentForm(forms.Form): - pass diff --git a/tests/comment_tests/custom_comments/models.py b/tests/comment_tests/custom_comments/models.py deleted file mode 100644 index 646f6255f23..00000000000 --- a/tests/comment_tests/custom_comments/models.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.db import models - - -class CustomComment(models.Model): - pass diff --git a/tests/comment_tests/custom_comments/views.py b/tests/comment_tests/custom_comments/views.py deleted file mode 100644 index 1c3a974367c..00000000000 --- a/tests/comment_tests/custom_comments/views.py +++ /dev/null @@ -1,14 +0,0 @@ -from django.http import HttpResponse - - -def custom_submit_comment(request): - return HttpResponse("Hello from the custom submit comment view.") - -def custom_flag_comment(request, comment_id): - return HttpResponse("Hello from the custom flag view.") - -def custom_delete_comment(request, comment_id): - return HttpResponse("Hello from the custom delete view.") - -def custom_approve_comment(request, comment_id): - return HttpResponse("Hello from the custom approve view.") diff --git a/tests/comment_tests/fixtures/comment_tests.json b/tests/comment_tests/fixtures/comment_tests.json deleted file mode 100644 index 55e2161a4cb..00000000000 --- a/tests/comment_tests/fixtures/comment_tests.json +++ /dev/null @@ -1,53 +0,0 @@ -[ - { - "model" : "comment_tests.book", - "pk" : 1, - "fields" : { - "dewey_decimal" : "12.34" - } - }, - { - "model" : "comment_tests.author", - "pk" : 1, - "fields" : { - "first_name" : "John", - "last_name" : "Smith" - } - }, - { - "model" : "comment_tests.author", - "pk" : 2, - "fields" : { - "first_name" : "Peter", - "last_name" : "Jones" - } - }, - { - "model" : "comment_tests.article", - "pk" : 1, - "fields" : { - "author" : 1, - "headline" : "Man Bites Dog" - } - }, - { - "model" : "comment_tests.article", - "pk" : 2, - "fields" : { - "author" : 2, - "headline" : "Dog Bites Man" - } - }, - - { - "model" : "auth.user", - "pk" : 100, - "fields" : { - "username" : "normaluser", - "password" : "34ea4aaaf24efcbb4b30d27302f8657f", - "first_name": "Joe", - "last_name": "Normal", - "email": "joe.normal@example.com" - } - } -] diff --git a/tests/comment_tests/fixtures/comment_utils.xml b/tests/comment_tests/fixtures/comment_utils.xml deleted file mode 100644 index a39bbf63e18..00000000000 --- a/tests/comment_tests/fixtures/comment_utils.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - ABC - This is the body - 2008-01-01 - True - - - XYZ - Text here - 2008-01-02 - False - - diff --git a/tests/comment_tests/models.py b/tests/comment_tests/models.py deleted file mode 100644 index a2b27e7e878..00000000000 --- a/tests/comment_tests/models.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -Comments may be attached to any object. See the comment documentation for -more information. -""" - -from __future__ import unicode_literals - -from django.db import models -from django.utils.encoding import python_2_unicode_compatible - - -@python_2_unicode_compatible -class Author(models.Model): - first_name = models.CharField(max_length=30) - last_name = models.CharField(max_length=30) - - def __str__(self): - return '%s %s' % (self.first_name, self.last_name) - -@python_2_unicode_compatible -class Article(models.Model): - author = models.ForeignKey(Author) - headline = models.CharField(max_length=100) - - def __str__(self): - return self.headline - -@python_2_unicode_compatible -class Entry(models.Model): - title = models.CharField(max_length=250) - body = models.TextField() - pub_date = models.DateField() - enable_comments = models.BooleanField(default=False) - - def __str__(self): - return self.title - -class Book(models.Model): - dewey_decimal = models.DecimalField(primary_key=True, decimal_places=2, max_digits=5) diff --git a/tests/comment_tests/tests/__init__.py b/tests/comment_tests/tests/__init__.py deleted file mode 100644 index 5f73a995ca6..00000000000 --- a/tests/comment_tests/tests/__init__.py +++ /dev/null @@ -1,83 +0,0 @@ -from django.contrib.auth.models import User -from django.contrib.comments.forms import CommentForm -from django.contrib.comments.models import Comment -from django.contrib.contenttypes.models import ContentType -from django.contrib.sites.models import Site -from django.test import TestCase, override_settings - -from ..models import Article, Author - -# Shortcut -CT = ContentType.objects.get_for_model - -# Helper base class for comment tests that need data. -@override_settings(PASSWORD_HASHERS=('django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',)) -class CommentTestCase(TestCase): - fixtures = ["comment_tests"] - urls = 'comment_tests.urls_default' - - def createSomeComments(self): - # Two anonymous comments on two different objects - c1 = Comment.objects.create( - content_type = CT(Article), - object_pk = "1", - user_name = "Joe Somebody", - user_email = "jsomebody@example.com", - user_url = "http://example.com/~joe/", - comment = "First!", - site = Site.objects.get_current(), - ) - c2 = Comment.objects.create( - content_type = CT(Author), - object_pk = "1", - user_name = "Joe Somebody", - user_email = "jsomebody@example.com", - user_url = "http://example.com/~joe/", - comment = "First here, too!", - site = Site.objects.get_current(), - ) - - # Two authenticated comments: one on the same Article, and - # one on a different Author - user = User.objects.create( - username = "frank_nobody", - first_name = "Frank", - last_name = "Nobody", - email = "fnobody@example.com", - password = "", - is_staff = False, - is_active = True, - is_superuser = False, - ) - c3 = Comment.objects.create( - content_type = CT(Article), - object_pk = "1", - user = user, - user_url = "http://example.com/~frank/", - comment = "Damn, I wanted to be first.", - site = Site.objects.get_current(), - ) - c4 = Comment.objects.create( - content_type = CT(Author), - object_pk = "2", - user = user, - user_url = "http://example.com/~frank/", - comment = "You get here first, too?", - site = Site.objects.get_current(), - ) - - return c1, c2, c3, c4 - - def getData(self): - return { - 'name' : 'Jim Bob', - 'email' : 'jim.bob@example.com', - 'url' : '', - 'comment' : 'This is my comment', - } - - def getValidData(self, obj): - f = CommentForm(obj) - d = self.getData() - d.update(f.initial) - return d diff --git a/tests/comment_tests/tests/test_app_api.py b/tests/comment_tests/tests/test_app_api.py deleted file mode 100644 index ffb78c851e5..00000000000 --- a/tests/comment_tests/tests/test_app_api.py +++ /dev/null @@ -1,67 +0,0 @@ -from django.conf import settings -from django.contrib import comments -from django.contrib.comments.models import Comment -from django.contrib.comments.forms import CommentForm -from django.core.exceptions import ImproperlyConfigured -from django.test import modify_settings, override_settings -from django.utils import six - -from . import CommentTestCase - - -class CommentAppAPITests(CommentTestCase): - """Tests for the "comment app" API""" - - def testGetCommentApp(self): - self.assertEqual(comments.get_comment_app(), comments) - - def testGetForm(self): - self.assertEqual(comments.get_form(), CommentForm) - - def testGetFormTarget(self): - self.assertEqual(comments.get_form_target(), "/post/") - - def testGetFlagURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_flag_url(c), "/flag/12345/") - - def getGetDeleteURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_delete_url(c), "/delete/12345/") - - def getGetApproveURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_approve_url(c), "/approve/12345/") - - -@modify_settings(INSTALLED_APPS={'append': 'comment_tests.custom_comments'}) -@override_settings(COMMENTS_APP='comment_tests.custom_comments') -class CustomCommentTest(CommentTestCase): - urls = 'comment_tests.urls' - - def testGetCommentApp(self): - from comment_tests import custom_comments - self.assertEqual(comments.get_comment_app(), custom_comments) - - def testGetModel(self): - from comment_tests.custom_comments.models import CustomComment - self.assertEqual(comments.get_model(), CustomComment) - - def testGetForm(self): - from comment_tests.custom_comments.forms import CustomCommentForm - self.assertEqual(comments.get_form(), CustomCommentForm) - - def testGetFormTarget(self): - self.assertEqual(comments.get_form_target(), "/post/") - - def testGetFlagURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_flag_url(c), "/flag/12345/") - - def testGetDeleteURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_delete_url(c), "/delete/12345/") - - def testGetApproveURL(self): - c = Comment(id=12345) - self.assertEqual(comments.get_approve_url(c), "/approve/12345/") diff --git a/tests/comment_tests/tests/test_comment_form.py b/tests/comment_tests/tests/test_comment_form.py deleted file mode 100644 index d4399fbd2ab..00000000000 --- a/tests/comment_tests/tests/test_comment_form.py +++ /dev/null @@ -1,76 +0,0 @@ -import time - -from django.conf import settings -from django.contrib.comments.forms import CommentForm -from django.contrib.comments.models import Comment -from django.test import override_settings - -from . import CommentTestCase -from ..models import Article - - -class CommentFormTests(CommentTestCase): - def testInit(self): - f = CommentForm(Article.objects.get(pk=1)) - self.assertEqual(f.initial['content_type'], str(Article._meta)) - self.assertEqual(f.initial['object_pk'], "1") - self.assertNotEqual(f.initial['security_hash'], None) - self.assertNotEqual(f.initial['timestamp'], None) - - def testValidPost(self): - a = Article.objects.get(pk=1) - f = CommentForm(a, data=self.getValidData(a)) - self.assertTrue(f.is_valid(), f.errors) - return f - - def tamperWithForm(self, **kwargs): - a = Article.objects.get(pk=1) - d = self.getValidData(a) - d.update(kwargs) - f = CommentForm(Article.objects.get(pk=1), data=d) - self.assertFalse(f.is_valid()) - return f - - def testHoneypotTampering(self): - self.tamperWithForm(honeypot="I am a robot") - - def testTimestampTampering(self): - self.tamperWithForm(timestamp=str(time.time() - 28800)) - - def testSecurityHashTampering(self): - self.tamperWithForm(security_hash="Nobody expects the Spanish Inquisition!") - - def testContentTypeTampering(self): - self.tamperWithForm(content_type="auth.user") - - def testObjectPKTampering(self): - self.tamperWithForm(object_pk="3") - - def testSecurityErrors(self): - f = self.tamperWithForm(honeypot="I am a robot") - self.assertTrue("honeypot" in f.security_errors()) - - def testGetCommentObject(self): - f = self.testValidPost() - c = f.get_comment_object() - self.assertIsInstance(c, Comment) - self.assertEqual(c.content_object, Article.objects.get(pk=1)) - self.assertEqual(c.comment, "This is my comment") - c.save() - self.assertEqual(Comment.objects.count(), 1) - - @override_settings(PROFANITIES_LIST=["rooster"]) - def testProfanities(self): - """Test COMMENTS_ALLOW_PROFANITIES and PROFANITIES_LIST settings""" - a = Article.objects.get(pk=1) - d = self.getValidData(a) - - # Try with COMMENTS_ALLOW_PROFANITIES off - with self.settings(COMMENTS_ALLOW_PROFANITIES=False): - f = CommentForm(a, data=dict(d, comment="What a rooster!")) - self.assertFalse(f.is_valid()) - - # Now with COMMENTS_ALLOW_PROFANITIES on - with self.settings(COMMENTS_ALLOW_PROFANITIES=True): - f = CommentForm(a, data=dict(d, comment="What a rooster!")) - self.assertTrue(f.is_valid()) diff --git a/tests/comment_tests/tests/test_comment_utils_moderators.py b/tests/comment_tests/tests/test_comment_utils_moderators.py deleted file mode 100644 index 9de37e47e23..00000000000 --- a/tests/comment_tests/tests/test_comment_utils_moderators.py +++ /dev/null @@ -1,97 +0,0 @@ -from django.contrib.comments.models import Comment -from django.contrib.comments.moderation import (moderator, CommentModerator, - AlreadyModerated) -from django.core import mail -from django.test import override_settings - -from . import CommentTestCase -from ..models import Entry - - -class EntryModerator1(CommentModerator): - email_notification = True - -class EntryModerator2(CommentModerator): - enable_field = 'enable_comments' - -class EntryModerator3(CommentModerator): - auto_close_field = 'pub_date' - close_after = 7 - -class EntryModerator4(CommentModerator): - auto_moderate_field = 'pub_date' - moderate_after = 7 - -class EntryModerator5(CommentModerator): - auto_moderate_field = 'pub_date' - moderate_after = 0 - -class EntryModerator6(CommentModerator): - auto_close_field = 'pub_date' - close_after = 0 - -class CommentUtilsModeratorTests(CommentTestCase): - fixtures = ["comment_utils.xml"] - - def createSomeComments(self): - # Tests for the moderation signals must actually post data - # through the comment views, because only the comment views - # emit the custom signals moderation listens for. - e = Entry.objects.get(pk=1) - data = self.getValidData(e) - - self.client.post("/post/", data, REMOTE_ADDR="1.2.3.4") - - # We explicitly do a try/except to get the comment we've just - # posted because moderation may have disallowed it, in which - # case we can just return it as None. - try: - c1 = Comment.objects.all()[0] - except IndexError: - c1 = None - - self.client.post("/post/", data, REMOTE_ADDR="1.2.3.4") - - try: - c2 = Comment.objects.all()[0] - except IndexError: - c2 = None - return c1, c2 - - def tearDown(self): - moderator.unregister(Entry) - - def testRegisterExistingModel(self): - moderator.register(Entry, EntryModerator1) - self.assertRaises(AlreadyModerated, moderator.register, Entry, EntryModerator1) - - def testEmailNotification(self): - with override_settings(MANAGERS=("test@example.com",)): - moderator.register(Entry, EntryModerator1) - self.createSomeComments() - self.assertEqual(len(mail.outbox), 2) - - def testCommentsEnabled(self): - moderator.register(Entry, EntryModerator2) - self.createSomeComments() - self.assertEqual(Comment.objects.all().count(), 1) - - def testAutoCloseField(self): - moderator.register(Entry, EntryModerator3) - self.createSomeComments() - self.assertEqual(Comment.objects.all().count(), 0) - - def testAutoModerateField(self): - moderator.register(Entry, EntryModerator4) - c1, c2 = self.createSomeComments() - self.assertEqual(c2.is_public, False) - - def testAutoModerateFieldImmediate(self): - moderator.register(Entry, EntryModerator5) - c1, c2 = self.createSomeComments() - self.assertEqual(c2.is_public, False) - - def testAutoCloseFieldImmediate(self): - moderator.register(Entry, EntryModerator6) - c1, c2 = self.createSomeComments() - self.assertEqual(Comment.objects.all().count(), 0) diff --git a/tests/comment_tests/tests/test_comment_view.py b/tests/comment_tests/tests/test_comment_view.py deleted file mode 100644 index 653419d168b..00000000000 --- a/tests/comment_tests/tests/test_comment_view.py +++ /dev/null @@ -1,321 +0,0 @@ -from __future__ import unicode_literals - -import re - -from django.conf import settings -from django.contrib.auth.models import User -from django.contrib.comments import signals -from django.contrib.comments.models import Comment - -from . import CommentTestCase -from ..models import Article, Book - - -post_redirect_re = re.compile(r'^http://testserver/posted/\?c=(?P\d+$)') - -class CommentViewTests(CommentTestCase): - - def testPostCommentHTTPMethods(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - response = self.client.get("/post/", data) - self.assertEqual(response.status_code, 405) - self.assertEqual(response["Allow"], "POST") - - def testPostCommentMissingCtype(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - del data["content_type"] - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testPostCommentBadCtype(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["content_type"] = "Nobody expects the Spanish Inquisition!" - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testPostCommentMissingObjectPK(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - del data["object_pk"] - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testPostCommentBadObjectPK(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["object_pk"] = "14" - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testPostInvalidIntegerPK(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["comment"] = "This is another comment" - data["object_pk"] = '\ufffd' - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testPostInvalidDecimalPK(self): - b = Book.objects.get(pk='12.34') - data = self.getValidData(b) - data["comment"] = "This is another comment" - data["object_pk"] = 'cookies' - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testCommentPreview(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["preview"] = "Preview" - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 200) - self.assertTemplateUsed(response, "comments/preview.html") - - def testHashTampering(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["security_hash"] = "Nobody expects the Spanish Inquisition!" - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - - def testDebugCommentErrors(self): - """The debug error template should be shown only if DEBUG is True""" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["security_hash"] = "Nobody expects the Spanish Inquisition!" - - with self.settings(DEBUG=True): - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - self.assertTemplateUsed(response, "comments/400-debug.html") - - with self.settings(DEBUG=False): - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - self.assertTemplateNotUsed(response, "comments/400-debug.html") - - def testCreateValidComment(self): - address = "1.2.3.4" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - self.response = self.client.post("/post/", data, REMOTE_ADDR=address) - self.assertEqual(self.response.status_code, 302) - self.assertEqual(Comment.objects.count(), 1) - c = Comment.objects.all()[0] - self.assertEqual(c.ip_address, address) - self.assertEqual(c.comment, "This is my comment") - - def testCreateValidCommentIPv6(self): - """ - Test creating a valid comment with a long IPv6 address. - Note that this test should fail when Comment.ip_address is an IPAddress instead of a GenericIPAddress, - but does not do so on SQLite or PostgreSQL, because they use the TEXT and INET types, which already - allow storing an IPv6 address internally. - """ - address = "2a02::223:6cff:fe8a:2e8a" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - self.response = self.client.post("/post/", data, REMOTE_ADDR=address) - self.assertEqual(self.response.status_code, 302) - self.assertEqual(Comment.objects.count(), 1) - c = Comment.objects.all()[0] - self.assertEqual(c.ip_address, address) - self.assertEqual(c.comment, "This is my comment") - - def testCreateValidCommentIPv6Unpack(self): - address = "::ffff:18.52.18.52" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - self.response = self.client.post("/post/", data, REMOTE_ADDR=address) - self.assertEqual(self.response.status_code, 302) - self.assertEqual(Comment.objects.count(), 1) - c = Comment.objects.all()[0] - # We trim the '::ffff:' bit off because it is an IPv4 addr - self.assertEqual(c.ip_address, address[7:]) - self.assertEqual(c.comment, "This is my comment") - - def testPostAsAuthenticatedUser(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data['name'] = data['email'] = '' - self.client.login(username="normaluser", password="normaluser") - self.response = self.client.post("/post/", data, REMOTE_ADDR="1.2.3.4") - self.assertEqual(self.response.status_code, 302) - self.assertEqual(Comment.objects.count(), 1) - c = Comment.objects.all()[0] - self.assertEqual(c.ip_address, "1.2.3.4") - u = User.objects.get(username='normaluser') - self.assertEqual(c.user, u) - self.assertEqual(c.user_name, u.get_full_name()) - self.assertEqual(c.user_email, u.email) - - def testPostAsAuthenticatedUserWithoutFullname(self): - """ - Check that the user's name in the comment is populated for - authenticated users without first_name and last_name. - """ - user = User.objects.create_user(username='jane_other', - email='jane@example.com', password='jane_other') - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data['name'] = data['email'] = '' - self.client.login(username="jane_other", password="jane_other") - self.response = self.client.post("/post/", data, REMOTE_ADDR="1.2.3.4") - c = Comment.objects.get(user=user) - self.assertEqual(c.ip_address, "1.2.3.4") - self.assertEqual(c.user_name, 'jane_other') - user.delete() - - def testPreventDuplicateComments(self): - """Prevent posting the exact same comment twice""" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - self.client.post("/post/", data) - self.client.post("/post/", data) - self.assertEqual(Comment.objects.count(), 1) - - # This should not trigger the duplicate prevention - self.client.post("/post/", dict(data, comment="My second comment.")) - self.assertEqual(Comment.objects.count(), 2) - - def testCommentSignals(self): - """Test signals emitted by the comment posting view""" - - # callback - def receive(sender, **kwargs): - self.assertEqual(kwargs['comment'].comment, "This is my comment") - self.assertTrue('request' in kwargs) - received_signals.append(kwargs.get('signal')) - - # Connect signals and keep track of handled ones - received_signals = [] - expected_signals = [ - signals.comment_will_be_posted, signals.comment_was_posted - ] - for signal in expected_signals: - signal.connect(receive) - - # Post a comment and check the signals - self.testCreateValidComment() - self.assertEqual(received_signals, expected_signals) - - for signal in expected_signals: - signal.disconnect(receive) - - def testWillBePostedSignal(self): - """ - Test that the comment_will_be_posted signal can prevent the comment from - actually getting saved - """ - def receive(sender, **kwargs): return False - signals.comment_will_be_posted.connect(receive, dispatch_uid="comment-test") - a = Article.objects.get(pk=1) - data = self.getValidData(a) - response = self.client.post("/post/", data) - self.assertEqual(response.status_code, 400) - self.assertEqual(Comment.objects.count(), 0) - signals.comment_will_be_posted.disconnect(dispatch_uid="comment-test") - - def testWillBePostedSignalModifyComment(self): - """ - Test that the comment_will_be_posted signal can modify a comment before - it gets posted - """ - def receive(sender, **kwargs): - # a bad but effective spam filter :)... - kwargs['comment'].is_public = False - - signals.comment_will_be_posted.connect(receive) - self.testCreateValidComment() - c = Comment.objects.all()[0] - self.assertFalse(c.is_public) - - def testCommentNext(self): - """Test the different "next" actions the comment view can take""" - a = Article.objects.get(pk=1) - data = self.getValidData(a) - response = self.client.post("/post/", data) - location = response["Location"] - match = post_redirect_re.match(location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) - - data["next"] = "/somewhere/else/" - data["comment"] = "This is another comment" - response = self.client.post("/post/", data) - location = response["Location"] - match = re.search(r"^http://testserver/somewhere/else/\?c=\d+$", location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) - - data["next"] = "http://badserver/somewhere/else/" - data["comment"] = "This is another comment with an unsafe next url" - response = self.client.post("/post/", data) - location = response["Location"] - match = post_redirect_re.match(location) - self.assertTrue(match is not None, "Unsafe redirection to: %s" % location) - - def testCommentDoneView(self): - a = Article.objects.get(pk=1) - data = self.getValidData(a) - response = self.client.post("/post/", data) - location = response["Location"] - match = post_redirect_re.match(location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) - pk = int(match.group('pk')) - response = self.client.get(location) - self.assertTemplateUsed(response, "comments/posted.html") - self.assertEqual(response.context[0]["comment"], Comment.objects.get(pk=pk)) - - def testCommentNextWithQueryString(self): - """ - The `next` key needs to handle already having a query string (#10585) - """ - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["next"] = "/somewhere/else/?foo=bar" - data["comment"] = "This is another comment" - response = self.client.post("/post/", data) - location = response["Location"] - match = re.search(r"^http://testserver/somewhere/else/\?foo=bar&c=\d+$", location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) - - def testCommentPostRedirectWithInvalidIntegerPK(self): - """ - Tests that attempting to retrieve the location specified in the - post redirect, after adding some invalid data to the expected - querystring it ends with, doesn't cause a server error. - """ - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["comment"] = "This is another comment" - response = self.client.post("/post/", data) - location = response["Location"] - broken_location = location + "\ufffd" - response = self.client.get(broken_location) - self.assertEqual(response.status_code, 200) - - def testCommentNextWithQueryStringAndAnchor(self): - """ - The `next` key needs to handle already having an anchor. Refs #13411. - """ - # With a query string also. - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["next"] = "/somewhere/else/?foo=bar#baz" - data["comment"] = "This is another comment" - response = self.client.post("/post/", data) - location = response["Location"] - match = re.search(r"^http://testserver/somewhere/else/\?foo=bar&c=\d+#baz$", location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) - - # Without a query string - a = Article.objects.get(pk=1) - data = self.getValidData(a) - data["next"] = "/somewhere/else/#baz" - data["comment"] = "This is another comment" - response = self.client.post("/post/", data) - location = response["Location"] - match = re.search(r"^http://testserver/somewhere/else/\?c=\d+#baz$", location) - self.assertTrue(match is not None, "Unexpected redirect location: %s" % location) diff --git a/tests/comment_tests/tests/test_feeds.py b/tests/comment_tests/tests/test_feeds.py deleted file mode 100644 index 46b86c889a8..00000000000 --- a/tests/comment_tests/tests/test_feeds.py +++ /dev/null @@ -1,51 +0,0 @@ -from xml.etree import ElementTree as ET - -from django.conf import settings -from django.contrib.comments.models import Comment -from django.contrib.contenttypes.models import ContentType -from django.contrib.sites.models import Site - -from . import CommentTestCase -from ..models import Article - - -class CommentFeedTests(CommentTestCase): - urls = 'comment_tests.urls' - feed_url = '/rss/comments/' - - def setUp(self): - site_2 = Site.objects.create(id=settings.SITE_ID+1, - domain="example2.com", name="example2.com") - # A comment for another site - Comment.objects.create( - content_type = ContentType.objects.get_for_model(Article), - object_pk = "1", - user_name = "Joe Somebody", - user_email = "jsomebody@example.com", - user_url = "http://example.com/~joe/", - comment = "A comment for the second site.", - site = site_2, - ) - - def test_feed(self): - response = self.client.get(self.feed_url) - self.assertEqual(response.status_code, 200) - self.assertEqual(response['Content-Type'], 'application/rss+xml; charset=utf-8') - - rss_elem = ET.fromstring(response.content) - - self.assertEqual(rss_elem.tag, "rss") - self.assertEqual(rss_elem.attrib, {"version": "2.0"}) - - channel_elem = rss_elem.find("channel") - - title_elem = channel_elem.find("title") - self.assertEqual(title_elem.text, "example.com comments") - - link_elem = channel_elem.find("link") - self.assertEqual(link_elem.text, "http://example.com/") - - atomlink_elem = channel_elem.find("{http://www.w3.org/2005/Atom}link") - self.assertEqual(atomlink_elem.attrib, {"href": "http://example.com/rss/comments/", "rel": "self"}) - - self.assertNotContains(response, "A comment for the second site.") diff --git a/tests/comment_tests/tests/test_models.py b/tests/comment_tests/tests/test_models.py deleted file mode 100644 index 4303fda8523..00000000000 --- a/tests/comment_tests/tests/test_models.py +++ /dev/null @@ -1,56 +0,0 @@ -from django.contrib.comments.models import Comment - -from . import CommentTestCase -from ..models import Author, Article - - -class CommentModelTests(CommentTestCase): - def testSave(self): - for c in self.createSomeComments(): - self.assertNotEqual(c.submit_date, None) - - def testUserProperties(self): - c1, c2, c3, c4 = self.createSomeComments() - self.assertEqual(c1.name, "Joe Somebody") - self.assertEqual(c2.email, "jsomebody@example.com") - self.assertEqual(c3.name, "Frank Nobody") - self.assertEqual(c3.url, "http://example.com/~frank/") - self.assertEqual(c1.user, None) - self.assertEqual(c3.user, c4.user) - -class CommentManagerTests(CommentTestCase): - - def testInModeration(self): - """Comments that aren't public are considered in moderation""" - c1, c2, c3, c4 = self.createSomeComments() - c1.is_public = False - c2.is_public = False - c1.save() - c2.save() - moderated_comments = list(Comment.objects.in_moderation().order_by("id")) - self.assertEqual(moderated_comments, [c1, c2]) - - def testRemovedCommentsNotInModeration(self): - """Removed comments are not considered in moderation""" - c1, c2, c3, c4 = self.createSomeComments() - c1.is_public = False - c2.is_public = False - c2.is_removed = True - c1.save() - c2.save() - moderated_comments = list(Comment.objects.in_moderation()) - self.assertEqual(moderated_comments, [c1]) - - def testForModel(self): - c1, c2, c3, c4 = self.createSomeComments() - article_comments = list(Comment.objects.for_model(Article).order_by("id")) - author_comments = list(Comment.objects.for_model(Author.objects.get(pk=1))) - self.assertEqual(article_comments, [c1, c3]) - self.assertEqual(author_comments, [c2]) - - def testPrefetchRelated(self): - c1, c2, c3, c4 = self.createSomeComments() - # one for comments, one for Articles, one for Author - with self.assertNumQueries(3): - qs = Comment.objects.prefetch_related('content_object') - [c.content_object for c in qs] diff --git a/tests/comment_tests/tests/test_moderation_views.py b/tests/comment_tests/tests/test_moderation_views.py deleted file mode 100644 index b70b01ed16a..00000000000 --- a/tests/comment_tests/tests/test_moderation_views.py +++ /dev/null @@ -1,315 +0,0 @@ -from __future__ import unicode_literals - -from django.contrib.auth.models import User, Permission -from django.contrib.comments import signals -from django.contrib.comments.models import Comment, CommentFlag -from django.contrib.contenttypes.models import ContentType -from django.utils import translation - -from . import CommentTestCase - - -class FlagViewTests(CommentTestCase): - - def testFlagGet(self): - """GET the flag view: render a confirmation page.""" - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.get("/flag/%d/" % pk) - self.assertTemplateUsed(response, "comments/flag.html") - - def testFlagPost(self): - """POST the flag view: actually flag the view (nice for XHR)""" - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/flag/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/flagged/?c=%d" % pk) - c = Comment.objects.get(pk=pk) - self.assertEqual(c.flags.filter(flag=CommentFlag.SUGGEST_REMOVAL).count(), 1) - return c - - def testFlagPostNext(self): - """ - POST the flag view, explicitly providing a next url. - """ - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/flag/%d/" % pk, {'next': "/go/here/"}) - self.assertEqual(response["Location"], - "http://testserver/go/here/?c=%d" % pk) - - def testFlagPostUnsafeNext(self): - """ - POSTing to the flag view with an unsafe next url will ignore the - provided url when redirecting. - """ - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/flag/%d/" % pk, - {'next': "http://elsewhere/bad"}) - self.assertEqual(response["Location"], - "http://testserver/flagged/?c=%d" % pk) - - def testFlagPostTwice(self): - """Users don't get to flag comments more than once.""" - c = self.testFlagPost() - self.client.post("/flag/%d/" % c.pk) - self.client.post("/flag/%d/" % c.pk) - self.assertEqual(c.flags.filter(flag=CommentFlag.SUGGEST_REMOVAL).count(), 1) - - def testFlagAnon(self): - """GET/POST the flag view while not logged in: redirect to log in.""" - comments = self.createSomeComments() - pk = comments[0].pk - response = self.client.get("/flag/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/accounts/login/?next=/flag/%d/" % pk) - response = self.client.post("/flag/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/accounts/login/?next=/flag/%d/" % pk) - - def testFlaggedView(self): - comments = self.createSomeComments() - pk = comments[0].pk - response = self.client.get("/flagged/", data={"c": pk}) - self.assertTemplateUsed(response, "comments/flagged.html") - - def testFlagSignals(self): - """Test signals emitted by the comment flag view""" - - # callback - def receive(sender, **kwargs): - self.assertEqual(kwargs['flag'].flag, CommentFlag.SUGGEST_REMOVAL) - self.assertEqual(kwargs['request'].user.username, "normaluser") - received_signals.append(kwargs.get('signal')) - - # Connect signals and keep track of handled ones - received_signals = [] - signals.comment_was_flagged.connect(receive) - - # Post a comment and check the signals - self.testFlagPost() - self.assertEqual(received_signals, [signals.comment_was_flagged]) - - signals.comment_was_flagged.disconnect(receive) - -def makeModerator(username): - u = User.objects.get(username=username) - ct = ContentType.objects.get_for_model(Comment) - p = Permission.objects.get(content_type=ct, codename="can_moderate") - u.user_permissions.add(p) - -class DeleteViewTests(CommentTestCase): - - def testDeletePermissions(self): - """The delete view should only be accessible to 'moderators'""" - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.get("/delete/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/accounts/login/?next=/delete/%d/" % pk) - - makeModerator("normaluser") - response = self.client.get("/delete/%d/" % pk) - self.assertEqual(response.status_code, 200) - - def testDeletePost(self): - """POSTing the delete view should mark the comment as removed""" - comments = self.createSomeComments() - pk = comments[0].pk - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/delete/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/deleted/?c=%d" % pk) - c = Comment.objects.get(pk=pk) - self.assertTrue(c.is_removed) - self.assertEqual(c.flags.filter(flag=CommentFlag.MODERATOR_DELETION, user__username="normaluser").count(), 1) - - def testDeletePostNext(self): - """ - POSTing the delete view will redirect to an explicitly provided a next - url. - """ - comments = self.createSomeComments() - pk = comments[0].pk - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/delete/%d/" % pk, {'next': "/go/here/"}) - self.assertEqual(response["Location"], - "http://testserver/go/here/?c=%d" % pk) - - def testDeletePostUnsafeNext(self): - """ - POSTing to the delete view with an unsafe next url will ignore the - provided url when redirecting. - """ - comments = self.createSomeComments() - pk = comments[0].pk - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/delete/%d/" % pk, - {'next': "http://elsewhere/bad"}) - self.assertEqual(response["Location"], - "http://testserver/deleted/?c=%d" % pk) - - def testDeleteSignals(self): - def receive(sender, **kwargs): - received_signals.append(kwargs.get('signal')) - - # Connect signals and keep track of handled ones - received_signals = [] - signals.comment_was_flagged.connect(receive) - - # Post a comment and check the signals - self.testDeletePost() - self.assertEqual(received_signals, [signals.comment_was_flagged]) - - signals.comment_was_flagged.disconnect(receive) - - def testDeletedView(self): - comments = self.createSomeComments() - pk = comments[0].pk - response = self.client.get("/deleted/", data={"c": pk}) - self.assertTemplateUsed(response, "comments/deleted.html") - -class ApproveViewTests(CommentTestCase): - - def testApprovePermissions(self): - """The approve view should only be accessible to 'moderators'""" - comments = self.createSomeComments() - pk = comments[0].pk - self.client.login(username="normaluser", password="normaluser") - response = self.client.get("/approve/%d/" % pk) - self.assertEqual(response["Location"], "http://testserver/accounts/login/?next=/approve/%d/" % pk) - - makeModerator("normaluser") - response = self.client.get("/approve/%d/" % pk) - self.assertEqual(response.status_code, 200) - - def testApprovePost(self): - """POSTing the approve view should mark the comment as removed""" - c1, c2, c3, c4 = self.createSomeComments() - c1.is_public = False; c1.save() - - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/approve/%d/" % c1.pk) - self.assertEqual(response["Location"], "http://testserver/approved/?c=%d" % c1.pk) - c = Comment.objects.get(pk=c1.pk) - self.assertTrue(c.is_public) - self.assertEqual(c.flags.filter(flag=CommentFlag.MODERATOR_APPROVAL, user__username="normaluser").count(), 1) - - def testApprovePostNext(self): - """ - POSTing the approve view will redirect to an explicitly provided a next - url. - """ - c1, c2, c3, c4 = self.createSomeComments() - c1.is_public = False; c1.save() - - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/approve/%d/" % c1.pk, - {'next': "/go/here/"}) - self.assertEqual(response["Location"], - "http://testserver/go/here/?c=%d" % c1.pk) - - def testApprovePostUnsafeNext(self): - """ - POSTing to the approve view with an unsafe next url will ignore the - provided url when redirecting. - """ - c1, c2, c3, c4 = self.createSomeComments() - c1.is_public = False; c1.save() - - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.post("/approve/%d/" % c1.pk, - {'next': "http://elsewhere/bad"}) - self.assertEqual(response["Location"], - "http://testserver/approved/?c=%d" % c1.pk) - - def testApproveSignals(self): - def receive(sender, **kwargs): - received_signals.append(kwargs.get('signal')) - - # Connect signals and keep track of handled ones - received_signals = [] - signals.comment_was_flagged.connect(receive) - - # Post a comment and check the signals - self.testApprovePost() - self.assertEqual(received_signals, [signals.comment_was_flagged]) - - signals.comment_was_flagged.disconnect(receive) - - def testApprovedView(self): - comments = self.createSomeComments() - pk = comments[0].pk - response = self.client.get("/approved/", data={"c":pk}) - self.assertTemplateUsed(response, "comments/approved.html") - -class AdminActionsTests(CommentTestCase): - urls = "comment_tests.urls_admin" - - def setUp(self): - super(AdminActionsTests, self).setUp() - - # Make "normaluser" a moderator - u = User.objects.get(username="normaluser") - u.is_staff = True - perms = Permission.objects.filter( - content_type__app_label = 'comments', - codename__endswith = 'comment' - ) - for perm in perms: - u.user_permissions.add(perm) - u.save() - - def testActionsNonModerator(self): - self.createSomeComments() - self.client.login(username="normaluser", password="normaluser") - response = self.client.get("/admin/comments/comment/") - self.assertNotContains(response, "approve_comments") - - def testActionsModerator(self): - self.createSomeComments() - makeModerator("normaluser") - self.client.login(username="normaluser", password="normaluser") - response = self.client.get("/admin/comments/comment/") - self.assertContains(response, "approve_comments") - - def testActionsDisabledDelete(self): - "Tests a CommentAdmin where 'delete_selected' has been disabled." - self.createSomeComments() - self.client.login(username="normaluser", password="normaluser") - response = self.client.get('/admin2/comments/comment/') - self.assertEqual(response.status_code, 200) - self.assertNotContains(response, '