diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | abf599be33b383a6a5baf9493093b2126a622ac8 (patch) | |
tree | 4c5ab6e0d935d5e65fabcf0258e4a00dd20a5afa /lib/python2.7/site-packages/django/contrib/comments | |
download | SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.gz SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.bz2 SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.zip |
added all server files
Diffstat (limited to 'lib/python2.7/site-packages/django/contrib/comments')
181 files changed, 25085 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/django/contrib/comments/__init__.py b/lib/python2.7/site-packages/django/contrib/comments/__init__.py new file mode 100644 index 0000000..007b77a --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/__init__.py @@ -0,0 +1,94 @@ +import warnings +from django.conf import settings +from django.core import urlresolvers +from django.core.exceptions import ImproperlyConfigured +from django.contrib.comments.models import Comment +from django.contrib.comments.forms import CommentForm +from django.utils.importlib import import_module + +warnings.warn("django.contrib.comments is deprecated and will be removed before Django 1.8.", PendingDeprecationWarning) + +DEFAULT_COMMENTS_APP = 'django.contrib.comments' + +def get_comment_app(): + """ + Get the comment app (i.e. "django.contrib.comments") as defined in the settings + """ + # Make sure the app's in INSTALLED_APPS + comments_app = get_comment_app_name() + if comments_app not in settings.INSTALLED_APPS: + raise ImproperlyConfigured("The COMMENTS_APP (%r) "\ + "must be in INSTALLED_APPS" % settings.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: + return Comment + +def get_form(): + """ + Returns the comment ModelForm class. + """ + if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_form"): + return get_comment_app().get_form() + else: + return CommentForm + +def get_form_target(): + """ + Returns the target URL for the comment form submission view. + """ + if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_form_target"): + return get_comment_app().get_form_target() + else: + return urlresolvers.reverse("django.contrib.comments.views.comments.post_comment") + +def get_flag_url(comment): + """ + Get the URL for the "flag this comment" view. + """ + if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_flag_url"): + return get_comment_app().get_flag_url(comment) + else: + return urlresolvers.reverse("django.contrib.comments.views.moderation.flag", + args=(comment.id,)) + +def get_delete_url(comment): + """ + Get the URL for the "delete this comment" view. + """ + if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_delete_url"): + return get_comment_app().get_delete_url(comment) + else: + return urlresolvers.reverse("django.contrib.comments.views.moderation.delete", + args=(comment.id,)) + +def get_approve_url(comment): + """ + Get the URL for the "approve this comment from moderation" view. + """ + if get_comment_app_name() != DEFAULT_COMMENTS_APP and hasattr(get_comment_app(), "get_approve_url"): + return get_comment_app().get_approve_url(comment) + else: + return urlresolvers.reverse("django.contrib.comments.views.moderation.approve", + args=(comment.id,)) diff --git a/lib/python2.7/site-packages/django/contrib/comments/admin.py b/lib/python2.7/site-packages/django/contrib/comments/admin.py new file mode 100644 index 0000000..391889c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/admin.py @@ -0,0 +1,86 @@ +from __future__ import unicode_literals + +from django.contrib import admin +from django.contrib.auth import get_user_model +from django.contrib.comments.models import Comment +from django.utils.translation import ugettext_lazy as _, ungettext_lazy +from django.contrib.comments import get_model +from django.contrib.comments.views.moderation import perform_flag, perform_approve, perform_delete + + +class UsernameSearch(object): + """The User object may not be auth.User, so we need to provide + a mechanism for issuing the equivalent of a .filter(user__username=...) + search in CommentAdmin. + """ + def __str__(self): + return 'user__%s' % get_user_model().USERNAME_FIELD + + +class CommentsAdmin(admin.ModelAdmin): + fieldsets = ( + (None, + {'fields': ('content_type', 'object_pk', 'site')} + ), + (_('Content'), + {'fields': ('user', 'user_name', 'user_email', 'user_url', 'comment')} + ), + (_('Metadata'), + {'fields': ('submit_date', 'ip_address', 'is_public', 'is_removed')} + ), + ) + + list_display = ('name', 'content_type', 'object_pk', 'ip_address', 'submit_date', 'is_public', 'is_removed') + list_filter = ('submit_date', 'site', 'is_public', 'is_removed') + date_hierarchy = 'submit_date' + ordering = ('-submit_date',) + raw_id_fields = ('user',) + search_fields = ('comment', UsernameSearch(), 'user_name', 'user_email', 'user_url', 'ip_address') + actions = ["flag_comments", "approve_comments", "remove_comments"] + + def get_actions(self, request): + actions = super(CommentsAdmin, self).get_actions(request) + # Only superusers should be able to delete the comments from the DB. + if not request.user.is_superuser and 'delete_selected' in actions: + actions.pop('delete_selected') + if not request.user.has_perm('comments.can_moderate'): + if 'approve_comments' in actions: + actions.pop('approve_comments') + if 'remove_comments' in actions: + actions.pop('remove_comments') + return actions + + def flag_comments(self, request, queryset): + self._bulk_flag(request, queryset, perform_flag, + ungettext_lazy('%d comment was successfully flagged', + '%d comments were successfully flagged')) + flag_comments.short_description = _("Flag selected comments") + + def approve_comments(self, request, queryset): + self._bulk_flag(request, queryset, perform_approve, + ungettext_lazy('%d comment was successfully approved', + '%d comments were successfully approved')) + approve_comments.short_description = _("Approve selected comments") + + def remove_comments(self, request, queryset): + self._bulk_flag(request, queryset, perform_delete, + ungettext_lazy('%d comment was successfully removed', + '%d comments were successfully removed')) + remove_comments.short_description = _("Remove selected comments") + + def _bulk_flag(self, request, queryset, action, done_message): + """ + Flag, approve, or remove some comments from an admin action. Actually + calls the `action` argument to perform the heavy lifting. + """ + n_comments = 0 + for comment in queryset: + action(request, comment) + n_comments += 1 + + self.message_user(request, done_message % n_comments) + +# Only register the default admin if the model is the built-in comment model +# (this won't be true if there's a custom comment app). +if get_model() is Comment: + admin.site.register(Comment, CommentsAdmin) diff --git a/lib/python2.7/site-packages/django/contrib/comments/feeds.py b/lib/python2.7/site-packages/django/contrib/comments/feeds.py new file mode 100644 index 0000000..2e0d4c3 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/feeds.py @@ -0,0 +1,31 @@ +from django.contrib.syndication.views import Feed +from django.contrib.sites.models import get_current_site +from django.contrib import comments +from django.utils.translation import ugettext as _ + +class LatestCommentFeed(Feed): + """Feed of latest comments on the current site.""" + + def __call__(self, request, *args, **kwargs): + self.site = get_current_site(request) + return super(LatestCommentFeed, self).__call__(request, *args, **kwargs) + + def title(self): + return _("%(site_name)s comments") % dict(site_name=self.site.name) + + def link(self): + return "http://%s/" % (self.site.domain) + + def description(self): + return _("Latest comments on %(site_name)s") % dict(site_name=self.site.name) + + def items(self): + qs = comments.get_model().objects.filter( + site__pk = self.site.pk, + is_public = True, + is_removed = False, + ) + return qs.order_by('-submit_date')[:40] + + def item_pubdate(self, item): + return item.submit_date diff --git a/lib/python2.7/site-packages/django/contrib/comments/forms.py b/lib/python2.7/site-packages/django/contrib/comments/forms.py new file mode 100644 index 0000000..bd254d2 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/forms.py @@ -0,0 +1,194 @@ +import time +from django import forms +from django.forms.util import ErrorDict +from django.conf import settings +from django.contrib.contenttypes.models import ContentType +from django.contrib.comments.models import Comment +from django.utils.crypto import salted_hmac, constant_time_compare +from django.utils.encoding import force_text +from django.utils.text import get_text_list +from django.utils import timezone +from django.utils.translation import ungettext, ugettext, ugettext_lazy as _ + +COMMENT_MAX_LENGTH = getattr(settings,'COMMENT_MAX_LENGTH', 3000) + +class CommentSecurityForm(forms.Form): + """ + Handles the security aspects (anti-spoofing) for comment forms. + """ + content_type = forms.CharField(widget=forms.HiddenInput) + object_pk = forms.CharField(widget=forms.HiddenInput) + timestamp = forms.IntegerField(widget=forms.HiddenInput) + security_hash = forms.CharField(min_length=40, max_length=40, widget=forms.HiddenInput) + + def __init__(self, target_object, data=None, initial=None): + self.target_object = target_object + if initial is None: + initial = {} + initial.update(self.generate_security_data()) + super(CommentSecurityForm, self).__init__(data=data, initial=initial) + + def security_errors(self): + """Return just those errors associated with security""" + errors = ErrorDict() + for f in ["honeypot", "timestamp", "security_hash"]: + if f in self.errors: + errors[f] = self.errors[f] + return errors + + def clean_security_hash(self): + """Check the security hash.""" + security_hash_dict = { + 'content_type' : self.data.get("content_type", ""), + 'object_pk' : self.data.get("object_pk", ""), + 'timestamp' : self.data.get("timestamp", ""), + } + expected_hash = self.generate_security_hash(**security_hash_dict) + actual_hash = self.cleaned_data["security_hash"] + if not constant_time_compare(expected_hash, actual_hash): + raise forms.ValidationError("Security hash check failed.") + return actual_hash + + def clean_timestamp(self): + """Make sure the timestamp isn't too far (> 2 hours) in the past.""" + ts = self.cleaned_data["timestamp"] + if time.time() - ts > (2 * 60 * 60): + raise forms.ValidationError("Timestamp check failed") + return ts + + def generate_security_data(self): + """Generate a dict of security data for "initial" data.""" + timestamp = int(time.time()) + security_dict = { + 'content_type' : str(self.target_object._meta), + 'object_pk' : str(self.target_object._get_pk_val()), + 'timestamp' : str(timestamp), + 'security_hash' : self.initial_security_hash(timestamp), + } + return security_dict + + def initial_security_hash(self, timestamp): + """ + Generate the initial security hash from self.content_object + and a (unix) timestamp. + """ + + initial_security_dict = { + 'content_type' : str(self.target_object._meta), + 'object_pk' : str(self.target_object._get_pk_val()), + 'timestamp' : str(timestamp), + } + return self.generate_security_hash(**initial_security_dict) + + def generate_security_hash(self, content_type, object_pk, timestamp): + """ + Generate a HMAC security hash from the provided info. + """ + info = (content_type, object_pk, timestamp) + key_salt = "django.contrib.forms.CommentSecurityForm" + value = "-".join(info) + return salted_hmac(key_salt, value).hexdigest() + +class CommentDetailsForm(CommentSecurityForm): + """ + Handles the specific details of the comment (name, comment, etc.). + """ + name = forms.CharField(label=_("Name"), max_length=50) + email = forms.EmailField(label=_("Email address")) + url = forms.URLField(label=_("URL"), required=False) + comment = forms.CharField(label=_('Comment'), widget=forms.Textarea, + max_length=COMMENT_MAX_LENGTH) + + def get_comment_object(self): + """ + Return a new (unsaved) comment object based on the information in this + form. Assumes that the form is already validated and will throw a + ValueError if not. + + Does not set any of the fields that would come from a Request object + (i.e. ``user`` or ``ip_address``). + """ + if not self.is_valid(): + raise ValueError("get_comment_object may only be called on valid forms") + + CommentModel = self.get_comment_model() + new = CommentModel(**self.get_comment_create_data()) + new = self.check_for_duplicate_comment(new) + + return new + + def get_comment_model(self): + """ + Get the comment model to create with this form. Subclasses in custom + comment apps should override this, get_comment_create_data, and perhaps + check_for_duplicate_comment to provide custom comment models. + """ + return Comment + + def get_comment_create_data(self): + """ + Returns the dict of data to be used to create a comment. Subclasses in + custom comment apps that override get_comment_model can override this + method to add extra fields onto a custom comment model. + """ + return dict( + content_type = ContentType.objects.get_for_model(self.target_object), + object_pk = force_text(self.target_object._get_pk_val()), + user_name = self.cleaned_data["name"], + user_email = self.cleaned_data["email"], + user_url = self.cleaned_data["url"], + comment = self.cleaned_data["comment"], + submit_date = timezone.now(), + site_id = settings.SITE_ID, + is_public = True, + is_removed = False, + ) + + def check_for_duplicate_comment(self, new): + """ + Check that a submitted comment isn't a duplicate. This might be caused + by someone posting a comment twice. If it is a dup, silently return the *previous* comment. + """ + possible_duplicates = self.get_comment_model()._default_manager.using( + self.target_object._state.db + ).filter( + content_type = new.content_type, + object_pk = new.object_pk, + user_name = new.user_name, + user_email = new.user_email, + user_url = new.user_url, + ) + for old in possible_duplicates: + if old.submit_date.date() == new.submit_date.date() and old.comment == new.comment: + return old + + return new + + def clean_comment(self): + """ + If COMMENTS_ALLOW_PROFANITIES is False, check that the comment doesn't + contain anything in PROFANITIES_LIST. + """ + comment = self.cleaned_data["comment"] + if settings.COMMENTS_ALLOW_PROFANITIES == False: + bad_words = [w for w in settings.PROFANITIES_LIST if w in comment.lower()] + if bad_words: + raise forms.ValidationError(ungettext( + "Watch your mouth! The word %s is not allowed here.", + "Watch your mouth! The words %s are not allowed here.", + len(bad_words)) % get_text_list( + ['"%s%s%s"' % (i[0], '-'*(len(i)-2), i[-1]) + for i in bad_words], ugettext('and'))) + return comment + +class CommentForm(CommentDetailsForm): + honeypot = forms.CharField(required=False, + label=_('If you enter anything in this field '\ + 'your comment will be treated as spam')) + + def clean_honeypot(self): + """Check that nothing's been entered into the honeypot.""" + value = self.cleaned_data["honeypot"] + if value: + raise forms.ValidationError(self.fields["honeypot"].label) + return value diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..69fbb47 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.po new file mode 100644 index 0000000..842a4d0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/af/LC_MESSAGES/django.po @@ -0,0 +1,287 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/django/" +"language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "E-pos adres" + +#: 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 "Verwyder" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..128bf06 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 0000000..77bad42 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,315 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# dado_eyad <d.eyad.t@gmail.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Ossama Khayat <okhayat@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-28 08:57+0000\n" +"Last-Translator: dado_eyad <d.eyad.t@gmail.com>\n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/django/language/" +"ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: admin.py:25 +msgid "Content" +msgstr "محتوى" + +#: admin.py:28 +msgid "Metadata" +msgstr "ميتاداتا" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "تعليم التعليقات المحددة" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "تمت الموافقة على %d من التعليقات بنجاح" +msgstr[1] "تمت الموافقة على %d من التعليقات بنجاح" +msgstr[2] "تمت الموافقة على %d من التعليقات بنجاح" +msgstr[3] "تمت الموافقة على %d من التعليقات بنجاح" +msgstr[4] "تمت الموافقة على %d من التعليقات بنجاح" +msgstr[5] "تمت الموافقة على %d من التعليقات بنجاح" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "اعتماد التعليقات المحددة" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "تم حذف %d من التعليقات بنجاح" +msgstr[1] "تم حذف %d من التعليقات بنجاح" +msgstr[2] "تم حذف %d من التعليقات بنجاح" +msgstr[3] "تم حذف %d من التعليقات بنجاح" +msgstr[4] "تم حذف %d من التعليقات بنجاح" +msgstr[5] "تم حذف %d من التعليقات بنجاح" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "احذف التعليقات المحددة" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "تعليقات %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "آخر التعليقات على %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "الاسم" + +#: forms.py:97 +msgid "Email address" +msgstr "عنوان بريد إلكتروني" + +#: forms.py:98 +msgid "URL" +msgstr "رابط" + +#: forms.py:99 +msgid "Comment" +msgstr "تعليق" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "احفظ لسانك! الكلمة %s ممنوعة هنا." +msgstr[1] "احفظ لسانك! الكلمة %s ممنوعة هنا." +msgstr[2] "احفظ لسانك! الكلمة %s ممنوعة هنا." +msgstr[3] "احفظ لسانك! الكلمة %s ممنوعة هنا." +msgstr[4] "احفظ لسانك! الكلمة %s ممنوعة هنا." +msgstr[5] "احفظ لسانك! الكلمة %s ممنوعة هنا." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "و" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "إن كتبت أي شيء في هذا الحقل فسيُعتبر تعليقك غير مرغوب به" + +#: models.py:23 +msgid "content type" +msgstr "نوع البيانات" + +#: models.py:25 +msgid "object ID" +msgstr "معرف العنصر" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "مستخدم" + +#: models.py:55 +msgid "user's name" +msgstr "اسم المستخدم" + +#: models.py:56 +msgid "user's email address" +msgstr "عنوان البريد الإلكتروني للمستخدم" + +#: models.py:57 +msgid "user's URL" +msgstr "عنوان URL للمستخدم" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "تعليق" + +#: models.py:62 +msgid "date/time submitted" +msgstr "تاريخ ووقت الإرسال" + +#: models.py:63 +msgid "IP address" +msgstr "عنوان IP" + +#: models.py:64 +msgid "is public" +msgstr "عام" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "أزل اختيار هذا المربّع كي تُزيل التعليق نهائياً من الموقع." + +#: models.py:67 +msgid "is removed" +msgstr "محذوف" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"انتق هذا المربع إذا كان التعليق غير لائق، سيتم عرض الرسالة \"تم حذف هذا " +"التعليق\" بدلا منه." + +#: models.py:80 +msgid "comments" +msgstr "تعليقات" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "كتب هذا التعليق مستخدم مُسجّل ولذا كان اسمهللقراءة فقط." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"كتب هذا التعليق مستخدم مُسجّل ولذا كان عنوان بريده الالكتروني للقراءة فقط." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"كتبه %(user)s في %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "علم" + +#: models.py:180 +msgid "date" +msgstr "التاريخ" + +#: models.py:190 +msgid "comment flag" +msgstr "علَم التعليق" + +#: models.py:191 +msgid "comment flags" +msgstr "أعلام التعليقات" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "وافق على تعليق" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "تريد فعلاً جعل هذا التعليق عامّاً؟" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "وافق" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "شكراً لموافقتك" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "شكراً لك على قضاء وقتك في تحسين جودة النقاش على موقعنا" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "أزل تعليق" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "تريد فعلاً إزالة هذا التعليق؟" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "أزل" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "شكراً لإزالته" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "سِم هذا التعليق" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "تريد فعلاً وسم هذا التعليق؟" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "سٍم" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "شكراً لك على الوَسم" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "أرسل " + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "عاين" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "شكراً على تعليقك" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "شكراً لك على تعليقك" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "عاين تعليقك" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "رجاءً صحح الأخطاء أدناه" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "الرجاء تصحيح الأخطاء أدناه" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "أرسال تعليقك" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "أو قم ببعض التغيير" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4960da5 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.po new file mode 100644 index 0000000..d77d6a5 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/az/LC_MESSAGES/django.po @@ -0,0 +1,299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Ali Ismayilov <ali@ismailov.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/django/" +"language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Məzmun" + +#: admin.py:28 +msgid "Metadata" +msgstr "Meta-məlumat" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Seçilmiş şərhləri işarələ" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Seçilmiş şərhləri təsdiq et" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Seçilmiş şərhləri sil" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s şərhləri" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s üzrə son şərhlər" + +#: forms.py:96 +msgid "Name" +msgstr "Ad" + +#: forms.py:97 +msgid "Email address" +msgstr "E-poçt" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Şərh" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "və" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Bu sahəyə nəsə yazsanız, şərhiniz spam kimi qiymətləndiriləcək." + +#: models.py:23 +msgid "content type" +msgstr "məzmunun tipi" + +#: models.py:25 +msgid "object ID" +msgstr "obyektin ID-si" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "istifadəçi" + +#: models.py:55 +msgid "user's name" +msgstr "istifadəçinin adı" + +#: models.py:56 +msgid "user's email address" +msgstr "istifadəçinin e-poçt ünvanı" + +#: models.py:57 +msgid "user's URL" +msgstr "istifadəçinin URL-ni" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "şərh" + +#: models.py:62 +msgid "date/time submitted" +msgstr "yazılma tarix/vaxtı" + +#: models.py:63 +msgid "IP address" +msgstr "IP ünvanı" + +#: models.py:64 +msgid "is public" +msgstr "hamı görür" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Şərhi saytdan yox etmək üçün buradakı quşu yığışdırın." + +#: models.py:67 +msgid "is removed" +msgstr "yığışdırılıb" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Əgər şərh qeyri-uyğundursa, bura quş qoyun və şərhin yerinə \"Bu şərh " +"yığışdırılıb\" yazısı çıxacaq." + +#: models.py:80 +msgid "comments" +msgstr "şərhlər" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Bu şərh daxil olmuş istifadəçi adından yazılmışdır, buna görə də onun adını " +"dəyişmək mümkün deyil." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Bu şərh daxil olmuş istifadəçi adından yazılmışdır, buna görə də onun e-poçt " +"ünvanını dəyişmək mümkün deyil." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s %(date)s tarixində yazmışdır.\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "işarələ" + +#: models.py:180 +msgid "date" +msgstr "tarix" + +#: models.py:190 +msgid "comment flag" +msgstr "şərh işarəsi" + +#: models.py:191 +msgid "comment flags" +msgstr "şərh işarələri" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Şərhə icazə ver" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Bu şərhi hamı görsün?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Təsdiqləyirəm" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Təsdiqlədiniz" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Saytımızda müzakirəni daha keyfiyyətli etmək üçün sərf etdiyiniz vaxta görə " +"təşəkkür edirik." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Şərhi yığışdır" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Şərhi yığışdıraq?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Yığışdır" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Yığışdırdıq" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Şərhi işarələ" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Şərhi işarələyək?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "İşarələ" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "İşarələdik" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Yaz" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Baxım" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Şərh etdiyiniz üçün təşəkkür edirik" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Şərh etdiyiniz üçün təşəkkür edirik" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Şərhin görünüşü" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" +"one: Aşağıdakı səhvi düzəldin.\n" +"other: Aşağıdakı səhvləri düzəldin." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..7c10d76 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.po new file mode 100644 index 0000000..3cd57ae --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/be/LC_MESSAGES/django.po @@ -0,0 +1,309 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Belarusian (http://www.transifex.com/projects/p/django/" +"language/be/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: be\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Зьмесьціва" + +#: admin.py:28 +msgid "Metadata" +msgstr "Зьвесткі" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Пазначыць абраныя выказваньні" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Ухваліць абраныя выказваньні" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Прыбраць абраныя выказваньні" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Выказваньні на %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Найноўшыя выказваньні на %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Імя" + +#: forms.py:97 +msgid "Email address" +msgstr "Адрас эл. пошты" + +#: forms.py:98 +msgid "URL" +msgstr "Сеціўная спасылка" + +#: forms.py:99 +msgid "Comment" +msgstr "Выказваньне" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." +msgstr[1] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." +msgstr[2] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." +msgstr[3] "Сачыце за сваімі словамі! Тут нельга казаць «%s»." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "і" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Калі напісаць нешта ў гэтым полі, выказваньне будзе лічыцца лухтою (спамам)." + +#: models.py:23 +msgid "content type" +msgstr "від зьмесьціва" + +#: models.py:25 +msgid "object ID" +msgstr "нумар аб’екта" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "карыстальнік" + +#: models.py:55 +msgid "user's name" +msgstr "імя карыстальніка" + +#: models.py:56 +msgid "user's email address" +msgstr "эл. пошта карыстальніка" + +#: models.py:57 +msgid "user's URL" +msgstr "сеціўная спасылка карыстальніка" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "выкавзаньне" + +#: models.py:62 +msgid "date/time submitted" +msgstr "час і дата выказваньня" + +#: models.py:63 +msgid "IP address" +msgstr "Адрас IP" + +#: models.py:64 +msgid "is public" +msgstr "бачнае" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Прыбярыце гэтую птушачку, каб выказваньне зьнікла з пляцоўкі." + +#: models.py:67 +msgid "is removed" +msgstr "прыбралі" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Абярыце, калі выказваньне не да месца або не адпавядае правілам. Замест яго " +"будзе надпіс «Выказваньне прыбралі»." + +#: models.py:80 +msgid "comments" +msgstr "выказваньні" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Выказваньне пакінуў карыстальнік, які апазнаўся, таму ягонае імя нельга " +"зьмяняць." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Выказваньне пакінуў карыстальнік, які апазнаўся, таму ягоны адрас эл. пошты " +"нельга зьмяняць." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(date)s, аўтар — %(user)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "пазнака" + +#: models.py:180 +msgid "date" +msgstr "дата" + +#: models.py:190 +msgid "comment flag" +msgstr "пазнака выказваньня" + +#: models.py:191 +msgid "comment flags" +msgstr "пазнакі выказваньняў" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Ухваліць выказваньне" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Ці сапраўды зрабіць выказваньне бачным?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Ухваліць" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Дзякуем, што ўхвалілі" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Мы ўдзячныя, што вы дапамагаеце палепшыць якасьць размовы на нашай пляцоўцы" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Прыбраць выказваньне" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Ці сапраўды прыбраць выказваньне?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Прыбраць" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Дзякуем, што прыбралі" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Пазначыць выказваньне" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Ці сапраўды пазначыць выказваньне?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Пазначыць" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Дзякуем, што пазначылі" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Даслаць" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Прагледзець" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Дзякуем, што выказаліся" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Мы ўдзячныя за вашае выказваньне" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Прагледзець выказваньне" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Выпраўце памылкі ніжэй" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Дашліце выказваньне" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "або выпраўце яго" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..aedefdc --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.po new file mode 100644 index 0000000..2f1628a --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bg/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Boris Chervenkov <office@sentido.bg>, 2012 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Todor Lube <tlubenov@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Bulgarian (http://www.transifex.com/projects/p/django/" +"language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Благодаря за маркирането" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метаданни" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Маркирай избраните коментари" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Одобри избраните коментари" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Премахване на избраните коментари" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s коментари" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Последни коментари на %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Име" + +#: forms.py:97 +msgid "Email address" +msgstr "Email адрес" + +#: forms.py:98 +msgid "URL" +msgstr "URL адрес" + +#: forms.py:99 +msgid "Comment" +msgstr "Коментар" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Внимание! Думата %s не се допуска." +msgstr[1] "Внимание! Думите %s не се допускат." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "и" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ако въведете нещо в това поле, вашия коментар ще се третира като спам" + +#: models.py:23 +msgid "content type" +msgstr "тип на съдържанието" + +#: models.py:25 +msgid "object ID" +msgstr "ID на обекта" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "потребител" + +#: models.py:55 +msgid "user's name" +msgstr "потребителско име" + +#: models.py:56 +msgid "user's email address" +msgstr "email адрес на потребителя" + +#: models.py:57 +msgid "user's URL" +msgstr "URL адрес на потребителя" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "коментар" + +#: models.py:62 +msgid "date/time submitted" +msgstr "дата и час на подаване" + +#: models.py:63 +msgid "IP address" +msgstr "IP адрес" + +#: models.py:64 +msgid "is public" +msgstr "е публичен" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Махнете отметката от това поле, за да премахнете коментара от сайта." + +#: models.py:67 +msgid "is removed" +msgstr "е премахнат" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Щракнете тук ако коментарът е неподходящ. Вместо съдържанието на коментара, " +"ще се покаже надписът \"Този коментар беше премахнат.\"" + +#: models.py:80 +msgid "comments" +msgstr "коментари" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Този коментар е публикуван от регистриран потребител, затова името не може " +"да бъде редактирано." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Този коментар е публикуван от регистриран потребител, затова email адресът " +"не може да бъде редактиран." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Публикуван от %(user)s на %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "маркиране" + +#: models.py:180 +msgid "date" +msgstr "дата" + +#: models.py:190 +msgid "comment flag" +msgstr "отбелязване на коментар" + +#: models.py:191 +msgid "comment flags" +msgstr "отбелязване на коментари" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Одобряване на коментар" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Наистина ли да стане този коментар публичен?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Одобри" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Благодарим за одобрението" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Благодарим, че отделихте време, за да се подобри качеството на обсъждането " +"на нашия сайт" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Премахване на коментар" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Сигурни ли сте, че искате да премахнете този коментар?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Премахване" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Благодарим за премахването" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Маркирай този коментар" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Сигурни ли сте, че искате да отбележете този коментар?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Отбелязване" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Благодарим за отбелязването" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Публикувай" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Преглед" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Благодарим за коментара" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Благодарим за Вашия коментар" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Преглед на коментар" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Моля, поправете грешките по-долу" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Публикувай коментар" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "или направете промени" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..0d75f3c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.po new file mode 100644 index 0000000..3ae8297 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bn/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# anubhab91, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Bengali (http://www.transifex.com/projects/p/django/language/" +"bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "কনটেন্ট" + +#: admin.py:28 +msgid "Metadata" +msgstr "মেটাডাটা" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "চয়িত মন্তব্যগুলোকে ফ্ল্যাগ করুন" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "চিহ্নিত মন্তব্যগুলি অনুমোদন করুন" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "চয়িত মন্তব্যগুলি মুছে ফেলুন" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "নাম" + +#: forms.py:97 +msgid "Email address" +msgstr "ইমেইল ঠিকানা" + +#: forms.py:98 +msgid "URL" +msgstr "ইউআরএল (URL)" + +#: forms.py:99 +msgid "Comment" +msgstr "মন্তব্য" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "সাবধান! %s শব্দটি এখানে প্রযোজ্য নয়।" +msgstr[1] "সাবধান! %s শব্দগুলো এখানে প্রযোজ্য নয়।" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "এবং" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "আপনি যদি এখানে কোনকিছু লিখেন তবে আপনার মন্তব্যকে স্প্যাম হিসেবে ধরা হবে" + +#: models.py:23 +msgid "content type" +msgstr "কনটেন্ট টাইপ" + +#: models.py:25 +msgid "object ID" +msgstr "অবজেক্ট আইডি" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "সদস্য" + +#: models.py:55 +msgid "user's name" +msgstr "সদস্যের নাম" + +#: models.py:56 +msgid "user's email address" +msgstr "সদস্যের ইমেইল ঠিকানা" + +#: models.py:57 +msgid "user's URL" +msgstr "সদস্যের ইউআরএল (URL)" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "মন্তব্য" + +#: models.py:62 +msgid "date/time submitted" +msgstr "দাখিলের তারিখ/সময়" + +#: models.py:63 +msgid "IP address" +msgstr "আইপি ঠিকানা" + +#: models.py:64 +msgid "is public" +msgstr "সার্বজনীন" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "সাইট থেকে মন্তব্য মুছে ফেলতে এখানে আনচেক করুন।" + +#: models.py:67 +msgid "is removed" +msgstr "মোছা হয়েছে" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"এই বাক্সে চেক করুন যদি মন্তব্যটি যথাযথ না হয়। মন্তব্যের পরিবর্তে \"মন্তব্যদি মুছে ফেলা " +"হয়েছে\" দেখানো হবে।" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "এই মন্তব্যটি একজন নিবন্ধনকৃত সদস্য করেছেন, সেজন্যই নামটি শুধুমাত্র পড়ার যোগ্য।" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"এই মন্তব্যটি একজন নিবন্ধনকৃত সদস্য করেছেন, সেজন্যই ইমেইল ঠিকানা শুধুমাত্র পড়ার যোগ্য।" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"লিখেছেন %(user)s - %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "পতাকা" + +#: models.py:180 +msgid "date" +msgstr "তারিখ" + +#: models.py:190 +msgid "comment flag" +msgstr "মন্তব্য পতাকা" + +#: models.py:191 +msgid "comment flags" +msgstr "মন্তব্য পতাকাসমূহ" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "একটি মন্তব্য অনুমোদন করুন" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "সত্যিই কি এই মন্তব্যকে সাধারণের জন্য উন্মুক্ত করতে চান?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "অনুমোদন" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "অনুমোদন করার জন্য ধন্যবাদ" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "আমাদের সাইটের উন্নতিকল্পে আলোচনায় যোগ দেওয়ার জন্য আপনাকে সাধুবাদ জানাই" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "একটি মন্তব্য মুছে ফেলুন" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "সত্যিই কি এই মন্তব্যকে উড়িয়ে দিতে চান?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "মুছে ফেলুন" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "মুছে ফেলার জন্য ধন্যবাদ" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "এই মন্তব্যকে পতাকাচিহ্নিত করুন" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "সত্যিই কি এই মন্তব্যকে পতাকাচিহ্নিত করতে চান?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "পতাকা" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "পতাকাচিহ্নিত করার জন্য ধন্যবাদ" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "প্রাকদর্শন" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "মন্তব্য লেখার জন্য ধন্যবাদ" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "আপনার মতামতের জন্য ধন্যবাদ" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "আপনার মন্তব্যকে প্রাকদর্শন করুন" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..302d6c0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.po new file mode 100644 index 0000000..5524faa --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/br/LC_MESSAGES/django.po @@ -0,0 +1,288 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Fulup <fulup.jakez@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Breton (http://www.transifex.com/projects/p/django/language/" +"br/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: br\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Danvez" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metaroadennoù" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Merkañ an evezhiadennoù diuzet" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprouiñ an evezhiadennoù diuzet" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Dilemel an evezhiadennoù diuzet" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "Anv" + +#: forms.py:97 +msgid "Email address" +msgstr "Chomlec'h postel" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Evezhiadenn" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "seurt danvez" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "implijer" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "chomlec'h postel an implijer" + +#: models.py:57 +msgid "user's URL" +msgstr "URL an implijer" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "danvez" + +#: models.py:62 +msgid "date/time submitted" +msgstr "deiziad/eur kaset" + +#: models.py:63 +msgid "IP address" +msgstr "Chomlec'h IP" + +#: models.py:64 +msgid "is public" +msgstr "zo foran" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "zo bet dilamet" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "evezhiadennoù" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "merker" + +#: models.py:180 +msgid "date" +msgstr "deiziad" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "aprouiñ un evezhiadenn" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprouiñ" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Trugarez da vezañ aprouet" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Diverkañ un evezhiadenn" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Dilemel" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Trugarez evit an diverkadenn-mañ" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Kas" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Rakwelet" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Rakwelet hoc'h evezhiadenn" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..865d3dd --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.po new file mode 100644 index 0000000..7c227f7 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/bs/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Filip Dupanović <filip.dupanovic@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/django/language/" +"bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Sadržaj" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metapodaci" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označite izabrane komentare" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Odobri izabrane komentare" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Obriši izabrane komentare" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Komentari na %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Najnoviji komentari na %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ime" + +#: forms.py:97 +msgid "Email address" +msgstr "Email adresa" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pazite šta pišete! Riječ %s nije dozvoljena ovdje." +msgstr[1] "Pazite šta pišete! Riječi %s nisu dozvoljene ovdje." +msgstr[2] "Pazite šta pišete! Riječi %s nisu dozvoljene ovdje." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "i" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ako unesete bilo šta u ovo polje, Vaš komentar će se smatrati spamom" + +#: models.py:23 +msgid "content type" +msgstr "tip sadržaja" + +#: models.py:25 +msgid "object ID" +msgstr "ID objekta" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "korisnik" + +#: models.py:55 +msgid "user's name" +msgstr "korisnikovo ime" + +#: models.py:56 +msgid "user's email address" +msgstr "korisnikova email adresa" + +#: models.py:57 +msgid "user's URL" +msgstr "korisnikov URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum/vrijeme unosa" + +#: models.py:63 +msgid "IP address" +msgstr "IP adresa" + +#: models.py:64 +msgid "is public" +msgstr "javno dostupan" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Uklonite izbor ovog polja da bi se komentar izbrisao sa stranice." + +#: models.py:67 +msgid "is removed" +msgstr "uklonjen" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Obilježite ovo polje ukoliko je komentar neprikladan. Prikazat će se poruka " +"\"Komentar je ukonjen\" umjesto komentara." + +#: models.py:80 +msgid "comments" +msgstr "komentari" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ovaj komentar je postavio prijavljeni korisnik i ime se ne može mijenjati." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ovaj komentar je postavio prijavljeni korisnik i email se ne može mijenjati." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postavio %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "oznaka" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "oznaka komentara" + +#: models.py:191 +msgid "comment flags" +msgstr "oznake komentara" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Odobri komentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Da li zaista želite da učinite ovaj komentar javno dostupnim?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Odobri" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Hvala na odobrenju" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Hvala što ste izdvojili vrijeme da poboljšate kvalitet diskusije na našoj " +"stranici" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Obriši komentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Da li zaista želite da obrišete ovaj komentar?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Obriši" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Hvala na brisanju" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označi ovaj komentar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Da li zaista želite da označite ovaj komentar?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Označi" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Hvala što ste označili komentar." + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Postavi" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Pregled" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Hvala na komentaru" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Hvala što ste ostavili svoj komentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Pregledaj komentar" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Molimo ispravite navedene greške" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..08cbc93 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.po new file mode 100644 index 0000000..3c95c05 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ca/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Catalan (http://www.transifex.com/projects/p/django/language/" +"ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contingut" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadades" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar els comentaris seleccionats" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprovar els comentaris seleccionats" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Eliminar els comentaris seleccionats" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "comentaris de %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últims comentaris a %(site_name)s." + +#: forms.py:96 +msgid "Name" +msgstr "Nom" + +#: forms.py:97 +msgid "Email address" +msgstr "Adreça de correu electrònic" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentari" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Vigileu amb el vostre llenguatge! Aquí no s'admet la paraula: %s." +msgstr[1] "" +"Vigileu amb el vostre llenguatge! Aquí no s'admeten les paraules: %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "i" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Si entreu qualsevol cosa en aquest camp el vostre comentari es tractarà com " +"a spam" + +#: models.py:23 +msgid "content type" +msgstr "tipus de contingut" + +#: models.py:25 +msgid "object ID" +msgstr "ID de l'objecte" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuari" + +#: models.py:55 +msgid "user's name" +msgstr "nom de l'usuari" + +#: models.py:56 +msgid "user's email address" +msgstr "adreça de correu electrònic de l'usuari" + +#: models.py:57 +msgid "user's URL" +msgstr "URL de l'usuari" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentari" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hora d'enviament" + +#: models.py:63 +msgid "IP address" +msgstr "Adreça IP" + +#: models.py:64 +msgid "is public" +msgstr "és públic" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Desmarqueu aquesta casella per fer desaparèixer aquest comentari del lloc " +"web de forma efectiva." + +#: models.py:67 +msgid "is removed" +msgstr "està eliminat" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marqueu aquesta casella si el comentari no és apropiat. En lloc seu es " +"mostrarà \"Aquest comentari ha estat eliminat\" " + +#: models.py:80 +msgid "comments" +msgstr "comentaris" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Aquest comentari va ser publicat per un usuari autentificat, per això el seu " +"nom no es pot modificar." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Aquest comentari va ser publicat per un usuari autentificat, per això la " +"seva adreça de correu electrònic no es pot modificar." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Enviat per %(user)s el %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marcar" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "marca del comentari" + +#: models.py:191 +msgid "comment flags" +msgstr "marques del comentari" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprovar un comentari" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Voleu realment fer públic aquest comentari?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprovar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Gràcies per aprovar" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Gràcies per dedicar el temps a millorar la qualitat del debat al nostre lloc" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Eliminar un comentari" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Realment voleu eliminar aquest comentari?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Eliminar" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Gràcies per eliminar" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar aquest comentari" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Realment voleu marcar aquest comentari?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Gràcies per marcar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publicar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Vista prèvia" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Gràcies per comentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Gràcies pel vostre comentari" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Previsualitzar el vostre comentari" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Si us plau, corregiu els errors mostrats a sota." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..6908a82 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.po new file mode 100644 index 0000000..138d144 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/cs/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Vlada Macek <macek@sandbox.cz>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-09-13 11:43+0000\n" +"Last-Translator: Vlada Macek <macek@sandbox.cz>\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/django/language/" +"cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Obsah" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d komentář byl úspěšně označen" +msgstr[1] "%d komentáře byly úspěšně označeny" +msgstr[2] "%d komentářů bylo úspěšně označeno" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označit vybrané komentáře " + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d komentář byl schválen" +msgstr[1] "%d komentáře byly schváleny" +msgstr[2] "%d komentářů bylo schváleno" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Schválit vybrané komentáře" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d komentář byl úspěšně odstraněn" +msgstr[1] "%d komentáře byly úspěšně odstraněny" +msgstr[2] "%d komentářů bylo úspěšně odstraněno" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Odebrat vybrané komentáře" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Komentáře z webu %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Poslední komentáře na webu %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Jméno" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mailová adresa" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentář" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Mluvte slušně! Slovo %s je zde nepřípustné." +msgstr[1] "Mluvte slušně! Slova %s jsou zde nepřípustná." +msgstr[2] "Mluvte slušně! Slova %s jsou zde nepřípustná." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "a" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Jestliže do tohoto pole cokoli zadáte, bude komentář považován za spam" + +#: models.py:23 +msgid "content type" +msgstr "typ obsahu" + +#: models.py:25 +msgid "object ID" +msgstr "ID položky" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "uživatel" + +#: models.py:55 +msgid "user's name" +msgstr "jméno uživatele" + +#: models.py:56 +msgid "user's email address" +msgstr "e-mailová adresa uživatele" + +#: models.py:57 +msgid "user's URL" +msgstr "URL uživatele" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentář" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum a čas byly zaslané" + +#: models.py:63 +msgid "IP address" +msgstr "Adresa IP" + +#: models.py:64 +msgid "is public" +msgstr "je veřejný" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Pokud zrušíte zaškrtnutí tohoto políčka, komentář se na stránce nezobrazí." + +#: models.py:67 +msgid "is removed" +msgstr "je odebrán" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Zaškrtněte, pokud je komentář nevhodný. Místo něj bude zobrazena zpráva " +"\"Tento komentář byl odebrán\"." + +#: models.py:80 +msgid "comments" +msgstr "komentář" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Tento komentář zaslal přihlášený uživatel, jméno tedy není možné změnit." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Tento komentář zaslal přihlášený uživatel, e-mail tedy není možné změnit." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Zadal uživatel %(user)s dne %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "značka" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "značka komentáře" + +#: models.py:191 +msgid "comment flags" +msgstr "značky komentáře" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Schválit komentář" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Opravdu chcete zveřejnit tento komentář?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Schválit" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Děkujeme za schválení" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Děkujeme za váš čas věnovaný zlepšení kvality diskuze na našich stránkách" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Odebrat komentář" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Opravdu chcete odebrat tento komentář?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Odebrat" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Děkujeme za odebrání" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označit tento komentář" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Opravdu chcete označit tento komentář?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Označit" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Děkujeme za označení komentáře" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Odeslat" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Náhled" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Děkujeme za vložení komentáře" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Děkujeme za komentář" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Zobrazit náhled komentáře" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Opravte níže uvedené chyby." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..0b86250 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.po new file mode 100644 index 0000000..c6c98cd --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/cy/LC_MESSAGES/django.po @@ -0,0 +1,302 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Welsh (http://www.transifex.com/projects/p/django/language/" +"cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " +"11) ? 2 : 3;\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Sylw" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ac" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "math cynnwys" + +#: models.py:25 +msgid "object ID" +msgstr "ID gwrthrych" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "sylw" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dyddiad/amser wedi ymostwng" + +#: models.py:63 +msgid "IP address" +msgstr "cyfeiriad IP" + +#: models.py:64 +msgid "is public" +msgstr "yn gyhoeddus" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "wedi diddymu" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postiwyd gan %(user)s ar %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a26fb63 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000..5a2df1f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Erik Wognsen <r4mses@gmail.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-28 17:33+0000\n" +"Last-Translator: Erik Wognsen <r4mses@gmail.com>\n" +"Language-Team: Danish (http://www.transifex.com/projects/p/django/language/" +"da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Indhold" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d kommentar blev afmærket" +msgstr[1] "%d kommentarer blev afmærket" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marker valgte kommentarer" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d kommentar blev godkendt" +msgstr[1] "%d kommentarer blev godkendt" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Godkend valgte kommentarer" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d kommentar blev fjernet" +msgstr[1] "%d kommentarer blev fjernet" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Fjern valgte kommentarer" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "kommentarer på %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Seneste kommentarer på %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Navn" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mail-adresse" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Var din mund! Ordet %s er ikke tilladt her." +msgstr[1] "Var din mund! Ordene %s er ikke tilladt her." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "og" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Hvis du indtaster noget i dette felt, vil din kommentar blive betragtet som " +"spam." + +#: models.py:23 +msgid "content type" +msgstr "indholdstype" + +#: models.py:25 +msgid "object ID" +msgstr "objekt-ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "bruger" + +#: models.py:55 +msgid "user's name" +msgstr "brugerens navn" + +#: models.py:56 +msgid "user's email address" +msgstr "brugerens e-mail-adresse" + +#: models.py:57 +msgid "user's URL" +msgstr "brugerens URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dato/tidspunkt for oprettelse" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adresse" + +#: models.py:64 +msgid "is public" +msgstr "er offentlig" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Hvis du fjerner afkrydsningen her, bliver din kommentar slettet fra sitet." + +#: models.py:67 +msgid "is removed" +msgstr "er fjernet" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Afkryds denne boks, hvis kommentaren er upassende. Beskeden \"Denne " +"kommentar er blevet fjernet\" vil blive vist i stedet." + +#: models.py:80 +msgid "comments" +msgstr "kommentarer" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Denne kommentar blev indsendt af en autenticeret bruger; derfor er navnet " +"skrivebeskyttet." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Denne kommentar blev indsendt af en autenticeret bruger; derfor er e-mail-" +"adressen skrivebeskyttet." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Indsendt af %(user)s den %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "Flag" + +#: models.py:180 +msgid "date" +msgstr "dato" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentarflag" + +#: models.py:191 +msgid "comment flags" +msgstr "kommentarflag" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Godkend en kommentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Vil du godkende denne kommentar?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Godkend" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Tak for godkendelsen" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Tak fordi du tog dig tid til at højne kvaliteten af diskussionen på vores " +"website" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Fjern en kommentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Skal kommentaren fjernes?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Fjern" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Tak for fjernelsen" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flag denne kommentar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Skal kommentaren flages?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flag" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Tak for markeringen" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Indsend" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Forhåndsvis" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Tak for kommenteringen" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Tak for kommentaren" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Forhåndsvis kommentar" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Ret venligst fejlene herunder." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Ret venligst fejlene herunder" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Indsend din kommentar" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "eller gennemfør ændringer" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..f21491d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.po new file mode 100644 index 0000000..2a5c427 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/de/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011,2013 +# Markus Holtermann <inyoka@markusholtermann.eu>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-07 10:35+0000\n" +"Last-Translator: Jannis Leidel <jannis@leidel.info>\n" +"Language-Team: German (http://www.transifex.com/projects/p/django/language/" +"de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Inhalt" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadaten" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d Kommentar erfolgreich markiert" +msgstr[1] "%d Kommentare erfolgreich markiert" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Ausgewählte Kommentare markieren" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d Kommentar erfolgreich freigegeben" +msgstr[1] "%d Kommentare erfolgreich freigegeben" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Ausgewählte Kommentare freigeben" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d Kommentar erfolgreich entfernt" +msgstr[1] "%d Kommentare erfolgreich entfernt" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ausgewählte Kommentare entfernen" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s-Kommentare" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Die neuesten Kommentare auf %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Name" + +#: forms.py:97 +msgid "Email address" +msgstr "E-Mail-Adresse" + +#: forms.py:98 +msgid "URL" +msgstr "Adresse (URL)" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Keine Schimpfworte! Das Wort %s ist hier nicht erlaubt!" +msgstr[1] "Keine Schimpfworte! Die Wörter %s sind hier nicht erlaubt!" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "und" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Wenn Sie irgendetwas in dieses Feld eintragen, wird der Kommentar als Spam " +"betrachtet" + +#: models.py:23 +msgid "content type" +msgstr "Inhaltstyp" + +#: models.py:25 +msgid "object ID" +msgstr "Objekt-ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "Benutzer" + +#: models.py:55 +msgid "user's name" +msgstr "Name" + +#: 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 "Erstellungs-Datum/Zeit" + +#: 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 entfernt" + +#: 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. Der " +"Name ist daher schreibgeschützt." + +#: 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. Die " +"E-Mail-Adresse ist daher schreibgeschützt." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Geschrieben von %(user)s am %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "Markierung" + +#: models.py:180 +msgid "date" +msgstr "Datum" + +#: models.py:190 +msgid "comment flag" +msgstr "Kommentar-Markierung" + +#: models.py:191 +msgid "comment flags" +msgstr "Kommentar-Markierungen" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Kommentar freigeben" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Wollen Sie diesen Kommentar wirklich freigeben?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Freigeben" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Vielen Dank, dass Sie den Kommentar freigegeben haben" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Vielen Dank, dass Sie dabei mithelfen, die Qualität der Diskussion auf " +"unserer Website zu verbessern" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Kommentar entfernen" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Wollen Sie diesen Kommentar wirklich entfernen?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Entfernen" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Vielen Dank, dass Sie diesen Kommentar entfernt haben" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Diesen Kommentar markieren" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Wollen Sie diesen Kommentar wirklich markieren?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Markierung" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Vielen Dank, dass Sie diesen Kommentar markiert haben" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Abschicken" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Vorschau" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Vielen Dank, dass Sie einen Kommentar geschrieben haben" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Vielen Dank für Ihren Kommentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Kommentarvorschau" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Bitte die unten aufgeführten Fehler korrigieren." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Bitte die unten aufgeführten Fehler korrigieren" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Kommentar abschicken" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "oder Änderungen vornehmen" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..8bd387f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.po new file mode 100644 index 0000000..bd0ffce --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/el/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Dimitris Glezos <glezos@transifex.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Yorgos Pagles <y.pagles@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Greek (http://www.transifex.com/projects/p/django/language/" +"el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Περιεχόμενο" + +#: admin.py:28 +msgid "Metadata" +msgstr "Μεταδεδομένα" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Επισημανση των επιλεγμένων σχολίων" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Έγκριση των συγκεκριμένων σχολίων" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Αφαίρεση των επιλεγμένων σχολίων" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Σχόλια στο %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Τελευταία σχόλια στο %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Όνομα" + +#: forms.py:97 +msgid "Email address" +msgstr "Ηλεκτρονική διεύθυνση" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Σχόλιο" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Η λέξη %s δεν επιτρέπεται σε σχόλια." +msgstr[1] "Η λέξεις %s δεν επιτρέπονται σε σχόλια." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "και" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Αφήστε αυτό το πεδίο κενό. Αν εισάγετε κάτι τότε το σχόλιο θα θεωρηθεί spam " +"και δεν θα εμφανιστεί." + +#: models.py:23 +msgid "content type" +msgstr "τύπος περιεχομένου" + +#: models.py:25 +msgid "object ID" +msgstr "ID αντικειμένου" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "χρήστης" + +#: models.py:55 +msgid "user's name" +msgstr "όνομα χρήστη" + +#: models.py:56 +msgid "user's email address" +msgstr "ηλεκτρονική διεύθυνση χρήστη" + +#: models.py:57 +msgid "user's URL" +msgstr "διεύθυνση ιστοτόπου χρήστη" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "σχόλιο" + +#: models.py:62 +msgid "date/time submitted" +msgstr "ημερομηνία/ώρα υποβολής" + +#: models.py:63 +msgid "IP address" +msgstr "διεύθυνση IP" + +#: models.py:64 +msgid "is public" +msgstr "είναι δημόσιο" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Απεπιλέξτε αυτή την επιλογή για να κάνετε το σχόλιο να μην εμφανίζεται." + +#: models.py:67 +msgid "is removed" +msgstr "είναι διαγραμμένο" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Επιλέξτε αυτή την επιλογή εάν το σχόλιο είναι ανάρμοστο. Ένα μήνυμα \"Αυτό " +"το σχόλιο διαγράφηκε\" θα εμφανιστεί στη θέση του." + +#: models.py:80 +msgid "comments" +msgstr "σχόλια" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Αυτό το σχόλιο πραγματοποιήθκε από πιστοποιημένο χρήστη και για τον λόγο " +"αυτό δεν είναι είναι δυνατή η επεξεργασία του ονόματός του." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Αυτό το σχόλιο πραγματοποιήθκε από πιστοποιημένο χρήστη και για τον λόγο " +"αυτό δεν είναι είναι δυνατή η επεξεργασία της διεύθυνσης του ηλεκτρονικού " +"του ταχυδρομείου." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Σχόλιο από %(user)s στις %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "επισήμανση" + +#: models.py:180 +msgid "date" +msgstr "ημερομηνία" + +#: models.py:190 +msgid "comment flag" +msgstr "επισήμανση σχολίου" + +#: models.py:191 +msgid "comment flags" +msgstr "επισημάνσεις σχολίου" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Έγκριση σχολίου" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Επιβεβαιώστε ότι επιθυμείτε την δημόσια εμφάνιση του σχολίου." + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Έγκριση." + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Ευχαριστούμε για την έγκριση." + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Ευχαριστούμε για τον χρόνο που διαθέσατε για την βελτίωση της ποιότητας των " +"σχολίων στον ιστότοπό μας." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Αφαίρεση σχολίου" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Επιβεβαιώστε ότι επιθυμείτε την αφαίρεση του σχολίου." + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Αφαίρεση" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Ευχαριστούμε για την αφαίρεση" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Επισήμανση σχολίου" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Επιβεβαιώστε ότι επιθυμείτε την επισήμανσση του σχολίου." + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Επισήμανση" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Ευχαριστούμε για την επισήμανση" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Δημοσίευση" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Προβολή:" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Ευχαριστούμε για το σχόλιό σας" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Ευχαριστούμε για το σχόλιό σας" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Προβολή του σχολίου σας" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Παρακαλούμε διορθώστε τα παρακάτω σφάλματα:" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Δημοσιοποίηση του σχολίου σας" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ή πραγματοποιήστε αλλαγές" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a74825b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.po new file mode 100644 index 0000000..43ca058 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,284 @@ +# This file is distributed under the same license as the Django package. +# +msgid "" +msgstr "" +"Project-Id-Version: Django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2010-05-13 15:35+0200\n" +"Last-Translator: Django team\n" +"Language-Team: English <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" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e61ba2d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po new file mode 100644 index 0000000..528dd20 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/en_GB/LC_MESSAGES/django.po @@ -0,0 +1,302 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Ross Poulton <ross@rossp.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" +"django/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Content" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Flag selected comments" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Approve selected comments" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Remove selected comments" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s comments" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Latest comments on %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Name" + +#: forms.py:97 +msgid "Email address" +msgstr "Email address" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comment" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Watch your mouth! The word %s is not allowed here." +msgstr[1] "Watch your mouth! The words %s are not allowed here." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "and" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"If you enter anything in this field your comment will be treated as spam" + +#: models.py:23 +msgid "content type" +msgstr "content type" + +#: models.py:25 +msgid "object ID" +msgstr "object ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "user" + +#: models.py:55 +msgid "user's name" +msgstr "user's name" + +#: models.py:56 +msgid "user's email address" +msgstr "user's email address" + +#: models.py:57 +msgid "user's URL" +msgstr "user's URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comment" + +#: models.py:62 +msgid "date/time submitted" +msgstr "date/time submitted" + +#: models.py:63 +msgid "IP address" +msgstr "IP address" + +#: models.py:64 +msgid "is public" +msgstr "is public" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Uncheck this box to make the comment effectively disappear from the site." + +#: models.py:67 +msgid "is removed" +msgstr "is removed" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." + +#: models.py:80 +msgid "comments" +msgstr "comments" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flag" + +#: models.py:180 +msgid "date" +msgstr "date" + +#: models.py:190 +msgid "comment flag" +msgstr "comment flag" + +#: models.py:191 +msgid "comment flags" +msgstr "comment flags" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Approve a comment" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Really make this comment public?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Approve" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Thanks for approving" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Thanks for taking the time to improve the quality of discussion on our site" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Remove a comment" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Really remove this comment?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Remove" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Thanks for removing" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flag this comment" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Really flag this comment?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flag" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Thanks for flagging" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Post" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Preview" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Thanks for commenting" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Thank you for your comment" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Preview your comment" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Please correct the errors below" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..d82af65 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.po new file mode 100644 index 0000000..473a049 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/eo/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Baptiste <baptiste+transifex@darthenay.fr>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-06-05 07:08+0000\n" +"Last-Translator: Baptiste <baptiste+transifex@darthenay.fr>\n" +"Language-Team: Esperanto (http://www.transifex.com/projects/p/django/" +"language/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Enhavo" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatumo" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d komento sukcese flagitaj" +msgstr[1] "%d komentoj sukcese flagitaj" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marki elektitajn komentojn" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d komento sukcese aprovita" +msgstr[1] "%d komentoj sukcese aprovitaj" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprobi elektitajn komentojn" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d komento sukcese forigita" +msgstr[1] "%d komentoj sukcese forigitaj" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Forigi elektitajn komentojn" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s komentoj" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Lastaj komentoj ĉe %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nomo" + +#: forms.py:97 +msgid "Email address" +msgstr "Retpoŝtadreso" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komento" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Atentu via lingvaĵo! La vorto %s ne estas permisita ĉi-tie." +msgstr[1] "Atentu via lingvaĵo! La vortoj %s ne estas permisitaj ĉi-tie." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "kaj" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Se vi enigas ion-ajn en ĉi-tiu kampo, via komento estos traktita kiel spamo" + +#: models.py:23 +msgid "content type" +msgstr "enhava tipo" + +#: models.py:25 +msgid "object ID" +msgstr "objekta identigaĵo" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "uzanto" + +#: models.py:55 +msgid "user's name" +msgstr "uzanta nomo" + +#: models.py:56 +msgid "user's email address" +msgstr "uzanta retpoŝtadreso" + +#: models.py:57 +msgid "user's URL" +msgstr "uzanta URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komento" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dato kaj horo transsenditaj" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adreso" + +#: models.py:64 +msgid "is public" +msgstr "estas publika" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Malŝaltu ĉi-tiun markobutonon por definitive malaperigi la komenton el la " +"retejo." + +#: models.py:67 +msgid "is removed" +msgstr "estas forigita" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Ŝaltu ĉi-tiun markobutonon se la komento estas nekonvena. La mesaĝo \"Ĉi-tiu " +"komento estis forigita\" estos montrita anstataŭe." + +#: models.py:80 +msgid "comments" +msgstr "komentoj" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ĉi-tiu komento estis afiŝita de aŭtentigita uzanto, do tiel la nomo estas " +"nurlega." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ĉi-tiu komento estis afiŝita de aŭtentigita uzanto, do tiel la nomo kaj " +"retpoŝtadreo estas nurlegaj." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Afiŝita de %(user)s - %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marko" + +#: models.py:180 +msgid "date" +msgstr "dato" + +#: models.py:190 +msgid "comment flag" +msgstr "komenta marko" + +#: models.py:191 +msgid "comment flags" +msgstr "komentaj markoj" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobi komenton" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Ĉu certe publikigi ĉi-tiun komenton?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobi" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Dankon por la aprobo" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Dankon por trapasi tempon por plibonigi la diskutan kvaliton ĉe nia retejo" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Forigi komenton" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Ĉu certe forigi ĉi-tiun komenton?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Forigu" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Dankon por la forigo" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marki ĉi-tiun komenton" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Ĉu certe marki ĉi-tiun komenton?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marki" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Dankon por la marko" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Afiŝi" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Antaŭrigardo" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Dankon por al komentado" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Dankon por via komento" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Antaŭrigardi vian komenton" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Bonvolu ĝustigi la erarojn sube." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Bonvolu korekti la subajn erarojn" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..15edf6d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000..9b2bd49 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Antoni Aloy <aaloy@apsl.net>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Marc Garcia <garcia.marc@gmail.com>, 2011 +# Sebastián Ramírez Magrí <sebasmagri@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-06-07 01:28+0000\n" +"Last-Translator: Sebastián Ramírez Magrí <sebasmagri@gmail.com>\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/django/language/" +"es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contenido" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatos" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d comentario ha sido marcado" +msgstr[1] "%d comentarios han sido marcados" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marca los comentarios seleccionados" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d comentario ha sido aprobado" +msgstr[1] "%d comentarios han sido aprobados" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprueba los comentarios seleccionados" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d comentario fue eliminado con éxito" +msgstr[1] "%d comentarios fueron eliminados con éxito" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Elimina los comentarios seleccionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "comentarios de %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentarios en %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nombre" + +#: forms.py:97 +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentario" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "¡Cuide su vocabulario! Aquí no admitimos la palabra %s." +msgstr[1] "¡Cuide su vocabulario! Aquí no admitimos las palabras %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "y" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Si introduce algo en este campo su comentario será tratado como spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de contenido" + +#: models.py:25 +msgid "object ID" +msgstr "ID de objeto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuario" + +#: models.py:55 +msgid "user's name" +msgstr "nombre del usuario" + +#: models.py:56 +msgid "user's email address" +msgstr "dirección de correo electrónico del usuario" + +#: models.py:57 +msgid "user's URL" +msgstr "URL del usuario" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentario" + +#: models.py:62 +msgid "date/time submitted" +msgstr "fecha/hora de envío" + +#: models.py:63 +msgid "IP address" +msgstr "Dirección IP" + +#: models.py:64 +msgid "is public" +msgstr "es público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Desmarque esta casilla para hacer desaparecer el comentario del sitio web de " +"forma efectiva." + +#: models.py:67 +msgid "is removed" +msgstr "está eliminado" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marque esta opción si el comentario es inapropiado. En su lugar se mostrará " +"el mensaje \"Este comentario ha sido eliminado\"." + +#: models.py:80 +msgid "comments" +msgstr "comentarios" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentario ha sido enviado por un usuario autentificado: de modo que su " +"nombre no es modificable." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentario ha sido colocado por un usuario autentificado: de modo que " +"su dirección de correo electrónico no es modificable." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Enviado por %(user)s en %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marcar" + +#: models.py:180 +msgid "date" +msgstr "fecha" + +#: models.py:190 +msgid "comment flag" +msgstr "marca de comentario" + +#: models.py:191 +msgid "comment flags" +msgstr "marcas de comentario" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobar un comentario" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Realmente desea hacer este comentario público?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Gracias por aprobar" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Gracias por tomarse el tiempo para mejorar la calidad del debate en nuestro " +"sitio" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Eliminar un comentario" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "¿Realmente desea eliminar este comentario?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Eliminar" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Gracias por eliminar" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar este comentario" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "¿Realmente desea marcar este comentario?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Graciar por marcar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Enviar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Previsualizar" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Gracias por comentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Gracias por su comentario" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Previsualizar su comentario" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Por favor, corrija los siguientes errores." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c7e4caf --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po new file mode 100644 index 0000000..d3682f0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es_AR/LC_MESSAGES/django.po @@ -0,0 +1,302 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Ramiro Morales <cramm0@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-26 20:55+0000\n" +"Last-Translator: Ramiro Morales <cramm0@gmail.com>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/" +"django/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contenido" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatos" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "Se reportó exitosamente %d comentario" +msgstr[1] "Se reportaron exitosamente %d comentarios" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar comentarios seleccionados" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "Se aprobó exitosamente %d comentario" +msgstr[1] "Se aprobaron exitosamente %d comentarios" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprobar comentario seleccionado" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "Se eliminó exitosamente %d comentario" +msgstr[1] "Se eliminaron exitosamente %d comentarios" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Eliminar comentarios seleccionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "comentarios en %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentarios en %(site_name)s." + +#: forms.py:96 +msgid "Name" +msgstr "Nombre" + +#: forms.py:97 +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentario" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "¡Controla tu lenguaje! Aquí no admitimos la palabra %s." +msgstr[1] "¡Controla tu lenguaje! Aquí no admitimos las palabras %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "y" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Si introduce algo en este campo su comentario será tratado como spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de contenido" + +#: models.py:25 +msgid "object ID" +msgstr "ID de objeto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuario" + +#: models.py:55 +msgid "user's name" +msgstr "nombre de usuario" + +#: models.py:56 +msgid "user's email address" +msgstr "dirección de correo electrónico del usuario" + +#: models.py:57 +msgid "user's URL" +msgstr "URL del usuario" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentario" + +#: models.py:62 +msgid "date/time submitted" +msgstr "fecha/hora de envío" + +#: models.py:63 +msgid "IP address" +msgstr "Dirección IP" + +#: models.py:64 +msgid "is public" +msgstr "es público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "desmarque este ítem para que el comentario desaparezca del sitio." + +#: models.py:67 +msgid "is removed" +msgstr "se ha eliminado" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marque este ítem si el comentario es inapropiado. En su lugar se mostrará un " +"mensaje \"Este comentario ha sido eliminado\"." + +#: models.py:80 +msgid "comments" +msgstr "comentarios" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentario ha sido enviado por un usuario identificado, por lo tanto el " +"nombre no puede modificarse." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentario ha sido enviado por un usuario identificado, por lo tanto la " +"dirección de correo electrónico no puede modificarse." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Enviado por %(user)s el %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marca" + +#: models.py:180 +msgid "date" +msgstr "fecha" + +#: models.py:190 +msgid "comment flag" +msgstr "marca de comentario" + +#: models.py:191 +msgid "comment flags" +msgstr "marcas de comentario" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobar un comentario" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "¿Confirma que realmente desea hacer este comentario público?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "¡Gracias por aprobar!" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Gracias por tomarse el tiempo de mejorar la calidad de la discusión en " +"nuestro sitio" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Eliminar un comentario" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "¿Confirma que realmente desea eliminar este comentario?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Eliminar" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "¡Gracias por eliminar!" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar este comentario" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "¿Confirma que realmente desde marcar este comentario?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "¡Gracias por marcar!" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Remitir" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Previsualización" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Gracias por dejar su comentario" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Gracias por dejar su comentario" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Ver una copia previa de su comentario" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Por favor, corrija los siguientes errores." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ff72595 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po new file mode 100644 index 0000000..995a2cc --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/es_MX/LC_MESSAGES/django.po @@ -0,0 +1,301 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Abraham Estrada <abraham.estrada@gmail.com>, 2011,2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-06 21:09+0000\n" +"Last-Translator: Abraham Estrada <abraham.estrada@gmail.com>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/django/" +"language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contenido" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatos" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d comentario fue marcado exitosamente" +msgstr[1] "%d comentarios fueron marcados exitosamente" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar comentarios seleccionados" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d comentario se aprobó con éxito" +msgstr[1] "%d comentarios se aprobaron con éxito" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprobar comentario seleccionado" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d comentario ha sido eliminado correctamente" +msgstr[1] "%d comentarios han sido eliminados correctamente" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Eliminar comentarios seleccionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "comentarios en %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentarios en %(site_name)s " + +#: forms.py:96 +msgid "Name" +msgstr "Nombre" + +#: forms.py:97 +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentario" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "¡Controla tu lenguaje! Aquí no admitimos la palabra %s." +msgstr[1] "¡Controla tu lenguaje! Aquí no admitimos las palabras %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "y" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Si introduce algo en este campo su comentario será tratado como spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de contenido" + +#: models.py:25 +msgid "object ID" +msgstr "ID de objeto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuario" + +#: models.py:55 +msgid "user's name" +msgstr "nombre de usuario" + +#: models.py:56 +msgid "user's email address" +msgstr "dirección de correo electrónico del usuario" + +#: models.py:57 +msgid "user's URL" +msgstr "URL del usuario" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentario" + +#: models.py:62 +msgid "date/time submitted" +msgstr "fecha/hora de envío" + +#: models.py:63 +msgid "IP address" +msgstr "Dirección IP" + +#: models.py:64 +msgid "is public" +msgstr "es público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Desactive esta casilla para hacer el comentario desaparezca del sitio." + +#: models.py:67 +msgid "is removed" +msgstr "se ha eliminado" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marque esta casilla si el comentario es inapropiado. En su lugar se mostrará " +"un mensaje \"Este comentario ha sido eliminado\"." + +#: models.py:80 +msgid "comments" +msgstr "comentarios" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentario ha sido enviado por un usuario identificado, por lo tanto el " +"nombre no puede modificarse." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentario ha sido enviado por un usuario identificado, por lo tanto la " +"dirección de correo electrónico no puede modificarse." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Enviado por %(user)s el %(date)s \n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marca" + +#: models.py:180 +msgid "date" +msgstr "fecha" + +#: models.py:190 +msgid "comment flag" +msgstr "marca de comentario" + +#: models.py:191 +msgid "comment flags" +msgstr "marcas de comentario" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobar un comentario" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "¿Desea hacer público este comentario?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Gracias por aprovar" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Gracias por tomarse el tiempo para mejorar la calidad de la discución en " +"nuestro sitio" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Eliminar comentario" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "¿Desea eliminar este comentario?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Eliminar" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Gracias por eliminar" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar este comentario" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "¿Desea marcar este comentario?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Gracias por marcar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Enviar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Previsualizar" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Gracias por comentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Gracier por el comentario" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Previsualizar el comentario" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Por favor corrija los errores" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Por favor, corrija los siguientes errores" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Envia comentario" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "o hacer cambios" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..223a67e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.po new file mode 100644 index 0000000..e720f38 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/et/LC_MESSAGES/django.po @@ -0,0 +1,301 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# jannolii <jannolii@gmail.com>, 2013 +# madisvain <madisvain@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-06 12:57+0000\n" +"Last-Translator: jannolii <jannolii@gmail.com>\n" +"Language-Team: Estonian (http://www.transifex.com/projects/p/django/language/" +"et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Sisu" + +#: admin.py:28 +msgid "Metadata" +msgstr "Meta-andmed" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d kommentaar on edukalt märgistatud." +msgstr[1] "%d kommentaari on edukalt märgistatud." + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Märgista valitud kommentaarid" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d kommentaar on edukalt kinnitatud" +msgstr[1] "%d kommentaari on edukalt kinnitatud" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Kiida heaks valitud kommentaarid" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d kommentaar on edukalt eemaldatud" +msgstr[1] "%d kommentaari on edukalt eemaldatud" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Eemalda valitud kommentaarid" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Saidi %(site_name)s kommentaarid" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Viimased kommentaarid saidil %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nimi" + +#: forms.py:97 +msgid "Email address" +msgstr "E-posti aadress" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentaar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Jälgige oma keelekasutust. Sõna %s ei ole lubatud." +msgstr[1] "Jälgige oma keelekasutust. Sõnad %s ei ole lubatud." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ja" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Kui sisestate sellesse lahtrisse midagi, loetakse kommentaar rämpsuks" + +#: models.py:23 +msgid "content type" +msgstr "sisutüüp" + +#: models.py:25 +msgid "object ID" +msgstr "objekti ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "kasutaja" + +#: models.py:55 +msgid "user's name" +msgstr "kasutaja pärisnimi" + +#: models.py:56 +msgid "user's email address" +msgstr "kasutaja e-posti aadress" + +#: models.py:57 +msgid "user's URL" +msgstr "kasutaja URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentaar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "loomise kuupäev/kellaaeg" + +#: models.py:63 +msgid "IP address" +msgstr "IP aadress" + +#: models.py:64 +msgid "is public" +msgstr "on avalik" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Eemaldage siit linnuke, et varjata kommentaar saidilt." + +#: models.py:67 +msgid "is removed" +msgstr "on eemaldatud" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Märkige siia linnuke, kui see kommentaar on ebasobiv. Kommentaari asemel " +"kuvatakse kirja \"Kommentaar on kustutatud\"." + +#: models.py:80 +msgid "comments" +msgstr "kommentaarid" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Selle kommentaari postitas sisselogitud kasutaja, mistõttu ei ole nimetus " +"muudetav." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Selle kommentaari postitas sisselogitud kasutaja, mistõttu ei ole e-posti " +"aadress muudetav." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postitatud kasutaja %(user)s poolt %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "märge" + +#: models.py:180 +msgid "date" +msgstr "kuupäev" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentaari märge" + +#: models.py:191 +msgid "comment flags" +msgstr "kommentaari märked" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Märgi kommentaar sobivaks" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Oled kindel, et soovid teha selle kommentaari avalikuks?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Sobib" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Aitäh, et märkisid kommentaari sobivaks" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Aitäh, et leidsid aega parandamaks arutelude kvaliteeti meie lehel" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Eemalda kommentaar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Oled kindel, et soovid selle kommentaari eemaldada?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Eemalda" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Aitäh, et eemaldasid kommentaari" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Märgi see kommentaar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Oled kindel, et soovid selle kommentaari märkida?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Märge" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Aitäh, et märkisid kommentaari" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Postita" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Eelvaade" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Tänan kommenteerimast" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Aitäh kommentaari eest" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Kommentaari eelvaade" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Palun parandage allolevad vead" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1c96c43 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.po new file mode 100644 index 0000000..80aed5c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/eu/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Aitzol Naberan <anaberan@codesyntax.com>, 2011 +# Ander Martínez <ander.basaundi@gmail.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-06-10 21:56+0000\n" +"Last-Translator: Ander Martínez <ander.basaundi@gmail.com>\n" +"Language-Team: Basque (http://www.transifex.com/projects/p/django/language/" +"eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Edukia" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metada" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "iruzkin %d ondo markatu da" +msgstr[1] "%d iruzkin ondo markatu dira" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Markatu aukeratutako iruzkinak" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "iruzkin %d ondo onartu da" +msgstr[1] "%d iruzkin ondo onartu dira" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Onartu aukeratutako iruzkinak" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "iruzkin %d ondo ezabatu da" +msgstr[1] "%d iruzkin ondo ezabatu dira" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ezabatu aukeratutako iruzkinak" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s guneko iruzkinak" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s guneko azken iruzkinak" + +#: forms.py:96 +msgid "Name" +msgstr "Izena" + +#: forms.py:97 +msgid "Email address" +msgstr "Eposta helbidea" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Iruzkina" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Txiiist! %s hitza ez zaigu gustatzen" +msgstr[1] "Txiiist! %s hitzak ez zaizkigu gustatzen" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "eta" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Eremu honetan zerbait idazten baduzu zure iruzkina spam gisa tratatuko da." + +#: models.py:23 +msgid "content type" +msgstr "eduki mota" + +#: models.py:25 +msgid "object ID" +msgstr "objetuaren ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "Erabiltzailea" + +#: models.py:55 +msgid "user's name" +msgstr "erabiltzailearen izena" + +#: models.py:56 +msgid "user's email address" +msgstr "erabiltzailearen eposta helbidea" + +#: models.py:57 +msgid "user's URL" +msgstr "erabiltzailearen URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "iruzkina" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hordua bidalia" + +#: models.py:63 +msgid "IP address" +msgstr "IP helbidea" + +#: models.py:64 +msgid "is public" +msgstr "publikoa" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Markatu kutxa hau iruzkina webgunetik desagertarazteko." + +#: models.py:67 +msgid "is removed" +msgstr "ezabatua" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Markatu kutxa hau komentario ezegokia bada. \"Komentario hau ezabatua izan da" +"\" mezua erakutsiko da bere ordez." + +#: models.py:80 +msgid "comments" +msgstr "iruzkinak" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Iruzkin hau autentikatutako erabiltzaile batek egin du. Hori dela eta, izena " +"irakurtzeko moduan dago bakarrik. " + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Iruzkin hau autentikatutako erabiltzaile batek egin du. Hori dela eta, " +"eposta irakurtzeko moduan dago bakarrik. " + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s erabiltzileak bidalia %(date)s datan\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marka" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "iruzkin marka" + +#: models.py:191 +msgid "comment flags" +msgstr "iruzkin markak" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Onartu iruzkina" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Publikatu iruzkina?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Onartu" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Eskerrik asko onartzearren" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Eskerrik asko webguneko estabaidaren kalitatea hobetzeko hartutako " +"denboragatik" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Ezabatu iruzkina" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Ziur iruzkin hau ezabtu nahi duzula?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Ezabatu" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Eskerrik asko ezabatzearren" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Markatu iruzkina" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Ziur iruzkin hau markatu nahi duzula?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marka" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Eskerrik asko markatzearren" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Bidali" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Aurreikusi" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Eskerrik asko iruzkintzearren" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Eskerrik asko zure iruzkinagatik" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Aurreikusi zure iruzkina" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Mesedez zuzendu azpiko erroreak" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Mesedez zuzendu azpiko erroreak" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Bidali zure iruzkina" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "edo egin aldaketak" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..702bd86 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.po new file mode 100644 index 0000000..cf29549 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fa/LC_MESSAGES/django.po @@ -0,0 +1,296 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Ali Nikneshan <ali@nikneshan.com>, 2012 +# Arash Fazeli <a.fazeli@gmail.com>, 2012 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Reza Mohammadi <reza@teeleh.ir>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-05 08:56+0000\n" +"Last-Translator: Reza Mohammadi <reza@teeleh.ir>\n" +"Language-Team: Persian (http://www.transifex.com/projects/p/django/language/" +"fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "محتوا" + +#: admin.py:28 +msgid "Metadata" +msgstr "فوق داده" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d نظر علامت خوردند" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "نشانگذاری نظرات انتخاب شده" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d نظر تأیید شدند" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "تایید نظرات انتخاب شده" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d نظر حذف شدند" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "حذف نظر های انتخاب شده" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "نظرات %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "آخرین نظرات در %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "نام" + +#: forms.py:97 +msgid "Email address" +msgstr "نشانی پست الکترونیکی" + +#: forms.py:98 +msgid "URL" +msgstr "نشانی اینترنتی" + +#: forms.py:99 +msgid "Comment" +msgstr "نظر:" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "حرف دهنت رو بفهم! کلمهٔ %s اینجا قابل قبول نیست" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "و" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "اگر چیزی در این فیلد وارد کنید، نظر شما به عنوان اسپم شناخته خواهد شد" + +#: models.py:23 +msgid "content type" +msgstr "نوع محتوا" + +#: models.py:25 +msgid "object ID" +msgstr "مشخصهٔ شیء" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "کاربر" + +#: models.py:55 +msgid "user's name" +msgstr "نام کاربر" + +#: models.py:56 +msgid "user's email address" +msgstr "نشانی پست الکترونیکی کاربر" + +#: models.py:57 +msgid "user's URL" +msgstr "نشانی اینترنتی کاربر" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "نظر" + +#: models.py:62 +msgid "date/time submitted" +msgstr "تاریخ/زمان فرستاده شد" + +#: models.py:63 +msgid "IP address" +msgstr "نشانی IP" + +#: models.py:64 +msgid "is public" +msgstr "عمومی است" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "تیک این جعبه را بردارید تا نظر به طور کارا از وبگاه ناپدید شود." + +#: models.py:67 +msgid "is removed" +msgstr "حذف شده است" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"اگر نظر نامناسب است این جا علامت بزنید. پیغام \"این نظر حذف شد\" به جای آن " +"نمایش داده می شود." + +#: models.py:80 +msgid "comments" +msgstr "نظرات" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "این نظر توسط یک کاربر ثبتشده فرستاده شده و لذا نامش فقط-خواندنی است." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"این نظر توسط یک کاربر ثبتشده فرستاده شده و لذا پست الکترونیکیاش فقط-خواندنی " +"است." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"ارسالشده توسط %(user)s در تاریخ %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "علامت گذاری " + +#: models.py:180 +msgid "date" +msgstr "تاریخ" + +#: models.py:190 +msgid "comment flag" +msgstr "علامت گذاری نظر" + +#: models.py:191 +msgid "comment flags" +msgstr "علامت گذاری های نظر" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "تایید یک نظر" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "واقعا این نظر به صورت عمومی نمایش داده شود؟" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "تایید" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "ممنون از تایید." + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "ممنون از وقتی که برای افزایش کیفیت بحث در سایت ما گذاشتید." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "حذف یک نظر" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "واقعا این نظر حذف شود؟" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "حذف" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "ممنون از حذف" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "علامت گذاری این نظر" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "واقعا این نظر علامت گذاری شود؟" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "علامت گذاری " + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "ممنون از علامت گذاری " + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "پست" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "پیش نمایش" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "برای اظهار نظر" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "با تشکر از نظر شما" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "پیش نمایش نظر شما" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "لطفا خطاهای زیر را تصحیح" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "لطفاً خطاهای زیر را تصحیح کنید" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "نظر خود را ارسال کنید" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "و یا تغییر ایجاد کنید." diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..91d122d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.po new file mode 100644 index 0000000..6831a36 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fi/LC_MESSAGES/django.po @@ -0,0 +1,300 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Finnish (http://www.transifex.com/projects/p/django/language/" +"fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Sisältö" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metatieto" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Merkitse valitut kommentit" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Hyväksy valitut kommentit" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Poista valitut kommentit" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Kommentit sivustolle %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Sivuston %(site_name)s viimeisimmät kommentit" + +#: forms.py:96 +msgid "Name" +msgstr "Nimi" + +#: forms.py:97 +msgid "Email address" +msgstr "Sähköpostiosoite" + +#: forms.py:98 +msgid "URL" +msgstr "URL-osoite" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentti" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Siivoa suusi! Sanaa \"%s\" ei saa käyttää tässä." +msgstr[1] "Siivoa suusi! Sanoja \"%s\" ei saa käyttää tässä." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ja" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Jos syötät tähän kenttään jotain, kommenttisi luokitellaan roskapostiksi" + +#: models.py:23 +msgid "content type" +msgstr "sisältötyyppi" + +#: models.py:25 +msgid "object ID" +msgstr "kohteen tunniste" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "käyttäjä" + +#: models.py:55 +msgid "user's name" +msgstr "käyttäjän nimi" + +#: models.py:56 +msgid "user's email address" +msgstr "käyttäjän sähköpostiosoite" + +#: models.py:57 +msgid "user's URL" +msgstr "käyttäjän URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentti" + +#: models.py:62 +msgid "date/time submitted" +msgstr "lähettämishetki" + +#: models.py:63 +msgid "IP address" +msgstr "IP-osoite" + +#: models.py:64 +msgid "is public" +msgstr "on julkinen" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Piilottaaksesi kommentin näkymästä sivustolta, poista tämä ruksi." + +#: models.py:67 +msgid "is removed" +msgstr "on poistettu" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Rastita jos kommentti on asiaankuulumaton. Kommentin tilalla näytetään\n" +"viesti \"Tämä kommentti on poistettu\"." + +#: models.py:80 +msgid "comments" +msgstr "kommentit" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Kommentin lähettäjän nimeä ei voi muuttaa, koska lähettäjä on kirjautunut " +"käyttäjä." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Kommentin lähettäjän sähköpostiosoitetta ei voi muuttaa, koska lähettäjä on " +"kirjautunut käyttäjä." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +" Kirjoittanut %(user)s, pvm %(date)s\\n\n" +" \\n\n" +" %(comment)s\\n\n" +" \\n\n" +" http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "merkintä" + +#: models.py:180 +msgid "date" +msgstr "päivä" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentin merkintä" + +#: models.py:191 +msgid "comment flags" +msgstr "kommenttien merkinnät" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Hyväksy kommentti" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Haluatko varmasti tehdä kommentista julkisen?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Hyväksy" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Kiitos hyväksynnästäsi" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Kiitos sivustomme keskusteluihin panostamastasi ajasta" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Poista kommentti" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Haluatko varmasti poistaa tämän kommentin?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Poista" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Kiitos poistamisesta" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Merkitse tämä kommentti" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Haluatko varmasti merkitä tämän kommentin?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Merkitse" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Kiitos merkitsemisestä" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Lähetä" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Esikatsele" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Kiitos kommentista" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Kiitos kommentistasi" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Esikatsele kommenttia" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Korjaa allaolevat virheet" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..504b7eb --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..afd4795 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# claudep <claude@2xlibre.net>, 2013 +# claudep <claude@2xlibre.net>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-06-01 11:13+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: French (http://www.transifex.com/projects/p/django/language/" +"fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contenu" + +#: admin.py:28 +msgid "Metadata" +msgstr "Métadonnées" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d commentaire a été marqué avec succès" +msgstr[1] "%d commentaires ont été marqués avec succès" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marquer les commentaires sélectionnés" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d commentaire a été approuvé avec succès" +msgstr[1] "%d commentaires ont été approuvés avec succès" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Approuver les commentaires sélectionnés" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d commentaire a été supprimé avec succès" +msgstr[1] "%d commentaires ont été supprimés avec succès" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Masquer les commentaires sélectionnés" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Commentaires sur %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Derniers commentaires sur %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nom" + +#: forms.py:97 +msgid "Email address" +msgstr "Adresse électronique" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Commentaire" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Attention à votre langage ! Le terme %s n'est pas autorisé ici." +msgstr[1] "" +"Attention à votre langage ! Les termes %s ne sont pas autorisés ici." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "et" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Si vous saisissez quelque chose dans ce champ, votre commentaire sera " +"considéré comme étant indésirable" + +#: models.py:23 +msgid "content type" +msgstr "type de contenu" + +#: models.py:25 +msgid "object ID" +msgstr "ID de l'objet" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "utilisateur" + +#: models.py:55 +msgid "user's name" +msgstr "nom de l'utilisateur" + +#: models.py:56 +msgid "user's email address" +msgstr "adresse électronique de l'utilisateur" + +#: models.py:57 +msgid "user's URL" +msgstr "URL de l'utilisateur" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "commentaire" + +#: models.py:62 +msgid "date/time submitted" +msgstr "date et heure soumises" + +#: models.py:63 +msgid "IP address" +msgstr "adresse IP" + +#: models.py:64 +msgid "is public" +msgstr "est public" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Décochez cette case pour faire vraiment disparaître ce commentaire du site." + +#: models.py:67 +msgid "is removed" +msgstr "est masqué" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Cochez cette case si le commentaire est inadéquat. Un message type « Ce " +"commentaire a été supprimé » sera affiché en lieu et place de celui-ci." + +#: models.py:80 +msgid "comments" +msgstr "commentaires" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ce commentaire a été posté par un utilisateur authentifié, le nom est donc " +"en lecture seule." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ce commentaire a été posté par un utilisateur authentifié et le courriel est " +"donc en lecture seule" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Posté par %(user)s le %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "indicateur" + +#: models.py:180 +msgid "date" +msgstr "date" + +#: models.py:190 +msgid "comment flag" +msgstr "indicateur de commentaire" + +#: models.py:191 +msgid "comment flags" +msgstr "indicateurs de commentaire" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Valider un commentaire" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Voulez-vous rendre ce commentaire public ?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Valider" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Merci pour cette validation" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Merci d'avoir pris le temps d'améliorer la qualité de la discussion sur " +"notre site" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Supprimer un commentaire" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Voulez-vous supprimer définitivement ce commentaire ?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Supprimer" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Merci pour cette suppression" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Signaler ce commentaire" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Voulez-vous vraiment signaler ce commentaire ?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Signaler" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Merci d'avoir signalé ce commentaire" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Envoyer" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Prévisualiser" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Merci pour votre commentaire" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Merci pour votre commentaire" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Prévisualiser votre commentaire" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Veuillez corriger les erreurs suivantes." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Veuillez corriger les erreurs ci-dessous" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..34e3ca0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.po new file mode 100644 index 0000000..a15498b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/fy_NL/LC_MESSAGES/django.po @@ -0,0 +1,287 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-04-24 19:38+0000\n" +"Last-Translator: Django team\n" +"Language-Team: Western Frisian (Netherlands) (http://www.transifex.com/" +"projects/p/django/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 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..224a93d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.po new file mode 100644 index 0000000..488a923 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ga/LC_MESSAGES/django.po @@ -0,0 +1,316 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Michael Thornhill <michael@maithu.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Irish (http://www.transifex.com/projects/p/django/language/" +"ga/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " +"4);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Inneachar" + +#: admin.py:28 +msgid "Metadata" +msgstr "Meiteashonraí" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Bratach nótaí tráchta roghnaithe" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Cheadú nótaí tráchta roghnaithe" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Bain nótaí tráchta roghnaithe" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s nótaí" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Nótaí tráchtaí is déanaí ar %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ainm" + +#: forms.py:97 +msgid "Email address" +msgstr "R-phost" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Nóta tráchta" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Féach ar do bhéal! Níl an focal %s cheadaítear anseo." +msgstr[1] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." +msgstr[2] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." +msgstr[3] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." +msgstr[4] "Féach ar do bhéal! Níl na focail %s cheadaítear anseo." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "agus" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Má cuireann tú aon rud sa réimse seo, beidh do nóta déileálfar mar spam" + +#: models.py:23 +msgid "content type" +msgstr "tíopa inneachar " + +#: models.py:25 +msgid "object ID" +msgstr "oibiacht ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "úsáideoir" + +#: models.py:55 +msgid "user's name" +msgstr "Ainm úsáideoir" + +#: models.py:56 +msgid "user's email address" +msgstr "seoladh r-phost an t-úsáideoir" + +#: models.py:57 +msgid "user's URL" +msgstr "URL an t-úsáideora" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "trácht" + +#: models.py:62 +msgid "date/time submitted" +msgstr "Dáta/am curtha isteach" + +#: models.py:63 +msgid "IP address" +msgstr "Seol IP" + +#: models.py:64 +msgid "is public" +msgstr "poiblí" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Díthiceáil an bosca seo chun an nóta a thógáil as an suíomh." + +#: models.py:67 +msgid "is removed" +msgstr "Scrioste" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Seic an bosca seo dá bbéadh an nóta tráchta seo míchuí. Taispeantar \"Bhí an " +"nóta tráchta scrioste\" in áit an nóta tráchta seo." + +#: models.py:80 +msgid "comments" +msgstr "nótaí tráchta" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Bhí an nóta tráchta póstailte trí uaire trí úsáideoir fíordheimhnithe mar " +"sin tá an ainm léamh-amhain." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Bhí an nóta tráchta póstailte trí úsáideoir fíordeimhnite mar sin tá an r-" +"phost léamh amháin." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postáilte trí %(user)s ar %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "brat" + +#: models.py:180 +msgid "date" +msgstr "dáta" + +#: models.py:190 +msgid "comment flag" +msgstr "brat nóta tráchta" + +#: models.py:191 +msgid "comment flags" +msgstr "bratacha nótaí tráchta" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Ceadaigh nóta tráchta" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Cuir an nóta seo poiblí?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Fhormheas" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Go raibh maith agait le hadhaigh to formheas" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Go raibh maith agat as an am chun feabhas a chur ar chaighdeán na " +"díospóireachta ar ár suíomh" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Tóg amach nóta tráchta" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Dáiríre, cuir amach an nóta seo?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Tóg amach" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Go raibh maith agat le hadhaigh do thógail amach" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Cuir brat ar an nóta tráchta seo" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Go deimhin cuir brat ar an nóta tráchta seo?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Brat" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Go raibh maith agat le hadhaigh do brat" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Post" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Réamhamharc" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Go raibh maith agat le hadhaign do nóta tráchta" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Go raibh maith agat le hadhaigh do nóta tráchta" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Nóta tráchta réamhamharc" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Le do thoil, ceartaigh na botúin thíos." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..95fa81b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.po new file mode 100644 index 0000000..439d005 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/gl/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# fasouto <fsoutomoure@gmail.com>, 2011 +# fonso <fonzzo@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Leandro Regueiro <leandro.regueiro@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-09-07 11:46+0000\n" +"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n" +"Language-Team: Galician (http://www.transifex.com/projects/p/django/language/" +"gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contido" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatos" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Poñer un indicador" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "Aprobouse con éxito %d comentario" +msgstr[1] "Aprobáronse con éxito %d comentarios" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprobar os comentarios seleccionados" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Eliminar os comentarios seleccionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Comentarios en %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentarios en %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nome" + +#: forms.py:97 +msgid "Email address" +msgstr "Enderezo electrónico" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentario" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Sen palabrotas, por favor! Aquí non se pode usar a palabra %s." +msgstr[1] "Sen palabrotas, por favor! Aquí non se poden usar as palabras %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "e" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Se insire calquera cousa neste campo o seu comentario será tratado coma spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de contido" + +#: models.py:25 +msgid "object ID" +msgstr "ID do obxecto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuario" + +#: models.py:55 +msgid "user's name" +msgstr "nome de usuario" + +#: models.py:56 +msgid "user's email address" +msgstr "enderezo electrónico do usuario" + +#: models.py:57 +msgid "user's URL" +msgstr "URL do usuario" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentario" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hora do envío" + +#: models.py:63 +msgid "IP address" +msgstr "Enderezo IP" + +#: models.py:64 +msgid "is public" +msgstr "é público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Desmarque esta casilla para eliminar o comentario definitivamente deste " +"sitio." + +#: models.py:67 +msgid "is removed" +msgstr "está borrado" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marque esta caixa se o comentario non é apropiado. Verase a mensaxe \"Este " +"comentario foi borrado\" no canto do seu contido." + +#: models.py:80 +msgid "comments" +msgstr "comentarios" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentario foi publicado por un usuario identificado e polo tanto o " +"nome é de só lectura." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentario foi publicado por un usuario identificado e polo tanto o " +"enderezo de correo electrónico é de só lectura." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Publicado por %(user)s o %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "indicador" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "indicador de comentarios" + +#: models.py:191 +msgid "comment flags" +msgstr "indicadores de comentarios" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobar un comentario" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Realmente desexa facer público este comentario?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Grazas pola aprobación" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Grazas por tomar o tempo de mellorar a calidade da discusión no noso sitio" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Retirar un comentario" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Realmente desexa retirar este comentario?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Retirar" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Grazas pola retirada" + +#: 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 por comentar" + +#: 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" +msgstr "Corrixa os erros de embaixo" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Corrixa os erros de embaixo" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Publicar o seu comentario" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ou facer cambios" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4760830 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.po new file mode 100644 index 0000000..f989462 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/he/LC_MESSAGES/django.po @@ -0,0 +1,296 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Meir Kriheli <mkriheli@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-02 11:23+0000\n" +"Last-Translator: Meir Kriheli <mkriheli@gmail.com>\n" +"Language-Team: Hebrew (http://www.transifex.com/projects/p/django/language/" +"he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "תוכן" + +#: admin.py:28 +msgid "Metadata" +msgstr "מטא־נתונים" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "תגובה %d סומנה בהצלחה" +msgstr[1] "%d תגובות סומנו בהצלחה" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "סמן תגובות שנבחרו" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "תגובה %d אושרה בהצלחה" +msgstr[1] "%d תגובות אושרו בהצלחה" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "אשר תגובות שנבחרו" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "תגובה %d הוסרה בהצלחה" +msgstr[1] "%d תגובות הוסרו בהצלחה" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "הסר תגובות שנבחרו" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "תגובות עבור %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "התגובות האחרונות על %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "שם" + +#: forms.py:97 +msgid "Email address" +msgstr "כתובת דוא\"ל" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "תגובה" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "שמור על לשונך! המילה %s אסורה לשימוש כאן." +msgstr[1] "שמור על לשונך! המילים %s אסורות לשימוש כאן." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ו" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "אם יוזן משהו בשדה זה תגובתך תטופל כספאם" + +#: models.py:23 +msgid "content type" +msgstr "סוג תוכן" + +#: models.py:25 +msgid "object ID" +msgstr "מזהה אובייקט" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "משתמש" + +#: models.py:55 +msgid "user's name" +msgstr "שם משתמש" + +#: models.py:56 +msgid "user's email address" +msgstr "כתובת דוא\"ל משתמש" + +#: models.py:57 +msgid "user's URL" +msgstr "אתר המשתמש" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "תגובה" + +#: models.py:62 +msgid "date/time submitted" +msgstr "תאריך/שעת הגשה" + +#: models.py:63 +msgid "IP address" +msgstr "כתובת IP" + +#: models.py:64 +msgid "is public" +msgstr "פומבי " + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "ביטול סימון התיבה יעלים בפועל את התגובה מהאתר" + +#: models.py:67 +msgid "is removed" +msgstr "האם הוסר" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"יש לסמן תיבה זו עבור תגובה לא נאותה. הודעת \"תגובה זו נמחקה\" תוצג במקום " +"התגובה." + +#: models.py:80 +msgid "comments" +msgstr "תגובות" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "הודעה זו נשלחה ע\"י משתמש מחובר לכן השם אינו ניתן לשינוי." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "הודעה זו נשלחה ע\"י משתמש מחובר לכן כתובת הדוא\"ל אינה ניתנת לשינוי." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"הוגש ע\"י %(user)s ב %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "סימן" + +#: models.py:180 +msgid "date" +msgstr "תאריך" + +#: models.py:190 +msgid "comment flag" +msgstr "סמן הערה" + +#: models.py:191 +msgid "comment flags" +msgstr "סמני הערה" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "אשר הערה" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "באמת להפוך את התגובה לפומבית?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "אשר" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "תודה על אישור התגובה" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "תודה על שהקדשת מזמנך כדי לשפר את איכות הדיון באתר שלנו" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "הסר תגובה" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "באמת להסיר תגובה זו?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "להסיר" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "תודה על ההסרה" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "סמן תגובה זו" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "באמת לסמן תגובה זו?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "סימן" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "תודה על הסימון" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "פוסט" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "תודה על התגובה" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "תודה על התגובה" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "תצוגה מקדימה של התגובה" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "אנא תקן את שגיאות למטה" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "נא לתקן את השגיאות מתחת" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "פרסם את התגובה" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "או לבצע שינויים" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..181b80c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.po new file mode 100644 index 0000000..12af4d1 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hi/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# pratik kumar <kpratik217@gmail.com>, 2013 +# Sandeep Satavlekar <sandysat@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-06 06:27+0000\n" +"Last-Translator: pratik kumar <kpratik217@gmail.com>\n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/django/language/" +"hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "विषय" + +#: admin.py:28 +msgid "Metadata" +msgstr "मेटाडाटा" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "टिप्पनी को फ्लैग करो" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "चयनित टिप्पणियों को स्वीकार करो" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "चयनित टिप्पणियाँ हटाएँ" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s टिप्पणियाँ " + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s पर नवीनतम टिप्पणियाँ" + +#: forms.py:96 +msgid "Name" +msgstr "नाम" + +#: forms.py:97 +msgid "Email address" +msgstr "ईमेल पता" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "टिप्पणी" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "अपनी ज़बान संभालो %s यह शब्द इस्तेमाल करने की यहाँ अनुमति नहीं हैं " +msgstr[1] "अपनी ज़बान संभालो %s यह शब्द इस्तेमाल करने की यहाँ अनुमति नहीं हैं " + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "और" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"अगर आप इस क्षेत्र में कुछ भी दर्ज करते हो तो आप की टिप्पणी के साथ spam के जैसा सुलुख किया " +"जायेगा" + +#: models.py:23 +msgid "content type" +msgstr "विषय-सूची प्रकार" + +#: models.py:25 +msgid "object ID" +msgstr "वस्तु आइ डी" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "उपभोक्ता" + +#: models.py:55 +msgid "user's name" +msgstr "प्रयोक्ता नाम" + +#: models.py:56 +msgid "user's email address" +msgstr "प्रयोक्ता ईमेल पता" + +#: models.py:57 +msgid "user's URL" +msgstr "प्रयोक्ता यू.आर.एल" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "टिप्पणी" + +#: models.py:62 +msgid "date/time submitted" +msgstr "तिथि/समय निवेदित" + +#: models.py:63 +msgid "IP address" +msgstr "आइ.पि पता" + +#: models.py:64 +msgid "is public" +msgstr "सार्वजनिक है" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "इस टिप्पणी को प्रभावी रूप से साइट से गायब करने के लिए यह बॉक्स को अनचेक करें." + +#: models.py:67 +msgid "is removed" +msgstr "हटाया गया" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"अगर टिप्पणी अनुचित है तो इस बॉक्स को चेक करें. एक \"यह टिप्पणी हटा दी गयी हैं\" संदेश " +"प्रदर्शित किया जाएगा." + +#: models.py:80 +msgid "comments" +msgstr "टिप्पणियाँ" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"इस टिप्पणी को किसी प्राधिकृत उपयोगकर्ता द्वारा पोस्ट किया गया था और इसीलिए इस नाम " +"को केवल पढ़ने के लिए है." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"इस टिप्पणी को किसी प्राधिकृत उपयोगकर्ता द्वारा पोस्ट किया गया था और इसीलिए यह ईमेल " +"केवल पढ़ने के लिए है." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s द्वारा %(date)s पर पोस्ट की गयी हैं\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "झंडा" + +#: models.py:180 +msgid "date" +msgstr "तिथि" + +#: models.py:190 +msgid "comment flag" +msgstr "टिप्पणी झंडा" + +#: models.py:191 +msgid "comment flags" +msgstr "टिप्पणी झंडे" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "टिप्पणी पसंद करें" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "क्या इस टिप्पणी को सार्वजनिक बनाएँ ?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "पसंद करें" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "पसंद करने के लिए धन्यवाद" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "हमारी साइट पर चर्चा की गुणवत्ता में सुधार के लिए समय देने के लिए धन्यवाद" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "टिप्पणी निकालें" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "क्या आप इस टिप्पणी को हटाना चाहते हैं ?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "निकालें" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "निकालने के लिये धन्यवाद" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "टिप्पनी को फ्लैग करो" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "क्या आप इस टिप्पणी को फ्लैग करना चाहते हैं ?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "फ्लैग" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "फ्लैग करने के लिए धन्यवाद" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "प्रस्तुत" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "पूर्व दर्शन" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "टिप्पणी के लिये धन्यवाद" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "टिप्पणी के लिये धन्यवाद" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "आपके टिप्पणी का पूर्व दर्शन देखे`" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "कृपया नीचे पाये गये गलतियाँ को ठीक करें" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "नीचे त्रुटियों को ठीक करें" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "टिप्पणी प्रस्तुत करें" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "अथवा बदलें" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..f6f14b3 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.po new file mode 100644 index 0000000..631839f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hr/LC_MESSAGES/django.po @@ -0,0 +1,310 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Ninopoopmap <ninonandroid@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-15 16:40+0000\n" +"Last-Translator: Ninopoopmap <ninonandroid@gmail.com>\n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/django/language/" +"hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Sadržaj" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označi ovaj komentar" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Odobri odabrane komentare" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ukloni odabrane komentare" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "komentari za %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Najnoviji komentari na %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ime" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mail adresa" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pazite na izražavanje! Riječ %s nije dopuštena." +msgstr[1] "Pazite na izražavanje! Riječi %s nisu dopuštene." +msgstr[2] "Pazite na izražavanje! Riječi %s nisu dopuštene." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "i" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ako unesete nešto u ovo polje vaš komentar biti će tretiran kao spam" + +#: models.py:23 +msgid "content type" +msgstr "tip sadržaja" + +#: models.py:25 +msgid "object ID" +msgstr "ID objekta" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "korisnik" + +#: models.py:55 +msgid "user's name" +msgstr "korisničko ime" + +#: models.py:56 +msgid "user's email address" +msgstr "e-mail adresa korisnika" + +#: models.py:57 +msgid "user's URL" +msgstr "korisnikov URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum/vrijeme unosa" + +#: models.py:63 +msgid "IP address" +msgstr "IP adresa" + +#: models.py:64 +msgid "is public" +msgstr "javno dostupno" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Uklonite oznaku da bi komentar nestao sa stranica." + +#: models.py:67 +msgid "is removed" +msgstr "uklonjeno" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Uključite ako je komentar neprikladan. Umjesto komentara biti će prikazana " +"poruka \"Komentar je uklonjen.\"." + +#: models.py:80 +msgid "comments" +msgstr "komentari" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ovaj komentar je napisao prijavljeni korisnik te se ime ne može mijenjati.\n" +"\n" +"%(text)s" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ovaj komentar je napisao prijavljeni korisnik te se email ne može " +"mijenjati.\n" +"\n" +"%(text)s" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Napisao %(user)s dana %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "oznaka" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "oznaka za komentar" + +#: models.py:191 +msgid "comment flags" +msgstr "oznake komentara" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Odobri komentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Učini komentar javno dostupnim?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Odobri" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Hvala na odobrenju" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Hvala što ste izdvojili vrijeme da poboljšate kvalitetu rasprava na " +"stranicama" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Ukloni komentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Stvarno ukloni ovaj komentar?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Ukloni" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Hvala na brisanju" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označi ovaj komentar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Stvarno označi ovaj komentar?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Oznaka" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Hvala na označavanju" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Unos" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Prikaz" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Hvala što ste komentirali" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Hvala na komentaru" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Prikaz komentara" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Molimo ispravite navedene greške." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Molimo ispravite navedene greške." + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Objava komentara" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ili unesite promjene" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1df3df7 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.po new file mode 100644 index 0000000..791e999 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/hu/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Máté Őry <orymate@iit.bme.hu>, 2013 +# Szilveszter Farkas <szilveszter.farkas@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/django/" +"language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Tartalom" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metaadat" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Kiválasztott hozzászólások megjelölése" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Kiválasztott hozzászólások jóváhagyása" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Kiválasztott hozzászólások törlése" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s hozzászólások" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s legfrissebb hozzászólásai" + +#: forms.py:96 +msgid "Name" +msgstr "Név" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mail cím" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Hozzászólás" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Vigyázzon a szájára! Az ilyen szó (%s) itt nem megengedett." +msgstr[1] "Vigyázzon a szájára! Az ilyen szavak (%s) itt nem megengedettek." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "és" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Ha bármit begépel ebbe a mezőbe, akkor azt szemétként fogja kezelni a " +"rendszer" + +#: models.py:23 +msgid "content type" +msgstr "tartalom típusa" + +#: models.py:25 +msgid "object ID" +msgstr "objektum ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "felhasználó" + +#: models.py:55 +msgid "user's name" +msgstr "felhasználó neve" + +#: models.py:56 +msgid "user's email address" +msgstr "felhasználó e-mail címe" + +#: models.py:57 +msgid "user's URL" +msgstr "felhasználó URL-je" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "megjegyzés" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dátum/idő beállítva" + +#: models.py:63 +msgid "IP address" +msgstr "IP cím" + +#: models.py:64 +msgid "is public" +msgstr "publikus" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Vegye ki a pipát a jelölőnégyzetből, hogy eltűntesse a hozzászólást az " +"oldalról." + +#: models.py:67 +msgid "is removed" +msgstr "eltávolítva" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Jelöld be a négyzetet, ha a megjegyzés nem megfelelő. Az \"Ezt a megjegyzést " +"törölték\" üzenet fog megjelenni helyette." + +#: models.py:80 +msgid "comments" +msgstr "hozzászólások" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ezt a hozzászólást egy hitelesített felhasználó küldte be, ezért a név csak " +"olvasható." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ezt a hozzászólást egy hitelesített felhasználó küldte be, ezért az e-mail " +"csak olvasható." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Beküldte %(user)s ekkor: %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "megjelölés" + +#: models.py:180 +msgid "date" +msgstr "dátum" + +#: models.py:190 +msgid "comment flag" +msgstr "hozzászólás megjelölés" + +#: models.py:191 +msgid "comment flags" +msgstr "hozzászólás megjelölés" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Hozzászólás jóváhagyása" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Biztosan publikálni szeretné ezt a hozzászólást?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Jóváhagyás" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Köszönjük a jóváhagyást" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Köszönjük, hogy időt szánt az oldalunkon zajló beszélgetések minőségének " +"javítására" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Hozzászólás törlése" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Biztosan törli ezt a hozzászólást?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Törlés" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Köszönjük a törlést" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Hozzászólás megjelölése" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Biztosan megjelöli ezt a hozzászólást?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Megjelölés" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Köszönjük a megjelölést" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Elküldés" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Előnézet" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Köszönjük a hozzászólást" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Köszönjük, hogy hozzászólt" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Hozzászólás előnézetének megtekintése" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Javítsa ki az alábbi hibákat" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..45c00f3 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.po new file mode 100644 index 0000000..e028e56 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ia/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Martijn Dekker <mcdutchie@hotmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/django/" +"language/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contento" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadatos" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar le commentos seligite" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Approbar le commentos seligite" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Remover le commentos seligite" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Commentos de %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Ultime commentos in %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nomine" + +#: forms.py:97 +msgid "Email address" +msgstr "Adresse de e-mail" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Commento" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Le parola %s non es permittite hic." +msgstr[1] "Le parolas %s non es permittite hic." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "e" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Si tu insere qualcosa in iste campo, tu commento essera tractate como spam." + +#: models.py:23 +msgid "content type" +msgstr "typo de contento" + +#: models.py:25 +msgid "object ID" +msgstr "ID del objecto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usator" + +#: models.py:55 +msgid "user's name" +msgstr "nomine del usator" + +#: models.py:56 +msgid "user's email address" +msgstr "adresse de e-mail del usator" + +#: models.py:57 +msgid "user's URL" +msgstr "URL del usator" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "commento" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hora de submission" + +#: models.py:63 +msgid "IP address" +msgstr "adresse IP" + +#: models.py:64 +msgid "is public" +msgstr "es public" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Dismarca iste quadro pro facer le commento effectivemente disparer de iste " +"sito." + +#: models.py:67 +msgid "is removed" +msgstr "es removite" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Marca iste quadro si le commento es inappropriate. Un message \"iste " +"commento ha essite removite\" essera monstrate in su loco." + +#: models.py:80 +msgid "comments" +msgstr "commentos" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Iste commento ha essite publicate per un usator authenticate e dunque le " +"nomine es immodificabile." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Iste commento ha essite publicate per un usator authenticate e dunque le " +"adresse de e-mail es immodificabile." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Publicate per %(user)s le %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marca" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "marcation de commento" + +#: models.py:191 +msgid "comment flags" +msgstr "marcationes de commento" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Approbar un commento" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Es tu secur de voler render iste commento public?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Approbar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Gratias pro approbar" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Gratias pro prender le tempore pro meliorar le qualitate del discussion in " +"nostre sito" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Remover un commento" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Es tu secur de voler remover iste commento?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Remover" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Gratias pro remover" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar iste commento" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Es tu secur de voler marcar iste commento?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Gratias pro marcar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publicar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Previsualisar" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Gratias pro commentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Gratias pro tu commento" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Previsualisar tu commento" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Per favor corrige le errores sequente" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..607147d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.po new file mode 100644 index 0000000..afaa2d5 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/id/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# rodin <romihardiyanto@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/django/" +"language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Isi" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Tandai komentar terpilih" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Setujui komentar terpilih" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Hapus komentar terpilih" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "komentar pada %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Komentar terbaru pada %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nama" + +#: forms.py:97 +msgid "Email address" +msgstr "Alamat email" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Awas! Kata %s tidak diizinkan di sini." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "dan" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Jika Anda mengisi bidang ini, komentar Anda akan dianggap sebagai spam" + +#: models.py:23 +msgid "content type" +msgstr "tipe konten" + +#: models.py:25 +msgid "object ID" +msgstr "ID objek" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "pengguna" + +#: models.py:55 +msgid "user's name" +msgstr "nama pengguna" + +#: models.py:56 +msgid "user's email address" +msgstr "alamat email pengguna" + +#: models.py:57 +msgid "user's URL" +msgstr "URL pengguna" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "tanggal/waktu dikirim" + +#: models.py:63 +msgid "IP address" +msgstr "alamat IP" + +#: models.py:64 +msgid "is public" +msgstr "untuk umum" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Hapus centang pada kotak ini agar komentar tidak ditampilkan pada situs." + +#: models.py:67 +msgid "is removed" +msgstr "telah dihapus" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Centang kotak ini jika komentar tidak pantas. Pesan \"Komentar ini telah " +"dihapus\" akan ditampilkan sebagai penggantinya." + +#: models.py:80 +msgid "comments" +msgstr "komentar" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Komentar ini dikirim oleh seorang pengguna terautentikasi sehingga nama " +"pengguna tidak dapat diubah." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Komentar ini dikirim oleh seorang pengguna terautentikasi sehingga alamat " +"email tidak dapat diubah." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Dikirim oleh %(user)s pada %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "tanda" + +#: models.py:180 +msgid "date" +msgstr "tanggal" + +#: models.py:190 +msgid "comment flag" +msgstr "tanda komentar" + +#: models.py:191 +msgid "comment flags" +msgstr "tanda komentar" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Setujui komentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Yakin ingin menampilkan komentar ini untuk umum?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Setujui" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Terima kasih telah menyetujui komentar" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Terima kasih telah membantu meningkatkan kualitas diskusi pada situs kami" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Hapus komentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Yakin ingin menghapus komentar ini?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Hapus" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Terima kasih telah menghapus" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Tandai komentar ini" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Yakin ingin menandai komentar ini?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Tandai" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Terima kasih telah menandai" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Kirim" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Pratinjau" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Terima kasih telah meninggalkan komentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Terima kasih atas komentar Anda" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Pratinjau komentar Anda" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Mohon perbaiki kesalahan di bawah ini" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..cfe909f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.po new file mode 100644 index 0000000..e146229 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/is/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Hafsteinn Einarsson <haffi67@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# einherji <kthelgason@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-30 11:54+0000\n" +"Last-Translator: einherji <kthelgason@gmail.com>\n" +"Language-Team: Icelandic (http://www.transifex.com/projects/p/django/" +"language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Innihald" + +#: admin.py:28 +msgid "Metadata" +msgstr "Hengigögn" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d umsögn hefur verið merkt" +msgstr[1] "%d umsagnir hafa verið merktar" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Flagga valdar athugasemdir" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d umsögn hefur verið samþykkt" +msgstr[1] "%d umsagnir hafa verið samþykktar" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Samþykkja valdar athugasemdir" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d umsögn hefur verið fjarlægð" +msgstr[1] "%d umsagnir hafa verið fjarlægðar" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Fjarlægja valdar athugasemdir" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s: athugasemdir" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Nýjustu athugasemdir á %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nafn" + +#: forms.py:97 +msgid "Email address" +msgstr "Netfang" + +#: forms.py:98 +msgid "URL" +msgstr "Veffang" + +#: forms.py:99 +msgid "Comment" +msgstr "Athugasemd" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Passaðu orðbragðið! Orðið %s er ekki leyft hér." +msgstr[1] "Passaðu orðbragðið! Orðin %s eru ekki leyfð hér." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "og" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Ef þú skrifar eitthvað hérna verður athugasemdin sjálfkrafa meðhöndluð sem " +"ruslpóstur" + +#: models.py:23 +msgid "content type" +msgstr "efnistag" + +#: models.py:25 +msgid "object ID" +msgstr "kenni hlutar" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "notandi" + +#: models.py:55 +msgid "user's name" +msgstr "nafn notanda" + +#: models.py:56 +msgid "user's email address" +msgstr "netfang notanda" + +#: models.py:57 +msgid "user's URL" +msgstr "veffang notanda" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "athugasemd" + +#: models.py:62 +msgid "date/time submitted" +msgstr "innsent dags/tími" + +#: models.py:63 +msgid "IP address" +msgstr "IP tala" + +#: models.py:64 +msgid "is public" +msgstr "er öllum sýnilegt" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Taktu hakið úr til að fjarlægja athugasemdina af vefsíðunni." + +#: models.py:67 +msgid "is removed" +msgstr "hefur verið fjarlægt" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Hakaðu við þennan reit ef athugasemdin er óviðeigandi. Skilaboðin „Þessi " +"athugasemd hefur verið fjarlægð“ birtist í staðinn." + +#: models.py:80 +msgid "comments" +msgstr "athugasemdir" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Athugasemdin var send inn af innskráðum notanda og því er ekki hægt að " +"breyta nafninu." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Athugasemdin var send inn af innskráðum notanda og því er ekki hægt að " +"breyta netfanginu." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s sendi inn %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flagga" + +#: models.py:180 +msgid "date" +msgstr "dagsetning" + +#: models.py:190 +msgid "comment flag" +msgstr "flagg athugasemdar" + +#: models.py:191 +msgid "comment flags" +msgstr "flögg athugasemdar" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Samþykkja athugasemd" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Gera þessa athugasemd sýnilega?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Samþykkja" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Takk fyrir að samþykkja" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Takk fyrir að gefa þér tíma til að bæta gæði umræðunnar á síðunni." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Fjarlægja athugasemd" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Eyða þessari athugasemd?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Fjarlægja" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Takk fyrir að fjarlægja" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flagga athugasemd" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Flagga þesa athugasemd?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flagg" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Takk fyrir að flagga" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Birta" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Skoða" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Takk fyrir að senda athugasemd" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Takk fyrir athugasemdina" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Skoða athugasemd" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Vinsamlegast lagfærðu villuna fyrir neðan" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Vinsamlegast lagfærðu villurnar fyrir neðan" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Birta athugasemd" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "eða breyta" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e7b9b12 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000..08967b0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Nicola Larosa <transifex@teknico.net>, 2011,2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-29 20:19+0000\n" +"Last-Translator: Nicola Larosa <transifex@teknico.net>\n" +"Language-Team: Italian (http://www.transifex.com/projects/p/django/language/" +"it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Contenuto" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadati" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "È stato marcato %d commento" +msgstr[1] "Sono stati marcati %d commenti" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Segnala i commenti selezionati" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "È stato approvato %d commento" +msgstr[1] "Sono stati approvati %d commenti" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Approva i commenti selezionati" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "È stato rimosso %d commento." +msgstr[1] "Sono stati rimossi %d commenti." + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Elimina i commenti selezionati" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "commenti su %(site_name)s " + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Commenti più recenti su %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nome" + +#: forms.py:97 +msgid "Email address" +msgstr "Indirizzo email" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Commento" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Modera i termini: la parola %s non è ammessa qui." +msgstr[1] "Modera i termini: le parole %s non sono ammesse qui." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "e" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Se inserisci qualcosa in questo campo, il tuo commento verrà considerato spam" + +#: models.py:23 +msgid "content type" +msgstr "content type" + +#: models.py:25 +msgid "object ID" +msgstr "ID dell'oggetto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "utente" + +#: models.py:55 +msgid "user's name" +msgstr "nome utente" + +#: models.py:56 +msgid "user's email address" +msgstr "indirizzo email utente" + +#: models.py:57 +msgid "user's URL" +msgstr "URL utente" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "commento" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/ora di inserimento" + +#: models.py:63 +msgid "IP address" +msgstr "indirizzo IP" + +#: models.py:64 +msgid "is public" +msgstr "è pubblico" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Deseleziona questa casella per far sparire del tutto il commento dal sito." + +#: models.py:67 +msgid "is removed" +msgstr "è eliminato" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Seleziona la casella se il commento è inappropriato. Verrà sostituito dal " +"messaggio \"Questo commento è stato rimosso\"." + +#: models.py:80 +msgid "comments" +msgstr "commenti" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Questo commento è stato inserito da un utente autenticato e quindi il nome " +"non è modificabile." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Questo commento è stato inserito da un utente autenticato e quindi l'email " +"non è modificabile." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Inserito da %(user)s il %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "Segnala" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "segnalazione commento" + +#: models.py:191 +msgid "comment flags" +msgstr "segnalazioni commenti" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Approva un commento" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Sicuro di voler pubblicare questo commento?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Approva" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Grazie per aver approvato" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Grazie per aver speso tempo a migliorare la qualità della discussione sul " +"nostro sito" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Elimina un commento" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Sicuro di voler eliminare questo commento?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Elimina" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Grazie per aver eliminato" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Segnala questo commento" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Sicuro di voler segnalare questo commento?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Segnala" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Grazie per aver segnalato" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Pubblica" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Anteprima" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Grazie per aver commentato" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Grazie per il tuo commento" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Mostra l'anteprima del tuo commento" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Correggi gli errori qui sotto" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e40592a --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.po new file mode 100644 index 0000000..6bbd444 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ja/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Shinya Okano <tokibito@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-30 15:16+0000\n" +"Last-Translator: Shinya Okano <tokibito@gmail.com>\n" +"Language-Team: Japanese (http://www.transifex.com/projects/p/django/language/" +"ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "内容" + +#: admin.py:28 +msgid "Metadata" +msgstr "メタデータ" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d 個のコメントにフラグを設定しました。" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "選択したコメントにフラグを付ける" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d 個のコメントを承認しました。" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "選択したコメントを承認する" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d 個のコメントを削除しました" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "コメントを削除する" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s のコメント" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s の最新コメント" + +#: forms.py:96 +msgid "Name" +msgstr "名前" + +#: forms.py:97 +msgid "Email address" +msgstr "メールアドレス" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "コメント" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "言葉使いに気を付けて! %s という言葉は使えません。" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "と" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "このフィールドに入力するとコメントはスパム扱いされます" + +#: models.py:23 +msgid "content type" +msgstr "コンテンツタイプ" + +#: models.py:25 +msgid "object ID" +msgstr "オブジェクト ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "ユーザー" + +#: models.py:55 +msgid "user's name" +msgstr "名前" + +#: models.py:56 +msgid "user's email address" +msgstr "メールアドレス" + +#: models.py:57 +msgid "user's URL" +msgstr "URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "コメント" + +#: models.py:62 +msgid "date/time submitted" +msgstr "コメント投稿日時" + +#: models.py:63 +msgid "IP address" +msgstr "IP アドレス" + +#: models.py:64 +msgid "is public" +msgstr "は公開中です" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"手っ取り早くコメントをサイトから消すにはここのチェックを外してください。" + +#: models.py:67 +msgid "is removed" +msgstr "は削除されました" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"コメントが不適切な場合はチェックを入れてください。「コメントは削除されまし" +"た」と表示されるようになります。" + +#: models.py:80 +msgid "comments" +msgstr "コメント" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"このコメントは認証済みユーザーによって投稿されたため、名前は読み取り専用で" +"す。" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"このコメントは認証済みユーザーによって投稿されたため、メールアドレスは読み取" +"り専用です。" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s が %(date)s に投稿\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "フラグ" + +#: models.py:180 +msgid "date" +msgstr "フラグを付けた日時" + +#: models.py:190 +msgid "comment flag" +msgstr "コメントフラグ" + +#: models.py:191 +msgid "comment flags" +msgstr "コメントフラグ" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "コメントを承認する" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "本当にこのコメントを承認しますか?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "承認" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "ご利用ありがとうございました!" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "当サイトの品質向上にご協力いただきありがとうございました" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "コメントを削除する" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "本当にこのコメントを削除しますか?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "削除" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "ご利用ありがとうございました!" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "このコメントにフラグを付ける" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "本当にこのコメントにフラグを付けますか?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "フラグを付ける" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "ご利用ありがとうございました!" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "投稿" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "プレビュー" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "コメントしてくれてありがとうございました" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "コメントありがとうございました" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "コメントのプレビュー" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "下記のエラーを修正してください。" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "以下のエラー内容を修正してください" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "コメントを投稿" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "さらに編集" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..0cda4c9 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.po new file mode 100644 index 0000000..cbccf6f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ka/LC_MESSAGES/django.po @@ -0,0 +1,297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# David Avsajanishvili <avsd05@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Georgian (http://www.transifex.com/projects/p/django/language/" +"ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "კონტენტი" + +#: admin.py:28 +msgid "Metadata" +msgstr "მეტა-მონაცემები" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "არჩეულ კომენტარებზე დროშის დასმა" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "არჩეული კომენტარების დამტკიცება" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "არჩეული კომენტარების წაშლა" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s-ის კომენტარები" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "ბოლო კომენტარები %(site_name)s-ზე" + +#: forms.py:96 +msgid "Name" +msgstr "სახელი" + +#: forms.py:97 +msgid "Email address" +msgstr "ელ. ფოსტის მისამართი" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "კომენტარი" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "დაიცავით წესრიგი! სიტყვა \"%s\" აქ დაუშვებელია." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "და" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "თუ თვენ შეიყვანთ რამეს ამ ველში, თქვენი კომენტარი სპამად აღიქმება" + +#: models.py:23 +msgid "content type" +msgstr "კონტენტის ტიპი" + +#: models.py:25 +msgid "object ID" +msgstr "ობიექტის ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "მომხმარებელი" + +#: models.py:55 +msgid "user's name" +msgstr "მომხმარებლის სახელი" + +#: models.py:56 +msgid "user's email address" +msgstr "მომხმარებლის ელ. ფოსტა" + +#: models.py:57 +msgid "user's URL" +msgstr "მომხმარებლის URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "კომენტარი" + +#: models.py:62 +msgid "date/time submitted" +msgstr "გაგზავნის თარიღი და დრო" + +#: models.py:63 +msgid "IP address" +msgstr "IP-მისამართი" + +#: models.py:64 +msgid "is public" +msgstr "საყოველთაოა" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "გადანიშნეთ ეს დროშა, რათა კომენტარი რეალურად გაქრეს საიტიდან." + +#: models.py:67 +msgid "is removed" +msgstr "წაშლილია" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"მონიშნეთ ეს დროშა, თუ კომენტარი შეუსაბამოა. მის ნაცვლად გაჩნდება " +"შეტყობინება: \"კომენტარი წაშლილია\"." + +#: models.py:80 +msgid "comments" +msgstr "კომენტარები" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"ეს კომენტარი გამოგზავნილია აუდენტიფიცირებული მომხმარებლის მიერ, და ამიტომ " +"სახელის შეცვლა შეუძლებელია." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"ეს კომენტარი გამოგზავნილია აუდენტიფიცირებული მომხმარებლის მიერ, და ამიტომ " +"ელ. ფოსტის შეცვლა შეუძლებელია." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"გამოგზავნილია %(user)s-ს მიერ, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "დროშა" + +#: models.py:180 +msgid "date" +msgstr "თარიღი" + +#: models.py:190 +msgid "comment flag" +msgstr "კომენტარის დროშა" + +#: models.py:191 +msgid "comment flags" +msgstr "კომენტარის დროშები" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "კომენტარის დადასტურება" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "ნამდვილად გსურთ ამ კომენტარის გამოქვეყნება?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "დასტური" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "გმადლობთ, კომენტარის დადასტურებისათვის" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"გმადლობთ, რომ დრო დახარჯეთ ჩვენს საიტზე დისკუსიის ხარისხის გასაუმჯობესებლად" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "წავშალოთ კომენტარები" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "ნამდვილად გსურთ ამ კომენტარის წაშლა?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "წაშლა" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "გმადლობთ, წაშლისათვის" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "კომენტარის მარკირება" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "ნამდვილად გსურთ ამ კომენტარის მარკირება?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "დროშა" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "გმადლობთ, მარკირებისათვის" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "გაგზავნა" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "წინასწარი ნახვა" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "გმადლობთ კომენტარისთვის" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "გმადლობთ თქვენი კომენტარისათვის" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "კომენტარის წინასწარი ნახვა" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "გთხოვთ, შეასწოროთ შეცდომა ქვემოთ" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "კომენტარის გაგზავნა" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ან შეიტანეთ ცვლილებები" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..624c92c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.po new file mode 100644 index 0000000..c57165d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/kk/LC_MESSAGES/django.po @@ -0,0 +1,296 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# yun_man_ger <germanilyin@gmail.com>, 2011 +# Zhazira <zhazira.mt@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Kazakh (http://www.transifex.com/projects/p/django/language/" +"kk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Мазмұн" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метадата" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Таңдалған коментарийлерді белгілеу" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Таңдалған аңғартпаларды бекіту" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Таңдалған аңғартпаларды өшіру" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s аңғартпалары" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Соңғы %(site_name)s аңғартпалары" + +#: forms.py:96 +msgid "Name" +msgstr "Атау" + +#: forms.py:97 +msgid "Email address" +msgstr "Email адрес" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Аңғартпа" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "және" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Егер сіз бұл жолаққа қандай да бір нарсені енгізсеңіз, сіздің коментариіңіз " +"спам ретінде белгіленеді." + +#: models.py:23 +msgid "content type" +msgstr "мазмұн түрі" + +#: models.py:25 +msgid "object ID" +msgstr "нысан ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "пайдаланушы" + +#: models.py:55 +msgid "user's name" +msgstr "пайдаланушының есімі" + +#: models.py:56 +msgid "user's email address" +msgstr "пайдаланушының email адресі" + +#: models.py:57 +msgid "user's URL" +msgstr "пайдаланушының URLі" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "аңғартпа" + +#: models.py:62 +msgid "date/time submitted" +msgstr "жіберілген күні/уықыты" + +#: models.py:63 +msgid "IP address" +msgstr "IP адрес" + +#: models.py:64 +msgid "is public" +msgstr "ашық" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Анғартпаның сайттан жоғалуы үшін құсбелгіні алып тастаңыз." + +#: models.py:67 +msgid "is removed" +msgstr "өшірілген" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Анғартпа дұрыс болмаса құсбелгігі қойыңыз. Орнына \"Бұл анғартпа өшірілді\" " +"деген хабар көрінеді." + +#: models.py:80 +msgid "comments" +msgstr "анғартпалар" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "Бұл аңғартпа пайдаланушы орналастырған үшін аты өзгертілмейді." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "Бұл аңғартпа пайдаланушы орналастырған үшін email өзгертілмейді." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s %(date)s орналастырды\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "жалауша" + +#: models.py:180 +msgid "date" +msgstr "мерзім" + +#: models.py:190 +msgid "comment flag" +msgstr "Аңғартпа жалаушасы" + +#: models.py:191 +msgid "comment flags" +msgstr "Аңғартпа жалаушалары" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Аңғартпаны мақұлда" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Бұл аңғартпаны ашық қылуға сенімдісіз бе?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Мақұлдау" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Мақұлдау үшін рахмет" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Торпабымыздағы" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Аңғартпаны өшір" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Аңғартпаны өшіруге сенімдісіз бе?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Өшір" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Өшіргеніңіз үшін рахмет" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Бұл аңғартпаға жалауша қой" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Бұл аңғартпаға жалауша қоюға сенімдісіз бе?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Жалауша" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Жалауша қойғаныңыз үшін рахмет" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Орналастыру" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Алдын ала қарап алу" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Аңғартпаңыз үшін рахмет" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Аңғартпаңыз үшін рахмет" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Аңғартпаны алдын ала қарап алу" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" +"one: Төмендегі қатені түзеңіз\n" +"other: Төмендегі қателерді түзеңіз" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Аңғартпаңызды орналастырыңыз" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "немесе өзгертіңіз" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..fbcb447 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.po new file mode 100644 index 0000000..e2931ef --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/km/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Khmer (http://www.transifex.com/projects/p/django/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 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "ឈ្មោះ" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "អាស័យដ្ឋានគេហទំព័រ(URL)" + +#: forms.py:99 +msgid "Comment" +msgstr "ផ្សេងៗ" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "និង" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "ប្រភេទអត្ថន័យ" + +#: models.py:25 +msgid "object ID" +msgstr "លេខសំគាល់កម្មវិធី" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "សមាជិក" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "មតិយោបល់" + +#: models.py:62 +msgid "date/time submitted" +msgstr "កាលបរិច្ឆេទនៃការសរសេរ" + +#: models.py:63 +msgid "IP address" +msgstr "លេខ IP" + +#: models.py:64 +msgid "is public" +msgstr "ផ្សព្វផ្សាយជាសធារណៈ" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "ត្រូវបានលប់ចេញ" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"សូមចុចជ្រើសរើសយកប្រអប់នេះ ប្រសិនបើមតិយោបល់មិនសមរម្យ។ ឃ្លា \" មតិយោបល់នេះត្រូវបានគេលប់\" នឹងត្រូវ" +"បង្ហាញជំនួសវិញ។" + +#: models.py:80 +msgid "comments" +msgstr "មតិយោបល់" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"សរសេរដោយ %(user)s នៅថ្ងៃ %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "កាលបរិច្ឆេទ" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..409ce42 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.po new file mode 100644 index 0000000..61b831d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/kn/LC_MESSAGES/django.po @@ -0,0 +1,292 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# karthikbgl <karthikbgl@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/django/language/" +"kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "ವಿಷಯ" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "ಹೆಸರು" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "ಅಭಿಪ್ರಾಯ" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ಮತ್ತು" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "ಒಳವಿಷಯದ ಬಗೆ" + +#: models.py:25 +msgid "object ID" +msgstr "ವಸ್ತುವಿನ ಐಡಿ" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "ಬಳಕೆದಾರ" + +#: models.py:55 +msgid "user's name" +msgstr "ಬಳಕೆದಾರನ ಹೆಸರು" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "ಟಿಪ್ಪಣಿ" + +#: models.py:62 +msgid "date/time submitted" +msgstr "ಸಲ್ಲಿಸಿದ ದಿನಾಂಕ/ಸಮಯ" + +#: models.py:63 +msgid "IP address" +msgstr "IP ವಿಳಾಸ" + +#: models.py:64 +msgid "is public" +msgstr "ಸಾರ್ವಜನಿಕವಾಗಿದೆ" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "ತೆಗೆದು ಹಾಕಲಾಗಿದೆ" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"ಟಿಪ್ಪಣಿ ಅನುಚಿತವಾಗಿ ಇದ್ದಲ್ಲಿ ಈ ಚೌಕದಲ್ಲಿ ಗುರುತು ಮಾಡಿ. ಅದರ ಬದಲಾಗಿ \"ಈ ಟಿಪ್ಪಣಿ " +"ತೆಗೆದುಹಾಕಲಾಗಿದೆ\" ಎಂಬ ಸಂದೇಶವನ್ನು ತೋರಿಸಲಾಗುವುದು." + +#: models.py:80 +msgid "comments" +msgstr "ಟಿಪ್ಪಣಿಗಳು" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"ಸಲ್ಲಿಸಿದವರು %(user)s ರವರು %(date)s\n" +"\n" +" ದಿನ/ಸಮಯಕ್ಕೆ %(comment)s\n" +"\n" +"http://%(domain)s%(url)s ಸಲ್ಲಿಸಿದ್ದು" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "ದಿನಾಂಕ" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "ಅಭಿಪ್ರಾಯ ಒಪ್ಪಿಗೆ" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "ಒಪ್ಪಿಗೆ" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..829e6be --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..64ba67e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Korean (http://www.transifex.com/projects/p/django/language/" +"ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "내용" + +#: admin.py:28 +msgid "Metadata" +msgstr "메타데이터" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "선택된 코멘트에 플래그 달기" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "선택된 코멘트 승인하기" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "선택된 코멘트 삭제" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s 의 코멘트" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s 의 사용자 비밀번호가 초기화 되었습니다." + +#: forms.py:96 +msgid "Name" +msgstr "이름" + +#: forms.py:97 +msgid "Email address" +msgstr "이메일 주소" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "코멘트:" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "비속어/욕설입니다. %s (은)는 사용하실 수 없습니다." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "또한" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "이 필드에 무엇이라도 입력하면 코멘트는 스팸으로 처리될 것입니다." + +#: models.py:23 +msgid "content type" +msgstr "콘텐츠 타입" + +#: models.py:25 +msgid "object ID" +msgstr "오브젝트 ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "사용자" + +#: models.py:55 +msgid "user's name" +msgstr "사용자명" + +#: models.py:56 +msgid "user's email address" +msgstr "사용자 이메일 주소" + +#: models.py:57 +msgid "user's URL" +msgstr "사용자 URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "코멘트" + +#: models.py:62 +msgid "date/time submitted" +msgstr "날짜/시간 확인" + +#: models.py:63 +msgid "IP address" +msgstr "IP 주소" + +#: models.py:64 +msgid "is public" +msgstr "공개합니다." + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "이 사이트에서 코멘트가 나타나지 않게 하려면 체크 해제하세요." + +#: models.py:67 +msgid "is removed" +msgstr "삭제합니다." + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"코멘트가 부적절한 경우 체크하세요. \"코멘트가 삭제되었습니다.\" 메시지가 표시" +"됩니다." + +#: models.py:80 +msgid "comments" +msgstr "코멘트(들)" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "이 코멘트는 등록된 사용자가 작성하였으므로 읽기 전용입니다." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "이 코멘트는 등록된 사용자가 작성하였으므로 읽기 전용입니다." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s (이)가 %(date)s 등록\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "플래그" + +#: models.py:180 +msgid "date" +msgstr "날짜" + +#: models.py:190 +msgid "comment flag" +msgstr "코멘트 플래그" + +#: models.py:191 +msgid "comment flags" +msgstr "코멘트 플래그" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "코멘트 승인" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "정말로 이 코멘트를 공개하시겠습니까?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "승인" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "승인해주셔서 고맙습니다." + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "우리 사이트의 토론에 기여해주셔서 감사합니다." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "코멘트 삭제" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "정말로 이 코멘트를 삭제하시겠습니까?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "삭제하기" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "삭제해주셔서 고맙습니다." + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "코멘트에 플래그 달기" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "정말로 플래그를 다시겠습니까?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "플래그를 답니다." + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "플래그를 달아주셔서 고맙습니다." + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "작성하기" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "미리보기" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "코멘트 작성 완료" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "코멘트를 달아주셔서 고맙습니다." + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "코멘트 미리보기" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "아래의 오류를 수정해 주세요." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "코멘트 작성하기" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "또는 변경하기" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..b6868eb --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.po new file mode 100644 index 0000000..bb6a398 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lb/LC_MESSAGES/django.po @@ -0,0 +1,287 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/django/" +"language/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "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" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c66013b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.po new file mode 100644 index 0000000..39adf33 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lt/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# lauris <lauris@runbox.com>, 2011 +# Simonas Kazlauskas <simonas@kazlauskas.me>, 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-08-06 12:32+0000\n" +"Last-Translator: Simonas Kazlauskas <simonas@kazlauskas.me>\n" +"Language-Team: Lithuanian (http://www.transifex.com/projects/p/django/" +"language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Turinys" + +#: admin.py:28 +msgid "Metadata" +msgstr "Meta-duomenys" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "Sėkmingai pažymėtas %d komentaras" +msgstr[1] "Sėkmingai pažymėti %d komentarai" +msgstr[2] "Sėkmingai pažymėti %d komentarų" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Žymėti pasirinktus komentarus" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "Sėkmingai patvirtintas %d komentaras" +msgstr[1] "Sėkmingai patvirtinti %d komentarai" +msgstr[2] "Sėkmingai patvirtinti %d komentarų" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Patvirtinti pasirinktus komentarus" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "Sėkmingai pašalintas %d komentaras" +msgstr[1] "Sėkmingai pašalinti %d komentarai" +msgstr[2] "Sėkmingai pašalinti %d komentarų" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Pašalinti pasirinktus įrašus" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s komentarai" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Paskutiniai %(site_name)s komentarai" + +#: forms.py:96 +msgid "Name" +msgstr "Vardas" + +#: forms.py:97 +msgid "Email address" +msgstr "El. pašto adresas" + +#: forms.py:98 +msgid "URL" +msgstr "Nuoroda" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentaras" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Žiūrėk ką kalbi! Žodis %s yra čia uždraustas." +msgstr[1] "Žiūrėk ką kalbi! Žodžiai %s yra čia uždrausti." +msgstr[2] "Žiūrėk ką kalbi! Žodžiai %s yra čia uždrausti." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ir" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Jei ką nors įrašysite į šį laukelį, jūsų komentaras bus laikomas brukalu" + +#: models.py:23 +msgid "content type" +msgstr "turinio tipas" + +#: models.py:25 +msgid "object ID" +msgstr "objekto ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "vartotojas" + +#: models.py:55 +msgid "user's name" +msgstr "vartotojo vardas" + +#: models.py:56 +msgid "user's email address" +msgstr "vartotojo el. pašto adresas" + +#: models.py:57 +msgid "user's URL" +msgstr "vartotojo nuoroda" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentaras" + +#: models.py:62 +msgid "date/time submitted" +msgstr "įvesta data/laikas" + +#: models.py:63 +msgid "IP address" +msgstr "IP adresas" + +#: models.py:64 +msgid "is public" +msgstr "viešas" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Nuimkite šį žymejimą, kad komentaras būtų panaikintas." + +#: models.py:67 +msgid "is removed" +msgstr "pašalintas" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Pažymėkite šį laukelį, jei komentaras netinkamas. \"Šis komentaras ištrintas" +"\" bus rodoma." + +#: models.py:80 +msgid "comments" +msgstr "komentarai" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Šis komentaras buvo paskelbtas neprisijungusio vartotojo, todel vardas yra " +"neredaguojamas." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Šis komentaras buvo paskelbtas neprisijungusio vartotojo, todel el. pašto " +"adresas yra neredaguojamas." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Paskelbta %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "žymė" + +#: models.py:180 +msgid "date" +msgstr "Data" + +#: models.py:190 +msgid "comment flag" +msgstr "Komentaro žymė" + +#: models.py:191 +msgid "comment flags" +msgstr "Komentaro žymės" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Patvirtinti komentarą" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Tikrai publikuoti šį komentarą?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Patvirtinti" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Ačiū už patvirtinimą" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Ačiū, kad radote laiko pagerinti diskusijų kokybę mūsų svetainėje" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Pašalinti komentarą" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Tikrai ištrinti šį komentarą?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Pašalinti" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Ačiū už pašalinimą" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Pažymėti šį komentarą" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Tikrai žymėti šį komentarą?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Žymė" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Ačiū už žymėjimą" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Siųsti" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Peržiūra" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Ačiū už komentarą" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Ačiū už jūsų komentarą" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Peržiūrėti savo komentarą" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Prašau ištaisyti žemiau esančias klaidas" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Ištaisykite ž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/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..6ee779d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.po new file mode 100644 index 0000000..ac1b0bd --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/lv/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/django/language/" +"lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Saturs" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadati" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Atzīmēt izvēlētos komentārus" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Apstiprināt izvēlētos komentārus" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Dzēst izvēlētos komentārus" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s komentāri" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Pēdējie komentāri lapā %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Vārds" + +#: forms.py:97 +msgid "Email address" +msgstr "E-pasta adrese" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentārs" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Lūdzam ievērot pieklājību! Vārds %s šeit nav atļauts." +msgstr[1] "Lūdzam ievērot pieklājību! Vārdi %s šeit nav atļauti." +msgstr[2] "Lūdzam ievērot pieklājību! Vārdi %s šeit nav atļauti." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "un" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ja aizpildīsiet šo lauku, tad komentārs tiks uzskatīts par spamu" + +#: models.py:23 +msgid "content type" +msgstr "satura tips" + +#: models.py:25 +msgid "object ID" +msgstr "objekta ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "lietotājs" + +#: models.py:55 +msgid "user's name" +msgstr "lietotāja vārds" + +#: models.py:56 +msgid "user's email address" +msgstr "lietotāja e-pasta adrese" + +#: models.py:57 +msgid "user's URL" +msgstr "lietotāja URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentārs" + +#: models.py:62 +msgid "date/time submitted" +msgstr "nosūtīšanas datums/laiks" + +#: models.py:63 +msgid "IP address" +msgstr "IP adrese" + +#: models.py:64 +msgid "is public" +msgstr "publisks" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Noņemiet ķeksi, lai komentārs neparādītos lapā." + +#: models.py:67 +msgid "is removed" +msgstr "dzēsts" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Atķeksējiet, ja komentārs ir neatbilstošs (nepieklājīgs). Tā vietā tiks " +"rādīts paziņojums \"Šis komentārs ir izdzēsts\"." + +#: models.py:80 +msgid "comments" +msgstr "komentāri" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Šo komentāru rakstīja autentificēts lietotājs, tāpēc vārds ir tikai " +"lasīšanas režīmā." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Šo komentāru rakstīja autentificēts lietotājs, tāpēc e-pasts ir tikai " +"lasīšanas režīmā." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Pievienojis %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "atzīmēt" + +#: models.py:180 +msgid "date" +msgstr "datums" + +#: models.py:190 +msgid "comment flag" +msgstr "komentāra atzīmējums" + +#: models.py:191 +msgid "comment flags" +msgstr "komentāra atzīmējumi" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Apstiprināt komentāru" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Patiešām padarīt šo komentāru publisku?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Apstiprināt" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Paldies par apstiprināšanu" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Paldies par laika veltīšanu mūsu lapas diskusiju kvalitātes uzlabošanai" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Dzēst komentāru" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Patiešām dzēst šo komentāru?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Dzēst" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Paldies par dzēšanu" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Atzīmēt šo komentāru" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Patiešām atzīmēt šo komentāru?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Atzīmējums" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Paldies par komentāra atzīmēšanu" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Iesūtīt" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Priekšskats" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Paldies par komentēšanu" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Paldies par Jūsu komentāru" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Pirmsskatīt komentāru" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Lūdzu, izlabojiet kļūdu zemāk." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..c2fc43b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.po new file mode 100644 index 0000000..351d90f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/mk/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# vvangelovski <vvangelovski@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-26 11:37+0000\n" +"Last-Translator: vvangelovski <vvangelovski@gmail.com>\n" +"Language-Team: Macedonian (http://www.transifex.com/projects/p/django/" +"language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Содржина" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метаподатоци" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d коментар беше успешно обележан" +msgstr[1] "%d коментари беа успешно обележани" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Обележи го одбраните коментари" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d коментар беше успешно одобрен" +msgstr[1] "%d коментари беа успешно одобрени" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Одобри ги одбраните коментари" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d коментар беше успешно отстранет" +msgstr[1] "%d коментари беа успешно отстранети" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Отстрани ги избраните коментари" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "коментари за %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Последни коментари за %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Име" + +#: forms.py:97 +msgid "Email address" +msgstr "Е-пошта" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Коментар" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Внимавајте на јазикот. Тука не е дозволен зборот %s." +msgstr[1] "Внимавајте на јазикот. Тука не се дозволени зборовите %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "и" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Ако внесете нешто во ова поле вашиот коментар ќе биде означен како спам" + +#: models.py:23 +msgid "content type" +msgstr "тип на содржина" + +#: models.py:25 +msgid "object ID" +msgstr "object ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "корисник" + +#: models.py:55 +msgid "user's name" +msgstr "името на корисникот" + +#: models.py:56 +msgid "user's email address" +msgstr "е-пошта на корисникот" + +#: models.py:57 +msgid "user's URL" +msgstr "веб страна на корсникот" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "коментар" + +#: models.py:62 +msgid "date/time submitted" +msgstr "датум/време пријавен" + +#: models.py:63 +msgid "IP address" +msgstr "ИП адреса" + +#: models.py:64 +msgid "is public" +msgstr "е јавен" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Одштиклирајте го ова за да направите коментаров да исчезне од овој сајт." + +#: models.py:67 +msgid "is removed" +msgstr "е отстранет" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Штиклирајте го ова поле ако коментарот не е пригоден. Наместо него пораката " +"„Овој коментар беше отстранет“ ќе биде прикажана." + +#: models.py:80 +msgid "comments" +msgstr "коментари" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Овој коментар бил пратен од автентициран корисник и затоа името е заштитено " +"од промена." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Овој коментар бил пратен од автентициран корисник и затоа е-пошта е " +"заштитена од промена." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Напишан од %(user)s на %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "обележи" + +#: models.py:180 +msgid "date" +msgstr "датум" + +#: models.py:190 +msgid "comment flag" +msgstr "обележје за коментар" + +#: models.py:191 +msgid "comment flags" +msgstr "обележја за коментари" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Одобри коментар" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Навистина ли сакате овој коментар да биде објавен?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Одобри" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Ви благодариме што одобривте" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Ви благодариме што допринесовте да се подобри квалитетот на дискусиите на " +"нашиот сајт" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Избриши коментар" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Навистина ли сакате да го отстраните овој коментар?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Отстрани" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Ви благодариме што отстранивте" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Обележи го овој коментар" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Навистина ли сакате да го обележите овој коментар?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Обележи" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Ви благодариме што обележавте" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Објави" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Преглед" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Ви благодариме за коментарот" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Ви благодариме за коментарот" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Прегледајте го вашиот коментар" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Ве молам поправете ја грешката подолу" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Ве молам поправете ги грешките подолу" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Објавете го вашиот коментар" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "или направете измени" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..3c507b4 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.po new file mode 100644 index 0000000..584d382 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ml/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Rajeesh Nair <rajeeshrnair@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/django/" +"language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "ഉള്ളടക്കം" + +#: admin.py:28 +msgid "Metadata" +msgstr "മെറ്റാ-ഡാറ്റ" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള് അടയാളപ്പെടുത്തുക" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള് അംഗീകരിക്കുക" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "തെരഞ്ഞെടുത്ത അഭിപ്രായങ്ങള് നീക്കം ചെയ്യുക" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s അഭിപ്രായങ്ങള്" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s ലെ ഏറ്റവും പുതിയ അഭിപ്രായങ്ങള്" + +#: forms.py:96 +msgid "Name" +msgstr "പേര്" + +#: forms.py:97 +msgid "Email address" +msgstr "ഇ-മെയില് വിലാസം" + +#: forms.py:98 +msgid "URL" +msgstr "URL(വെബ്-വിലാസം)" + +#: forms.py:99 +msgid "Comment" +msgstr "അഭിപ്രായം" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "ശ്ശ്ശ്! %s എന്ന വാക്ക് ഇവിടെ അനുവദനീയമല്ല." +msgstr[1] "ശ്ശ്ശ്! %s എന്നീ വാക്കുകള് ഇവിടെ അനുവദനീയമല്ല." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ഉം" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "ഈ കള്ളിയില് എന്തെങ്കിലും രേഖപ്പെടുത്തിയാല് നിങ്ങളുടെ അഭിപ്രായം സ്പാം ആയി കണക്കാക്കും" + +#: models.py:23 +msgid "content type" +msgstr "ഏതു തരം ഉള്ളടക്കം" + +#: models.py:25 +msgid "object ID" +msgstr "വസ്തുവിന്റെ ID (തിരിച്ചറിയല് സംഖ്യ)" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "യൂസര് (ഉപയോക്താവ്)" + +#: models.py:55 +msgid "user's name" +msgstr "യൂസറുടെ പേര്" + +#: models.py:56 +msgid "user's email address" +msgstr "യൂസറുടെ ഇ-മെയില് വിലാസം" + +#: models.py:57 +msgid "user's URL" +msgstr "യൂസറുടെ URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "അഭിപ്രായം" + +#: models.py:62 +msgid "date/time submitted" +msgstr "സമര്പ്പിച്ച തീയതി/സമയം" + +#: models.py:63 +msgid "IP address" +msgstr "IP വിലാസം" + +#: models.py:64 +msgid "is public" +msgstr "പരസ്യമാണ്" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "അഭിപ്രായം സൈറ്റില് നിന്നും ഫലപ്രദമായി നീക്കം ചെയ്യാന് ഈ ബോക്സിലെ ടിക് ഒഴിവാക്കുക." + +#: models.py:67 +msgid "is removed" +msgstr "നീക്കം ചെയ്തു." + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"അഭിപ്രായം അനുചിതമെങ്കില് ഈ ബോക്സ് ടിക് ചെയ്യുക. \"ഈ അഭിപ്രായം നീക്കം ചെയ്തു \" എന്ന സന്ദേശം " +"ആയിരിക്കും പകരം കാണുക." + +#: models.py:80 +msgid "comments" +msgstr "അഭിപ്രായങ്ങള്" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "ഈ അഭിപ്രായം ഒരു അംഗീകൃത യൂസര് രേഖപ്പെടുത്തിയതാണ്. അതിനാല് പേര് വായിക്കാന് മാത്രം." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"ഈ അഭിപ്രായം ഒരു അംഗീകൃത യൂസര് രേഖപ്പെടുത്തിയതാണ്. അതിനാല് ഇ-മെയില് വിലാസം വായിക്കാന് " +"മാത്രം." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(date)sന് %(user)s രേഖപ്പെടുത്തിയത്:\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "അടയാളം" + +#: models.py:180 +msgid "date" +msgstr "തീയതി" + +#: models.py:190 +msgid "comment flag" +msgstr "അഭിപ്രായ അടയാളം" + +#: models.py:191 +msgid "comment flags" +msgstr "അഭിപ്രായ അടയാളങ്ങള്" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "അഭിപ്രായം അംഗീകരിക്കൂ" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "ശരിക്കും ഈ അഭിപ്രായം പരസ്യമാക്കണോ?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "അംഗീകരിക്കൂ" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "അംഗീകരിച്ചതിനു നന്ദി" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "നമ്മുടെ സൈറ്റിലെ ചര്ച്ചകളുടെ നിലവാരം ഉയര്ത്താന് സമയം ചെലവഴിച്ചതിനു നന്ദി." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "അഭിപ്രായം നീക്കം ചെയ്യൂ" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "ശരിക്കും ഈ അഭിപ്രായം നീക്കം ചെയ്യണോ?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "നീക്കം ചെയ്യുക" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "നീക്കം ചെയ്തതിനു നന്ദി" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "ഈ അഭിപ്രായം അടയാളപ്പെടുത്തൂ" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "ഈ അഭിപ്രായം ശരിക്കും അടയാളപ്പെടുത്തണോ?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "അടയാളം" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "അടയാളപ്പെടുത്തിയതിനു നന്ദി" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "രേഖപ്പെടുത്തൂ" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "അവലോകനം" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "അഭിപ്രായം രേഖപ്പെടുത്തിയതിനു നന്ദി" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "അഭിപ്രായത്തിനു നന്ദി" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "അഭിപ്രായം അവലോകനം ചെയ്യുക" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "ദയവായി താഴെ പറയുന്ന തെറ്റുകള് തിരുത്തുക" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "അഭിപ്രായം രേഖപ്പെടുത്തുക" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "അല്ലെങ്കില് മാറ്റം വരുത്തുക." diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1cc7399 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.po new file mode 100644 index 0000000..bee6c22 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/mn/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# ankhaa1002 <ankhaa1002@gmail.com>, 2013 +# bayarkhuu <brka_8@yahoo.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Анхбаяр Анхаа <l.ankhbayar@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-09-30 09:43+0000\n" +"Last-Translator: ankhaa1002 <ankhaa1002@gmail.com>\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/django/" +"language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Агуулга" + +#: admin.py:28 +msgid "Metadata" +msgstr "Мета өгөгдөл" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d сэтгэгдэл амжилттай тэмдэглэгдлээ" +msgstr[1] "%d сэтгэгдэл амжилттай тэмдэглэгдлээ" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Сонгосон сэтгэгдэлүүдийг тэмдэглэ" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d сэтгэгдэл амжилттай зөвшөөрөгдлөө" +msgstr[1] "%d сэтгэгдэл амжилттай зөвшөөрөгдлөө" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Сонгосон сэтгэгдэлүүдийг зөвшөөрөх" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d сэтгэгдэл амжилттай устгагдлаа" +msgstr[1] "%d сэтгэгдэл амжилттай устгагдлаа" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Сонгосон сэтгэгдэлүүдийг утсгах" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s сэтгэгдэлүүд" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr " %(site_name)s сүүлийн сэтгэгдэлүүд" + +#: forms.py:96 +msgid "Name" +msgstr "Нэр" + +#: forms.py:97 +msgid "Email address" +msgstr "Цахим шуудангийн хаяг" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Сэтгэгдэл" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Соёлтой байна уу! %s гэсэн үг оруулах хориотой." +msgstr[1] "Соёлтой байна уу! %s гэсэн үгүүд оруулах хориотой." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ба" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Та энэ хэсэгт ямар нэг зүйл оруулбал таний сэтгэгдэлийг спам гэж үзэх болно." + +#: models.py:23 +msgid "content type" +msgstr "агуулгын төрөл" + +#: models.py:25 +msgid "object ID" +msgstr "объектийн ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "хэрэглэгч " + +#: models.py:55 +msgid "user's name" +msgstr "хэрэглэгчийн нэр" + +#: models.py:56 +msgid "user's email address" +msgstr "хэрэглэгчийн цахим шуудангийн хаяг" + +#: models.py:57 +msgid "user's URL" +msgstr "хэрэглэгчийн URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "сэтгэгдэл" + +#: models.py:62 +msgid "date/time submitted" +msgstr "оруулсан огноо/цаг" + +#: models.py:63 +msgid "IP address" +msgstr "IP хаяг" + +#: models.py:64 +msgid "is public" +msgstr "нийтийн" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Сайтаас санал сэтгэгдлийг байнга устгахын тулд энэ хайрцагны өмнөх чагтыг " +"авна уу." + +#: models.py:67 +msgid "is removed" +msgstr "устлаа" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Ирсэн санал сэтгэгдэл зүй зохисгүй бол энэ хайрцгийг чагтла. Ингэснээр " +"тухайн санал сэтгэгдлийн оронд \"Энэ санал сэтгэгдлийг устгалаа\" гэсэн " +"бичиг гарч ирнэ." + +#: models.py:80 +msgid "comments" +msgstr "сэтгэгдэлүүд" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Энэ санал сэтгэгдлийг баталгаажсан хэрэглэгч оруулсан учир зөвхөн нэрийг нь " +"харж болно." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Энэ санал сэтгэгдлийг баталгаажсан хэрэглэгч оруулсан учир зөвхөн цахим " +"шууданг нь харж болно." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(date)s-д %(user)s дараах санал сэтгэгдлийг үлдээжээ\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "тэмдэг" + +#: models.py:180 +msgid "date" +msgstr "огноо" + +#: models.py:190 +msgid "comment flag" +msgstr "Тайлбарын тэмдэг" + +#: models.py:191 +msgid "comment flags" +msgstr "тайлбарын тэмдэгүүд" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Сэтгэгдэл зөвшөөрөх" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Үнэхээр энэ сэтгэгдэлийн нийтийн болгох гэж байна у?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Зөвшөөрөх" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Зөвшөөрсөнд баяраллаа" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Манай сайтанд цаг гаргаж хэлэлцүүлэгийг сонирхолтой болгосонд баяраллаа." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Үнэхээр энэ сэтгэдэлийг" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Үнхээр энэ сэтгэдэлийг устгах уу?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Устгах" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Устгасанд баяраллаа" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Энэ сэтгэгдэлийг тэмлэглэ" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Үнэхээр энэ сэтгэдэлийг тэмдэглэх үү?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Тэмдэг" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Тэмдэглсэнд баяраллаа" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Бичлэг" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Урьдчилан харах" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Сэтгэгдэл үлдээсэнд баяраллаа" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Сэтгэгдэл үлдээсэн таньд баяраллаа" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Өөрийн сэтгэгдэлээ урьдчилан харах" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Доорх алдаануудыг засна у" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Доорх алдаануудыг засна уу" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Сэтгэгдэл оруулах" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "эсвэл засвар хийх" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..7d05c9d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.po new file mode 100644 index 0000000..e94d675 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/my/LC_MESSAGES/django.po @@ -0,0 +1,284 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Yhal Htet Aung <jumoun@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Burmese (http://www.transifex.com/projects/p/django/language/" +"my/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: my\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "နာမည်" + +#: forms.py:97 +msgid "Email address" +msgstr "အီးမေးလ်လိပ်စာ" + +#: forms.py:98 +msgid "URL" +msgstr "ယူအာအယ်" + +#: forms.py:99 +msgid "Comment" +msgstr "မှတ်ချက်" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "နှင့်" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "အကြောင်းအရာအမျိုးအစား" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "အိုင်ပီလိပ်စာ" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "အလံ" + +#: models.py:180 +msgid "date" +msgstr "ရက်စွဲ" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "ဖယ်ရှား" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "အလံ" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..90b0073 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.po new file mode 100644 index 0000000..caafd49 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nb/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# jonklo <jonklo@gmail.com>, 2012 +# Sigurd Gartmann <sigurdga-transifex@sigurdga.no>, 2012 +# injectedreality <transifex@ireality.no>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-18 21:03+0000\n" +"Last-Translator: injectedreality <transifex@ireality.no>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/django/" +"language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Innhold" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d kommentar ble flagget" +msgstr[1] "%d kommentarer ble flagget" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Flagg valgte kommentarer" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d kommentar ble godkjent" +msgstr[1] "%d kommentarer ble godkjent" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Tillat valgte kommentarer" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d kommentar ble fjernet" +msgstr[1] "%d kommentarer ble fjernet" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Fjern valgte kommentarer" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s kommentarer" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Siste kommentarer fra %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Navn" + +#: forms.py:97 +msgid "Email address" +msgstr "E-postadresse" + +#: forms.py:98 +msgid "URL" +msgstr "Nettadresse" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pass munnen din! Ordet %s er ikke tillatt her." +msgstr[1] "Pass munnen din! Ordene %s er ikke tillatt her." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "og" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Hvis du oppgir noe i dette feltet, vil kommentaren bli behandlet som spam" + +#: models.py:23 +msgid "content type" +msgstr "innholdstype" + +#: models.py:25 +msgid "object ID" +msgstr "objekt-ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "bruker" + +#: models.py:55 +msgid "user's name" +msgstr "brukerens navn" + +#: models.py:56 +msgid "user's email address" +msgstr "brukerens e-postadresse" + +#: models.py:57 +msgid "user's URL" +msgstr "brukerens nettadresse" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dato/tid for innsendelse" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adresse" + +#: models.py:64 +msgid "is public" +msgstr "er tilgjengelig for alle" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Fjern avhuking av denne boksen for å fjerne kommentaren fra siden." + +#: models.py:67 +msgid "is removed" +msgstr "er fjernet" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Huk av denne hvis kommentaren er upassende. Meldingen «Denne kommentaren har " +"blitt fjernet» vil bli vist i stedet." + +#: models.py:80 +msgid "comments" +msgstr "kommentarer" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Denne kommentaren er skrevet av en innlogget bruker og navnet kan derfor " +"ikke endres." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Denne kommentaren er skrevet av en innlogget bruker og e-postadressen kan " +"derfor ikke endres." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Skrevet av %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flagg" + +#: models.py:180 +msgid "date" +msgstr "dato" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentarflagg" + +#: models.py:191 +msgid "comment flags" +msgstr "kommentarflagg" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Tillat en kommentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Gjør denne kommentaren offentlig?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Godkjenn" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Takk for godkjennelse" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Takk for at du tok deg tid til å forbedre kvaliteten på diskusjonen på siden " +"vår" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Fjern en kommentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Fjern denne kommentaren?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Fjern" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Takk for fjerningen" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flagg denne kommentaren" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Flagg denne kommentaren?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flagg" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Takk for flagging" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publiser" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Takk for kommentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Takk for din kommentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Forhåndsvis kommentaren din" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Vennligst korriger feilene under" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..cf69925 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.po new file mode 100644 index 0000000..6a51804 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ne/LC_MESSAGES/django.po @@ -0,0 +1,290 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Paras Nath Chaudhary <opnchaudhary@gmail.com>, 2012 +# Sagar Chalise <chalisesagar@gmail.com>, 2011 +# ♔♔♔Srt Aryal♔♔♔ <surit_people@hotmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Nepali (http://www.transifex.com/projects/p/django/language/" +"ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "विषय" + +#: admin.py:28 +msgid "Metadata" +msgstr "मेटाडाटा" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "चुनिएको प्रतिकृया स्वीकार गर्नुहोस ।" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "चुनिएको प्रतिकृया हटाउनुहोस ।" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s प्रतिकृया" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)sका ताजा प्रतिकृया" + +#: forms.py:96 +msgid "Name" +msgstr "नाम" + +#: forms.py:97 +msgid "Email address" +msgstr "ई-मेल ठेगाना" + +#: forms.py:98 +msgid "URL" +msgstr "" + +#: forms.py:99 +msgid "Comment" +msgstr "प्रतिकृया" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "र" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "याहा केहि पनि नलेख्नु होला । याहा केहि लेखियेमा तेसला" + +#: models.py:23 +msgid "content type" +msgstr "विषयको ढाँचा" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "प्रयोगकर्ता " + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "प्रतिकृया" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "हटाइएको छ" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "प्रतिकृया" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "मिति" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "प्रतिकृया स्वीकार गर्नुहोस" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "स्वीकार गर्नुहोस" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "स्वीकार गरेकोमा धन्यवाद" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "प्रतिकृया हटाउनुहोस" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "के साच्चै प्रतिकृया हटाउनुहुन्छ ?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "हटाउनुहोस" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "हटाएकोमा धन्यवाद" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "लेख " + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "पूर्व समीक्षा" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "प्रतिकृयाको लागि धन्यवाद" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "तपाइको प्रतिकृयाको लागि धन्यवाद" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "तपाइको प्रतिकृयाको पूर्व समीक्षा" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "कृपया तलका त्रुटि सच्याउनुहोस ।" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "तपाइको प्रतिकृयाको पठाउनुहोस" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "अथवा फेरबदल गर्नुहोस" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..f55f135 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..0be08aa --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# bartdegoede <bart@dispectu.com>, 2013 +# go2people <admin@go2people.nl>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Tino de Bruijn <tinodb@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-22 15:59+0000\n" +"Last-Translator: bartdegoede <bart@dispectu.com>\n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django/language/" +"nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Inhoud" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d reactie is succesvol gemarkeerd" +msgstr[1] "%d reacties zijn succesvol gemarkeerd" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Markeer geselecteerde commentaren" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d reactie is succesvol goedgekeurd" +msgstr[1] "%d reacties zijn succesvol goedgekeurd" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Keur geselecteerde commentaren goed" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d reactie is succesvol verwijderd" +msgstr[1] "%d reacties zijn succesvol verwijderd" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Verwijder geselecteerde commentaren" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s opmerkingen" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Laatste opmerkingen op %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Naam" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mailadres" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Opmerking" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pas op uw taalgebruik! Gebruik van %s niet toegestaan." +msgstr[1] "" +"Pas op uw taalgebruik! Gebruik van de woorden %s is niet toegestaan." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "en" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Indien u hier iets invult dan wordt uw opmerking behandeld als spam" + +#: models.py:23 +msgid "content type" +msgstr "inhoudstype" + +#: models.py:25 +msgid "object ID" +msgstr "object-ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "gebruiker" + +#: models.py:55 +msgid "user's name" +msgstr "naam gebruiker" + +#: models.py:56 +msgid "user's email address" +msgstr "e-mailadres gebruiker" + +#: models.py:57 +msgid "user's URL" +msgstr "URL gebruiker" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "opmerking" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum/tijd toegevoegd" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adres" + +#: models.py:64 +msgid "is public" +msgstr "is openbaar" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Vink dit vakje uit zodat de opmerking niet meer zichtbaar is op de site." + +#: models.py:67 +msgid "is removed" +msgstr "is verwijderd" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Vink dit vak aan indien de opmerking niet gepast is. Een \"Dit commentaar is " +"verwijderd\" bericht wordt dan getoond." + +#: models.py:80 +msgid "comments" +msgstr "opmerkingen" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Deze opmerking is gepost door een ingelogde gebruiker en daardoor is de naam " +"niet aan te passen." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Deze opmerking is gepost door een ingelogde gebruiker en daardoor is het e-" +"mailadres niet aan te passen." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Geplaatst door %(user)s op %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "vlag" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "opmerking vlag" + +#: models.py:191 +msgid "comment flags" +msgstr "opmerking vlaggen" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Een opmerking toestaan" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Weet u zeker dat u deze opmerking openbaar wilt maken?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Goedkeuren" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Bedankt voor het goedkeuren" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Bedankt dat u de tijd heeft genomen om de kwaliteit van de discussie op onze " +"site te verbeteren" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Een opmerking verwijderen" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Weet u zeker dat u deze opmerking wilt verwijderen?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Verwijderen" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Bedankt voor het verwijderen" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Vlag deze opmerking" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Weet u zeker dat u deze opmerking wilt vlaggen?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Vlag" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Bedankt voor het vlaggen" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Bericht" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Voorbeeld" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Bedankt voor uw opmerking" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Bedankt voor uw opmerking" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Toon voorbeeld van uw opmerking" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Herstel de fouten hieronder" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..027909c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.po new file mode 100644 index 0000000..6a0be40 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/nn/LC_MESSAGES/django.po @@ -0,0 +1,302 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/django/" +"language/nn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Innhald" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Flagg valde kommentarar" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Tillat valde kommentarar" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Fjern valdte kommentarar" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s - kommentarar" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Siste kommentarar frå %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Namn" + +#: forms.py:97 +msgid "Email address" +msgstr "E-postadresse" + +#: forms.py:98 +msgid "URL" +msgstr "Nettadresse" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pass munnen din! Ordet %s er ikkje lovleg her." +msgstr[1] "Pass munnen din! Orda %s er ikkje lovlege her." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "og" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Dersom du oppgjev noko i dette feltet, vil kommentaren bli behandla som spam" + +#: models.py:23 +msgid "content type" +msgstr "innhaldstype" + +#: models.py:25 +msgid "object ID" +msgstr "objekt-ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "brukar" + +#: models.py:55 +msgid "user's name" +msgstr "brukaren sitt namn" + +#: models.py:56 +msgid "user's email address" +msgstr "brukaren si e-postadresse" + +#: models.py:57 +msgid "user's URL" +msgstr "brukaren si nettadresse" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dato/tid for innsending" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adresse" + +#: models.py:64 +msgid "is public" +msgstr "er tilgjengeleg for alle" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Avmerk denne boksen for å fjerne kommentaren frå sida." + +#: models.py:67 +msgid "is removed" +msgstr "er fjerna" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Kryss av denne dersom kommentaren er upassande. Meldinga \"Denne kommentaren " +"har blitt fjerna\" vil bli vist i staden." + +#: models.py:80 +msgid "comments" +msgstr "kommentarar" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Denne kommentaren er skriven av ein innlogga brukar og namnnet kan difor " +"ikkje endrast." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Denne kommentaren er skriven av ein innlogga brukar og e-postadressa kan " +"derfor ikkje endrast." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Skrive av %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flagg" + +#: models.py:180 +msgid "date" +msgstr "dato" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentarflagg" + +#: models.py:191 +msgid "comment flags" +msgstr "kommentarflagg" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Tillat ein kommentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Gjere denne kommentaren offentleg?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Godkjenn" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Takk for godkjenning" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Takk for at du tok deg tid til å forbetre kvaliteten på diskusjonen på sida " +"vår" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Fjern ein kommentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Fjerne denne kommentaren?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Fjern" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Takk for fjerninga" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flagg denne kommentaren" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Flagg denne kommentaren?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flagg" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Takk for flagging" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publiser" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Førehandsvising" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Takk for kommentaren" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Takk for kommentaren din" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Førehandsvis kommentaren din" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Korriger feila under" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..151316e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.po new file mode 100644 index 0000000..354efcf --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/os/LC_MESSAGES/django.po @@ -0,0 +1,300 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Soslan Khubulov <soslanx@gmail.com>, 2013 +# Soslan Khubulov <soslanx@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Ossetic (http://www.transifex.com/projects/p/django/language/" +"os/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: os\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Мидис" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метарардтӕ" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d комментари нысангонд ӕрцыдис" +msgstr[1] "%d комментарийы нысангонд ӕрцыдысты" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Ӕвзӕрст комментаритӕ банысан кӕнын" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d комментари бӕлвырдгонд ӕрцыдис" +msgstr[1] "%d комментарийы бӕлвырдгонд ӕрцыдысты" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Ӕвзӕрст комментаритӕ сбӕлвырд кӕнын" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d комментари хафт ӕрцыдис" +msgstr[1] "%d комментарийы хафт ӕрцыдысты" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ӕвзӕрст комментаритӕ схафын" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s-ы комментаритӕ" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s-ы фӕстаг комментаритӕ" + +#: forms.py:96 +msgid "Name" +msgstr "Ном" + +#: forms.py:97 +msgid "Email address" +msgstr "Электрон посты адрис" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Коммент" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Дӕхимӕ кӕс! %s ам дзурын нӕй гӕнӕн." +msgstr[1] "Дӕхимӕ кӕс! %s, ахӕм ныхӕстӕ ам дзурын нӕй гӕнӕн." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ӕмӕ" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Кӕд ацы ран исты ныффыссай, уӕд дӕ хъуыды куыд спам афтӕ уыдзӕн" + +#: models.py:23 +msgid "content type" +msgstr "мидисы хуыз" + +#: models.py:25 +msgid "object ID" +msgstr "объекты ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "архайӕг" + +#: models.py:55 +msgid "user's name" +msgstr "архайӕджы ном" + +#: models.py:56 +msgid "user's email address" +msgstr "архайӕджы электрон пост" + +#: models.py:57 +msgid "user's URL" +msgstr "архайӕджы " + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "коммент" + +#: models.py:62 +msgid "date/time submitted" +msgstr "бавӕрды бон/рӕстӕг" + +#: models.py:63 +msgid "IP address" +msgstr "IP адрис" + +#: models.py:64 +msgid "is public" +msgstr "публикон у" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Ацы чекбоксы нысан сис цӕмӕй хъуыды сайтӕй фесӕфа." + +#: models.py:67 +msgid "is removed" +msgstr "хафт у" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Банысан кӕн ацы чекбокс, кӕд ацы хъуыды ӕнӕмбӕлгӕ у. \"Ацы хъуыды хафт у\" " +"уый бӕсты уыдзӕн ӕвдыст." + +#: models.py:80 +msgid "comments" +msgstr "комменттӕ" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ацы хъуыды ныффыста системӕмӕ хызт архайӕг, ӕмӕ уый тыххӕй йӕ ном ӕрмӕст " +"фӕрсынӕн у." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ацы хъуыды ныффыста системӕмӕ хызт архайӕг, ӕмӕ уый тыххӕй йӕ email ӕрмӕст " +"фӕрсынӕн у." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Ныффыта йӕ %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "флаг" + +#: models.py:180 +msgid "date" +msgstr "бон" + +#: models.py:190 +msgid "comment flag" +msgstr "комментарийы нысан" + +#: models.py:191 +msgid "comment flags" +msgstr "комментарийы нысӕнттӕ" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Комментари сбӕлвырд кӕнын" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Ӕцӕг дӕ фӕнды ацы комментари алкӕмӕн равдисын?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Бӕлвырд" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Бузныг бӕлвырд кӕнынӕн" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Бузныг дӕ хъус кӕй дарыс нӕ сайты ныхасы уагмӕ" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Комментари схафын" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Ӕцӕг дӕ фӕнды ацы комментари схафын?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Схафын" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Бузныг хафыны тыххӕй" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Ацы комментари банысан кӕнын" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Ӕцӕг дӕ фӕнды ацы комментари банысан кӕнын?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Флаг" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Бузныг нысан кӕныны тыххӕй" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Фыст" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Афӕлгӕст" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Бузныг хъуыды зӕгъыны тыххӕй" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Бузныг дӕ хъуыдыйы тыххӕй" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Дӕ хъуыдыйыл акӕс" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Дӕ хорзӕхӕй, бындӕр рӕдыдтытӕ сраст кӕн" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Дӕ хъуыды ныффысс" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "кӕнӕ йӕ фӕив" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ae9fe10 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.po new file mode 100644 index 0000000..422c107 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pa/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/django/" +"language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "ਸਮੱਗਰੀ" + +#: admin.py:28 +msgid "Metadata" +msgstr "ਮੇਟਾਡਾਟਾ" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਫਲੈਗ ਕਰੋ" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਮਨਜ਼ੂਰ" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "ਚੁਣੀਆਂ ਟਿੱਪਣੀਆਂ ਹਟਾਓ" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s ਟਿੱਪਣੀਆਂ" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s ਉੱਤੇ ਤਾਜ਼ਾ ਟਿੱਪਣੀਆਂ" + +#: forms.py:96 +msgid "Name" +msgstr "ਨਾਂ" + +#: forms.py:97 +msgid "Email address" +msgstr "ਈਮੇਲ ਐਡਰੈੱਸ" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "ਟਿੱਪਣੀ" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ਅਤੇ" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "ਸਮੱਗਰੀ ਕਿਸਮ" + +#: models.py:25 +msgid "object ID" +msgstr "ਆਬਜੈਕਟ ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "ਯੂਜ਼ਰ" + +#: models.py:55 +msgid "user's name" +msgstr "ਯੂਜ਼ਰ ਦਾ ਨਾਂ" + +#: models.py:56 +msgid "user's email address" +msgstr "ਯੂਜ਼ਰ ਦਾ ਈਮੇਲ ਐਡਰੈੱਸ" + +#: models.py:57 +msgid "user's URL" +msgstr "ਯੂਜ਼ਰ ਦਾ URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "ਟਿੱਪਣੀ" + +#: models.py:62 +msgid "date/time submitted" +msgstr "ਭੇਜਣ ਮਿਤੀ/ਸਮਾਂ" + +#: models.py:63 +msgid "IP address" +msgstr "IP ਐਡਰੈੱਸ" + +#: models.py:64 +msgid "is public" +msgstr "ਪਬਲਿਕ ਹੈ" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "ਹਟਾਇਆ ਗਿਆ" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "ਟਿੱਪਣੀਆਂ" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s ਵਲੋਂ %(date)s ਨੂੰ ਪੋਸਟ ਕੀਤੀ\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "ਫਲੈਗ" + +#: models.py:180 +msgid "date" +msgstr "ਮਿਤੀ" + +#: models.py:190 +msgid "comment flag" +msgstr "ਟਿੱਪਣੀ ਫਲੈਗ" + +#: models.py:191 +msgid "comment flags" +msgstr "ਟਿੱਪਣੀ ਫਲੈਗ" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "ਟਿੱਪਣੀ ਮਨਜ਼ੂਰ ਕਰੋ" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "ਇਹ ਟਿੱਪਣੀ ਪਬਲਿਕ ਬਣਾਉਣੀ ਹੈ?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "ਮਨਜ਼ੂਰ" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ ਧੰਨਵਾਦ ਜੀ" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "ਟਿੱਪਣੀ ਹਟਾਓ" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "ਇਹ ਟਿੱਪਣੀ ਹਟਾਉਣੀ ਹੈ?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "ਹਟਾਓ" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "ਹਟਾਉਣ ਲਈ ਧੰਨਵਾਦ" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "ਇਹ ਟਿੱਪਣੀ ਲਈ ਫਲੈਗ" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "ਇਹ ਟਿੱਪਣੀ ਲਈ ਫਲੈਗ ਲਾਉਣਾ ਹੈ?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "ਫਲੈਗ" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "ਫਲੈਗ ਲਗਾਉਣ ਲਈ ਧੰਨਵਾਦ" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "ਪੋਸਟ ਕਰੋ" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "ਝਲਕ" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "ਟਿੱਪਣੀ ਦੇਣ ਲਈ ਧੰਨਵਾਦ" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "ਤੁਹਾਡੀ ਟਿੱਪਣੀ ਲਈ ਤੁਹਾਡਾ ਧੰਨਵਾਦ" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "ਆਪਣੀ ਟਿੱਪਣੀ ਦੀ ਝਲਕ ਵੇਖੋ" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "ਹੇਠ ਦਿੱਤੀਆਂ ਗਲਤੀਆਂ ਠੀਕ ਕਰੋ ਜੀ।" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "ਆਪਣੀ ਟਿੱਪਣੀ ਪੋਸਟ ਕਰੋ" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ਜਾਂ ਬਦਲਾਅ ਕਰੋ" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ffacd11 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000..c0542bd --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,310 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# angularcircle, 2013 +# angularcircle, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Kacper Krupa <pagenoare@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-06-14 13:24+0000\n" +"Last-Translator: Kacper Krupa <pagenoare@gmail.com>\n" +"Language-Team: Polish (http://www.transifex.com/projects/p/django/language/" +"pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Zawartość" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadane" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Oflaguj wybrane komentarze" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Zaakceptuj wybrane komentarze" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Usuń wybrane komentarze" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "komentarze na %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Ostatnie komentarze na %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nazwa" + +#: forms.py:97 +msgid "Email address" +msgstr "Adres e-mail" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentarz" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Nie wolno przeklinać! Słowo %s nie jest dozwolone." +msgstr[1] "Nie wolno przeklinać! Słowa %s nie są dozwolone." +msgstr[2] "Nie wolno przeklinać! Słowa %s nie są dozwolone." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "i" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Jeżeli wpiszesz cokolwiek w to pole, Twój komentarz zostanie uznany za spam" + +#: models.py:23 +msgid "content type" +msgstr "typ zawartości" + +#: models.py:25 +msgid "object ID" +msgstr "ID obiektu" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "użytkownik" + +#: models.py:55 +msgid "user's name" +msgstr "nazwa użytkownika" + +#: models.py:56 +msgid "user's email address" +msgstr "adres e-mail użytkownika" + +#: models.py:57 +msgid "user's URL" +msgstr "URL użytkownika" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentarz" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/czas dodania" + +#: models.py:63 +msgid "IP address" +msgstr "Adres IP" + +#: models.py:64 +msgid "is public" +msgstr "publicznie dostępny" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Odznacz to pole, aby komentarz nie był wyświetlany w serwisie." + +#: models.py:67 +msgid "is removed" +msgstr "usunięty" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Zaznacz to pole jeżeli komentarz jest nieodpowiedni. Wyświetlony zostanie " +"tekst \"Ten komentarz został usunięty\"." + +#: models.py:80 +msgid "comments" +msgstr "komentarze" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ten komentarz został dodany przez zalogowanego użytkownika i dlatego nazwa " +"jest tylko do odczytu." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ten komentarz został dodany przez zalogowanego użytkownika i dlatego adres e-" +"mail jest tylko do odczytu." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Dodane przez %(user)s dnia %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flaga" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "flaga dla komentarza" + +#: models.py:191 +msgid "comment flags" +msgstr "flagi dla komentarzy" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Zaakceptuj komentarz" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Czy ten komentarz na pewno ma być publiczny?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Zaakceptuj" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Dziękujemy za zaakceptowanie" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Dziękujemy za poświęcenie czasu na podniesienie jakości dyskusji w naszym " +"serwisie" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Usuń komentarz" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Czy na pewno usunąć ten komentarz?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Usuń" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Dziękujemy za usunięcie" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Oflaguj ten komentarz" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Czy na pewno oflagować ten komentarz?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flaga" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Dziękujemy za oflagowanie" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Zapisz" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Podgląd" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Dziękujemy za dodanie komentarza" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Dziękujemy za komentarz" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Podgląd komentarza" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Proszę popraw poniższe błędy." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Proszę popraw poniższe błędy." + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Zapisz swój komentarz" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "lub wprowadź jakieś zmiany" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..f28f125 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.po new file mode 100644 index 0000000..85ec73d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pt/LC_MESSAGES/django.po @@ -0,0 +1,305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bruno Miguel Custódio <bruno@brunomcustodio.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Nuno Mariz <nmariz@gmail.com>, 2011,2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-31 16:31+0000\n" +"Last-Translator: Nuno Mariz <nmariz@gmail.com>\n" +"Language-Team: Portuguese (http://www.transifex.com/projects/p/django/" +"language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Conteúdo" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d comentário foi marcado com sucesso" +msgstr[1] "%d comentários foram marcados com sucesso" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar os comentários selecionados" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "%(count)s comentários foram %(action)s com sucesso." + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprovar os comentários selecionados" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "%(count)s comentários foram %(action)s com sucesso." + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Remover os comentários selecionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "comentários em %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentários em %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nome" + +#: forms.py:97 +msgid "Email address" +msgstr "Endereço de e-mail" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentário" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Atenção à linguagem! A palavra %s não é permitida aqui." +msgstr[1] "Atenção à linguagem! As palavras %s não são permitidas aqui." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "e" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Se introduzir alguma coisa neste campo o seu comentário irá ser tratado como " +"spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de conteúdo" + +#: models.py:25 +msgid "object ID" +msgstr "ID do objeto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "utilizador" + +#: models.py:55 +msgid "user's name" +msgstr "o nome do utilizador" + +#: models.py:56 +msgid "user's email address" +msgstr "endereço de e-mail do utilizador" + +#: models.py:57 +msgid "user's URL" +msgstr "URL do utilizador" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentário" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hora de submissão" + +#: models.py:63 +msgid "IP address" +msgstr "Endereço IP" + +#: models.py:64 +msgid "is public" +msgstr "é público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Não selecione esta caixa para que o comentário desapareça do site." + +#: models.py:67 +msgid "is removed" +msgstr "foi removido" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Selecione esta opção se o comentário não é apropriado. Uma mensagem \"Este " +"comentário foi removido\" será mostrada no seu lugar." + +#: models.py:80 +msgid "comments" +msgstr "comentários" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentário foi colocado por um utilizador autenticado, portanto o nome " +"é apenas de leitura." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentário foi colocado por um utilizador autenticado, portanto o e-" +"mail é apenas de leitura." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Colocado pelo utilizador %(user)s em %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marcar" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "marca de comentário" + +#: models.py:191 +msgid "comment flags" +msgstr "marcas de comentários" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprovar um comentário" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Tem a certeza que deseja tornar este comentário público?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprovar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Obrigado pela aprovação" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Obrigado por dedicar o seu tempo para melhorar a qualidade de discussão no " +"nosso site" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Remover um comentário" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Tem a certeza que deseja remover este comentário?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Remover" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Obrigado pela remoção" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar este comentário" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Tem a certeza que deseja marcar este comentário?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Obrigado por marcar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publicar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Prever" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Obrigado por comentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Obrigado pelo seu comentário" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Pré-visualizar comentário" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Por favor corrija os seguintes erros." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Por favor corrija os seguintes erros" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Publique o seu comentário" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ou faça modificações" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..e61fb01 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000..fcb23cb --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,307 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Eduardo Carvalho <eduardocereto@gmail.com>, 2013 +# Gladson Simplício Brito <gladsonbrito@gmail.com>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-02 14:12+0000\n" +"Last-Translator: Gladson Simplício Brito <gladsonbrito@gmail.com>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" +"django/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 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d comentário foi sinalizado com sucesso" +msgstr[1] "%d comentários foram sinalizadas com sucesso" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marcar comentários selecionados" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d comentário foi aprovado com sucesso" +msgstr[1] "%d comentários foram aprovados com sucesso" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprovar comentários selecionados" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d comentário foi removido com sucesso" +msgstr[1] "%d comentários foram removidos com sucesso" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Remover comentários selecionados" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Comentários de %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Últimos comentários em %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nome" + +#: forms.py:97 +msgid "Email address" +msgstr "Endereço de e-mail" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentário" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Olha sua boca! A palavra %s não é permitida aqui." +msgstr[1] "Olha sua boca! As palavras %s não são permitidas aqui." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "e" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Se você inserir qualquer coisa neste campo, seu comentário será tratado como " +"spam" + +#: models.py:23 +msgid "content type" +msgstr "tipo de conteúdo" + +#: models.py:25 +msgid "object ID" +msgstr "id do objeto" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "usuário" + +#: models.py:55 +msgid "user's name" +msgstr "nome do usuário" + +#: models.py:56 +msgid "user's email address" +msgstr "endereço de e-mail do usuário" + +#: models.py:57 +msgid "user's URL" +msgstr "URL do usuário" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentário" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/hora de envio" + +#: models.py:63 +msgid "IP address" +msgstr "Endereço IP" + +#: models.py:64 +msgid "is public" +msgstr "é público" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Desmarque esta caixa para fazer o comentário desaparecer efetivamente deste " +"site." + +#: models.py:67 +msgid "is removed" +msgstr "foi removido" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Selecione esta opção se o comentário é inapropriado. A mensagem \"Este " +"comentário foi removido\" será mostrada no lugar." + +#: models.py:80 +msgid "comments" +msgstr "comentários" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Este comentário foi feito por um usuário autenticado e portanto seu nome é " +"apenas para leitura." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Este comentário foi feito por um usuário autenticado e portanto seu e-mail é " +"apenas para leitura." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Enviado por %(user)s em %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marcar" + +#: models.py:180 +msgid "date" +msgstr "data" + +#: models.py:190 +msgid "comment flag" +msgstr "marca de comentário" + +#: models.py:191 +msgid "comment flags" +msgstr "marcas de comentários" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprovar um comentário" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Realmente tornar este comentário público?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprovar" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Obrigado pela aprovação" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Obrigado por dedicar tempo para melhorar a qualidade de discussão de nosso " +"site." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Remover um comentário" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Realmente remover este comentário?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Remover" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Obrigado pela remoção" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcar um comentário" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Realmente marcar este comentário?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marcar" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Obrigado pela marcação" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publicar" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Visualizar" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Obrigado por comentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Obrigado pelo seu comentário" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Visualizar seu comentário" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Por favor, corrija os erros abaixo." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..16d93b5 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.po new file mode 100644 index 0000000..21a3ec4 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ro/LC_MESSAGES/django.po @@ -0,0 +1,311 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Daniel Ursache-Dogariu <contact@danniel.net>, 2011 +# Denis Darii <sinednx@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Romanian (http://www.transifex.com/projects/p/django/language/" +"ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#: admin.py:25 +msgid "Content" +msgstr "Conţinut" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadate" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Marchează comentariile selectate" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Aprobă comentariile selectate" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Elimină comentariile selectate" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Comentariile de la %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Ultimele comentarii la %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Nume" + +#: forms.py:97 +msgid "Email address" +msgstr "Adresă e-mail" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Comentariu" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Atenție la limbajul folosit! Cuvântul %s nu este permis aici." +msgstr[1] "Atenție la limbajul folosit! Cuvintele %s nu sunt permise aici." +msgstr[2] "Atenție la limbajul folosit! Cuvintele %s nu sunt permise aici." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "și" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Dacă introduceți ceva în acest câmp, comentariul dumneavoastră va fi " +"considerat ca spam" + +#: models.py:23 +msgid "content type" +msgstr "tip conţinut" + +#: models.py:25 +msgid "object ID" +msgstr "ID obiect" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "utilizator" + +#: models.py:55 +msgid "user's name" +msgstr "numele utilizatorului" + +#: models.py:56 +msgid "user's email address" +msgstr "adresa e-mail a utilizatorului" + +#: models.py:57 +msgid "user's URL" +msgstr "URL-ul utilizatorului" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "comentariu" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/ora creării" + +#: models.py:63 +msgid "IP address" +msgstr "adresă ip" + +#: models.py:64 +msgid "is public" +msgstr "este public" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Debifaţi această casetă pentru a face comentariul să dispară de pe site." + +#: models.py:67 +msgid "is removed" +msgstr "este șters" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Bifați această casuța dacă acest comentariu nu este adecvat. Un mesaj de " +"tipul \"Acest comentariu a fost șters\" va fi afișat în schimb." + +#: models.py:80 +msgid "comments" +msgstr "comentarii" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Acest comentariu a fost scris de către un utilizator autentificat, astfel " +"numele poate fi doar citit." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Acest comentariu a fost scris de către un utilizator autentificat, astfel " +"adresa e-mail poate fi doar citită." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Scris de %(user)s la %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "marcaj" + +#: models.py:180 +msgid "date" +msgstr "dată" + +#: models.py:190 +msgid "comment flag" +msgstr "marcaj comentariu" + +#: models.py:191 +msgid "comment flags" +msgstr "marcaje comentarii" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Aprobă un comentariu" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Chiar doriți să faceți public acest comentariu?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Aprobă" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Mulțumiri pentru aprobare" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Vă mulţumim pentru a timpul acordat spre a îmbunătăți calitatea discuțiilor " +"de pe situl nostru" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Elimină un comentariu" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Chiar doriți să eliminați acest comentariu?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Elimină" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Mulțumiri pentru eliminare" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Marcați acest comentariu" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Chiar doriți să marcați acest comentariu?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Marchează" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Mulțumiri pentru marcare" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Publică" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Previzualizează" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Mulțumiri pentru comentariu" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Vă mulțumim pentru comentariu" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Previzualizați-vă comentariul" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Corectați erorile de mai jos" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..33aee15 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..32db4b7 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,312 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Denis Darii <sinednx@gmail.com>, 2011 +# Eugene MechanisM <contact@mechanism.name>, 2013 +# Jannis Leidel <jannis@leidel.info>, 2011 +# Mikhail Zholobov <legal90@gmail.com>, 2013 +# Алексей Борискин <sun.void@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-07 12:50+0000\n" +"Last-Translator: Алексей Борискин <sun.void@gmail.com>\n" +"Language-Team: Russian (http://www.transifex.com/projects/p/django/language/" +"ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Содержимое" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метаданные" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d комментарий был успешно помечен" +msgstr[1] "%d комментария были успешно помечены" +msgstr[2] "%d комментариев были успешно помечены" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Пометить выбранные комментарии" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d комментарий был успешно одобрен" +msgstr[1] "%d комментария были успешно одобрены" +msgstr[2] "%d комментариев были успешно одобрены" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Одобрить выбранные комментарии" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d комментарий был успешно удалён" +msgstr[1] "%d комментария были успешно удалены" +msgstr[2] "%d комментариев были успешно удалены" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Удалить выбранные комментарии" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Комментарии %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Последние комментарии на %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Имя" + +#: forms.py:97 +msgid "Email address" +msgstr "Адрес электронной почты" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Комментарий" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +"Следите за своими словами! Употребление слова \"%s\" здесь запрещено." +msgstr[1] "" +"Следите за своими словами! Употребление слов \"%s\" здесь запрещено." +msgstr[2] "" +"Следите за своими словами! Употребление слов \"%s\" здесь запрещено." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "и" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Если вы что-то введете в это поле, то ваш комментарий будет помечен как спам" + +#: models.py:23 +msgid "content type" +msgstr "тип содержимого" + +#: models.py:25 +msgid "object ID" +msgstr "идентификатор объекта" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "пользователь" + +#: models.py:55 +msgid "user's name" +msgstr "имя пользователя" + +#: models.py:56 +msgid "user's email address" +msgstr "адрес электронной почты пользователя" + +#: models.py:57 +msgid "user's URL" +msgstr "URL пользователя" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "комментарий" + +#: models.py:62 +msgid "date/time submitted" +msgstr "дата и время добавления" + +#: models.py:63 +msgid "IP address" +msgstr "IP-адрес" + +#: models.py:64 +msgid "is public" +msgstr "публичный" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Снимите выделение, чтобы убрать комментарий с сайта." + +#: models.py:67 +msgid "is removed" +msgstr "удалён" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Отметьте, если комментарий нежелателен. Взамен будет показано сообщение " +"\"Этот комментарий был удален\"." + +#: models.py:80 +msgid "comments" +msgstr "Комментарии" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Комментарий был добавлен зарегистрированным пользователем, поэтому имя " +"пользователя доступно только для чтения." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Комментарий был добавлен зарегистрированным пользователем, поэтому адрес " +"электронной почты доступен только для чтения." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Добавил %(user)s %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "отметка" + +#: models.py:180 +msgid "date" +msgstr "дата" + +#: models.py:190 +msgid "comment flag" +msgstr "отметка комментария" + +#: models.py:191 +msgid "comment flags" +msgstr "отметки комментариев" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Одобрить комментарий" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Вы уверены, что хотите опубликовать этот комментарий?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Одобрить" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Спасибо, что одобрили комментарий" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Спасибо, что заботитесь о качестве общения на нашем сайте" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Удалить комментарий" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Вы уверены, что хотите удалить этот комментарий?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Удалить" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Спасибо за удаление" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Отметить этот комментарий" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Вы уверены, что хотите отметить этот комментарий?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Отметить" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Спасибо" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Опубликовать" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Предпросмотр" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Спасибо за комментарий" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Спасибо за ваш комментарий" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Предпросмотр вашего комментария" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Пожалуйста, исправьте ошибки ниже" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Пожалуйста, исправьте ошибки, указанные ниже" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Опубликуйте ваш комментарий" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "или внесите изменения" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..da0fdec --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.po new file mode 100644 index 0000000..0607c23 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sk/LC_MESSAGES/django.po @@ -0,0 +1,308 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Juraj Bubniak <translations@jbub.eu>, 2013 +# Marian Andre <marian@andre.sk>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-11-10 11:57+0000\n" +"Last-Translator: Marian Andre <marian@andre.sk>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/django/language/" +"sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Obsah" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metaúdaje" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d komentár bol úspešne označený" +msgstr[1] "%d komentáre boli úspešne označené" +msgstr[2] "%d komentárov bolo úspešne označených" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označiť vybraný komentár" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d komentár schválený" +msgstr[1] "%d komentáre schválené" +msgstr[2] "%d komentárov schválených" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Schváliť vybraný komentár" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d komentár úspešne odstránený" +msgstr[1] "%d komentáre úspešne odstránené" +msgstr[2] "%d komentárov úspešne odstránených" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Odstrániť vybrané komentáre" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s komentáre" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Najnovšie komentáre na %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Meno" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mail adresa" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentár" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Vyjadrujte sa slušne! Slovo %s tu nie je dovolené používať." +msgstr[1] "Vyjadrujte sa slušne! Slová %s tu nie je dovolené používať." +msgstr[2] "Vyjadrujte sa slušne! Slová %s tu nie je dovolené používať." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "a" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Ak ste do tohoto poľa čokoľvek zadali, váš komentár bude považovaný za spam" + +#: models.py:23 +msgid "content type" +msgstr "typ obsahu" + +#: models.py:25 +msgid "object ID" +msgstr "identifikátor objektu" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "používateľ" + +#: models.py:55 +msgid "user's name" +msgstr "meno používateľa" + +#: models.py:56 +msgid "user's email address" +msgstr "e-mail adresa používateľa" + +#: models.py:57 +msgid "user's URL" +msgstr "URL používateľa" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentár" + +#: models.py:62 +msgid "date/time submitted" +msgstr "dátum a čas odoslania" + +#: models.py:63 +msgid "IP address" +msgstr "IP adresa" + +#: models.py:64 +msgid "is public" +msgstr "je verejný" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Ak chcete, aby komentár zmizol zo stránky, zrušte zaškrtnutie tohoto políčka." + +#: models.py:67 +msgid "is removed" +msgstr "je odstránený" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Zaškrtnite toto pole, ak je komentár nevhodný. Namiesto neho sa zobrazí " +"správa \"Tento komenár bol odstránený\"." + +#: models.py:80 +msgid "comments" +msgstr "komentáre" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Tento komentár je od autentifikovaného používateľa a preto je jeho meno len " +"na čítanie." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Tento komentár je od autentifikovaného používateľa a preto je jeho e-mail " +"len na čítanie." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Pridaný užívateľom %(user)s dňa %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "príznak" + +#: models.py:180 +msgid "date" +msgstr "dátum" + +#: models.py:190 +msgid "comment flag" +msgstr "komentárový príznak" + +#: models.py:191 +msgid "comment flags" +msgstr "komentárové príznaky" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Povoliť komentár" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Skutočne chcete zverejniť tento komentár?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Povoliť" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Ďakujeme za povolenie" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Ďakujeme za čas, ktorý ste venovali zvýšniu kvality diskusie na našej stránke" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Zmazať komentár" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Naozaj chcete zmazať tento komentár?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Odstrániť" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Ďakujeme za odstránenie" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označiť tento komentár" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Naozaj chcete označiť tento komentár?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Príznak" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Ďakujeme za označenie" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Poslať" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Náhľad" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Vďaka za komentár" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Ďakujeme za váš komentár" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Náhľad komentára" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Opravte, prosím, chyby uvedené nižšie" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Opravte, prosím, chyby uvedené nižšie" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Poslať váš komentár" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "alebo urobiť zmeny" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..8d54442 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.po new file mode 100644 index 0000000..8325a01 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sl/LC_MESSAGES/django.po @@ -0,0 +1,312 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# zejn <zejn@kiberpipa.org>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-12 09:03+0000\n" +"Last-Translator: zejn <zejn@kiberpipa.org>\n" +"Language-Team: Slovenian (http://www.transifex.com/projects/p/django/" +"language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Vsebina" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metapodatki" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d komentar je bil uspešno označen" +msgstr[1] "%d komentarja sta bila uspešno označena" +msgstr[2] "%d komentarji so bili uspešno označeni" +msgstr[3] "%d komentarjev je bilo uspešno označenih" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označi izbrane komentarje" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d komentar je bil uspešno odobren" +msgstr[1] "%d komentarja sta bila uspešno odobrena" +msgstr[2] "%d komentarji so bili uspešno odobreni" +msgstr[3] "%d komentarjev je bilo uspešno odobrenih" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Odobri izbrane opokomentarje" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d komentar je bil uspešno izbrisan" +msgstr[1] "%d komentarja sta bila uspešno izbrisana" +msgstr[2] "%d komentarji so bili uspešno izbrisani" +msgstr[3] "%d komentarjev je bilo uspešno izbrisanih" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Odstrani izbrane komentarje" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Komentarji %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Zadnji komentarji na %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ime" + +#: forms.py:97 +msgid "Email address" +msgstr "Elektronski naslov" + +#: forms.py:98 +msgid "URL" +msgstr "Naslov URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pazite na jezik! Besede %s tu niso dovoljene." +msgstr[1] "Pazite na jezik! Beseda %s tu ni dovoljena." +msgstr[2] "Pazite na jezik! Besedi %s tu nista dovoljeni." +msgstr[3] "Pazite na jezik! Besede %s tu niso dovoljene." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "in" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Če v to polje vnesete kakršnokoli besedilo, bo vaš komentar označen kot " +"neželen komentar." + +#: models.py:23 +msgid "content type" +msgstr "vrsta vsebine" + +#: models.py:25 +msgid "object ID" +msgstr "ID predmeta" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "uporabnik" + +#: models.py:55 +msgid "user's name" +msgstr "ime uporabnika" + +#: models.py:56 +msgid "user's email address" +msgstr "elektronski naslov uporabnika" + +#: models.py:57 +msgid "user's URL" +msgstr "naslov URL uporabnika" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum in čas objave" + +#: models.py:63 +msgid "IP address" +msgstr "naslov IP" + +#: models.py:64 +msgid "is public" +msgstr "je javno" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Odkljukajte izbor in komentar bo izginil s strani." + +#: models.py:67 +msgid "is removed" +msgstr "je odstranjen" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Odkljukajte, če je komentarj neprimeren. Namesto komentarja bo prikazano " +"obvestilo \"Komentar je bil odstranjen\"." + +#: models.py:80 +msgid "comments" +msgstr "komentarji" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Komentar je objavil prijavljen uporabnik, zato je ime na voljo le za branje." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Komentar je objavil prijavljen uporabnik, zato je elektronski naslov na " +"voljo le za branje." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Objavljeno z računa %(user)s ob %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "označi" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "oznaka komentarja" + +#: models.py:191 +msgid "comment flags" +msgstr "oznake komentarja" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Odobri komentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Ali ste prepričani, da želite ta komentar objaviti?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Odobri" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Hvala za odobritev" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Hvala, da ste si vzeli čas in pomagali izboljšati kakovost pogovorov na naši " +"strani." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Odstrani komentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Ali res želite odstraniti ta komentar?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Odstrani" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Hvala, ker ste odstranili komentar." + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označi ta komentar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Ali res želite označiti ta komentar?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Označi" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Hvala, ker ste označili komentar" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Objavi" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Predogled" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Hvala za objavljanje komentarjev" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Hvala za vaš komentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Predogled komentarja" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Odpravite naslednje napake" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..bb91253 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.po new file mode 100644 index 0000000..271f50f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sq/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Besnik <besnik@programeshqip.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Albanian (http://www.transifex.com/projects/p/django/language/" +"sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Lëndë" + +#: admin.py:28 +msgid "Metadata" +msgstr "Tejtëdhëna" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "Iu vu shenjë me sukses %d komenti" +msgstr[1] "Iu vunë shenjë me sukses %d komenteve" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Vëru shenjë komenteve të përzgjedhura" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "U miratua me sukses %d koment" +msgstr[1] "U miratuan me sukses %d komente" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Miratoji komentet e përzgjedhura" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "U hoq me sukses %d koment" +msgstr[1] "U hoqën me sukses %d komente" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Hiqi komentet e përzgjedhur" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "komente te %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Komentet më të fundit te %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Emër" + +#: forms.py:97 +msgid "Email address" +msgstr "Adresë email" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Koment" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Mbani gojën! Këtu nuk lejohet fjala %s." +msgstr[1] "Mbani gojën! Këtu nuk lejohen fjalët %s." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr " dhe " + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Nëse fusni diçka në këtë fushë komenti juaj do të trajtohet si i pavlerë" + +#: models.py:23 +msgid "content type" +msgstr "lloj lënde" + +#: models.py:25 +msgid "object ID" +msgstr "ID objekti" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "përdorues" + +#: models.py:55 +msgid "user's name" +msgstr "emri i përdoruesit" + +#: models.py:56 +msgid "user's email address" +msgstr "adresa email e përdoruesit" + +#: models.py:57 +msgid "user's URL" +msgstr "URL përdoruesi" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "koment" + +#: models.py:62 +msgid "date/time submitted" +msgstr "data/koha e parashtrimit" + +#: models.py:63 +msgid "IP address" +msgstr "Adresë IP" + +#: models.py:64 +msgid "is public" +msgstr "është publike" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Hiqjani shenjën kësaj kutize që ta bëni komentin të zhduket faktikisht prej " +"site-it." + +#: models.py:67 +msgid "is removed" +msgstr "është hequr" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"I vini shenjë kësaj kutie, nëse komenti është i papërshtatshëm. Në vend të " +"tij do të shfaqet një mesazh \"Ky koment është hequr\"." + +#: models.py:80 +msgid "comments" +msgstr "komente" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ky koment u postua nga një përdorues i mirëfilltësuar, ndaj emri është nën " +"atributin vetëm-lexim." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ky koment u postua nga një përdorues i mirëfilltësuar, ndaj email-i është " +"nën atributin vetëm-lexim." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postuar nga %(user)s më %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "shenjë" + +#: models.py:180 +msgid "date" +msgstr "datë" + +#: models.py:190 +msgid "comment flag" +msgstr "shenjë komenti" + +#: models.py:191 +msgid "comment flags" +msgstr "shenja komenti" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Miratoni një koment" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Të bëhet vërtet publik ky koment?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Miratoje" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Faleminderit që e miratuat" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Faleminderit për kohën e harxhuar për përmirësimin e cilësisë së diskutimit " +"në site-in tonë." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Hiqni një koment" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Të hiqet vërtet ky koment?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Hiqe" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Faleminderit që e hoqët" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "I vini shenjë këtij komenti" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "T'i vihet shenjë vërtet këtij komenti?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Vëri shenjë" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Faleminderit që i vutë shenjë" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Postoje" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Paraparje" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Faleminderit që komentuat" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Faleminderit për komentin tuaj" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Parashiheni komentin tuaj" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Ju lutem, ndreqni gabimet e mëposhtme" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..1e3e1f9 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.po new file mode 100644 index 0000000..f938d01 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sr/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Janos Guljas <janos@resenje.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Serbian (http://www.transifex.com/projects/p/django/language/" +"sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Садржај" + +#: admin.py:28 +msgid "Metadata" +msgstr "Метаподаци" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Означавање изабраних коментара" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Одобрење изабраних коментара" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Обриши изабране коментаре" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Коментари на сајту %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Скорији коментари на сајту %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Име" + +#: forms.py:97 +msgid "Email address" +msgstr "Имејл адреса" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Коментари" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Пазите шта пишете! Реч %s није дозвољена овде." +msgstr[1] "Пазите шта пишете! Речи %s нису дозвољене овде." +msgstr[2] "Пазите шта пишете! Речи %s нису дозвољене овде." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "и" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ако ишта унесете у ово поље, Ваш коментар ће се сматрати спамом." + +#: models.py:23 +msgid "content type" +msgstr "тип садржаја" + +#: models.py:25 +msgid "object ID" +msgstr "ID објекта" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "корисник" + +#: models.py:55 +msgid "user's name" +msgstr "корисниково име" + +#: models.py:56 +msgid "user's email address" +msgstr "корисникова имејл адреса" + +#: models.py:57 +msgid "user's URL" +msgstr "корисников URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "коментар" + +#: models.py:62 +msgid "date/time submitted" +msgstr "датум/време постављања" + +#: models.py:63 +msgid "IP address" +msgstr "IP адреса" + +#: models.py:64 +msgid "is public" +msgstr "јавно" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Деселектујте ово поље ако желите да порука фактички нестане са овог сајта." + +#: models.py:67 +msgid "is removed" +msgstr "уклоњен" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Обележите ову кућицу ако је коментар неприкладан. Порука о уклањању ће бити " +"приказана уместо коментара." + +#: models.py:80 +msgid "comments" +msgstr "коментари" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Овај коментар је поставио пријављен корисник и зато је поље са именом " +"закључано." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Овај коментар је поставио пријављен корисник и зато је поље са имејл адресом " +"закључано." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Поставио %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "ознака" + +#: models.py:180 +msgid "date" +msgstr "датум" + +#: models.py:190 +msgid "comment flag" +msgstr "ознака коментара" + +#: models.py:191 +msgid "comment flags" +msgstr "ознаке коментара" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Одобрење коментара" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Да ли заиста желите да означите овај коментар јавним?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Одобри" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Хвала на одобрењу!" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Хвала на учешћу у унапређењу квалитета дискусија на нашем сајту." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Обриши коментар" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Да ли заиста желите да обришете овај коментар?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Обриши" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Хвала што користите наш сајт!" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Означавање коментара" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Да ли заиста желите да означите овај коментар?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Означи" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Хвала што сте означили коментар." + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Постави" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Преглед" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Хвала на коментару" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Хвала што сте оставили свој коментар" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Прегледај коментар" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Исправите наведене грешке" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Постави коментар" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "или изврши измене" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..45dea1b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po new file mode 100644 index 0000000..6eca52b --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sr_Latn/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Janos Guljas <janos@resenje.org>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/django/" +"language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Sadržaj" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metapodaci" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Označavanje izabranih komentara" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Odobrenje izabranih komentara" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Obriši izabrane komentare" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "Komentari na sajtu %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Skoriji komentari na sajtu %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ime" + +#: forms.py:97 +msgid "Email address" +msgstr "Imejl adresa" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Komentari" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Pazite šta pišete! Reč %s nije dozvoljena ovde." +msgstr[1] "Pazite šta pišete! Reči %s nisu dozvoljene ovde." +msgstr[2] "Pazite šta pišete! Reči %s nisu dozvoljene ovde." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "i" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Ako išta unesete u ovo polje, Vaš komentar će se smatrati spamom." + +#: models.py:23 +msgid "content type" +msgstr "tip sadržaja" + +#: models.py:25 +msgid "object ID" +msgstr "ID objekta" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "korisnik" + +#: models.py:55 +msgid "user's name" +msgstr "korisnikovo ime" + +#: models.py:56 +msgid "user's email address" +msgstr "korisnikova imejl adresa" + +#: models.py:57 +msgid "user's URL" +msgstr "korisnikov URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "komentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "datum/vreme postavljanja" + +#: models.py:63 +msgid "IP address" +msgstr "IP adresa" + +#: models.py:64 +msgid "is public" +msgstr "javno" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Deselektujte ovo polje ako želite da poruka faktički nestane sa ovog sajta." + +#: models.py:67 +msgid "is removed" +msgstr "uklonjen" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Obeležite ovu kućicu ako je komentar neprikladan. Poruka o uklanjanju će " +"biti prikazana umesto komentara." + +#: models.py:80 +msgid "comments" +msgstr "komentari" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Ovaj komentar je postavio prijavljen korisnik i zato je polje sa imenom " +"zaključano." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Ovaj komentar je postavio prijavljen korisnik i zato je polje sa imejl " +"adresom zaključano." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Postavio %(user)s, %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "oznaka" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "oznaka komentara" + +#: models.py:191 +msgid "comment flags" +msgstr "oznake komentara" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Odobrenje komentara" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Da li zaista želite da označite ovaj komentar javnim?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Odobri" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Hvala na odobrenju!" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "Hvala na učešću u unapređenju kvaliteta diskusija na našem sajtu." + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Obriši komentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Da li zaista želite da obrišete ovaj komentar?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Obriši" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Hvala što koristite naš sajt!" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Označavanje komentara" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Da li zaista želite da označite ovaj komentar?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Označi" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Hvala što ste označili komentar." + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Postavi" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Pregled" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Hvala na komentaru" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Hvala što ste ostavili svoj komentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Pregledaj komentar" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Ispravite navedene greške" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..592acc6 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.po new file mode 100644 index 0000000..82eb60f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sv/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Andreas Pelme <andreas@pelme.se>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# biljettshop <thomas@biljettshop.se>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-28 10:06+0000\n" +"Last-Translator: biljettshop <thomas@biljettshop.se>\n" +"Language-Team: Swedish (http://www.transifex.com/projects/p/django/language/" +"sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Innehåll" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "Flaggade %d kommentar" +msgstr[1] "Flaggade %d kommentarer" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Flagga markerade kommentarer" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "Godkände %d kommentar" +msgstr[1] "Godkände %d kommentarer" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Godkänn valda kommentarer" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "Tog bort %d kommentar" +msgstr[1] "Tog bort %d kommentarer" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ta bort valda kommentarer" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s kommentarer" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Senaste kommentarer på %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Namn" + +#: forms.py:97 +msgid "Email address" +msgstr "E-postadress" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Kommentar" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Akta din tunga! Ordet %s är inte tillåtet här." +msgstr[1] "Akta din tunga! Orden %s är inte tillåtna här." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "och" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Om du fyller i detta fält kommer din kommentar att betraktas som spam" + +#: models.py:23 +msgid "content type" +msgstr "innehålls typ" + +#: models.py:25 +msgid "object ID" +msgstr "objektets ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "användare" + +#: models.py:55 +msgid "user's name" +msgstr "användares namn" + +#: models.py:56 +msgid "user's email address" +msgstr "användares e-postadress" + +#: models.py:57 +msgid "user's URL" +msgstr "användares URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "kommentar" + +#: models.py:62 +msgid "date/time submitted" +msgstr "skickat datum/tid" + +#: models.py:63 +msgid "IP address" +msgstr "IP-adress" + +#: models.py:64 +msgid "is public" +msgstr "är offentlig" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Avmarkeras detta kommer kommentaren inte synas på webbplatsen." + +#: models.py:67 +msgid "is removed" +msgstr "är borttaget" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Bocka för denna ruta om kommentaren är olämplig. Ett \"Denna kommentar har " +"tagits bort\"-meddelande kommer visas istället." + +#: models.py:80 +msgid "comments" +msgstr "kommentarer" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Denna kommentar postades av en autentiserad användare och därför är namnet " +"skrivskyddat." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Denna kommentar postades av en autentiserad användare och därför är e-" +"postadressen skrivskyddad." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Inlagt av %(user)s %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "flagga" + +#: models.py:180 +msgid "date" +msgstr "datum" + +#: models.py:190 +msgid "comment flag" +msgstr "kommentarsflagga" + +#: models.py:191 +msgid "comment flags" +msgstr "kommentarsflaggor" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Godkänn en kommentar" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Är du säker på att du vill offentliggöra kommentaren?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Godkänn" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Tack för ditt godkännande" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Tack för att du tog dig tid att förbättra kvaliteten på denna sites " +"diskussioner" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Tag bort en kommentar" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Är du säker på att du vill ta bort denna kommentar?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Tag bort" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Tack för att du tog bort" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Flagga denna kommentar" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Är du säker på att du vill flagga kommentaren?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flagga" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Tack för att ditt flaggande" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Skicka" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Förhandsgranska" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Tack för din kommentar" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Tack för din kommentar" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Förhandsgranska din kommentar" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Rätta till felen nedan." + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "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/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ef078b3 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.po new file mode 100644 index 0000000..1cdc976 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/sw/LC_MESSAGES/django.po @@ -0,0 +1,300 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Swahili (http://www.transifex.com/projects/p/django/language/" +"sw/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Maudhui" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Idhinisha maoni yaliyochaguliwa" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Ondoa maoni yaliyochaguliwa" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "maoni ya %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Maoni ya karibuni ya %(site_name)s." + +#: forms.py:96 +msgid "Name" +msgstr "Jina" + +#: forms.py:97 +msgid "Email address" +msgstr "Anuani ya baruapepe" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Maoni" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Chunga mdomo wako! Neno %s haliruhusiwi hapa." +msgstr[1] "Chunga mdomo wako! Maneno %s hayaruhusiwi hapa." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "na" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" +"Ikiwa utaingiza chochote katika uga huu maoni yako yatachukuliwa kama taka" + +#: models.py:23 +msgid "content type" +msgstr "aina ya maudhui" + +#: models.py:25 +msgid "object ID" +msgstr "ID ya kitu" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "mtumiaji" + +#: models.py:55 +msgid "user's name" +msgstr "jina la mtumiaji" + +#: models.py:56 +msgid "user's email address" +msgstr "anuani ya baruapepe ya mtumiaji" + +#: models.py:57 +msgid "user's URL" +msgstr "URL ya mtumiaji" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "maoni" + +#: models.py:62 +msgid "date/time submitted" +msgstr "tarehe/muda yalipotolewa" + +#: models.py:63 +msgid "IP address" +msgstr "anuani ya IP" + +#: models.py:64 +msgid "is public" +msgstr "kwa umma" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" +"Toa tiki katika kisanduku hiki na maoni yako yatatolewa kikamilifu kutoka " +"tovuti hii." + +#: models.py:67 +msgid "is removed" +msgstr "yameondolewa" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "maoni" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Maoni haya yametumwa na mtumiaji aliyethibitishwa na hivyo jina ni la kusoma " +"tu." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Maoni haya yametumwa na mtumiaji aliyethibitishwa na hivyo anuani ya " +"baruapepe ni ya kusoma tu." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Yametumwa na %(user)s %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "tarehe" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Kweli toa maoni haya kwa umma?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Pitisha" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Ahsante kwa kupitisha" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Asante kwa kutumia muda ili kuboresha ubora wa mjadala katika tovuti yetu" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Ondoa maoni" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Kweli, ondoa maoni haya?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Ondoa" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Ahsante kwa kuondoa" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Tuma" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Hakikisha" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Ahsante kwa kutoa maoni" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Ahsante kwa maoni yako" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Hakikisha maoni haya" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Tafadhali sahihisha makosa yafuatayo" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: 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/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..7a51ad9 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.po new file mode 100644 index 0000000..2e216e5 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ta/LC_MESSAGES/django.po @@ -0,0 +1,295 @@ +# 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-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Tamil (http://www.transifex.com/projects/p/django/language/" +"ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "வார்த்தைகளை அளன்து பேசுங்கள்! %s என்ற வார்த்தை இங்கு அனுமதி இல்லை" +msgstr[1] "வார்த்தைகளை அளந்து பேசுங்கள்! %s என்ற வார்த்தைகள் இங்கு அனுமதி இல்லை" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "மற்றும்" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "பொருளடக்க வகை" + +#: models.py:25 +msgid "object ID" +msgstr "அடையாளம்" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "பயனர்" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "குறிப்பு" + +#: models.py:62 +msgid "date/time submitted" +msgstr "தேதி/நேரம் சமர்ப்பிக்கப்பட்டுள்ளது" + +#: models.py:63 +msgid "IP address" +msgstr "IP விலாசம்" + +#: models.py:64 +msgid "is public" +msgstr "பொதுவானது" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "நீக்கபட்டது" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"குறிப்பு சரியாக இல்லையென்றால் இந்த பெட்டியில் குறியிடவும். இதற்கு பதிலாக \"இந்த " +"குறிப்பு நீக்கபட்டது\" காண்பிக்கபடும்." + +#: models.py:80 +msgid "comments" +msgstr "குறிப்பு" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s ஆல் %(date)s இல் அளிக்கப்பட்டது \n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4cd224c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.po new file mode 100644 index 0000000..e6c1465 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/te/LC_MESSAGES/django.po @@ -0,0 +1,290 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# bhaskar teja yerneni <prudhviy@gmail.com>, 2011 +# Jannis Leidel <jannis@leidel.info>, 2011 +# వీవెన్ వీరపనేని <veeven@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Telugu (http://www.transifex.com/projects/p/django/language/" +"te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "విషయం" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "ఎంచుకున్న వ్యాఖ్యానమునలను సంమతించుము" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "ఎంచుకున్న వ్యాఖ్యానమునలను తీసివేయుము " + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s వ్యాఖ్యలు" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "తాజా వ్యాఖ్యానములు %(site_name)s నందు కలదు " + +#: forms.py:96 +msgid "Name" +msgstr "పేరు" + +#: forms.py:97 +msgid "Email address" +msgstr "ఈమెయిలు చిరునామా" + +#: forms.py:98 +msgid "URL" +msgstr "యు ఆర్ యల్ " + +#: forms.py:99 +msgid "Comment" +msgstr "వ్యాఖ్య" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "సరిచూసుకోండి! %s పదము ఇక్కడ సరియినది కాదు " +msgstr[1] "సరిచూసుకోండి! %s పదములు ఇక్కడ సరియినది కాదు " + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "మరియు" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "ఈ క్షేత్రములో ఏదయినా వ్యాఖ్య రాసినట్లయితే అది అసంధర్బ వ్యాఖ్య గా పరిగనించబడుతుంది " + +#: models.py:23 +msgid "content type" +msgstr "సూచన రకం" + +#: models.py:25 +msgid "object ID" +msgstr "వస్తువు ఐడి" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "వాడుకరి" + +#: models.py:55 +msgid "user's name" +msgstr "వాడుకరి పేరు" + +#: models.py:56 +msgid "user's email address" +msgstr "వాడుకరి ఈమెయిలు చిరునామా" + +#: models.py:57 +msgid "user's URL" +msgstr "వాడుకరి URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "వ్యాఖ్య" + +#: models.py:62 +msgid "date/time submitted" +msgstr "సమర్పించిన తేదీ/సమయం" + +#: models.py:63 +msgid "IP address" +msgstr "ఐపీ చిరునామా" + +#: models.py:64 +msgid "is public" +msgstr "బహిరంగమయినది" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "తీసివేయబడినది" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr " ఈ వ్యాఖ్యానము సరిగ్గా లేదని తోచినచో ఈ డబ్బా ని చెక్ చేయండి " + +#: models.py:80 +msgid "comments" +msgstr "వ్యాఖ్యలు" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "తేదీ" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "నిరాటంకమైన వ్యాఖ్యానము" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "ఖచితముగా ఈ వ్యాఖ్యను జాతియము చేయమంటారా?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "అనుమతించు " + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "అనుమతించినందుకు ధన్యవాదములు " + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "వ్యాఖ్యను తొలగించుము " + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "ఖచితముగా ఈ వ్యాఖ్యను తొలగించవలసినదేనా? " + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "తొలగించు" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "తొలగించినందుకు ధన్యవాదములు " + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "సమర్పణ" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "ముందస్తు వీక్షణం" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "వ్యాఖ్యానిచినందుకు ధన్యవాదములు " + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "వ్యాఖ్యానిచినందుకు ధన్యవాదములు " + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "వ్యాఖ్యను ముందస్తు గా వీక్షిపుము " + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "దయచేసి క్రింద వున్న వ్యాఖ్యలను సరిచేసుకోండి " + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "మీ వ్యాఖ్యని టపాచేయండి" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "లేదా మార్పులు చేయండి" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..3394dfb --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.po new file mode 100644 index 0000000..3605a61 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/th/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Kowit Charoenratchatabhan <kowit.s.c@gmail.com>, 2012 +# Suteepat Damrongyingsupab <tianissimo@hotmail.com>, 2012 +# Vichai Vongvorakul <vongvichai@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Thai (http://www.transifex.com/projects/p/django/language/" +"th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "เนื้อหา" + +#: admin.py:28 +msgid "Metadata" +msgstr "Metadata" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "แจ้งเตือนความคิดเห็นที่เลือก" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "อนุมัติความคิดเห็นที่เลือกไว้" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "ลบความคิดเห็นที่เลือกไว้" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "ความเห็นของ %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "ความเห็นล่าสุดเมื่อ %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "ชื่อ" + +#: forms.py:97 +msgid "Email address" +msgstr "อีเมล" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "ข้อคิดเห็น" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "ระวังนะ ไม่สามารถใช้คำว่า %s ที่นี่ได้" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "และ" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "ถ้าคุณใส่ข้อมูลใดๆ ก็ตามในส่วนนี้ มันจะกลายเป็นสแปม" + +#: models.py:23 +msgid "content type" +msgstr "content type" + +#: models.py:25 +msgid "object ID" +msgstr "อ็อบเจ็กต์ไอดี" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "ผู้ใช้" + +#: models.py:55 +msgid "user's name" +msgstr "ชื่อของผู้ใช้" + +#: models.py:56 +msgid "user's email address" +msgstr "อีเมลของผู้ใช้" + +#: models.py:57 +msgid "user's URL" +msgstr "URL ของผู้ใช้" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "ข้อคิดเห็น" + +#: models.py:62 +msgid "date/time submitted" +msgstr "วันและเวลาที่ส่งข้อมูล" + +#: models.py:63 +msgid "IP address" +msgstr "หมายเลขไอพี" + +#: models.py:64 +msgid "is public" +msgstr "สาธารณะ" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "เลือกออกเพื่อที่จะทำให้ข้อคิดเห็นนั้นหายไปจากเว็บไซต์" + +#: models.py:67 +msgid "is removed" +msgstr "ถอดออกแล้ว" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"เลือกเมื่อเห็นว่าข้อคิดเห็นไหนไม่เหมาะสม เมื่อข้อคิดเห็นนี้ได้ถูกลบแล้ว ข้อมูลอื่นจะถูกแสดงขึ้นแทน" + +#: models.py:80 +msgid "comments" +msgstr "ความคิดเห็น" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "ข้อคิดเห็นนี้ได้ถูกเขียนไว้โดยผู้ใช้ที่สามารถเชื่อถือได้ จะถูกอ่านได้เพียงอย่างเดียว" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "ข้อคิดเห็นนี้ถูกเขียนไว้โดยผู้ใช้ที่สามารถเชื่อถือได้ ดังนั้นอีเมลนั้นจะถูกอ่านเท่านั้น" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"โพสต์โดย %(user)s ที่ %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "ธง" + +#: models.py:180 +msgid "date" +msgstr "วันที่" + +#: models.py:190 +msgid "comment flag" +msgstr "ธงแสดงความเห็น" + +#: models.py:191 +msgid "comment flags" +msgstr "ปักธงแสดงความคิดเห็น" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "อนุมัติความคิดเห็น" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "ยืนยันที่จะให้ประชาชนแสดงความคิดเห็นนี้ไหม?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "อนุมัติ" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "ขอบคุณสำหรับการอนุมัติ" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "ขอบคุณที่สละเวลาเพื่อปรับปรุงคุณภาพของการสนทนาในเว็บไซต์ของเรา" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "ลบออกความคิดเห็น" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "ยืนยันที่จะลบความคิดเห็นนี้?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "ลบ" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "ขอบคุณสำหรับการลบ" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "ปักธงความคิดเห็นนี้" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "ยืยยันที่จะปักธงความคิดเห็นนี้นี้?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "ปักธง" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "ขอบคุณสำหรับการปักธง" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "โพสต์" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "ดูตัวอย่าง" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "ขอบคุณสำหรับการให้ความคิดเห็น" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "แสดงตัวอย่างความคิดเห็นของคุณ" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "กรุณาแก้ไขข้อผิดพลาดด้านล่าง" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "โพสต์ความคิดเห็นของคุณ" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "หรือทำการเปลี่ยนแปลง" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..3139455 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.po new file mode 100644 index 0000000..bc3e384 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/tr/LC_MESSAGES/django.po @@ -0,0 +1,303 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Ahmet Emre Aladağ <emre.aladag@isik.edu.tr>, 2013 +# cihad <cihadgundogdu@gmail.com>, 2013 +# Murat Sahin <martinamca@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-10-23 16:49+0000\n" +"Last-Translator: Ahmet Emre Aladağ <emre.aladag@isik.edu.tr>\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/django/language/" +"tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "İçerik" + +#: admin.py:28 +msgid "Metadata" +msgstr "Başlık verisi" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d yorum başarıyla işaretlendi" +msgstr[1] "%d yorum başarıyla işaretlendi" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Seçili yorumları işaretle" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d yorum başarıyla onaylandı" +msgstr[1] "%d yorum başarıyla onaylandı" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Seçili yorumları onayla" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d yorum başarıyla kaldırıldı" +msgstr[1] "%d yorum başarıyla kaldırıldı" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Seçili yorumları kaldır" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s yorumları" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s üzerindeki son yorumlar" + +#: forms.py:96 +msgid "Name" +msgstr "İsim" + +#: forms.py:97 +msgid "Email address" +msgstr "Eposta 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] "Ağzınıza hakim olun! %s kelimeleri burada kullanılamaz." +msgstr[1] "Ağzınıza hakim olun! %s kelimeleri burada kullanılamaz." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "ve" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Bu alana herhangibir şey yazarsanız yorumunuz önemsiz olarak algılanır" + +#: models.py:23 +msgid "content type" +msgstr "içerik tipi" + +#: models.py:25 +msgid "object ID" +msgstr "nesne ID" + +#: 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 eposta adresi" + +#: models.py:57 +msgid "user's URL" +msgstr "kullanıcının URL'i" + +#: 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 "herkese açık" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Yorumu siteden kolayca gizlemek 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 "" +"Bu yorum uygunsuz ise bu kutuyu işaretleyin. Yorum yerine \"Bu yorum " +"kaldırıldı\" mesajı gösterilecektir." + +#: models.py:80 +msgid "comments" +msgstr "yorumlar" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Bu yorum, kayıtlı bir kullanıcı tarafından yapıldığı için ismi salt-" +"okunurdur." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Bu yorum, kayıtlı bir kullanıcı tarafından yapıldığı için eposta adresi salt-" +"okunurdur." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"%(user)s tarafından %(date)s tarihinde gönderildi\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "işaret" + +#: models.py:180 +msgid "date" +msgstr "tarih" + +#: models.py:190 +msgid "comment flag" +msgstr "yorum işareti" + +#: models.py:191 +msgid "comment flags" +msgstr "yorum işaretleri" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Bir yorumu onayla" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Bu yorumu herkese açık yapalım 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 "" +"Sitemizin tartışma kalitesine katkıda bulunmaya vakit ayırdığınız için " +"teşekkürler" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Bir yorum kaldır" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Gerçekten bu yorumu kaldıralım 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şaretle" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Gerçekten bu yorumu işaretleyelim mi?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Bayrak" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "İşaretlediğiniz için teşekkürler" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Gönderi" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Önizleme" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Yorum yaptığınız için teşekkürler" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Yorumunuz için teşekkürler" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Yorumunuzun önizlemesini görün" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Lütfen aşağıdaki hatayı düzeltin" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Lütfen aşağıdaki hataları düzeltin" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Yorumunuzu gönderin" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "ya da değişiklik yapı" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4089786 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.po new file mode 100644 index 0000000..6c89541 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/tt/LC_MESSAGES/django.po @@ -0,0 +1,283 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-04-24 19:38+0000\n" +"Last-Translator: Django team\n" +"Language-Team: Tatar (http://www.transifex.com/projects/p/django/language/" +"tt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..fd6a36d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.po new file mode 100644 index 0000000..99fb25f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/uk/LC_MESSAGES/django.po @@ -0,0 +1,308 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Sergey Lysach <sergikoff88@gmail.com>, 2011 +# Sergiy Kuzmenko <s.kuzmenko@gmail.com>, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 08:39+0000\n" +"Last-Translator: claudep <claude@2xlibre.net>\n" +"Language-Team: Ukrainian (http://www.transifex.com/projects/p/django/" +"language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: admin.py:25 +msgid "Content" +msgstr "Зміст" + +#: admin.py:28 +msgid "Metadata" +msgstr "Мета-дані" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Позначити відзначені коментарі" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Апробувати відзначені коментарі" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Видалити відзначені коментарі" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "коментарі сайту %(site_name)s" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Останні коментарі на сайті %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Ім'я" + +#: forms.py:97 +msgid "Email address" +msgstr "E-mail адреса" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Коментар" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Слідкуйте за своїм язиком! Тут не дозволено вживати слово %s. " +msgstr[1] "Слідкуйте за своїм язиком! Тут не дозволено вживати слова %s. " +msgstr[2] "Слідкуйте за своїм язиком! Тут не дозволено вживати слова %s. " + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "та" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Якщо ви введете щось в це поле, ваш коментар буде вважатися спамом" + +#: models.py:23 +msgid "content type" +msgstr "content type" + +#: models.py:25 +msgid "object ID" +msgstr "ID об'єкту" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "користувач" + +#: models.py:55 +msgid "user's name" +msgstr "ім'я користувача" + +#: models.py:56 +msgid "user's email address" +msgstr "e-mail адреса користувача" + +#: models.py:57 +msgid "user's URL" +msgstr "URL користувачів" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "коментар" + +#: models.py:62 +msgid "date/time submitted" +msgstr "дата/час додавання" + +#: models.py:63 +msgid "IP address" +msgstr "IP адреса" + +#: models.py:64 +msgid "is public" +msgstr "публічний" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Видаліть галочку звідси, щоб коментар зник з сайту." + +#: models.py:67 +msgid "is removed" +msgstr "видалений" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Поставте тут галочку, якщо коментар неприйнятний. Повідомлення \"Цей " +"коментар було видалено\" буде відображено замість цього коментаря." + +#: models.py:80 +msgid "comments" +msgstr "коментарі" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"Цей коментар був розміщений зареєстрованим користувачем і тому ім'я не може " +"бути відредаговано." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"Цей коментар був розміщений зареєстрованим користувачем і тому email не може " +"бути відредагований." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Додав %(user)s %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "позначка" + +#: models.py:180 +msgid "date" +msgstr "число" + +#: models.py:190 +msgid "comment flag" +msgstr "позначка коментаря" + +#: models.py:191 +msgid "comment flags" +msgstr "позначки коментаря" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "Затвердіть коментар" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "Дійсно, зробити цей коментар публічним?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "Затвердити" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "Дякуємо за затвердження." + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" +"Дякуємо за те, що ви приділили увагу покращенню якості дискусії на нашому " +"сайті" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "Видалити коментар" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "Дійсно, видалити цей коментар?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "Видалити" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "Дякуємо за видалення." + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "Відмітити цей коментар?" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Дійсно відмітити цей коментар?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Відмітити" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Дякуємо за користування нашим сайтом." + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "Надіслати" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "Попередній перегляд" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "Дякуємо за коментування" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "Дякуємо за ваш коментар" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "Попередній перегляд коментаря" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "Будь ласка, виправте помилки зазначені нижче" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Опублікувати коментар" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "або зробити зміни" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..4ce391c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.po new file mode 100644 index 0000000..76cc7bd --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/ur/LC_MESSAGES/django.po @@ -0,0 +1,287 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-04-24 19:38+0000\n" +"Last-Translator: Django team\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/django/language/" +"ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin.py:25 +msgid "Content" +msgstr "" + +#: admin.py:28 +msgid "Metadata" +msgstr "" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "" +msgstr[1] "" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "" + +#: forms.py:96 +msgid "Name" +msgstr "" + +#: forms.py:97 +msgid "Email address" +msgstr "" + +#: forms.py:98 +msgid "URL" +msgstr "" + +#: forms.py:99 +msgid "Comment" +msgstr "" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "" +msgstr[1] "" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "" + +#: models.py:23 +msgid "content type" +msgstr "" + +#: models.py:25 +msgid "object ID" +msgstr "" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "" + +#: models.py:55 +msgid "user's name" +msgstr "" + +#: models.py:56 +msgid "user's email address" +msgstr "" + +#: models.py:57 +msgid "user's URL" +msgstr "" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "" + +#: models.py:62 +msgid "date/time submitted" +msgstr "" + +#: models.py:63 +msgid "IP address" +msgstr "" + +#: models.py:64 +msgid "is public" +msgstr "" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "" + +#: models.py:67 +msgid "is removed" +msgstr "" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" + +#: models.py:80 +msgid "comments" +msgstr "" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" + +#: models.py:179 +msgid "flag" +msgstr "" + +#: models.py:180 +msgid "date" +msgstr "" + +#: models.py:190 +msgid "comment flag" +msgstr "" + +#: models.py:191 +msgid "comment flags" +msgstr "" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..64b2cf1 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.po new file mode 100644 index 0000000..0546b32 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/vi/LC_MESSAGES/django.po @@ -0,0 +1,298 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Lê Thanh <lethanhx2k@gmail.com>, 2013 +# Tran <hongdiepkien@gmail.com>, 2011 +# Tran Van <vantxm@yahoo.co.uk>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-26 17:05+0000\n" +"Last-Translator: Tran Van <vantxm@yahoo.co.uk>\n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/django/" +"language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "Nội dung" + +#: admin.py:28 +msgid "Metadata" +msgstr "Siêu dữ liệu" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d nhận xét được đặt cờ thành công" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "Đặt cờ những nhận xét được chọn" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d bình luận đã được duyệt" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "Phê duyệt những nhận xét đã chọn" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d bình luận đã được xoá" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "Loại bỏ nhận xét được chọn" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "nhận xét %(site_name)s " + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "Nhận xét cuối cùng trên %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "Tên" + +#: forms.py:97 +msgid "Email address" +msgstr "Địa chỉ email" + +#: forms.py:98 +msgid "URL" +msgstr "Đường dẫn URL" + +#: forms.py:99 +msgid "Comment" +msgstr "Bình luận" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Hãy cẩn thận! Cụm từ %s không được sử dụng ở đây." + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "và" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "Bất kì bình luận nào bạn nhập vào đây cũng sẽ bị coi là thư rác" + +#: models.py:23 +msgid "content type" +msgstr "kiểu nội dung" + +#: models.py:25 +msgid "object ID" +msgstr "object ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "Người dùng" + +#: models.py:55 +msgid "user's name" +msgstr "Tên người sử dụng" + +#: models.py:56 +msgid "user's email address" +msgstr "Địa chỉ email của người sử dụng" + +#: models.py:57 +msgid "user's URL" +msgstr "Đường dẫn URL của người sử dụng" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "Bình luận" + +#: models.py:62 +msgid "date/time submitted" +msgstr "Ngày/giờ đã đăng kí" + +#: models.py:63 +msgid "IP address" +msgstr "Địa chỉ IP" + +#: models.py:64 +msgid "is public" +msgstr "Được phổ biến" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "Không đánh dấu vào hộp này để gỡ bình luận ra khỏi Site" + +#: models.py:67 +msgid "is removed" +msgstr "Bị xóa" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"Đánh dấu vào hộp này nếu bình luận không thích hợp. Tin nhắn \"Bình luận đã " +"bị xóa\" sẽ thay thế vào đó." + +#: models.py:80 +msgid "comments" +msgstr "những nhận xét" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "" +"nhận xét này đã được đăng bởi một người dùng xác thực và do đó đặt tên cho " +"là chỉ đọc." + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "" +"nhận xét này đã được đăng bởi một người dùng xác thực và do đó email là chỉ " +"đọc." + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"Gửi bởi %(user)s vào %(date)s \n" +"%(comment)s\n" +"http://%(domain)s%(url)s " + +#: models.py:179 +msgid "flag" +msgstr "cờ" + +#: 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 "nhận xét được đặt cờ" + +#: 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 "Bạn thực sự muốn hiện nhận xét này cho mọi người xem?" + +#: 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 "Dựng cờ nhận xét này" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "Bạn thực sự muốn đặt cờ nhận xét này?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "Flag" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "Cảm ơn đã đặt cờ" + +#: 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" +msgstr "Hãy sửa các lỗi dưới đây" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "Hãy sửa các lỗi dưới đây" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "Đăng bình luận của bạn" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "hoặc thay đổi" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..a040a5e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po new file mode 100644 index 0000000..df4a14c --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_CN/LC_MESSAGES/django.po @@ -0,0 +1,293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# Lele Long <schemacs@gmail.com>, 2011 +# XiangYu <bupt.aswmtjdsj@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-05-30 06:09+0000\n" +"Last-Translator: XiangYu <bupt.aswmtjdsj@gmail.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/django/" +"language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "内容" + +#: admin.py:28 +msgid "Metadata" +msgstr "元数据" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "%d 个评论已被成功标记" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "标记选中的评论" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "%d 个评论已被成功批准" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "批准选中的评论" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "%d 个评论已被成功移除" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "移除选中的评论" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s的评论" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "%(site_name)s的最新评论" + +#: forms.py:96 +msgid "Name" +msgstr "名称" + +#: forms.py:97 +msgid "Email address" +msgstr "Email 地址" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "评论" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "注意言论!%s 不允许在这里出现。" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "和" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "如果你在该字段中输入任何内容,那么你的评论就会被视为垃圾评论。" + +#: models.py:23 +msgid "content type" +msgstr "内容类型" + +#: models.py:25 +msgid "object ID" +msgstr "对象ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "用户" + +#: models.py:55 +msgid "user's name" +msgstr "用户名" + +#: models.py:56 +msgid "user's email address" +msgstr "用户的 email 地址" + +#: models.py:57 +msgid "user's URL" +msgstr "用户的网址" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "评论" + +#: models.py:62 +msgid "date/time submitted" +msgstr "提交日期/时间" + +#: models.py:63 +msgid "IP address" +msgstr "IP 地址" + +#: models.py:64 +msgid "is public" +msgstr "公开" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "取消选中此复选框,可隐藏该条评论。" + +#: models.py:67 +msgid "is removed" +msgstr "已删除" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "" +"若评论内容不妥,则选中这个复选框。该评论将被一条\"此评论已经被删除\"的消息所" +"替换。" + +#: models.py:80 +msgid "comments" +msgstr "评论" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "此评论由一位验证用户发表,因此该用户名是只读的。" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "此评论由一位验证用户发表,因此该 email 是只读的。" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"由 %(user)s 在 %(date)s 张贴\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "标记" + +#: models.py:180 +msgid "date" +msgstr "标记时间" + +#: models.py:190 +msgid "comment flag" +msgstr "评论标记" + +#: models.py:191 +msgid "comment flags" +msgstr "评论标记" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "批准评论" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "真的要公开该评论?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "批准" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "感谢批准" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "感谢花费时间改善本站点的讨论质量。" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "删除评论" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "真的要删除该评论?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "删除" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "感谢删除" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "标记该评论" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "确定要标记该评论?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "标记" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "感谢标记" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "发表" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "预览" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "感谢评论" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "感谢您的评论" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "预览您的评论" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "请修正如下错误" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "请改正下列错误" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "发表您的评论" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "或进行修改" diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo Binary files differnew file mode 100644 index 0000000..ce0f6a4 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.mo diff --git a/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po new file mode 100644 index 0000000..8dceeb0 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/locale/zh_TW/LC_MESSAGES/django.po @@ -0,0 +1,291 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel <jannis@leidel.info>, 2011 +# tcc <tcchou@tcchou.org>, 2011 +# yyc1217 <yyc1217@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-05-25 14:19+0200\n" +"PO-Revision-Date: 2013-07-31 01:29+0000\n" +"Last-Translator: yyc1217 <yyc1217@gmail.com>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/django/" +"language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:25 +msgid "Content" +msgstr "內容" + +#: admin.py:28 +msgid "Metadata" +msgstr "元資料" + +#: admin.py:55 +#, python-format +msgid "%d comment was successfully flagged" +msgid_plural "%d comments were successfully flagged" +msgstr[0] "成功地標記了 %d 個評論。" + +#: admin.py:57 +msgid "Flag selected comments" +msgstr "標記已選評論" + +#: admin.py:61 +#, python-format +msgid "%d comment was successfully approved" +msgid_plural "%d comments were successfully approved" +msgstr[0] "成功地核可了 %d 個評論。" + +#: admin.py:63 +msgid "Approve selected comments" +msgstr "核可已選評論" + +#: admin.py:67 +#, python-format +msgid "%d comment was successfully removed" +msgid_plural "%d comments were successfully removed" +msgstr[0] "成功地刪除了 %d 個評論。" + +#: admin.py:69 +msgid "Remove selected comments" +msgstr "移除已選評論" + +#: feeds.py:14 +#, python-format +msgid "%(site_name)s comments" +msgstr "%(site_name)s 評論" + +#: feeds.py:20 +#, python-format +msgid "Latest comments on %(site_name)s" +msgstr "最新評論在 %(site_name)s" + +#: forms.py:96 +msgid "Name" +msgstr "名稱" + +#: forms.py:97 +msgid "Email address" +msgstr "電子郵件地址" + +#: forms.py:98 +msgid "URL" +msgstr "URL" + +#: forms.py:99 +msgid "Comment" +msgstr "評論" + +#: forms.py:177 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "看住你的嘴!此處不允許 %s 這樣的字眼。" + +#: forms.py:181 templates/comments/preview.html:16 +msgid "and" +msgstr "和" + +#: forms.py:186 +msgid "" +"If you enter anything in this field your comment will be treated as spam" +msgstr "如果你在這一個欄位輸入任何內容,會被視為是垃圾評論" + +#: models.py:23 +msgid "content type" +msgstr "內容類型" + +#: models.py:25 +msgid "object ID" +msgstr "物件 ID" + +#: models.py:53 models.py:177 +msgid "user" +msgstr "使用者" + +#: models.py:55 +msgid "user's name" +msgstr "使用者名稱" + +#: models.py:56 +msgid "user's email address" +msgstr "使用者電子郵件" + +#: models.py:57 +msgid "user's URL" +msgstr "使用者 URL" + +#: models.py:59 models.py:79 models.py:178 +msgid "comment" +msgstr "評論" + +#: models.py:62 +msgid "date/time submitted" +msgstr "日期/時間已送出" + +#: models.py:63 +msgid "IP address" +msgstr "IP 位址" + +#: models.py:64 +msgid "is public" +msgstr "公開" + +#: models.py:65 +msgid "" +"Uncheck this box to make the comment effectively disappear from the site." +msgstr "取消這個選項可讓評論立刻在網站消失。" + +#: models.py:67 +msgid "is removed" +msgstr "已刪除" + +#: models.py:68 +msgid "" +"Check this box if the comment is inappropriate. A \"This comment has been " +"removed\" message will be displayed instead." +msgstr "如果此評論不恰當則選取這個檢查框,其將以 \"此評論已被移除\" 訊息取代。" + +#: models.py:80 +msgid "comments" +msgstr "評論" + +#: models.py:124 +msgid "" +"This comment was posted by an authenticated user and thus the name is read-" +"only." +msgstr "這個評論由認證的使用者張貼, 因此名稱是唯讀的。" + +#: models.py:134 +msgid "" +"This comment was posted by an authenticated user and thus the email is read-" +"only." +msgstr "這個評論由認證的使用者張貼, 因此名稱是唯讀的。" + +#: models.py:160 +#, python-format +msgid "" +"Posted by %(user)s at %(date)s\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" +msgstr "" +"由 %(user)s 在 %(date)s 張貼\n" +"\n" +"%(comment)s\n" +"\n" +"http://%(domain)s%(url)s" + +#: models.py:179 +msgid "flag" +msgstr "標記" + +#: models.py:180 +msgid "date" +msgstr "日期" + +#: models.py:190 +msgid "comment flag" +msgstr "標記評論" + +#: models.py:191 +msgid "comment flags" +msgstr "評論標記" + +#: templates/comments/approve.html:4 +msgid "Approve a comment" +msgstr "核可評論" + +#: templates/comments/approve.html:7 +msgid "Really make this comment public?" +msgstr "真的要讓這個評論公開?" + +#: templates/comments/approve.html:12 +msgid "Approve" +msgstr "核可" + +#: templates/comments/approved.html:4 +msgid "Thanks for approving" +msgstr "感謝進行審核" + +#: templates/comments/approved.html:7 templates/comments/deleted.html:7 +#: templates/comments/flagged.html:7 +msgid "" +"Thanks for taking the time to improve the quality of discussion on our site" +msgstr "感謝花費時間增進網站討論的品質" + +#: templates/comments/delete.html:4 +msgid "Remove a comment" +msgstr "移除一個評論" + +#: templates/comments/delete.html:7 +msgid "Really remove this comment?" +msgstr "真的要移除這個評論?" + +#: templates/comments/delete.html:12 +msgid "Remove" +msgstr "移除" + +#: templates/comments/deleted.html:4 +msgid "Thanks for removing" +msgstr "感謝移除" + +#: templates/comments/flag.html:4 +msgid "Flag this comment" +msgstr "標記這個評論" + +#: templates/comments/flag.html:7 +msgid "Really flag this comment?" +msgstr "真的要標記這個評論?" + +#: templates/comments/flag.html:12 +msgid "Flag" +msgstr "標記" + +#: templates/comments/flagged.html:4 +msgid "Thanks for flagging" +msgstr "感謝標記" + +#: templates/comments/form.html:17 templates/comments/preview.html:32 +msgid "Post" +msgstr "張貼" + +#: templates/comments/form.html:18 templates/comments/preview.html:33 +msgid "Preview" +msgstr "預覽" + +#: templates/comments/posted.html:4 +msgid "Thanks for commenting" +msgstr "感謝寫下評論" + +#: templates/comments/posted.html:7 +msgid "Thank you for your comment" +msgstr "謝謝你的評論" + +#: templates/comments/preview.html:4 templates/comments/preview.html.py:13 +msgid "Preview your comment" +msgstr "預覽你的評論" + +#: templates/comments/preview.html:11 +msgid "Please correct the error below" +msgstr "請修正下面的錯誤" + +#: templates/comments/preview.html:11 +msgid "Please correct the errors below" +msgstr "請修正下面的錯誤" + +#: templates/comments/preview.html:16 +msgid "Post your comment" +msgstr "張貼你的評論" + +#: templates/comments/preview.html:16 +msgid "or make changes" +msgstr "或進行變更" diff --git a/lib/python2.7/site-packages/django/contrib/comments/managers.py b/lib/python2.7/site-packages/django/contrib/comments/managers.py new file mode 100644 index 0000000..6562004 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/models.py b/lib/python2.7/site-packages/django/contrib/comments/models.py new file mode 100644 index 0000000..bc4d932 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/models.py @@ -0,0 +1,200 @@ +from django.conf import settings +from django.contrib.comments.managers import CommentManager +from django.contrib.contenttypes import generic +from django.contrib.contenttypes.models import ContentType +from django.contrib.sites.models import Site +from django.core import urlresolvers +from django.db import models +from django.utils.translation import ugettext_lazy as _ +from django.utils import timezone +from django.utils.encoding import python_2_unicode_compatible + +COMMENT_MAX_LENGTH = getattr(settings, 'COMMENT_MAX_LENGTH', 3000) + + +class BaseCommentAbstractModel(models.Model): + """ + An abstract base class that any custom comment models probably should + subclass. + """ + + # Content-object field + content_type = models.ForeignKey(ContentType, + verbose_name=_('content type'), + related_name="content_type_set_for_%(class)s") + object_pk = models.TextField(_('object ID')) + content_object = generic.GenericForeignKey(ct_field="content_type", fk_field="object_pk") + + # Metadata about the comment + site = models.ForeignKey(Site) + + class Meta: + abstract = True + + def get_content_object_url(self): + """ + Get a URL suitable for redirecting to the content object. + """ + return urlresolvers.reverse( + "comments-url-redirect", + args=(self.content_type_id, self.object_pk) + ) + + +@python_2_unicode_compatible +class Comment(BaseCommentAbstractModel): + """ + A user comment about some object. + """ + + # Who posted this comment? If ``user`` is set then it was an authenticated + # user; otherwise at least user_name should have been set and the comment + # was posted by a non-authenticated user. + user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('user'), + blank=True, null=True, related_name="%(class)s_comments") + user_name = models.CharField(_("user's name"), max_length=50, blank=True) + user_email = models.EmailField(_("user's email address"), blank=True) + user_url = models.URLField(_("user's URL"), blank=True) + + comment = models.TextField(_('comment'), max_length=COMMENT_MAX_LENGTH) + + # Metadata about the comment + submit_date = models.DateTimeField(_('date/time submitted'), default=None) + ip_address = models.GenericIPAddressField(_('IP address'), unpack_ipv4=True, blank=True, null=True) + is_public = models.BooleanField(_('is public'), default=True, + help_text=_('Uncheck this box to make the comment effectively ' \ + 'disappear from the site.')) + is_removed = models.BooleanField(_('is removed'), default=False, + help_text=_('Check this box if the comment is inappropriate. ' \ + 'A "This comment has been removed" message will ' \ + 'be displayed instead.')) + + # Manager + objects = CommentManager() + + class Meta: + db_table = "django_comments" + ordering = ('submit_date',) + permissions = [("can_moderate", "Can moderate comments")] + verbose_name = _('comment') + verbose_name_plural = _('comments') + + def __str__(self): + return "%s: %s..." % (self.name, self.comment[:50]) + + def save(self, *args, **kwargs): + if self.submit_date is None: + self.submit_date = timezone.now() + super(Comment, self).save(*args, **kwargs) + + def _get_userinfo(self): + """ + Get a dictionary that pulls together information about the poster + safely for both authenticated and non-authenticated comments. + + This dict will have ``name``, ``email``, and ``url`` fields. + """ + if not hasattr(self, "_userinfo"): + userinfo = { + "name": self.user_name, + "email": self.user_email, + "url": self.user_url + } + if self.user_id: + u = self.user + if u.email: + userinfo["email"] = u.email + + # If the user has a full name, use that for the user name. + # However, a given user_name overrides the raw user.username, + # so only use that if this comment has no associated name. + if u.get_full_name(): + userinfo["name"] = self.user.get_full_name() + elif not self.user_name: + userinfo["name"] = u.get_username() + self._userinfo = userinfo + return self._userinfo + userinfo = property(_get_userinfo, doc=_get_userinfo.__doc__) + + def _get_name(self): + return self.userinfo["name"] + + def _set_name(self, val): + if self.user_id: + raise AttributeError(_("This comment was posted by an authenticated "\ + "user and thus the name is read-only.")) + self.user_name = val + name = property(_get_name, _set_name, doc="The name of the user who posted this comment") + + def _get_email(self): + return self.userinfo["email"] + + def _set_email(self, val): + if self.user_id: + raise AttributeError(_("This comment was posted by an authenticated "\ + "user and thus the email is read-only.")) + self.user_email = val + email = property(_get_email, _set_email, doc="The email of the user who posted this comment") + + def _get_url(self): + return self.userinfo["url"] + + def _set_url(self, val): + self.user_url = val + url = property(_get_url, _set_url, doc="The URL given by the user who posted this comment") + + def get_absolute_url(self, anchor_pattern="#c%(id)s"): + return self.get_content_object_url() + (anchor_pattern % self.__dict__) + + def get_as_text(self): + """ + Return this comment as plain text. Useful for emails. + """ + d = { + 'user': self.user or self.name, + 'date': self.submit_date, + 'comment': self.comment, + 'domain': self.site.domain, + 'url': self.get_absolute_url() + } + return _('Posted by %(user)s at %(date)s\n\n%(comment)s\n\nhttp://%(domain)s%(url)s') % d + + +@python_2_unicode_compatible +class CommentFlag(models.Model): + """ + Records a flag on a comment. This is intentionally flexible; right now, a + flag could be: + + * A "removal suggestion" -- where a user suggests a comment for (potential) removal. + + * A "moderator deletion" -- used when a moderator deletes a comment. + + You can (ab)use this model to add other flags, if needed. However, by + design users are only allowed to flag a comment with a given flag once; + if you want rating look elsewhere. + """ + user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('user'), related_name="comment_flags") + comment = models.ForeignKey(Comment, verbose_name=_('comment'), related_name="flags") + flag = models.CharField(_('flag'), max_length=30, db_index=True) + flag_date = models.DateTimeField(_('date'), default=None) + + # Constants for flag types + SUGGEST_REMOVAL = "removal suggestion" + MODERATOR_DELETION = "moderator deletion" + MODERATOR_APPROVAL = "moderator approval" + + class Meta: + db_table = 'django_comment_flags' + unique_together = [('user', 'comment', 'flag')] + verbose_name = _('comment flag') + verbose_name_plural = _('comment flags') + + def __str__(self): + return "%s flag of comment ID %s by %s" % \ + (self.flag, self.comment_id, self.user.get_username()) + + def save(self, *args, **kwargs): + if self.flag_date is None: + self.flag_date = timezone.now() + super(CommentFlag, self).save(*args, **kwargs) diff --git a/lib/python2.7/site-packages/django/contrib/comments/moderation.py b/lib/python2.7/site-packages/django/contrib/comments/moderation.py new file mode 100644 index 0000000..6648aeb --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/moderation.py @@ -0,0 +1,356 @@ +""" +A generic comment-moderation system which allows configuration of +moderation options on a per-model basis. + +To use, do two things: + +1. Create or import a subclass of ``CommentModerator`` defining the + options you want. + +2. Import ``moderator`` from this module and register one or more + models, passing the models and the ``CommentModerator`` options + class you want to use. + + +Example +------- + +First, we define a simple model class which might represent entries in +a Weblog:: + + from django.db import models + + class Entry(models.Model): + title = models.CharField(maxlength=250) + body = models.TextField() + pub_date = models.DateField() + enable_comments = models.BooleanField() + +Then we create a ``CommentModerator`` subclass specifying some +moderation options:: + + from django.contrib.comments.moderation import CommentModerator, moderator + + class EntryModerator(CommentModerator): + email_notification = True + enable_field = 'enable_comments' + +And finally register it for moderation:: + + moderator.register(Entry, EntryModerator) + +This sample class would apply two moderation steps to each new +comment submitted on an Entry: + +* If the entry's ``enable_comments`` field is set to ``False``, the + comment will be rejected (immediately deleted). + +* If the comment is successfully posted, an email notification of the + comment will be sent to site staff. + +For a full list of built-in moderation options and other +configurability, see the documentation for the ``CommentModerator`` +class. + +""" + +import datetime + +from django.conf import settings +from django.core.mail import send_mail +from django.contrib.comments import signals +from django.db.models.base import ModelBase +from django.template import Context, loader +from django.contrib import comments +from django.contrib.sites.models import get_current_site +from django.utils import timezone + +class AlreadyModerated(Exception): + """ + Raised when a model which is already registered for moderation is + attempting to be registered again. + + """ + pass + +class NotModerated(Exception): + """ + Raised when a model which is not registered for moderation is + attempting to be unregistered. + + """ + pass + +class CommentModerator(object): + """ + Encapsulates comment-moderation options for a given model. + + This class is not designed to be used directly, since it doesn't + enable any of the available moderation options. Instead, subclass + it and override attributes to enable different options:: + + ``auto_close_field`` + If this is set to the name of a ``DateField`` or + ``DateTimeField`` on the model for which comments are + being moderated, new comments for objects of that model + will be disallowed (immediately deleted) when a certain + number of days have passed after the date specified in + that field. Must be used in conjunction with + ``close_after``, which specifies the number of days past + which comments should be disallowed. Default value is + ``None``. + + ``auto_moderate_field`` + Like ``auto_close_field``, but instead of outright + deleting new comments when the requisite number of days + have elapsed, it will simply set the ``is_public`` field + of new comments to ``False`` before saving them. Must be + used in conjunction with ``moderate_after``, which + specifies the number of days past which comments should be + moderated. Default value is ``None``. + + ``close_after`` + If ``auto_close_field`` is used, this must specify the + number of days past the value of the field specified by + ``auto_close_field`` after which new comments for an + object should be disallowed. Default value is ``None``. + + ``email_notification`` + If ``True``, any new comment on an object of this model + which survives moderation will generate an email to site + staff. Default value is ``False``. + + ``enable_field`` + If this is set to the name of a ``BooleanField`` on the + model for which comments are being moderated, new comments + on objects of that model will be disallowed (immediately + deleted) whenever the value of that field is ``False`` on + the object the comment would be attached to. Default value + is ``None``. + + ``moderate_after`` + If ``auto_moderate_field`` is used, this must specify the number + of days past the value of the field specified by + ``auto_moderate_field`` after which new comments for an + object should be marked non-public. Default value is + ``None``. + + Most common moderation needs can be covered by changing these + attributes, but further customization can be obtained by + subclassing and overriding the following methods. Each method will + be called with three arguments: ``comment``, which is the comment + being submitted, ``content_object``, which is the object the + comment will be attached to, and ``request``, which is the + ``HttpRequest`` in which the comment is being submitted:: + + ``allow`` + Should return ``True`` if the comment should be allowed to + post on the content object, and ``False`` otherwise (in + which case the comment will be immediately deleted). + + ``email`` + If email notification of the new comment should be sent to + site staff or moderators, this method is responsible for + sending the email. + + ``moderate`` + Should return ``True`` if the comment should be moderated + (in which case its ``is_public`` field will be set to + ``False`` before saving), and ``False`` otherwise (in + which case the ``is_public`` field will not be changed). + + Subclasses which want to introspect the model for which comments + are being moderated can do so through the attribute ``_model``, + which will be the model class. + + """ + auto_close_field = None + auto_moderate_field = None + close_after = None + email_notification = False + enable_field = None + moderate_after = None + + def __init__(self, model): + self._model = model + + def _get_delta(self, now, then): + """ + Internal helper which will return a ``datetime.timedelta`` + representing the time between ``now`` and ``then``. Assumes + ``now`` is a ``datetime.date`` or ``datetime.datetime`` later + than ``then``. + + If ``now`` and ``then`` are not of the same type due to one of + them being a ``datetime.date`` and the other being a + ``datetime.datetime``, both will be coerced to + ``datetime.date`` before calculating the delta. + + """ + if now.__class__ is not then.__class__: + now = datetime.date(now.year, now.month, now.day) + then = datetime.date(then.year, then.month, then.day) + if now < then: + raise ValueError("Cannot determine moderation rules because date field is set to a value in the future") + return now - then + + def allow(self, comment, content_object, request): + """ + Determine whether a given comment is allowed to be posted on + a given object. + + Return ``True`` if the comment should be allowed, ``False + otherwise. + + """ + if self.enable_field: + if not getattr(content_object, self.enable_field): + return False + if self.auto_close_field and self.close_after is not None: + close_after_date = getattr(content_object, self.auto_close_field) + if close_after_date is not None and self._get_delta(timezone.now(), close_after_date).days >= self.close_after: + return False + return True + + def moderate(self, comment, content_object, request): + """ + Determine whether a given comment on a given object should be + allowed to show up immediately, or should be marked non-public + and await approval. + + Return ``True`` if the comment should be moderated (marked + non-public), ``False`` otherwise. + + """ + if self.auto_moderate_field and self.moderate_after is not None: + moderate_after_date = getattr(content_object, self.auto_moderate_field) + if moderate_after_date is not None and self._get_delta(timezone.now(), moderate_after_date).days >= self.moderate_after: + return True + return False + + def email(self, comment, content_object, request): + """ + Send email notification of a new comment to site staff when email + notifications have been requested. + + """ + if not self.email_notification: + return + recipient_list = [manager_tuple[1] for manager_tuple in settings.MANAGERS] + t = loader.get_template('comments/comment_notification_email.txt') + c = Context({ 'comment': comment, + 'content_object': content_object }) + subject = '[%s] New comment posted on "%s"' % (get_current_site(request).name, + content_object) + message = t.render(c) + send_mail(subject, message, settings.DEFAULT_FROM_EMAIL, recipient_list, fail_silently=True) + +class Moderator(object): + """ + Handles moderation of a set of models. + + An instance of this class will maintain a list of one or more + models registered for comment moderation, and their associated + moderation classes, and apply moderation to all incoming comments. + + To register a model, obtain an instance of ``Moderator`` (this + module exports one as ``moderator``), and call its ``register`` + method, passing the model class and a moderation class (which + should be a subclass of ``CommentModerator``). Note that both of + these should be the actual classes, not instances of the classes. + + To cease moderation for a model, call the ``unregister`` method, + passing the model class. + + For convenience, both ``register`` and ``unregister`` can also + accept a list of model classes in place of a single model; this + allows easier registration of multiple models with the same + ``CommentModerator`` class. + + The actual moderation is applied in two phases: one prior to + saving a new comment, and the other immediately after saving. The + pre-save moderation may mark a comment as non-public or mark it to + be removed; the post-save moderation may delete a comment which + was disallowed (there is currently no way to prevent the comment + being saved once before removal) and, if the comment is still + around, will send any notification emails the comment generated. + + """ + def __init__(self): + self._registry = {} + self.connect() + + def connect(self): + """ + Hook up the moderation methods to pre- and post-save signals + from the comment models. + + """ + signals.comment_will_be_posted.connect(self.pre_save_moderation, sender=comments.get_model()) + signals.comment_was_posted.connect(self.post_save_moderation, sender=comments.get_model()) + + def register(self, model_or_iterable, moderation_class): + """ + Register a model or a list of models for comment moderation, + using a particular moderation class. + + Raise ``AlreadyModerated`` if any of the models are already + registered. + + """ + if isinstance(model_or_iterable, ModelBase): + model_or_iterable = [model_or_iterable] + for model in model_or_iterable: + if model in self._registry: + raise AlreadyModerated("The model '%s' is already being moderated" % model._meta.model_name) + self._registry[model] = moderation_class(model) + + def unregister(self, model_or_iterable): + """ + Remove a model or a list of models from the list of models + whose comments will be moderated. + + Raise ``NotModerated`` if any of the models are not currently + registered for moderation. + + """ + if isinstance(model_or_iterable, ModelBase): + model_or_iterable = [model_or_iterable] + for model in model_or_iterable: + if model not in self._registry: + raise NotModerated("The model '%s' is not currently being moderated" % model._meta.model_name) + del self._registry[model] + + def pre_save_moderation(self, sender, comment, request, **kwargs): + """ + Apply any necessary pre-save moderation steps to new + comments. + + """ + model = comment.content_type.model_class() + if model not in self._registry: + return + content_object = comment.content_object + moderation_class = self._registry[model] + + # Comment will be disallowed outright (HTTP 403 response) + if not moderation_class.allow(comment, content_object, request): + return False + + if moderation_class.moderate(comment, content_object, request): + comment.is_public = False + + def post_save_moderation(self, sender, comment, request, **kwargs): + """ + Apply any necessary post-save moderation steps to new + comments. + + """ + model = comment.content_type.model_class() + if model not in self._registry: + return + self._registry[model].email(comment, comment.content_object, request) + +# Import this instance in your own code to use in registering +# your models for moderation. +moderator = Moderator() diff --git a/lib/python2.7/site-packages/django/contrib/comments/signals.py b/lib/python2.7/site-packages/django/contrib/comments/signals.py new file mode 100644 index 0000000..079afaf --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/400-debug.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/400-debug.html new file mode 100644 index 0000000..0d2efaf --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/400-debug.html @@ -0,0 +1,55 @@ +<!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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/approve.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/approve.html new file mode 100644 index 0000000..78d15db --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/approve.html @@ -0,0 +1,15 @@ +{% 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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/approved.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/approved.html new file mode 100644 index 0000000..d4ba245 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/base.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/base.html new file mode 100644 index 0000000..9828ff6 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/delete.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/delete.html new file mode 100644 index 0000000..50c9a4d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/delete.html @@ -0,0 +1,15 @@ +{% 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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/deleted.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/deleted.html new file mode 100644 index 0000000..e608481 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/flag.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/flag.html new file mode 100644 index 0000000..ca7c77f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/flag.html @@ -0,0 +1,15 @@ +{% 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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/flagged.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/flagged.html new file mode 100644 index 0000000..e558019 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/form.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/form.html new file mode 100644 index 0000000..2a9ad55 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/form.html @@ -0,0 +1,20 @@ +{% 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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/list.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/list.html new file mode 100644 index 0000000..3d4ec1e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/posted.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/posted.html new file mode 100644 index 0000000..76f7f6d --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/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/lib/python2.7/site-packages/django/contrib/comments/templates/comments/preview.html b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/preview.html new file mode 100644 index 0000000..0e70567 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templates/comments/preview.html @@ -0,0 +1,36 @@ +{% 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>{% if form.errors|length == 1 %}{% trans "Please correct the error below" %}{% else %}{% trans "Please correct the errors below" %}{% endif %}</h1> + {% else %} + <h1>{% trans "Preview your comment" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <p> + {% trans "and" %} <input type="submit" name="submit" class="submit-post" value="{% trans "Post your comment" %}" id="submit" /> {% 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/lib/python2.7/site-packages/django/contrib/comments/templatetags/__init__.py b/lib/python2.7/site-packages/django/contrib/comments/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templatetags/__init__.py diff --git a/lib/python2.7/site-packages/django/contrib/comments/templatetags/comments.py b/lib/python2.7/site-packages/django/contrib/comments/templatetags/comments.py new file mode 100644 index 0000000..d8eed76 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/templatetags/comments.py @@ -0,0 +1,341 @@ +from django import template +from django.template.loader import render_to_string +from django.conf import settings +from django.contrib.contenttypes.models import ContentType +from django.contrib import comments +from django.utils import six +from django.utils.deprecation import RenameMethodsBase +from django.utils.encoding import smart_text + +register = template.Library() + + +class RenameBaseCommentNodeMethods(RenameMethodsBase): + renamed_methods = ( + ('get_query_set', 'get_queryset', PendingDeprecationWarning), + ) + + +class BaseCommentNode(six.with_metaclass(RenameBaseCommentNodeMethods, template.Node)): + """ + Base helper class (abstract) for handling the get_comment_* template tags. + Looks a bit strange, but the subclasses below should make this a bit more + obvious. + """ + + @classmethod + def handle_token(cls, parser, token): + """Class method to parse get_comment_list/count/form and return a Node.""" + tokens = token.split_contents() + if tokens[1] != 'for': + raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) + + # {% get_whatever for obj as varname %} + if len(tokens) == 5: + if tokens[3] != 'as': + raise template.TemplateSyntaxError("Third argument in %r must be 'as'" % tokens[0]) + return cls( + object_expr = parser.compile_filter(tokens[2]), + as_varname = tokens[4], + ) + + # {% get_whatever for app.model pk as varname %} + elif len(tokens) == 6: + if tokens[4] != 'as': + raise template.TemplateSyntaxError("Fourth argument in %r must be 'as'" % tokens[0]) + return cls( + ctype = BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), + object_pk_expr = parser.compile_filter(tokens[3]), + as_varname = tokens[5] + ) + + else: + raise template.TemplateSyntaxError("%r tag requires 4 or 5 arguments" % tokens[0]) + + @staticmethod + def lookup_content_type(token, tagname): + try: + app, model = token.split('.') + return ContentType.objects.get_by_natural_key(app, model) + except ValueError: + raise template.TemplateSyntaxError("Third argument in %r must be in the format 'app.model'" % tagname) + except ContentType.DoesNotExist: + raise template.TemplateSyntaxError("%r tag has non-existant content-type: '%s.%s'" % (tagname, app, model)) + + def __init__(self, ctype=None, object_pk_expr=None, object_expr=None, as_varname=None, comment=None): + if ctype is None and object_expr is None: + raise template.TemplateSyntaxError("Comment nodes must be given either a literal object or a ctype and object pk.") + self.comment_model = comments.get_model() + self.as_varname = as_varname + self.ctype = ctype + self.object_pk_expr = object_pk_expr + self.object_expr = object_expr + self.comment = comment + + def render(self, context): + qs = self.get_queryset(context) + context[self.as_varname] = self.get_context_value_from_queryset(context, qs) + return '' + + def get_queryset(self, context): + ctype, object_pk = self.get_target_ctype_pk(context) + if not object_pk: + return self.comment_model.objects.none() + + qs = self.comment_model.objects.filter( + content_type = ctype, + object_pk = smart_text(object_pk), + site__pk = settings.SITE_ID, + ) + + # The is_public and is_removed fields are implementation details of the + # built-in comment model's spam filtering system, so they might not + # be present on a custom comment model subclass. If they exist, we + # should filter on them. + field_names = [f.name for f in self.comment_model._meta.fields] + if 'is_public' in field_names: + qs = qs.filter(is_public=True) + if getattr(settings, 'COMMENTS_HIDE_REMOVED', True) and 'is_removed' in field_names: + qs = qs.filter(is_removed=False) + + return qs + + def get_target_ctype_pk(self, context): + if self.object_expr: + try: + obj = self.object_expr.resolve(context) + except template.VariableDoesNotExist: + return None, None + return ContentType.objects.get_for_model(obj), obj.pk + else: + return self.ctype, self.object_pk_expr.resolve(context, ignore_failures=True) + + def get_context_value_from_queryset(self, context, qs): + """Subclasses should override this.""" + raise NotImplementedError + +class CommentListNode(BaseCommentNode): + """Insert a list of comments into the context.""" + def get_context_value_from_queryset(self, context, qs): + return list(qs) + +class CommentCountNode(BaseCommentNode): + """Insert a count of comments into the context.""" + def get_context_value_from_queryset(self, context, qs): + return qs.count() + +class CommentFormNode(BaseCommentNode): + """Insert a form for the comment model into the context.""" + + def get_form(self, context): + obj = self.get_object(context) + if obj: + return comments.get_form()(obj) + else: + return None + + def get_object(self, context): + if self.object_expr: + try: + return self.object_expr.resolve(context) + except template.VariableDoesNotExist: + return None + else: + object_pk = self.object_pk_expr.resolve(context, + ignore_failures=True) + return self.ctype.get_object_for_this_type(pk=object_pk) + + def render(self, context): + context[self.as_varname] = self.get_form(context) + return '' + +class RenderCommentFormNode(CommentFormNode): + """Render the comment form directly""" + + @classmethod + def handle_token(cls, parser, token): + """Class method to parse render_comment_form and return a Node.""" + tokens = token.split_contents() + if tokens[1] != 'for': + raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) + + # {% render_comment_form for obj %} + if len(tokens) == 3: + return cls(object_expr=parser.compile_filter(tokens[2])) + + # {% render_comment_form for app.models pk %} + elif len(tokens) == 4: + return cls( + ctype = BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), + object_pk_expr = parser.compile_filter(tokens[3]) + ) + + def render(self, context): + ctype, object_pk = self.get_target_ctype_pk(context) + if object_pk: + template_search_list = [ + "comments/%s/%s/form.html" % (ctype.app_label, ctype.model), + "comments/%s/form.html" % ctype.app_label, + "comments/form.html" + ] + context.push() + formstr = render_to_string(template_search_list, {"form" : self.get_form(context)}, context) + context.pop() + return formstr + else: + return '' + +class RenderCommentListNode(CommentListNode): + """Render the comment list directly""" + + @classmethod + def handle_token(cls, parser, token): + """Class method to parse render_comment_list and return a Node.""" + tokens = token.split_contents() + if tokens[1] != 'for': + raise template.TemplateSyntaxError("Second argument in %r tag must be 'for'" % tokens[0]) + + # {% render_comment_list for obj %} + if len(tokens) == 3: + return cls(object_expr=parser.compile_filter(tokens[2])) + + # {% render_comment_list for app.models pk %} + elif len(tokens) == 4: + return cls( + ctype = BaseCommentNode.lookup_content_type(tokens[2], tokens[0]), + object_pk_expr = parser.compile_filter(tokens[3]) + ) + + def render(self, context): + ctype, object_pk = self.get_target_ctype_pk(context) + if object_pk: + template_search_list = [ + "comments/%s/%s/list.html" % (ctype.app_label, ctype.model), + "comments/%s/list.html" % ctype.app_label, + "comments/list.html" + ] + qs = self.get_queryset(context) + context.push() + liststr = render_to_string(template_search_list, { + "comment_list" : self.get_context_value_from_queryset(context, qs) + }, context) + context.pop() + return liststr + else: + return '' + +# We could just register each classmethod directly, but then we'd lose out on +# the automagic docstrings-into-admin-docs tricks. So each node gets a cute +# wrapper function that just exists to hold the docstring. + +@register.tag +def get_comment_count(parser, token): + """ + Gets the comment count for the given params and populates the template + context with a variable containing that value, whose name is defined by the + 'as' clause. + + Syntax:: + + {% get_comment_count for [object] as [varname] %} + {% get_comment_count for [app].[model] [object_id] as [varname] %} + + Example usage:: + + {% get_comment_count for event as comment_count %} + {% get_comment_count for calendar.event event.id as comment_count %} + {% get_comment_count for calendar.event 17 as comment_count %} + + """ + return CommentCountNode.handle_token(parser, token) + +@register.tag +def get_comment_list(parser, token): + """ + Gets the list of comments for the given params and populates the template + context with a variable containing that value, whose name is defined by the + 'as' clause. + + Syntax:: + + {% get_comment_list for [object] as [varname] %} + {% get_comment_list for [app].[model] [object_id] as [varname] %} + + Example usage:: + + {% get_comment_list for event as comment_list %} + {% for comment in comment_list %} + ... + {% endfor %} + + """ + return CommentListNode.handle_token(parser, token) + +@register.tag +def render_comment_list(parser, token): + """ + Render the comment list (as returned by ``{% get_comment_list %}``) + through the ``comments/list.html`` template + + Syntax:: + + {% render_comment_list for [object] %} + {% render_comment_list for [app].[model] [object_id] %} + + Example usage:: + + {% render_comment_list for event %} + + """ + return RenderCommentListNode.handle_token(parser, token) + +@register.tag +def get_comment_form(parser, token): + """ + Get a (new) form object to post a new comment. + + Syntax:: + + {% get_comment_form for [object] as [varname] %} + {% get_comment_form for [app].[model] [object_id] as [varname] %} + """ + return CommentFormNode.handle_token(parser, token) + +@register.tag +def render_comment_form(parser, token): + """ + Render the comment form (as returned by ``{% render_comment_form %}``) through + the ``comments/form.html`` template. + + Syntax:: + + {% render_comment_form for [object] %} + {% render_comment_form for [app].[model] [object_id] %} + """ + return RenderCommentFormNode.handle_token(parser, token) + +@register.simple_tag +def comment_form_target(): + """ + Get the target URL for the comment form. + + Example:: + + <form action="{% comment_form_target %}" method="post"> + """ + return comments.get_form_target() + +@register.simple_tag +def get_comment_permalink(comment, anchor_pattern=None): + """ + Get the permalink for a comment, optionally specifying the format of the + named anchor to be appended to the end of the URL. + + Example:: + {% get_comment_permalink comment "#c%(id)s-by-%(user_name)s" %} + """ + + if anchor_pattern: + return comment.get_absolute_url(anchor_pattern) + return comment.get_absolute_url() + diff --git a/lib/python2.7/site-packages/django/contrib/comments/urls.py b/lib/python2.7/site-packages/django/contrib/comments/urls.py new file mode 100644 index 0000000..69a0222 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/urls.py @@ -0,0 +1,16 @@ +from django.conf.urls import patterns, url + +urlpatterns = patterns('django.contrib.comments.views', + url(r'^post/$', 'comments.post_comment', name='comments-post-comment'), + url(r'^posted/$', 'comments.comment_done', name='comments-comment-done'), + url(r'^flag/(\d+)/$', 'moderation.flag', name='comments-flag'), + url(r'^flagged/$', 'moderation.flag_done', name='comments-flag-done'), + url(r'^delete/(\d+)/$', 'moderation.delete', name='comments-delete'), + url(r'^deleted/$', 'moderation.delete_done', name='comments-delete-done'), + url(r'^approve/(\d+)/$', 'moderation.approve', name='comments-approve'), + url(r'^approved/$', 'moderation.approve_done', name='comments-approve-done'), +) + +urlpatterns += patterns('', + url(r'^cr/(\d+)/(.+)/$', 'django.contrib.contenttypes.views.shortcut', name='comments-url-redirect'), +) diff --git a/lib/python2.7/site-packages/django/contrib/comments/views/__init__.py b/lib/python2.7/site-packages/django/contrib/comments/views/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/views/__init__.py diff --git a/lib/python2.7/site-packages/django/contrib/comments/views/comments.py b/lib/python2.7/site-packages/django/contrib/comments/views/comments.py new file mode 100644 index 0000000..befd326 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/views/comments.py @@ -0,0 +1,137 @@ +from __future__ import absolute_import + +from django import http +from django.conf import settings +from django.contrib import comments +from django.contrib.comments import signals +from django.contrib.comments.views.utils import next_redirect, confirmation_view +from django.core.exceptions import ObjectDoesNotExist, ValidationError +from django.db import models +from django.shortcuts import render_to_response +from django.template import RequestContext +from django.template.loader import render_to_string +from django.utils.html import escape +from django.views.decorators.csrf import csrf_protect +from django.views.decorators.http import require_POST + + +class CommentPostBadRequest(http.HttpResponseBadRequest): + """ + Response returned when a comment post is invalid. If ``DEBUG`` is on a + nice-ish error message will be displayed (for debugging purposes), but in + production mode a simple opaque 400 page will be displayed. + """ + def __init__(self, why): + super(CommentPostBadRequest, self).__init__() + if settings.DEBUG: + self.content = render_to_string("comments/400-debug.html", {"why": why}) + + +@csrf_protect +@require_POST +def post_comment(request, next=None, using=None): + """ + Post a comment. + + HTTP POST is required. If ``POST['submit'] == "preview"`` or if there are + errors a preview template, ``comments/preview.html``, will be rendered. + """ + # Fill out some initial data fields from an authenticated user, if present + data = request.POST.copy() + if request.user.is_authenticated(): + if not data.get('name', ''): + data["name"] = request.user.get_full_name() or request.user.get_username() + if not data.get('email', ''): + data["email"] = request.user.email + + # Look up the object we're trying to comment about + ctype = data.get("content_type") + object_pk = data.get("object_pk") + if ctype is None or object_pk is None: + return CommentPostBadRequest("Missing content_type or object_pk field.") + try: + model = models.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 = comments.get_form()(target, data=data) + + # Check security information + if form.security_errors(): + return CommentPostBadRequest( + "The comment form failed security verification: %s" % \ + escape(str(form.security_errors()))) + + # If there are errors or if we requested a preview show the comment + if form.errors or preview: + template_list = [ + # These first two exist for purely historical reasons. + # Django v1.0 and v1.1 allowed the underscore format for + # preview templates, so we have to preserve that format. + "comments/%s_%s_preview.html" % (model._meta.app_label, model._meta.model_name), + "comments/%s_preview.html" % model._meta.app_label, + # Now the usual directory based template hierarchy. + "comments/%s/%s/preview.html" % (model._meta.app_label, model._meta.model_name), + "comments/%s/preview.html" % model._meta.app_label, + "comments/preview.html", + ] + return render_to_response( + template_list, { + "comment": form.data.get("comment", ""), + "form": form, + "next": data.get("next", next), + }, + RequestContext(request, {}) + ) + + # Otherwise create the comment + comment = form.get_comment_object() + comment.ip_address = request.META.get("REMOTE_ADDR", None) + if request.user.is_authenticated(): + comment.user = request.user + + # Signal that the comment is about to be saved + responses = signals.comment_will_be_posted.send( + sender=comment.__class__, + comment=comment, + request=request + ) + + for (receiver, response) in responses: + if response == False: + return CommentPostBadRequest( + "comment_will_be_posted receiver %r killed the comment" % receiver.__name__) + + # Save the comment and signal that it was saved + comment.save() + signals.comment_was_posted.send( + sender=comment.__class__, + comment=comment, + request=request + ) + + return next_redirect(request, fallback=next or 'comments-comment-done', + c=comment._get_pk_val()) + +comment_done = confirmation_view( + template="comments/posted.html", + doc="""Display a "comment was posted" success page.""" +) diff --git a/lib/python2.7/site-packages/django/contrib/comments/views/moderation.py b/lib/python2.7/site-packages/django/contrib/comments/views/moderation.py new file mode 100644 index 0000000..31bb98f --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/views/moderation.py @@ -0,0 +1,165 @@ +from __future__ import absolute_import + +from django import template +from django.conf import settings +from django.contrib import comments +from django.contrib.auth.decorators import login_required, permission_required +from django.contrib.comments import signals +from django.contrib.comments.views.utils import next_redirect, confirmation_view +from django.shortcuts import get_object_or_404, render_to_response +from django.views.decorators.csrf import csrf_protect + + +@csrf_protect +@login_required +def flag(request, comment_id, next=None): + """ + Flags a comment. Confirmation on GET, action on POST. + + Templates: :template:`comments/flag.html`, + Context: + comment + the flagged `comments.comment` object + """ + comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) + + # Flag on POST + if request.method == 'POST': + perform_flag(request, comment) + return next_redirect(request, fallback=next or 'comments-flag-done', + c=comment.pk) + + # Render a form on GET + else: + return render_to_response('comments/flag.html', + {'comment': comment, "next": next}, + template.RequestContext(request) + ) + +@csrf_protect +@permission_required("comments.can_moderate") +def delete(request, comment_id, next=None): + """ + Deletes a comment. Confirmation on GET, action on POST. Requires the "can + moderate comments" permission. + + Templates: :template:`comments/delete.html`, + Context: + comment + the flagged `comments.comment` object + """ + comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) + + # Delete on POST + if request.method == 'POST': + # Flag the comment as deleted instead of actually deleting it. + perform_delete(request, comment) + return next_redirect(request, fallback=next or 'comments-delete-done', + c=comment.pk) + + # Render a form on GET + else: + return render_to_response('comments/delete.html', + {'comment': comment, "next": next}, + template.RequestContext(request) + ) + +@csrf_protect +@permission_required("comments.can_moderate") +def approve(request, comment_id, next=None): + """ + Approve a comment (that is, mark it as public and non-removed). Confirmation + on GET, action on POST. Requires the "can moderate comments" permission. + + Templates: :template:`comments/approve.html`, + Context: + comment + the `comments.comment` object for approval + """ + comment = get_object_or_404(comments.get_model(), pk=comment_id, site__pk=settings.SITE_ID) + + # Delete on POST + if request.method == 'POST': + # Flag the comment as approved. + perform_approve(request, comment) + return next_redirect(request, fallback=next or 'comments-approve-done', + c=comment.pk) + + # Render a form on GET + else: + return render_to_response('comments/approve.html', + {'comment': comment, "next": next}, + template.RequestContext(request) + ) + +# The following functions actually perform the various flag/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 = comments.models.CommentFlag.objects.get_or_create( + comment = comment, + user = request.user, + flag = comments.models.CommentFlag.SUGGEST_REMOVAL + ) + signals.comment_was_flagged.send( + sender = comment.__class__, + comment = comment, + flag = flag, + created = created, + request = request, + ) + +def perform_delete(request, comment): + flag, created = comments.models.CommentFlag.objects.get_or_create( + comment = comment, + user = request.user, + flag = comments.models.CommentFlag.MODERATOR_DELETION + ) + comment.is_removed = True + comment.save() + signals.comment_was_flagged.send( + sender = comment.__class__, + comment = comment, + flag = flag, + created = created, + request = request, + ) + + +def perform_approve(request, comment): + flag, created = comments.models.CommentFlag.objects.get_or_create( + comment = comment, + user = request.user, + flag = comments.models.CommentFlag.MODERATOR_APPROVAL, + ) + + comment.is_removed = False + comment.is_public = True + comment.save() + + signals.comment_was_flagged.send( + sender = comment.__class__, + comment = comment, + flag = flag, + created = created, + request = request, + ) + +# Confirmation views. + +flag_done = confirmation_view( + template = "comments/flagged.html", + doc = 'Displays a "comment was flagged" success page.' +) +delete_done = confirmation_view( + template = "comments/deleted.html", + doc = 'Displays a "comment was deleted" success page.' +) +approve_done = confirmation_view( + template = "comments/approved.html", + doc = 'Displays a "comment was approved" success page.' +) diff --git a/lib/python2.7/site-packages/django/contrib/comments/views/utils.py b/lib/python2.7/site-packages/django/contrib/comments/views/utils.py new file mode 100644 index 0000000..3705b7e --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/comments/views/utils.py @@ -0,0 +1,67 @@ +""" +A few bits of helper functions for comment views. +""" + +import textwrap + +from django.http import HttpResponseRedirect +from django.shortcuts import render_to_response, resolve_url +from django.template import RequestContext +from django.core.exceptions import ObjectDoesNotExist +from django.contrib import comments +from django.utils.http import is_safe_url +from django.utils.six.moves.urllib.parse import urlencode + +def next_redirect(request, fallback, **get_kwargs): + """ + Handle the "where should I go next?" part of comment views. + + The next value could be a + ``?next=...`` GET arg or the URL of a given view (``fallback``). See + the view modules for examples. + + Returns an ``HttpResponseRedirect``. + """ + next = request.POST.get('next') + if not is_safe_url(url=next, host=request.get_host()): + next = resolve_url(fallback) + + if get_kwargs: + if '#' in next: + tmp = next.rsplit('#', 1) + next = tmp[0] + anchor = '#' + tmp[1] + else: + anchor = '' + + joiner = '&' if '?' in next else '?' + next += joiner + urlencode(get_kwargs) + anchor + return HttpResponseRedirect(next) + +def confirmation_view(template, doc="Display a confirmation view."): + """ + Confirmation view generator for the "comment was + posted/flagged/deleted/approved" views. + """ + def confirmed(request): + comment = None + if 'c' in request.GET: + try: + comment = comments.get_model().objects.get(pk=request.GET['c']) + except (ObjectDoesNotExist, ValueError): + pass + return render_to_response(template, + {'comment': comment}, + context_instance=RequestContext(request) + ) + + confirmed.__doc__ = textwrap.dedent("""\ + %s + + Templates: :template:`%s`` + Context: + comment + The posted comment + """ % (doc, template) + ) + return confirmed |