diff options
Diffstat (limited to 'app/django_comments')
179 files changed, 23778 insertions, 0 deletions
diff --git a/app/django_comments/__init__.py b/app/django_comments/__init__.py new file mode 100644 index 0000000..e4c5943 --- /dev/null +++ b/app/django_comments/__init__.py @@ -0,0 +1,104 @@ +from importlib import import_module + +from django.apps import apps +from django.conf import settings +from django.core.exceptions import ImproperlyConfigured +try: + from django.urls import reverse +except ImportError: + from django.core.urlresolvers import reverse # Django < 1.10 + + +DEFAULT_COMMENTS_APP = 'django_comments' + + +def get_comment_app(): + """ + Get the comment app (i.e. "django_comments") as defined in the settings + """ + # Make sure the app's in INSTALLED_APPS + comments_app = get_comment_app_name() + if not apps.is_installed(comments_app): + raise ImproperlyConfigured( + "The COMMENTS_APP (%r) must be in INSTALLED_APPS" % comments_app + ) + + # Try to import the package + try: + package = import_module(comments_app) + except ImportError as e: + raise ImproperlyConfigured( + "The COMMENTS_APP setting refers to a non-existing package. (%s)" % e + ) + + return package + + +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: + from django_comments.models import Comment + return Comment + + +def get_form(): + from django_comments.forms import CommentForm + """ + 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 reverse("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 reverse("comments-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 reverse("comments-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 reverse("comments-approve", args=(comment.id,)) diff --git a/app/django_comments/abstracts.py b/app/django_comments/abstracts.py new file mode 100644 index 0000000..4fbb94a --- /dev/null +++ b/app/django_comments/abstracts.py @@ -0,0 +1,174 @@ +from __future__ import unicode_literals + +from django.conf import settings +from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.models import ContentType +from django.contrib.sites.models import Site +from django.db import models +from django.utils import timezone +from django.utils.encoding import python_2_unicode_compatible +from django.utils.translation import ugettext_lazy as _ +try: + from django.urls import reverse +except ImportError: + from django.core.urlresolvers import reverse # Django < 1.10 + +from .managers import CommentManager + +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", + on_delete=models.CASCADE) + 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, on_delete=models.CASCADE) + + class Meta: + abstract = True + + def get_content_object_url(self): + """ + Get a URL suitable for redirecting to the content object. + """ + return reverse( + "comments-url-redirect", + args=(self.content_type_id, self.object_pk) + ) + + +@python_2_unicode_compatible +class CommentAbstractModel(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", + on_delete=models.SET_NULL) + user_name = models.CharField(_("user's name"), max_length=50, blank=True) + # Explicit `max_length` to apply both to Django 1.7 and 1.8+. + user_email = models.EmailField(_("user's email address"), max_length=254, + 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, db_index=True) + 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: + abstract = True + 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(CommentAbstractModel, 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 diff --git a/app/django_comments/admin.py b/app/django_comments/admin.py new file mode 100644 index 0000000..d4af2d9 --- /dev/null +++ b/app/django_comments/admin.py @@ -0,0 +1,94 @@ +from __future__ import unicode_literals + +from django.contrib import admin +from django.contrib.auth import get_user_model +from django.utils.translation import ugettext_lazy as _, ungettext + +from django_comments import get_model +from django_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('django_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, + lambda n: ungettext('flagged', 'flagged', n)) + + flag_comments.short_description = _("Flag selected comments") + + def approve_comments(self, request, queryset): + self._bulk_flag(request, queryset, perform_approve, + lambda n: ungettext('approved', 'approved', n)) + + approve_comments.short_description = _("Approve selected comments") + + def remove_comments(self, request, queryset): + self._bulk_flag(request, queryset, perform_delete, + lambda n: ungettext('removed', 'removed', n)) + + 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 + + msg = ungettext('%(count)s comment was successfully %(action)s.', + '%(count)s comments were successfully %(action)s.', + n_comments) + self.message_user(request, msg % {'count': n_comments, 'action': 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). +Klass = get_model() +if Klass._meta.app_label == "django_comments": + admin.site.register(Klass, CommentsAdmin) diff --git a/app/django_comments/compat.py b/app/django_comments/compat.py new file mode 100644 index 0000000..7b7d56d --- /dev/null +++ b/app/django_comments/compat.py @@ -0,0 +1,3 @@ +""" +Module to store compatiblity imports to prevent Django deprecation warnings. +""" diff --git a/app/django_comments/feeds.py b/app/django_comments/feeds.py new file mode 100644 index 0000000..bc8c501 --- /dev/null +++ b/app/django_comments/feeds.py @@ -0,0 +1,33 @@ +from django.contrib.sites.shortcuts import get_current_site +from django.contrib.syndication.views import Feed +from django.utils.translation import ugettext as _ + +import django_comments + + +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 = django_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/app/django_comments/forms.py b/app/django_comments/forms.py new file mode 100644 index 0000000..7b7eafd --- /dev/null +++ b/app/django_comments/forms.py @@ -0,0 +1,200 @@ +import time + +from django import forms +from django.conf import settings +from django.contrib.contenttypes.models import ContentType +from django.forms.utils import ErrorDict +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 pgettext_lazy, ungettext, ugettext, ugettext_lazy as _ + +from . import get_model + +COMMENT_MAX_LENGTH = getattr(settings, 'COMMENT_MAX_LENGTH', 3000) +DEFAULT_COMMENTS_TIMEOUT = getattr(settings, 'COMMENTS_TIMEOUT', (2 * 60 * 60)) # 2h + + +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, **kwargs): + self.target_object = target_object + if initial is None: + initial = {} + initial.update(self.generate_security_data()) + super(CommentSecurityForm, self).__init__(data=data, initial=initial, **kwargs) + + 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 (default is > 2 hours) in the past.""" + ts = self.cleaned_data["timestamp"] + 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=pgettext_lazy("Person name", "Name"), max_length=50) + email = forms.EmailField(label=_("Email address")) + url = forms.URLField(label=_("URL"), required=False) + # Translators: 'Comment' is a noun here. + comment = forms.CharField(label=_('Comment'), widget=forms.Textarea, + max_length=COMMENT_MAX_LENGTH) + + def get_comment_object(self, site_id=None): + """ + 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(site_id=site_id)) + 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 get_model() + + def get_comment_create_data(self, site_id=None): + """ + 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=site_id or getattr(settings, "SITE_ID", None), + 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 (not getattr(settings, 'COMMENTS_ALLOW_PROFANITIES', False) and + getattr(settings, 'PROFANITIES_LIST', 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/app/django_comments/locale/ar/LC_MESSAGES/django.mo b/app/django_comments/locale/ar/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..f772ff3 --- /dev/null +++ b/app/django_comments/locale/ar/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ar/LC_MESSAGES/django.po b/app/django_comments/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 0000000..4046e24 --- /dev/null +++ b/app/django_comments/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,322 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Bashar Al-Abdulhadi, 2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Ossama Khayat <okhayat@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-04-03 08:20+0000\n" +"Last-Translator: Bashar Al-Abdulhadi\n" +"Language-Team: Arabic (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "أعلام التعليقات" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] تم نشر تعليق جديد على \"%(object)s\"" + +#: 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/app/django_comments/locale/az/LC_MESSAGES/django.mo b/app/django_comments/locale/az/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e747751 --- /dev/null +++ b/app/django_comments/locale/az/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/az/LC_MESSAGES/django.po b/app/django_comments/locale/az/LC_MESSAGES/django.po new file mode 100644 index 0000000..4f4c8d3 --- /dev/null +++ b/app/django_comments/locale/az/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Ali Ismayilov <ali@ismailov.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Azerbaijani (http://www.transifex.com/django/django-contrib-comments/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=2; plural=(n != 1);\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] "" +msgstr[1] "" + +#: 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] "" +msgstr[1] "" + +#: 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] "" +msgstr[1] "" + +#: 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] "" +msgstr[1] "" + +#: 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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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] "" +msgstr[1] "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/be/LC_MESSAGES/django.mo b/app/django_comments/locale/be/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..770d1d7 --- /dev/null +++ b/app/django_comments/locale/be/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/be/LC_MESSAGES/django.po b/app/django_comments/locale/be/LC_MESSAGES/django.po new file mode 100644 index 0000000..c825807 --- /dev/null +++ b/app/django_comments/locale/be/LC_MESSAGES/django.po @@ -0,0 +1,302 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Belarusian (http://www.transifex.com/django/django-contrib-comments/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<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 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] "%(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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/bg/LC_MESSAGES/django.mo b/app/django_comments/locale/bg/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c7d1f3b --- /dev/null +++ b/app/django_comments/locale/bg/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/bg/LC_MESSAGES/django.po b/app/django_comments/locale/bg/LC_MESSAGES/django.po new file mode 100644 index 0000000..71232ef --- /dev/null +++ b/app/django_comments/locale/bg/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Boris Chervenkov <office@sentido.bg>, 2012 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Todor Lubenov <tgl.sysdev@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Bulgarian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/bn/LC_MESSAGES/django.mo b/app/django_comments/locale/bn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..2343fc4 --- /dev/null +++ b/app/django_comments/locale/bn/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/bn/LC_MESSAGES/django.po b/app/django_comments/locale/bn/LC_MESSAGES/django.po new file mode 100644 index 0000000..a60c49f --- /dev/null +++ b/app/django_comments/locale/bn/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Anubhab Baksi, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Bengali (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/br/LC_MESSAGES/django.mo b/app/django_comments/locale/br/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..6bc591c --- /dev/null +++ b/app/django_comments/locale/br/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/br/LC_MESSAGES/django.po b/app/django_comments/locale/br/LC_MESSAGES/django.po new file mode 100644 index 0000000..7ef12b5 --- /dev/null +++ b/app/django_comments/locale/br/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Fulup <fulup.jakez@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Breton (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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/app/django_comments/locale/bs/LC_MESSAGES/django.mo b/app/django_comments/locale/bs/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..6707dad --- /dev/null +++ b/app/django_comments/locale/bs/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/bs/LC_MESSAGES/django.po b/app/django_comments/locale/bs/LC_MESSAGES/django.po new file mode 100644 index 0000000..13f3fd1 --- /dev/null +++ b/app/django_comments/locale/bs/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Filip Dupanović <filip.dupanovic@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Bosnian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" + +#: 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/app/django_comments/locale/ca/LC_MESSAGES/django.mo b/app/django_comments/locale/ca/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..be40482 --- /dev/null +++ b/app/django_comments/locale/ca/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ca/LC_MESSAGES/django.po b/app/django_comments/locale/ca/LC_MESSAGES/django.po new file mode 100644 index 0000000..81c552d --- /dev/null +++ b/app/django_comments/locale/ca/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Catalan (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/cs/LC_MESSAGES/django.mo b/app/django_comments/locale/cs/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..3734dcc --- /dev/null +++ b/app/django_comments/locale/cs/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/cs/LC_MESSAGES/django.po b/app/django_comments/locale/cs/LC_MESSAGES/django.po new file mode 100644 index 0000000..4ff7fdd --- /dev/null +++ b/app/django_comments/locale/cs/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Vláďa Macek <macek@sandbox.cz>, 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-07-24 18:06+0000\n" +"Last-Translator: Vláďa Macek <macek@sandbox.cz>\n" +"Language-Team: Czech (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] K položce \"%(object)s\" byl přidán komentář" + +#: 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/app/django_comments/locale/cy/LC_MESSAGES/django.mo b/app/django_comments/locale/cy/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..459cca9 --- /dev/null +++ b/app/django_comments/locale/cy/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/cy/LC_MESSAGES/django.po b/app/django_comments/locale/cy/LC_MESSAGES/django.po new file mode 100644 index 0000000..73b0d95 --- /dev/null +++ b/app/django_comments/locale/cy/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Welsh (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/da/LC_MESSAGES/django.mo b/app/django_comments/locale/da/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a755fa1 --- /dev/null +++ b/app/django_comments/locale/da/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/da/LC_MESSAGES/django.po b/app/django_comments/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000..ec3ee93 --- /dev/null +++ b/app/django_comments/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Danish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/de/LC_MESSAGES/django.mo b/app/django_comments/locale/de/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c705a54 --- /dev/null +++ b/app/django_comments/locale/de/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/de/LC_MESSAGES/django.po b/app/django_comments/locale/de/LC_MESSAGES/django.po new file mode 100644 index 0000000..802f837 --- /dev/null +++ b/app/django_comments/locale/de/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: German (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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.\nDer 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.\nDie 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/el/LC_MESSAGES/django.mo b/app/django_comments/locale/el/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..84ce13e --- /dev/null +++ b/app/django_comments/locale/el/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/el/LC_MESSAGES/django.po b/app/django_comments/locale/el/LC_MESSAGES/django.po new file mode 100644 index 0000000..e5cd20c --- /dev/null +++ b/app/django_comments/locale/el/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Dimitris Glezos <glezos@indifex.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Nick Mavrakis <mavrakis.n@gmail.com>, 2016 +# Yorgos Pagles <y.pagles@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-07-15 13:02+0000\n" +"Last-Translator: Nick Mavrakis <mavrakis.n@gmail.com>\n" +"Language-Team: Greek (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "επισημάνσεις σχολίου" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Νέο σχόλιο δημοσιεύτηκε στο \"%(object)s\"" + +#: 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/app/django_comments/locale/en/LC_MESSAGES/django.mo b/app/django_comments/locale/en/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c810b1b --- /dev/null +++ b/app/django_comments/locale/en/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/en/LC_MESSAGES/django.po b/app/django_comments/locale/en/LC_MESSAGES/django.po new file mode 100644 index 0000000..2ff4d0f --- /dev/null +++ b/app/django_comments/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,321 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: Django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-30 19:54+0200\n" +"PO-Revision-Date: 2012-02-14 13:24+0000\n" +"Last-Translator: Jannis Leidel <jannis@leidel.info>\n" +"Language-Team: English <en@li.org>\n" +"Language: en\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" + +#: django_comments/abstracts.py:26 +msgid "content type" +msgstr "content type" + +#: django_comments/abstracts.py:29 +msgid "object ID" +msgstr "object ID" + +#: django_comments/abstracts.py:57 django_comments/models.py:32 +msgid "user" +msgstr "user" + +#: django_comments/abstracts.py:60 +msgid "user's name" +msgstr "user's name" + +#: django_comments/abstracts.py:62 +msgid "user's email address" +msgstr "user's email address" + +#: django_comments/abstracts.py:64 +msgid "user's URL" +msgstr "user's URL" + +#. Translators: 'comment' is a noun here. +#: django_comments/abstracts.py:66 django_comments/abstracts.py:86 +#: django_comments/models.py:37 +msgid "comment" +msgstr "comment" + +#: django_comments/abstracts.py:69 +msgid "date/time submitted" +msgstr "date/time submitted" + +#: django_comments/abstracts.py:70 +msgid "IP address" +msgstr "IP address" + +#: django_comments/abstracts.py:71 +msgid "is public" +msgstr "is public" + +#: django_comments/abstracts.py:72 +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." + +#: django_comments/abstracts.py:74 +msgid "is removed" +msgstr "is removed" + +#: django_comments/abstracts.py:75 +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." + +#: django_comments/abstracts.py:87 +msgid "comments" +msgstr "comments" + +#: django_comments/abstracts.py:132 +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." + +#: django_comments/abstracts.py:143 +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." + +#: django_comments/abstracts.py:171 +#, 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" + +#: django_comments/admin.py:28 +msgid "Content" +msgstr "Content" + +#: django_comments/admin.py:32 +msgid "Metadata" +msgstr "Metadata" + +#: django_comments/admin.py:59 +msgid "flagged" +msgid_plural "flagged" +msgstr[0] "flagged" +msgstr[1] "flagged" + +#: django_comments/admin.py:61 +msgid "Flag selected comments" +msgstr "Flag selected comments" + +#: django_comments/admin.py:65 +msgid "approved" +msgid_plural "approved" +msgstr[0] "approved" +msgstr[1] "approved" + +#: django_comments/admin.py:67 +msgid "Approve selected comments" +msgstr "Approve selected comments" + +#: django_comments/admin.py:71 +msgid "removed" +msgid_plural "removed" +msgstr[0] "removed" +msgstr[1] "removed" + +#: django_comments/admin.py:73 +msgid "Remove selected comments" +msgstr "Remove selected comments" + +#: django_comments/admin.py:85 +#, fuzzy, python-format +#| msgid "1 comment was successfully %(action)s." +#| msgid_plural "%(count)s comments were successfully %(action)s." +msgid "%(count)s comment was successfully %(action)s." +msgid_plural "%(count)s comments were successfully %(action)s." +msgstr[0] "1 comment was successfully %(action)s." +msgstr[1] "%(count)s comments were successfully %(action)s." + +#: django_comments/feeds.py:16 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s comments" + +#: django_comments/feeds.py:22 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Latest comments on %(site_name)s" + +#: django_comments/forms.py:101 +msgctxt "Person name" +msgid "Name" +msgstr "Name" + +#: django_comments/forms.py:102 +msgid "Email address" +msgstr "Email address" + +#: django_comments/forms.py:103 +msgid "URL" +msgstr "URL" + +#. Translators: 'Comment' is a noun here. +#: django_comments/forms.py:105 +msgid "Comment" +msgstr "Comment" + +#: django_comments/forms.py:183 +#, 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." + +#: django_comments/forms.py:187 +#: django_comments/templates/comments/preview.html:17 +msgid "and" +msgstr "and" + +#: django_comments/forms.py:193 +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" + +#. Translators: 'flag' is a noun here. +#: django_comments/models.py:40 +msgid "flag" +msgstr "flag" + +#: django_comments/models.py:39 +msgid "date" +msgstr "date" + +#: django_comments/models.py:49 +msgid "comment flag" +msgstr "comment flag" + +#: django_comments/models.py:50 +msgid "comment flags" +msgstr "comment flags" + +#: django_comments/moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "" + +#: django_comments/templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Approve a comment" + +#: django_comments/templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Really make this comment public?" + +#: django_comments/templates/comments/approve.html:13 +msgid "Approve" +msgstr "Approve" + +#: django_comments/templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Thanks for approving" + +#: django_comments/templates/comments/approved.html:7 +#: django_comments/templates/comments/deleted.html:7 +#: django_comments/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" + +#: django_comments/templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Remove a comment" + +#: django_comments/templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Really remove this comment?" + +#: django_comments/templates/comments/delete.html:13 +msgid "Remove" +msgstr "Remove" + +#: django_comments/templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Thanks for removing" + +#: django_comments/templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flag this comment" + +#: django_comments/templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Really flag this comment?" + +#: django_comments/templates/comments/flag.html:13 +msgid "Flag" +msgstr "Flag" + +#: django_comments/templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Thanks for flagging" + +#: django_comments/templates/comments/form.html:18 +#: django_comments/templates/comments/preview.html:34 +msgid "Post" +msgstr "Post" + +#: django_comments/templates/comments/form.html:19 +#: django_comments/templates/comments/preview.html:35 +msgid "Preview" +msgstr "Preview" + +#: django_comments/templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Thanks for commenting" + +#: django_comments/templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Thank you for your comment" + +#: django_comments/templates/comments/preview.html:4 +#: django_comments/templates/comments/preview.html:14 +msgid "Preview your comment" +msgstr "Preview your comment" + +#: django_comments/templates/comments/preview.html:12 +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" + +#: django_comments/templates/comments/preview.html:17 +msgid "Post your comment" +msgstr "Post your comment" + +#. Translators: This string follows the 'Post your comment' submit button. +#: django_comments/templates/comments/preview.html:20 +msgid "or make changes" +msgstr "or make changes" diff --git a/app/django_comments/locale/en_GB/LC_MESSAGES/django.mo b/app/django_comments/locale/en_GB/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..d2de857 --- /dev/null +++ b/app/django_comments/locale/en_GB/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/en_GB/LC_MESSAGES/django.po b/app/django_comments/locale/en_GB/LC_MESSAGES/django.po new file mode 100644 index 0000000..f75d220 --- /dev/null +++ b/app/django_comments/locale/en_GB/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Ross Poulton <ross@rossp.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/eo/LC_MESSAGES/django.mo b/app/django_comments/locale/eo/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..bb2a28f --- /dev/null +++ b/app/django_comments/locale/eo/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/eo/LC_MESSAGES/django.po b/app/django_comments/locale/eo/LC_MESSAGES/django.po new file mode 100644 index 0000000..c03e004 --- /dev/null +++ b/app/django_comments/locale/eo/LC_MESSAGES/django.po @@ -0,0 +1,296 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Nikolay Korotkiy <sikmir@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-11-11 12:09+0000\n" +"Last-Translator: Nikolay Korotkiy <sikmir@gmail.com>\n" +"Language-Team: Esperanto (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nova komento afiŝita \"%(object)s\"" + +#: 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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/es/LC_MESSAGES/django.mo b/app/django_comments/locale/es/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..b598c9f --- /dev/null +++ b/app/django_comments/locale/es/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/es/LC_MESSAGES/django.po b/app/django_comments/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000..094a7f1 --- /dev/null +++ b/app/django_comments/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# David Martinez <davy.martinez@gmail.com>, 2016 +# Ernesto Avilés Vázquez <whippiii@gmail.com>, 2015 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Marc Garcia <garcia.marc@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-04-01 14:06+0000\n" +"Last-Translator: David Martinez <davy.martinez@gmail.com>\n" +"Language-Team: Spanish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nuevo comentario publicado en \"%(object)s\"" + +#: 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/app/django_comments/locale/es_AR/LC_MESSAGES/django.mo b/app/django_comments/locale/es_AR/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c6fcebb --- /dev/null +++ b/app/django_comments/locale/es_AR/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/es_AR/LC_MESSAGES/django.po b/app/django_comments/locale/es_AR/LC_MESSAGES/django.po new file mode 100644 index 0000000..e7be44f --- /dev/null +++ b/app/django_comments/locale/es_AR/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Ramiro Morales, 2015 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-11-30 00:33+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/es_MX/LC_MESSAGES/django.mo b/app/django_comments/locale/es_MX/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..8f2a0e5 --- /dev/null +++ b/app/django_comments/locale/es_MX/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/es_MX/LC_MESSAGES/django.po b/app/django_comments/locale/es_MX/LC_MESSAGES/django.po new file mode 100644 index 0000000..627d283 --- /dev/null +++ b/app/django_comments/locale/es_MX/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Abraham Estrada <abraham.estrada@gmail.com>, 2011 +# guillermo Iglesias <ziberleon@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-08-26 17:50+0000\n" +"Last-Translator: guillermo Iglesias <ziberleon@gmail.com>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s]Nuevo comentario entregado el \"%(object)s\"" + +#: 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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/et/LC_MESSAGES/django.mo b/app/django_comments/locale/et/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..af2c301 --- /dev/null +++ b/app/django_comments/locale/et/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/et/LC_MESSAGES/django.po b/app/django_comments/locale/et/LC_MESSAGES/django.po new file mode 100644 index 0000000..81d7356 --- /dev/null +++ b/app/django_comments/locale/et/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# madisvain <madisvain@gmail.com>, 2011 +# Martin <martinpajuste@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2016-01-28 09:43+0000\n" +"Last-Translator: Martin <martinpajuste@gmail.com>\n" +"Language-Team: Estonian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/eu/LC_MESSAGES/django.mo b/app/django_comments/locale/eu/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..5082c21 --- /dev/null +++ b/app/django_comments/locale/eu/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/eu/LC_MESSAGES/django.po b/app/django_comments/locale/eu/LC_MESSAGES/django.po new file mode 100644 index 0000000..c89d967 --- /dev/null +++ b/app/django_comments/locale/eu/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Aitzol Naberan <anaberan@codesyntax.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Basque (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/fa/LC_MESSAGES/django.mo b/app/django_comments/locale/fa/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e0e50df --- /dev/null +++ b/app/django_comments/locale/fa/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/fa/LC_MESSAGES/django.po b/app/django_comments/locale/fa/LC_MESSAGES/django.po new file mode 100644 index 0000000..3dd700b --- /dev/null +++ b/app/django_comments/locale/fa/LC_MESSAGES/django.po @@ -0,0 +1,294 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Ali Nikneshan <ali@nikneshan.com>, 2012 +# Arash Fazeli <arash_fazeli77@yahoo.com>, 2012 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Kasra Ahmadvand <kasra.ahmadvand@gmail.com>, 2015 +# Pouya Abbassi, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-07-01 21:45+0000\n" +"Last-Translator: Pouya Abbassi\n" +"Language-Team: Persian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "علامت گذاری های نظر" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] نظر جدیدی در \"%(object)s\" ارسال شده است." + +#: 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/app/django_comments/locale/fi/LC_MESSAGES/django.mo b/app/django_comments/locale/fi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..abaa70d --- /dev/null +++ b/app/django_comments/locale/fi/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/fi/LC_MESSAGES/django.po b/app/django_comments/locale/fi/LC_MESSAGES/django.po new file mode 100644 index 0000000..ad81e19 --- /dev/null +++ b/app/django_comments/locale/fi/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Finnish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nviesti \"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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/fr/LC_MESSAGES/django.mo b/app/django_comments/locale/fr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..331dde1 --- /dev/null +++ b/app/django_comments/locale/fr/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/fr/LC_MESSAGES/django.po b/app/django_comments/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..d35d099 --- /dev/null +++ b/app/django_comments/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Claude Paroz <claude@2xlibre.net>, 2011 +# Claude Paroz <claude@2xlibre.net>, 2015-2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-03-29 19:22+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: French (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nouveau commentaire envoyé pour « %(object)s »" + +#: 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/app/django_comments/locale/fy_NL/LC_MESSAGES/django.mo b/app/django_comments/locale/fy_NL/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a95bd48 --- /dev/null +++ b/app/django_comments/locale/fy_NL/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/fy_NL/LC_MESSAGES/django.po b/app/django_comments/locale/fy_NL/LC_MESSAGES/django.po new file mode 100644 index 0000000..065687c --- /dev/null +++ b/app/django_comments/locale/fy_NL/LC_MESSAGES/django.po @@ -0,0 +1,290 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Western Frisian (Netherlands) (http://www.transifex.com/django/django-contrib-comments/language/fy_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fy_NL\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:105 +msgctxt "Person name" +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/app/django_comments/locale/ga/LC_MESSAGES/django.mo b/app/django_comments/locale/ga/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..931df81 --- /dev/null +++ b/app/django_comments/locale/ga/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ga/LC_MESSAGES/django.po b/app/django_comments/locale/ga/LC_MESSAGES/django.po new file mode 100644 index 0000000..8e4d69f --- /dev/null +++ b/app/django_comments/locale/ga/LC_MESSAGES/django.po @@ -0,0 +1,310 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Michael Thornhill <michael@maithu.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Irish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: 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/app/django_comments/locale/gl/LC_MESSAGES/django.mo b/app/django_comments/locale/gl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..88ed707 --- /dev/null +++ b/app/django_comments/locale/gl/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/gl/LC_MESSAGES/django.po b/app/django_comments/locale/gl/LC_MESSAGES/django.po new file mode 100644 index 0000000..ae668bf --- /dev/null +++ b/app/django_comments/locale/gl/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# fasouto <fsoutomoure@gmail.com>, 2011 +# fonso <fonzzo@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Galician (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/he/LC_MESSAGES/django.mo b/app/django_comments/locale/he/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..8ec3550 --- /dev/null +++ b/app/django_comments/locale/he/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/he/LC_MESSAGES/django.po b/app/django_comments/locale/he/LC_MESSAGES/django.po new file mode 100644 index 0000000..939c38b --- /dev/null +++ b/app/django_comments/locale/he/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Meir Kriheli <mkriheli@gmail.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-11-28 20:13+0000\n" +"Last-Translator: Meir Kriheli <mkriheli@gmail.com>\n" +"Language-Team: Hebrew (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/hi/LC_MESSAGES/django.mo b/app/django_comments/locale/hi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e9384f8 --- /dev/null +++ b/app/django_comments/locale/hi/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/hi/LC_MESSAGES/django.po b/app/django_comments/locale/hi/LC_MESSAGES/django.po new file mode 100644 index 0000000..925849b --- /dev/null +++ b/app/django_comments/locale/hi/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Sandeep Satavlekar <sandysat@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Hindi (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/hr/LC_MESSAGES/django.mo b/app/django_comments/locale/hr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4408d09 --- /dev/null +++ b/app/django_comments/locale/hr/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/hr/LC_MESSAGES/django.po b/app/django_comments/locale/hr/LC_MESSAGES/django.po new file mode 100644 index 0000000..4278981 --- /dev/null +++ b/app/django_comments/locale/hr/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Croatian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" + +#: 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/app/django_comments/locale/hu/LC_MESSAGES/django.mo b/app/django_comments/locale/hu/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..5af464e --- /dev/null +++ b/app/django_comments/locale/hu/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/hu/LC_MESSAGES/django.po b/app/django_comments/locale/hu/LC_MESSAGES/django.po new file mode 100644 index 0000000..c756190 --- /dev/null +++ b/app/django_comments/locale/hu/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Szilveszter Farkas <szilveszter.farkas@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Hungarian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/ia/LC_MESSAGES/django.mo b/app/django_comments/locale/ia/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e707153 --- /dev/null +++ b/app/django_comments/locale/ia/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ia/LC_MESSAGES/django.po b/app/django_comments/locale/ia/LC_MESSAGES/django.po new file mode 100644 index 0000000..7639091 --- /dev/null +++ b/app/django_comments/locale/ia/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Martijn Dekker <mcdutchie@hotmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Interlingua (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/id/LC_MESSAGES/django.mo b/app/django_comments/locale/id/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..d6fae0a --- /dev/null +++ b/app/django_comments/locale/id/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/id/LC_MESSAGES/django.po b/app/django_comments/locale/id/LC_MESSAGES/django.po new file mode 100644 index 0000000..a7c4bea --- /dev/null +++ b/app/django_comments/locale/id/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Fery Setiawan <gembelweb@gmail.com>, 2015-2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +# rodin <romihardiyanto@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-08-23 04:31+0000\n" +"Last-Translator: Fery Setiawan <gembelweb@gmail.com>\n" +"Language-Team: Indonesian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Komentar baru ditempatkan pada \"%(object)s\"" + +#: 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/app/django_comments/locale/is/LC_MESSAGES/django.mo b/app/django_comments/locale/is/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..bf5e2cd --- /dev/null +++ b/app/django_comments/locale/is/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/is/LC_MESSAGES/django.po b/app/django_comments/locale/is/LC_MESSAGES/django.po new file mode 100644 index 0000000..fee1eda --- /dev/null +++ b/app/django_comments/locale/is/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Hafsteinn Einarsson <haffi67@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Icelandic (http://www.transifex.com/django/django-contrib-comments/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 % 10 != 1 || n % 100 == 11);\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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/it/LC_MESSAGES/django.mo b/app/django_comments/locale/it/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..9f5d2cc --- /dev/null +++ b/app/django_comments/locale/it/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/it/LC_MESSAGES/django.po b/app/django_comments/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000..e795f60 --- /dev/null +++ b/app/django_comments/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# C8E <C8E@miron.it>, 2015 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Nicola Larosa <transifex@teknico.net>, 2011 +# palmux <palmux@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-04-02 23:52+0000\n" +"Last-Translator: palmux <palmux@gmail.com>\n" +"Language-Team: Italian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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 dell'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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nuovo commento pubblicato su \"%(object)s\"" + +#: 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/app/django_comments/locale/ja/LC_MESSAGES/django.mo b/app/django_comments/locale/ja/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..454636c --- /dev/null +++ b/app/django_comments/locale/ja/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ja/LC_MESSAGES/django.po b/app/django_comments/locale/ja/LC_MESSAGES/django.po new file mode 100644 index 0000000..416c449 --- /dev/null +++ b/app/django_comments/locale/ja/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# xiu1 <d84ea@hotmail.co.jp>, 2015-2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-06-25 14:42+0000\n" +"Last-Translator: xiu1 <d84ea@hotmail.co.jp>\n" +"Language-Team: Japanese (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "コメントフラグ" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] 新しいコメントを \"%(object)s\" に投稿しました" + +#: 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/app/django_comments/locale/ka/LC_MESSAGES/django.mo b/app/django_comments/locale/ka/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a9e2a36 --- /dev/null +++ b/app/django_comments/locale/ka/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ka/LC_MESSAGES/django.po b/app/django_comments/locale/ka/LC_MESSAGES/django.po new file mode 100644 index 0000000..e202ef5 --- /dev/null +++ b/app/django_comments/locale/ka/LC_MESSAGES/django.po @@ -0,0 +1,286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# avsd05 <avsd05@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Georgian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/kk/LC_MESSAGES/django.mo b/app/django_comments/locale/kk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1d4705b --- /dev/null +++ b/app/django_comments/locale/kk/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/kk/LC_MESSAGES/django.po b/app/django_comments/locale/kk/LC_MESSAGES/django.po new file mode 100644 index 0000000..a4cc527 --- /dev/null +++ b/app/django_comments/locale/kk/LC_MESSAGES/django.po @@ -0,0 +1,286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# yun_man_ger <germanilyin@gmail.com>, 2011 +# Zhazira <zhazira.mt@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Kazakh (http://www.transifex.com/django/django-contrib-comments/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.\nother: %(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:105 +msgctxt "Person name" +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 "пайдаланушының 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\nhttp://%(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/app/django_comments/locale/km/LC_MESSAGES/django.mo b/app/django_comments/locale/km/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..60983e7 --- /dev/null +++ b/app/django_comments/locale/km/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/km/LC_MESSAGES/django.po b/app/django_comments/locale/km/LC_MESSAGES/django.po new file mode 100644 index 0000000..18ea6a2 --- /dev/null +++ b/app/django_comments/locale/km/LC_MESSAGES/django.po @@ -0,0 +1,285 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Khmer (http://www.transifex.com/django/django-contrib-comments/language/km/)\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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/kn/LC_MESSAGES/django.mo b/app/django_comments/locale/kn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..593126e --- /dev/null +++ b/app/django_comments/locale/kn/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/kn/LC_MESSAGES/django.po b/app/django_comments/locale/kn/LC_MESSAGES/django.po new file mode 100644 index 0000000..59617d2 --- /dev/null +++ b/app/django_comments/locale/kn/LC_MESSAGES/django.po @@ -0,0 +1,286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# karthikbgl <karthikbgl@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Kannada (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/ko/LC_MESSAGES/django.mo b/app/django_comments/locale/ko/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..727eedb --- /dev/null +++ b/app/django_comments/locale/ko/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ko/LC_MESSAGES/django.po b/app/django_comments/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..3b14d2b --- /dev/null +++ b/app/django_comments/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Le Tartuffe <magno79@gmail.com>, 2016 +# Jiyoon, Ha <cryptography@konkuk.ac.kr>, 2016 +# Yeonsu Bak <yeonsubak@gmail.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-09-15 16:44+0000\n" +"Last-Translator: Jiyoon, Ha <cryptography@konkuk.ac.kr>\n" +"Language-Team: Korean (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "코멘트 플래그" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] \"%(object)s\"에 새로운 코멘트가 게시되었습니다." + +#: 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/app/django_comments/locale/lt/LC_MESSAGES/django.mo b/app/django_comments/locale/lt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..02ea954 --- /dev/null +++ b/app/django_comments/locale/lt/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/lt/LC_MESSAGES/django.po b/app/django_comments/locale/lt/LC_MESSAGES/django.po new file mode 100644 index 0000000..ab45c2b --- /dev/null +++ b/app/django_comments/locale/lt/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# lauris <lauris@runbox.com>, 2011 +# Matas Dailyda <matas@dailyda.com>, 2015-2016 +# Simonas Kazlauskas <simonas@kazlauskas.me>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-05-23 12:11+0000\n" +"Last-Translator: Matas Dailyda <matas@dailyda.com>\n" +"Language-Team: Lithuanian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nauji komentarai įvesti \"%(object)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šome ištaisyti žemiau esančią klaidą" +msgstr[1] "Prašome ištaisyti žemiau esančias klaidas" +msgstr[2] "Prašome 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/app/django_comments/locale/lv/LC_MESSAGES/django.mo b/app/django_comments/locale/lv/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..003fbb7 --- /dev/null +++ b/app/django_comments/locale/lv/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/lv/LC_MESSAGES/django.po b/app/django_comments/locale/lv/LC_MESSAGES/django.po new file mode 100644 index 0000000..59e3f88 --- /dev/null +++ b/app/django_comments/locale/lv/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Latvian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" + +#: 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/app/django_comments/locale/mk/LC_MESSAGES/django.mo b/app/django_comments/locale/mk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a69a582 --- /dev/null +++ b/app/django_comments/locale/mk/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/mk/LC_MESSAGES/django.po b/app/django_comments/locale/mk/LC_MESSAGES/django.po new file mode 100644 index 0000000..a721d2e --- /dev/null +++ b/app/django_comments/locale/mk/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Macedonian (http://www.transifex.com/django/django-contrib-comments/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] "%(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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/ml/LC_MESSAGES/django.mo b/app/django_comments/locale/ml/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e7f184e --- /dev/null +++ b/app/django_comments/locale/ml/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ml/LC_MESSAGES/django.po b/app/django_comments/locale/ml/LC_MESSAGES/django.po new file mode 100644 index 0000000..7dafb12 --- /dev/null +++ b/app/django_comments/locale/ml/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Rajeesh Nair <rajeeshrnair@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Malayalam (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/mn/LC_MESSAGES/django.mo b/app/django_comments/locale/mn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a16211e --- /dev/null +++ b/app/django_comments/locale/mn/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/mn/LC_MESSAGES/django.po b/app/django_comments/locale/mn/LC_MESSAGES/django.po new file mode 100644 index 0000000..ffbb68f --- /dev/null +++ b/app/django_comments/locale/mn/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Анхбаяр Анхаа <l.ankhbayar@gmail.com>, 2011 +# Баясгалан Цэвлээ <bayasaa_7672@yahoo.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-07-21 13:48+0000\n" +"Last-Translator: Баясгалан Цэвлээ <bayasaa_7672@yahoo.com>\n" +"Language-Team: Mongolian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/nb/LC_MESSAGES/django.mo b/app/django_comments/locale/nb/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..b8afee9 --- /dev/null +++ b/app/django_comments/locale/nb/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/nb/LC_MESSAGES/django.po b/app/django_comments/locale/nb/LC_MESSAGES/django.po new file mode 100644 index 0000000..2ebb7eb --- /dev/null +++ b/app/django_comments/locale/nb/LC_MESSAGES/django.po @@ -0,0 +1,294 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Jon <jon@funkbit.no>, 2015 +# <jonklo@gmail.com>, 2012 +# Sigurd Gartmann <sigurdga-transifex@sigurdga.no>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-09-14 08:36+0000\n" +"Last-Translator: Jon <jon@funkbit.no>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/ne/LC_MESSAGES/django.mo b/app/django_comments/locale/ne/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..b82ed75 --- /dev/null +++ b/app/django_comments/locale/ne/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ne/LC_MESSAGES/django.po b/app/django_comments/locale/ne/LC_MESSAGES/django.po new file mode 100644 index 0000000..4a6f0df --- /dev/null +++ b/app/django_comments/locale/ne/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Paras Nath Chaudhary <opnchaudhary@gmail.com>, 2012 +# Sagar Chalise <chalisesagar@gmail.com>, 2011 +# Surit Aryal <surit_people@hotmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Nepali (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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/app/django_comments/locale/nl/LC_MESSAGES/django.mo b/app/django_comments/locale/nl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..3b05375 --- /dev/null +++ b/app/django_comments/locale/nl/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/nl/LC_MESSAGES/django.po b/app/django_comments/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..fddd817 --- /dev/null +++ b/app/django_comments/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# go2people <admin@go2people.nl>, 2011 +# Evelijn Saaltink <evelijnsaaltink@gmail.com>, 2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Tino de Bruijn <tinodb@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-10-12 18:03+0000\n" +"Last-Translator: Evelijn Saaltink <evelijnsaaltink@gmail.com>\n" +"Language-Team: Dutch (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nieuwe opmerking geplaatst op \"%(object)s\"" + +#: 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] "Please correct the error below" +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/app/django_comments/locale/nn/LC_MESSAGES/django.mo b/app/django_comments/locale/nn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..6ec92b2 --- /dev/null +++ b/app/django_comments/locale/nn/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/nn/LC_MESSAGES/django.po b/app/django_comments/locale/nn/LC_MESSAGES/django.po new file mode 100644 index 0000000..7cbcb2c --- /dev/null +++ b/app/django_comments/locale/nn/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/pa/LC_MESSAGES/django.mo b/app/django_comments/locale/pa/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ee7b180 --- /dev/null +++ b/app/django_comments/locale/pa/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/pa/LC_MESSAGES/django.po b/app/django_comments/locale/pa/LC_MESSAGES/django.po new file mode 100644 index 0000000..3c1e550 --- /dev/null +++ b/app/django_comments/locale/pa/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/pl/LC_MESSAGES/django.mo b/app/django_comments/locale/pl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..23f4900 --- /dev/null +++ b/app/django_comments/locale/pl/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/pl/LC_MESSAGES/django.po b/app/django_comments/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000..cc8c3d3 --- /dev/null +++ b/app/django_comments/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Adrian Antończyk <linkedin@antonczyk.it>, 2015 +# Jannis Leidel <jannis@leidel.info>, 2011 +# m_aciek <maciej.olko@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-04-17 23:17+0000\n" +"Last-Translator: m_aciek <maciej.olko@gmail.com>\n" +"Language-Team: Polish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Dodany komentarz do „%(object)s”" + +#: 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ę poprawić poniższy błąd." +msgstr[1] "Proszę poprawić poniższe błędy." +msgstr[2] "Proszę poprawić 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/app/django_comments/locale/pt/LC_MESSAGES/django.mo b/app/django_comments/locale/pt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..099a1c9 --- /dev/null +++ b/app/django_comments/locale/pt/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/pt/LC_MESSAGES/django.po b/app/django_comments/locale/pt/LC_MESSAGES/django.po new file mode 100644 index 0000000..dde005f --- /dev/null +++ b/app/django_comments/locale/pt/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Nuno Mariz <nmariz@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Portuguese (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/pt_BR/LC_MESSAGES/django.mo b/app/django_comments/locale/pt_BR/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..2ab3fbd --- /dev/null +++ b/app/django_comments/locale/pt_BR/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/pt_BR/LC_MESSAGES/django.po b/app/django_comments/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000..d3368d7 --- /dev/null +++ b/app/django_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Mairieli Wessel <mairieliw@alunos.utfpr.edu.br>, 2016 +# Patrick Biesdorf <patrickdorf@gmail.com>, 2015 +# Raysa Dutra, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-09-05 22:52+0000\n" +"Last-Translator: FilipeCifali <cifali.filipe@gmail.com>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/django/django-contrib-comments/language/pt_BR/)\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:105 +msgctxt "Person name" +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\nhttp://%(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 "marcar comentário" + +#: models.py:191 +msgid "comment flags" +msgstr "marcar comentários" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Novo comentário postado em \"%(object)s\"" + +#: 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 este 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 os erros 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/app/django_comments/locale/ro/LC_MESSAGES/django.mo b/app/django_comments/locale/ro/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..db56e40 --- /dev/null +++ b/app/django_comments/locale/ro/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ro/LC_MESSAGES/django.po b/app/django_comments/locale/ro/LC_MESSAGES/django.po new file mode 100644 index 0000000..9aa3af3 --- /dev/null +++ b/app/django_comments/locale/ro/LC_MESSAGES/django.po @@ -0,0 +1,300 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Daniel Ursache-Dogariu <contact@danniel.net>, 2011 +# Denis Darii <denis.darii@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Razvan Stefanescu <razvan.stefanescu@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2016-01-07 11:08+0000\n" +"Last-Translator: Razvan Stefanescu <razvan.stefanescu@gmail.com>\n" +"Language-Team: Romanian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/ru/LC_MESSAGES/django.mo b/app/django_comments/locale/ru/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e14b7dc --- /dev/null +++ b/app/django_comments/locale/ru/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ru/LC_MESSAGES/django.po b/app/django_comments/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..99ea065 --- /dev/null +++ b/app/django_comments/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,311 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Alexandr <alexromantsov@gmail.com>, 2016 +# Denis Darii <denis.darii@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Алексей Борискин <sun.void@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-04-27 02:25+0000\n" +"Last-Translator: Alexandr <alexromantsov@gmail.com>\n" +"Language-Team: Russian (http://www.transifex.com/django/django-contrib-comments/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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: 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] "%(count)s комментарий был успешно %(action)s." +msgstr[1] "%(count)s комментария было успешно %(action)s." +msgstr[2] "%(count)s комментариев было успешно %(action)s." +msgstr[3] "%(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:105 +msgctxt "Person name" +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 не разрешены здесь." +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 "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\nhttp://%(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 "отметки комментариев" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Новый комментарий опубликован на \"%(object)s\"" + +#: 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/app/django_comments/locale/sk/LC_MESSAGES/django.mo b/app/django_comments/locale/sk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..85946b6 --- /dev/null +++ b/app/django_comments/locale/sk/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sk/LC_MESSAGES/django.po b/app/django_comments/locale/sk/LC_MESSAGES/django.po new file mode 100644 index 0000000..d36da02 --- /dev/null +++ b/app/django_comments/locale/sk/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Slovak (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" + +#: 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/app/django_comments/locale/sl/LC_MESSAGES/django.mo b/app/django_comments/locale/sl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..25f51e3 --- /dev/null +++ b/app/django_comments/locale/sl/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sl/LC_MESSAGES/django.po b/app/django_comments/locale/sl/LC_MESSAGES/django.po new file mode 100644 index 0000000..84febb4 --- /dev/null +++ b/app/django_comments/locale/sl/LC_MESSAGES/django.po @@ -0,0 +1,309 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# zejn <zejn@kiberpipa.org>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-05-14 13:51+0000\n" +"Last-Translator: zejn <zejn@kiberpipa.org>\n" +"Language-Team: Slovenian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Nov objavljen komentar na \"%(object)s\"" + +#: 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 naslednjo napako" +msgstr[1] "Odpravite naslednji napaki" +msgstr[2] "Odpravite naslednje napake" +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/app/django_comments/locale/sq/LC_MESSAGES/django.mo b/app/django_comments/locale/sq/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..085c1d8 --- /dev/null +++ b/app/django_comments/locale/sq/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sq/LC_MESSAGES/django.po b/app/django_comments/locale/sq/LC_MESSAGES/django.po new file mode 100644 index 0000000..b50e3b5 --- /dev/null +++ b/app/django_comments/locale/sq/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Besnik <besnik@programeshqip.org>, 2011 +# Besnik <besnik@programeshqip.org>, 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-10-11 21:34+0000\n" +"Last-Translator: Besnik <besnik@programeshqip.org>\n" +"Language-Team: Albanian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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 padëshiruar" + +#: 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 sajtit." + +#: 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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Koment i ri i postuar te \"%(object)s\"" + +#: 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 më poshtë" +msgstr[1] "Ju lutem, ndreqni gabimet më poshtë" + +#: 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/app/django_comments/locale/sr/LC_MESSAGES/django.mo b/app/django_comments/locale/sr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..7031045 --- /dev/null +++ b/app/django_comments/locale/sr/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sr/LC_MESSAGES/django.po b/app/django_comments/locale/sr/LC_MESSAGES/django.po new file mode 100644 index 0000000..07bcb58 --- /dev/null +++ b/app/django_comments/locale/sr/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Janos Guljas <janos@resenje.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Serbian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.mo b/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..92d7116 --- /dev/null +++ b/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.po b/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.po new file mode 100644 index 0000000..460b8d2 --- /dev/null +++ b/app/django_comments/locale/sr_Latn/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Janos Guljas <janos@resenje.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" +msgstr[2] "" + +#: 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/app/django_comments/locale/sv/LC_MESSAGES/django.mo b/app/django_comments/locale/sv/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..5a9d823 --- /dev/null +++ b/app/django_comments/locale/sv/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sv/LC_MESSAGES/django.po b/app/django_comments/locale/sv/LC_MESSAGES/django.po new file mode 100644 index 0000000..38218d6 --- /dev/null +++ b/app/django_comments/locale/sv/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Andreas Pelme <andreas@pelme.se>, 2011 +# Emil Björklund <emil.bjorklund@inuse.se>, 2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Mattias Hansson <mattias.gothenburg@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-07-07 19:17+0000\n" +"Last-Translator: Mattias Hansson <mattias.gothenburg@gmail.com>\n" +"Language-Team: Swedish (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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ållstyp" + +#: 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\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Ny kommentar postades på \"%(object)s\"" + +#: 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 diskussionskvaliteten på vår webbplats." + +#: 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] "Vänligen korrigera felet nedan" +msgstr[1] "Vänligen korrigera 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/app/django_comments/locale/sw/LC_MESSAGES/django.mo b/app/django_comments/locale/sw/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..662f2c9 --- /dev/null +++ b/app/django_comments/locale/sw/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/sw/LC_MESSAGES/django.po b/app/django_comments/locale/sw/LC_MESSAGES/django.po new file mode 100644 index 0000000..7cc2ca5 --- /dev/null +++ b/app/django_comments/locale/sw/LC_MESSAGES/django.po @@ -0,0 +1,290 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Swahili (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" +msgstr[1] "" + +#: 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/app/django_comments/locale/ta/LC_MESSAGES/django.mo b/app/django_comments/locale/ta/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..0240b7e --- /dev/null +++ b/app/django_comments/locale/ta/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ta/LC_MESSAGES/django.po b/app/django_comments/locale/ta/LC_MESSAGES/django.po new file mode 100644 index 0000000..2ec8e8a --- /dev/null +++ b/app/django_comments/locale/ta/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Tamil (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/te/LC_MESSAGES/django.mo b/app/django_comments/locale/te/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e99c975 --- /dev/null +++ b/app/django_comments/locale/te/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/te/LC_MESSAGES/django.po b/app/django_comments/locale/te/LC_MESSAGES/django.po new file mode 100644 index 0000000..8ec7417 --- /dev/null +++ b/app/django_comments/locale/te/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# bhaskar teja yerneni <prudhviy@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# వీవెన్ <veeven@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Telugu (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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/app/django_comments/locale/th/LC_MESSAGES/django.mo b/app/django_comments/locale/th/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..fc1955e --- /dev/null +++ b/app/django_comments/locale/th/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/th/LC_MESSAGES/django.po b/app/django_comments/locale/th/LC_MESSAGES/django.po new file mode 100644 index 0000000..4f058ae --- /dev/null +++ b/app/django_comments/locale/th/LC_MESSAGES/django.po @@ -0,0 +1,288 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Kowit Charoenratchatabhan <kowito@gmail.com>, 2012 +# Suteepat Damrongyingsupab <monkeycrew_topza@hotmail.com>, 2012 +# Vichai Vongvorakul <vongvichai@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Thai (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/locale/tr/LC_MESSAGES/django.mo b/app/django_comments/locale/tr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..23fc0a3 --- /dev/null +++ b/app/django_comments/locale/tr/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/tr/LC_MESSAGES/django.po b/app/django_comments/locale/tr/LC_MESSAGES/django.po new file mode 100644 index 0000000..0b51cf0 --- /dev/null +++ b/app/django_comments/locale/tr/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# BouRock, 2015-2016 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-05-21 11:16+0000\n" +"Last-Translator: BouRock\n" +"Language-Team: Turkish (http://www.transifex.com/django/django-contrib-comments/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=2; plural=(n > 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "İçerik" + +#: admin.py:28 +msgid "Metadata" +msgstr "Meta verisi" + +#: admin.py:55 +msgid "flagged" +msgid_plural "flagged" +msgstr[0] "işaretlendi" +msgstr[1] "işaretlendi" + +#: admin.py:56 +msgid "Flag selected comments" +msgstr "Seçilen yorumları işaretle" + +#: admin.py:60 +msgid "approved" +msgid_plural "approved" +msgstr[0] "onaylandı" +msgstr[1] "onaylandı" + +#: admin.py:61 +msgid "Approve selected comments" +msgstr "Seçilen yorumları onayla" + +#: admin.py:65 +msgid "removed" +msgid_plural "removed" +msgstr[0] "kaldırıldı" +msgstr[1] "kaldırıldı" + +#: admin.py:66 +msgid "Remove selected comments" +msgstr "Seçilen yorumları kaldır" + +#: admin.py:78 +#, python-format +msgid "1 comment was successfully %(action)s." +msgid_plural "%(count)s comments were successfully %(action)s." +msgstr[0] "1 yorum başarılı olarak %(action)s." +msgstr[1] "%(count)s yorum başarılı olarak %(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:105 +msgctxt "Person name" +msgid "Name" +msgstr "Adı" + +#: 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öylediklerinize dikkat edin! Burada %s sözüne izin yoktur." +msgstr[1] "Söylediklerinize dikkat edin! Burada %s sözlerine izin yoktur." + +#: 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 istenmeyen ileti 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 "ortaktır" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Yorumu etkili bir şekilde site üzerinden kaldırmak için bu kutunun işaretini kaldırın." + +#: models.py:67 +msgid "is removed" +msgstr "kaldırıldı" + +#: 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 kutuyu işaretleyin. Bunun yerine \"Bu yorum kaldırıldı\" iletisi görüntülenecektir." + +#: 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 kimlik doğrulaması yapılmış bir kullanıcı tarafından yazıldı ve bu nedenle adı salt okunurdur." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "Bu yorum kimlik doğrulaması yapılmış bir kullanıcı tarafından yazıldı ve bu nedenle e-posta 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 tarafından yazılmış:\n\n%(comment)s\n\nhttp://%(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" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] \"%(object)s\" üzerinde yeni yorum yazıldı" + +#: 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 ortak yapılsın mı?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Onayla" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Onayladığı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 zaman ayırdığınız için teşekkürler." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Yorumu kaldır" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Bu yorum gerçekten kaldırılsın mı?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Kaldır" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Kaldırdığınız 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 "Bu yorum gerçekten işaretlensin mi?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "İşaretle" + +#: 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 "Yaz" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Önizleme" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Yorumladığınız 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 "Yorumunuzu önizleyin" + +#: 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 hatayı düzeltin" +msgstr[1] "Lütfen aşağıdaki hataları düzeltin" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Yorumunuzu yazın" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "veya değişiklikleri yapın" diff --git a/app/django_comments/locale/tt/LC_MESSAGES/django.mo b/app/django_comments/locale/tt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..5f02d5a --- /dev/null +++ b/app/django_comments/locale/tt/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/tt/LC_MESSAGES/django.po b/app/django_comments/locale/tt/LC_MESSAGES/django.po new file mode 100644 index 0000000..4e046d1 --- /dev/null +++ b/app/django_comments/locale/tt/LC_MESSAGES/django.po @@ -0,0 +1,284 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Tatar (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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/app/django_comments/locale/uk/LC_MESSAGES/django.mo b/app/django_comments/locale/uk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1eaf57f --- /dev/null +++ b/app/django_comments/locale/uk/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/uk/LC_MESSAGES/django.po b/app/django_comments/locale/uk/LC_MESSAGES/django.po new file mode 100644 index 0000000..0eae412 --- /dev/null +++ b/app/django_comments/locale/uk/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Max V. Stotsky <transifex@ms.pereslavl.ru>, 2015 +# Sergey Lysach <sergikoff88@gmail.com>, 2011 +# Sergiy Kuzmenko <s.kuzmenko@gmail.com>, 2011 +# Zoriana Zaiats, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-05-11 13:42+0000\n" +"Last-Translator: Zoriana Zaiats\n" +"Language-Team: Ukrainian (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "позначки коментаря" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] Новий коментар був розміщений на \"%(object)s\"" + +#: 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/app/django_comments/locale/ur/LC_MESSAGES/django.mo b/app/django_comments/locale/ur/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..16a030c --- /dev/null +++ b/app/django_comments/locale/ur/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/ur/LC_MESSAGES/django.po b/app/django_comments/locale/ur/LC_MESSAGES/django.po new file mode 100644 index 0000000..6b2e15b --- /dev/null +++ b/app/django_comments/locale/ur/LC_MESSAGES/django.po @@ -0,0 +1,290 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Urdu (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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/app/django_comments/locale/vi/LC_MESSAGES/django.mo b/app/django_comments/locale/vi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..9043ac8 --- /dev/null +++ b/app/django_comments/locale/vi/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/vi/LC_MESSAGES/django.po b/app/django_comments/locale/vi/LC_MESSAGES/django.po new file mode 100644 index 0000000..7d73697 --- /dev/null +++ b/app/django_comments/locale/vi/LC_MESSAGES/django.po @@ -0,0 +1,286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Tran <hongdiepkien@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Vietnamese (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +msgid "Name" +msgstr "" + +#: 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\nhttp://%(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] "" + +#: 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/app/django_comments/locale/zh_CN/LC_MESSAGES/django.mo b/app/django_comments/locale/zh_CN/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c7e8a99 --- /dev/null +++ b/app/django_comments/locale/zh_CN/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/zh_CN/LC_MESSAGES/django.po b/app/django_comments/locale/zh_CN/LC_MESSAGES/django.po new file mode 100644 index 0000000..8e06176 --- /dev/null +++ b/app/django_comments/locale/zh_CN/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Lele Long <schemacs@gmail.com>, 2011 +# Tuzi.Li <lzjwh1996@foxmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-10 09:06+0100\n" +"PO-Revision-Date: 2016-07-13 09:47+0000\n" +"Last-Translator: Tuzi.Li <lzjwh1996@foxmail.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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 "评论标记" + +#: moderation.py:253 +#, python-format +msgid "[%(site)s] New comment posted on \"%(object)s\"" +msgstr "[%(site)s] 新评论发布于 \"%(object)s\"" + +#: 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/app/django_comments/locale/zh_TW/LC_MESSAGES/django.mo b/app/django_comments/locale/zh_TW/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..166186c --- /dev/null +++ b/app/django_comments/locale/zh_TW/LC_MESSAGES/django.mo diff --git a/app/django_comments/locale/zh_TW/LC_MESSAGES/django.po b/app/django_comments/locale/zh_TW/LC_MESSAGES/django.po new file mode 100644 index 0000000..fed7eda --- /dev/null +++ b/app/django_comments/locale/zh_TW/LC_MESSAGES/django.po @@ -0,0 +1,286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# tcc <tcchou@tcchou.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-contrib-comments\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-22 17:28+0200\n" +"PO-Revision-Date: 2015-06-22 15:43+0000\n" +"Last-Translator: Claude Paroz <claude@2xlibre.net>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/django/django-contrib-comments/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:105 +msgctxt "Person name" +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\nhttp://%(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/app/django_comments/managers.py b/app/django_comments/managers.py new file mode 100644 index 0000000..9e1fc77 --- /dev/null +++ b/app/django_comments/managers.py @@ -0,0 +1,22 @@ +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/app/django_comments/migrations/0001_initial.py b/app/django_comments/migrations/0001_initial.py new file mode 100644 index 0000000..b0a39b5 --- /dev/null +++ b/app/django_comments/migrations/0001_initial.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations +from django.conf import settings + + +class Migration(migrations.Migration): + + dependencies = [ + ('sites', '0001_initial'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('contenttypes', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Comment', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('object_pk', models.TextField(verbose_name='object ID')), + ('user_name', models.CharField(max_length=50, verbose_name="user's name", blank=True)), + ('user_email', models.EmailField(max_length=75, verbose_name="user's email address", blank=True)), + ('user_url', models.URLField(verbose_name="user's URL", blank=True)), + ('comment', models.TextField(max_length=3000, verbose_name='comment')), + ('submit_date', models.DateTimeField(default=None, verbose_name='date/time submitted')), + ('ip_address', models.GenericIPAddressField( + unpack_ipv4=True, null=True, verbose_name='IP address', blank=True)), + ('is_public', models.BooleanField(default=True, + help_text='Uncheck this box to make the comment effectively disappear from the site.', + verbose_name='is public')), + ('is_removed', models.BooleanField(default=False, + help_text='Check this box if the comment is inappropriate. A "This comment has been removed"' + ' message will be displayed instead.', + verbose_name='is removed')), + ('content_type', models.ForeignKey(related_name='content_type_set_for_comment', + verbose_name='content type', to='contenttypes.ContentType', + on_delete=models.CASCADE)), + ('site', models.ForeignKey(to='sites.Site', on_delete=models.CASCADE)), + ('user', models.ForeignKey(related_name='comment_comments', verbose_name='user', + blank=True, to=settings.AUTH_USER_MODEL, null=True, on_delete=models.SET_NULL)), + ], + options={ + 'ordering': ('submit_date',), + 'db_table': 'django_comments', + 'verbose_name': 'comment', + 'verbose_name_plural': 'comments', + 'permissions': [('can_moderate', 'Can moderate comments')], + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='CommentFlag', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('flag', models.CharField(max_length=30, verbose_name='flag', db_index=True)), + ('flag_date', models.DateTimeField(default=None, verbose_name='date')), + ('comment', models.ForeignKey(related_name='flags', verbose_name='comment', + to='django_comments.Comment', on_delete=models.CASCADE)), + ('user', models.ForeignKey(related_name='comment_flags', verbose_name='user', + to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE)), + ], + options={ + 'db_table': 'django_comment_flags', + 'verbose_name': 'comment flag', + 'verbose_name_plural': 'comment flags', + }, + bases=(models.Model,), + ), + migrations.AlterUniqueTogether( + name='commentflag', + unique_together=set([('user', 'comment', 'flag')]), + ), + ] diff --git a/app/django_comments/migrations/0002_update_user_email_field_length.py b/app/django_comments/migrations/0002_update_user_email_field_length.py new file mode 100644 index 0000000..5e424e5 --- /dev/null +++ b/app/django_comments/migrations/0002_update_user_email_field_length.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_comments', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='comment', + name='user_email', + field=models.EmailField( + max_length=254, verbose_name="user's email address", + blank=True), + ), + ] diff --git a/app/django_comments/migrations/0003_add_submit_date_index.py b/app/django_comments/migrations/0003_add_submit_date_index.py new file mode 100644 index 0000000..4a5dadf --- /dev/null +++ b/app/django_comments/migrations/0003_add_submit_date_index.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_comments', '0002_update_user_email_field_length'), + ] + + operations = [ + migrations.AlterField( + model_name='comment', + name='submit_date', + field=models.DateTimeField(default=None, verbose_name='date/time submitted', db_index=True), + preserve_default=True, + ), + ] diff --git a/app/django_comments/migrations/__init__.py b/app/django_comments/migrations/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/django_comments/migrations/__init__.py diff --git a/app/django_comments/models.py b/app/django_comments/models.py new file mode 100644 index 0000000..ebf1bc5 --- /dev/null +++ b/app/django_comments/models.py @@ -0,0 +1,62 @@ +from django.conf import settings +from django.db import models +from django.utils import timezone +from django.utils.encoding import python_2_unicode_compatible +from django.utils.translation import ugettext_lazy as _ + +from .abstracts import ( + COMMENT_MAX_LENGTH, BaseCommentAbstractModel, CommentAbstractModel, +) + + +class Comment(CommentAbstractModel): + class Meta(CommentAbstractModel.Meta): + db_table = "django_comments" + + +@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", + on_delete=models.CASCADE, + ) + comment = models.ForeignKey( + # Translators: 'comment' is a noun here. + Comment, verbose_name=_('comment'), related_name="flags", on_delete=models.CASCADE, + ) + # Translators: 'flag' is a noun here. + 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/app/django_comments/moderation.py b/app/django_comments/moderation.py new file mode 100644 index 0000000..3e5c412 --- /dev/null +++ b/app/django_comments/moderation.py @@ -0,0 +1,369 @@ +""" +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(max_length=250) + body = models.TextField() + pub_date = models.DateField() + enable_comments = models.BooleanField() + +Then we create a ``CommentModerator`` subclass specifying some +moderation options:: + + from django_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.contrib.sites.shortcuts import get_current_site +from django.core.mail import send_mail +from django.db.models.base import ModelBase +from django.template import loader +from django.utils import timezone +from django.utils.translation import ugettext as _ + +import django_comments +from django_comments import signals + + +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 = { + 'comment': comment, + 'content_object': content_object, + } + subject = _('[%(site)s] New comment posted on "%(object)s"') % { + 'site': get_current_site(request).name, + 'object': 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=django_comments.get_model()) + signals.comment_was_posted.connect(self.post_save_moderation, sender=django_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/app/django_comments/signals.py b/app/django_comments/signals.py new file mode 100644 index 0000000..079afaf --- /dev/null +++ b/app/django_comments/signals.py @@ -0,0 +1,21 @@ +""" +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/app/django_comments/templates/comments/400-debug.html b/app/django_comments/templates/comments/400-debug.html new file mode 100644 index 0000000..af74676 --- /dev/null +++ b/app/django_comments/templates/comments/400-debug.html @@ -0,0 +1,116 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="content-type" content="text/html; charset=utf-8"/> + <title>Comment post not allowed (400)</title> + <meta name="robots" content="NONE,NOARCHIVE"/> + <style type="text/css"> + < + ! + [CDATA[ + html * { + padding: 0; + margin: 0; + } + + body * { + padding: 10px 20px; + } + + body * * { + padding: 0; + } + + body { + font: small sans-serif; + background: #eee; + } + + body > div { + border-bottom: 1px solid #ddd; + } + + h1 { + font-weight: normal; + margin-bottom: .4em; + } + + h1 span { + font-size: 60%; + color: #666; + font-weight: normal; + } + + table { + border: none; + border-collapse: collapse; + width: 100%; + } + + td, th { + vertical-align: top; + padding: 2px 3px; + } + + th { + width: 12em; + text-align: right; + color: #666; + padding-right: .5em; + } + + #info { + background: #f6f6f6; + } + + #info ol { + margin: 0.5em 4em; + } + + #info ol li { + font-family: monospace; + } + + #summary { + background: #ffc; + } + + #explanation { + background: #eee; + border-bottom: 0px none; + } + + ] + ] + > + </style> +</head> +<body> +<div id="summary"> + <h1>Comment post not allowed <span>(400)</span></h1> + <table class="meta"> + <tr> + <th>Why:</th> + <td>{{ why }}</td> + </tr> + </table> +</div> +<div id="info"> + <p> + 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 <a + href="http://docs.djangoproject.com/en/dev/ref/contrib/comments/">comment + documentation</a> for more help. + </p> +</div> + +<div id="explanation"> + <p> + You're seeing this error because you have <code>DEBUG = True</code> in + your Django settings file. Change that to <code>False</code>, and Django + will display a standard 400 error page. + </p> +</div> +</body> +</html> diff --git a/app/django_comments/templates/comments/approve.html b/app/django_comments/templates/comments/approve.html new file mode 100644 index 0000000..85b2ba1 --- /dev/null +++ b/app/django_comments/templates/comments/approve.html @@ -0,0 +1,16 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Approve a comment" %}{% endblock %} + +{% block content %} + <h1>{% trans "Really make this comment public?" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <form action="." method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}" id="next"/></div>{% endif %} + <p class="submit"> + <input type="submit" name="submit" value="{% trans "Approve" %}"/> or <a href="{{ comment.get_absolute_url }}">cancel</a> + </p> + </form> +{% endblock %} diff --git a/app/django_comments/templates/comments/approved.html b/app/django_comments/templates/comments/approved.html new file mode 100644 index 0000000..d4ba245 --- /dev/null +++ b/app/django_comments/templates/comments/approved.html @@ -0,0 +1,8 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Thanks for approving" %}.{% endblock %} + +{% block content %} + <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> +{% endblock %} diff --git a/app/django_comments/templates/comments/base.html b/app/django_comments/templates/comments/base.html new file mode 100644 index 0000000..540c25c --- /dev/null +++ b/app/django_comments/templates/comments/base.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <title>{% block title %}{% endblock %}</title> +</head> +<body> +{% block content %}{% endblock %} +</body> +</html> diff --git a/app/django_comments/templates/comments/delete.html b/app/django_comments/templates/comments/delete.html new file mode 100644 index 0000000..042442c --- /dev/null +++ b/app/django_comments/templates/comments/delete.html @@ -0,0 +1,16 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Remove a comment" %}{% endblock %} + +{% block content %} + <h1>{% trans "Really remove this comment?" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <form action="." method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}" id="next"/></div>{% endif %} + <p class="submit"> + <input type="submit" name="submit" value="{% trans "Remove" %}"/> or <a href="{{ comment.get_absolute_url }}">cancel</a> + </p> + </form> +{% endblock %} diff --git a/app/django_comments/templates/comments/deleted.html b/app/django_comments/templates/comments/deleted.html new file mode 100644 index 0000000..e608481 --- /dev/null +++ b/app/django_comments/templates/comments/deleted.html @@ -0,0 +1,8 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Thanks for removing" %}.{% endblock %} + +{% block content %} + <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> +{% endblock %} diff --git a/app/django_comments/templates/comments/flag.html b/app/django_comments/templates/comments/flag.html new file mode 100644 index 0000000..c5fe743 --- /dev/null +++ b/app/django_comments/templates/comments/flag.html @@ -0,0 +1,17 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Flag this comment" %}{% endblock %} + +{% block content %} + <h1>{% trans "Really flag this comment?" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <form action="." method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}" id="next"/></div>{% endif %} + <p class="submit"> + <input type="submit" name="submit" value="{% trans "Flag" %}"/> or <a + href="{{ comment.get_absolute_url }}">cancel</a> + </p> + </form> +{% endblock %} diff --git a/app/django_comments/templates/comments/flagged.html b/app/django_comments/templates/comments/flagged.html new file mode 100644 index 0000000..e558019 --- /dev/null +++ b/app/django_comments/templates/comments/flagged.html @@ -0,0 +1,8 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Thanks for flagging" %}.{% endblock %} + +{% block content %} + <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> +{% endblock %} diff --git a/app/django_comments/templates/comments/form.html b/app/django_comments/templates/comments/form.html new file mode 100644 index 0000000..858d5eb --- /dev/null +++ b/app/django_comments/templates/comments/form.html @@ -0,0 +1,21 @@ +{% load comments i18n %} +<form action="{% comment_form_target %}" method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}"/></div>{% endif %} + {% for field in form %} + {% if field.is_hidden %} + <div>{{ field }}</div> + {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} + <p + {% if field.errors %} class="error"{% endif %} + {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> + {{ field.label_tag }} {{ field }} + </p> + {% endif %} + {% endfor %} + <p class="submit"> + <input type="submit" name="post" class="submit-post" value="{% trans "Post" %}"/> + <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}"/> + </p> +</form> diff --git a/app/django_comments/templates/comments/list.html b/app/django_comments/templates/comments/list.html new file mode 100644 index 0000000..1246adf --- /dev/null +++ b/app/django_comments/templates/comments/list.html @@ -0,0 +1,10 @@ +<dl id="comments"> + {% for comment in comment_list %} + <dt id="c{{ comment.id }}"> + {{ comment.submit_date }} - {{ comment.name }} + </dt> + <dd> + <p>{{ comment.comment }}</p> + </dd> + {% endfor %} +</dl> diff --git a/app/django_comments/templates/comments/posted.html b/app/django_comments/templates/comments/posted.html new file mode 100644 index 0000000..76f7f6d --- /dev/null +++ b/app/django_comments/templates/comments/posted.html @@ -0,0 +1,8 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Thanks for commenting" %}.{% endblock %} + +{% block content %} + <h1>{% trans "Thank you for your comment" %}.</h1> +{% endblock %} diff --git a/app/django_comments/templates/comments/preview.html b/app/django_comments/templates/comments/preview.html new file mode 100644 index 0000000..e335466 --- /dev/null +++ b/app/django_comments/templates/comments/preview.html @@ -0,0 +1,40 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Preview your comment" %}{% endblock %} + +{% block content %} + {% load comments %} + <form action="{% comment_form_target %}" method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}"/></div>{% endif %} + {% if form.errors %} + <h1>{% blocktrans count counter=form.errors|length %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}</h1> + {% else %} + <h1>{% trans "Preview your comment" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <p> + {% trans "and" %} <input id="submit" type="submit" name="submit" class="submit-post" + value="{% trans "Post your comment" %}"/> + {# Translators: This string follows the 'Post your comment' submit button. #} + {% trans "or make changes" %}: + </p> + {% endif %} + {% for field in form %} + {% if field.is_hidden %} + <div>{{ field }}</div> + {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} + <p + {% if field.errors %} class="error"{% endif %} + {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> + {{ field.label_tag }} {{ field }} + </p> + {% endif %} + {% endfor %} + <p class="submit"> + <input type="submit" name="submit" class="submit-post" value="{% trans "Post" %}"/> + <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}"/> + </p> + </form> +{% endblock %} diff --git a/app/django_comments/templatetags/__init__.py b/app/django_comments/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/django_comments/templatetags/__init__.py diff --git a/app/django_comments/templatetags/comments.py b/app/django_comments/templatetags/comments.py new file mode 100644 index 0000000..9b2d1a4 --- /dev/null +++ b/app/django_comments/templatetags/comments.py @@ -0,0 +1,354 @@ +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.sites.shortcuts import get_current_site +from django.utils.encoding import smart_text + +import django_comments + +register = template.Library() + + +class BaseCommentNode(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 = django_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() + + # Explicit SITE_ID takes precedence over request. This is also how + # get_current_site operates. + site_id = getattr(settings, "SITE_ID", None) + if not site_id and ('request' in context): + site_id = get_current_site(context['request']).pk + + qs = self.comment_model.objects.filter( + content_type=ctype, + object_pk=smart_text(object_pk), + site__pk=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) + if 'user' in field_names: + qs = qs.select_related('user') + 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 + + +class CommentListNode(BaseCommentNode): + """Insert a list of comments into the context.""" + + def get_context_value_from_queryset(self, context, qs): + return 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 django_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_dict = context.flatten() + context_dict['form'] = self.get_form(context) + formstr = render_to_string(template_search_list, context_dict) + 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_dict = context.flatten() + context_dict['comment_list'] = self.get_context_value_from_queryset(context, qs) + liststr = render_to_string(template_search_list, context_dict) + 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:: + + <form action="{% comment_form_target %}" method="post"> + """ + return django_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/app/django_comments/urls.py b/app/django_comments/urls.py new file mode 100644 index 0000000..45599dc --- /dev/null +++ b/app/django_comments/urls.py @@ -0,0 +1,21 @@ +from django.conf.urls import url +from django.contrib.contenttypes.views import shortcut + +from .views.comments import post_comment, comment_done +from .views.moderation import ( + flag, flag_done, delete, delete_done, approve, approve_done, +) + + +urlpatterns = [ + url(r'^post/$', post_comment, name='comments-post-comment'), + url(r'^posted/$', comment_done, name='comments-comment-done'), + url(r'^flag/(\d+)/$', flag, name='comments-flag'), + url(r'^flagged/$', flag_done, name='comments-flag-done'), + url(r'^delete/(\d+)/$', delete, name='comments-delete'), + url(r'^deleted/$', delete_done, name='comments-delete-done'), + url(r'^approve/(\d+)/$', approve, name='comments-approve'), + url(r'^approved/$', approve_done, name='comments-approve-done'), + + url(r'^cr/(\d+)/(.+)/$', shortcut, name='comments-url-redirect'), +] diff --git a/app/django_comments/views/__init__.py b/app/django_comments/views/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/django_comments/views/__init__.py diff --git a/app/django_comments/views/comments.py b/app/django_comments/views/comments.py new file mode 100644 index 0000000..40dfc60 --- /dev/null +++ b/app/django_comments/views/comments.py @@ -0,0 +1,140 @@ +from __future__ import absolute_import + +from django import http +from django.apps import apps +from django.conf import settings +from django.contrib.sites.shortcuts import get_current_site +from django.core.exceptions import ObjectDoesNotExist, ValidationError +from django.shortcuts import render +from django.template.loader import render_to_string +from django.utils.html import escape +from django.views.decorators.csrf import csrf_protect, csrf_exempt +from django.views.decorators.http import require_POST + +import django_comments +from django_comments import signals +from django_comments.views.utils import next_redirect, confirmation_view + + +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_exempt +@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() + try: + user_is_authenticated = request.user.is_authenticated() + except TypeError: # Django >= 1.11 + user_is_authenticated = request.user.is_authenticated + if 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.split(".", 1)) + target = model._default_manager.using(using).get(pk=object_pk) + except TypeError: + return CommentPostBadRequest( + "Invalid content_type value: %r" % escape(ctype)) + except AttributeError: + 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 = django_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(request, template_list, { + "comment": form.data.get("comment", ""), + "form": form, + "next": data.get("next", next), + }, + ) + + # Otherwise create the comment + comment = form.get_comment_object(site_id=get_current_site(request).id) + comment.ip_address = request.META.get("REMOTE_ADDR", None) or None + if 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 is 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/app/django_comments/views/moderation.py b/app/django_comments/views/moderation.py new file mode 100644 index 0000000..04c665f --- /dev/null +++ b/app/django_comments/views/moderation.py @@ -0,0 +1,166 @@ +from __future__ import absolute_import + +from django.contrib.auth.decorators import login_required, permission_required +from django.contrib.sites.shortcuts import get_current_site +from django.shortcuts import get_object_or_404, render +from django.views.decorators.csrf import csrf_protect + +import django_comments +from django_comments import signals +from django_comments.views.utils import next_redirect, confirmation_view + + +@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(django_comments.get_model(), + pk=comment_id, + site__pk=get_current_site(request).pk) + + # 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(request, 'comments/flag.html', {'comment': comment, "next": next}) + + +@csrf_protect +@permission_required("django_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(django_comments.get_model(), + pk=comment_id, + site__pk=get_current_site(request).pk) + + # 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(request, 'comments/delete.html', {'comment': comment, "next": next}) + + +@csrf_protect +@permission_required("django_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(django_comments.get_model(), + pk=comment_id, + site__pk=get_current_site(request).pk) + + # 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(request, 'comments/approve.html', {'comment': comment, "next": next}) + + +# The following functions actually perform the various flag/aprove/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 = django_comments.models.CommentFlag.objects.get_or_create( + comment=comment, + user=request.user, + flag=django_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 = django_comments.models.CommentFlag.objects.get_or_create( + comment=comment, + user=request.user, + flag=django_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 = django_comments.models.CommentFlag.objects.get_or_create( + comment=comment, + user=request.user, + flag=django_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/app/django_comments/views/utils.py b/app/django_comments/views/utils.py new file mode 100644 index 0000000..a5f5c11 --- /dev/null +++ b/app/django_comments/views/utils.py @@ -0,0 +1,71 @@ +""" +A few bits of helper functions for comment views. +""" + +import textwrap + +try: + from urllib.parse import urlencode +except ImportError: # Python 2 + from urllib import urlencode + +from django.http import HttpResponseRedirect +from django.shortcuts import render, resolve_url +from django.core.exceptions import ObjectDoesNotExist +from django.utils.http import is_safe_url + +import django_comments + + +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, allowed_hosts={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 = ('?' in next) and '&' or '?' + 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 = django_comments.get_model().objects.get(pk=request.GET['c']) + except (ObjectDoesNotExist, ValueError): + pass + return render(request, template, {'comment': comment}) + + confirmed.__doc__ = textwrap.dedent("""\ + %s + + Templates: :template:`%s`` + Context: + comment + The posted comment + """ % (doc, template) + ) + return confirmed |