]> git.openstreetmap.org Git - osqa.git/commitdiff
Accepting incoming merge of the jambazov feature branch. Mostly includes new bug...
authorclaycarpenter <claycarpenter@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Mon, 31 Jan 2011 23:08:32 +0000 (23:08 +0000)
committerclaycarpenter <claycarpenter@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Mon, 31 Jan 2011 23:08:32 +0000 (23:08 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@718 0cfe37f9-358a-4d5e-be75-b63607b5c754

29 files changed:
forum/feed.py
forum/forms/admin.py
forum/forms/general.py
forum/forms/qanda.py
forum/management/commands/checkinstall.py
forum/models/node.py
forum/models/user.py
forum/settings/__init__.py
forum/settings/email.py
forum/settings/minrep.py
forum/skins/default/templates/answer_edit.html
forum/skins/default/templates/ask.html
forum/skins/default/templates/base_content.html
forum/skins/default/templates/question.html
forum/skins/default/templates/question_edit.html
forum/subscriptions.py
forum/templatetags/email_tags.py
forum/templatetags/extra_tags.py
forum/utils/html.py
forum/views/auth.py
forum/views/readers.py
forum/views/writers.py
forum_modules/akismet/templates/foundspam.html
forum_modules/localauth/authentication.py
locale/bg/LC_MESSAGES/django.mo [new file with mode: 0755]
locale/bg/LC_MESSAGES/django.po [new file with mode: 0755]
settings.py
settings_local.py.dist
urls.py

index 72e085d82408bb1160b9fddb54f9eb336d6aefbe..02c309d364d67783f1c99ada4646efea9e6baded 100644 (file)
@@ -15,7 +15,7 @@ from forum.utils.pagination import generate_uri
 
 @decorate(add_domain, needs_origin=False)
 def add_domain(domain, url, *args, **kwargs):
-    return "%s%s" % (settings.APP_URL, url)
+    return "%s%s" % (settings.APP_BASE_URL, url)
 
 class BaseNodeFeed(Feed):
     if old_version:
index a1d7b72d6be72d53eee14ccbc143894739b6a6de..1ff2e8549d9b145a7e3bdd5e2b495464d144f111 100644 (file)
@@ -58,9 +58,8 @@ class UrlFieldWidget(forms.TextInput):
 
         return """
                 <input class="url_field" type="text" name="%(name)s" value="%(value)s" />
-                <a class="url_field_anchor" target="_blank" href="%(app_url)s%(script_alias)s"></a>
-            """  % {'name': name, 'value': value, 'app_url': settings.APP_URL,
-                    'script_alias': settings.FORUM_SCRIPT_ALIAS}
+                <a class="url_field_anchor" target="_blank" href="%(app_url)s"></a>
+            """  % {'name': name, 'value': value, 'app_url': settings.APP_URL}
 
 
 class PageForm(forms.Form):
@@ -105,4 +104,4 @@ class CreateUserForm(SimpleRegistrationForm, SetPasswordForm):
         self.fields['email'].label = _('email address')
 
 
-    
\ No newline at end of file
+    
index c754e859ea40154000d26ede38e3d81c8fa039a7..4b1133e0f0ce6e811ee688565534ef45951cc4b3 100644 (file)
@@ -5,10 +5,10 @@ from django.utils.safestring import mark_safe
 from forum import settings
 from django.http import str_to_unicode
 from forum.models import User
-from forum_modules.recaptcha.formfield import ReCaptchaField
+from forum.modules import call_all_handlers
 import urllib
 
-DEFAULT_NEXT = '/' + getattr(settings, 'FORUM_SCRIPT_ALIAS')
+DEFAULT_NEXT = getattr(settings, 'APP_BASE_URL')
 def clean_next(next):
     if next is None:
         return DEFAULT_NEXT
@@ -156,4 +156,14 @@ class SetPasswordForm(forms.Form):
             return self.cleaned_data['password2']
 
 class SimpleCaptchaForm(forms.Form):
-    captcha = ReCaptchaField()
+    def __init__(self, *args, **kwargs):
+        spam_fields = call_all_handlers('create_anti_spam_field')
+        if spam_fields:
+            spam_fields = dict(spam_fields)
+            for name, field in spam_fields.items():
+                self.fields[name] = field
+
+            self._anti_spam_fields = spam_fields.keys()
+        else:
+            self._anti_spam_fields = []
+
index b499cbdebdd8e4f1f80c0722134838870efa740f..98906400a5d2da211136303f8944899060513203 100644 (file)
@@ -8,6 +8,9 @@ from django.contrib.humanize.templatetags.humanize import apnumber
 from django.utils.safestring import mark_safe
 from general import NextUrlField, UserNameField, SetPasswordForm
 from forum import settings
+
+from forum.modules import call_all_handlers
+
 import logging
 
 class TitleField(forms.CharField):
@@ -154,6 +157,17 @@ class AskForm(forms.Form):
         super(AskForm, self).__init__(data, *args, **kwargs)
 
         self.fields['tags']   = TagNamesField(user)
+        
+        if int(user.reputation) < settings.CAPTCHA_IF_REP_LESS_THAN and not (user.is_superuser or user.is_staff):
+            spam_fields = call_all_handlers('create_anti_spam_field')
+            if spam_fields:
+                spam_fields = dict(spam_fields)
+                for name, field in spam_fields.items():
+                    self.fields[name] = field
+
+                self._anti_spam_fields = spam_fields.keys()
+            else:
+                self._anti_spam_fields = []
 
         if settings.WIKI_ON:
             self.fields['wiki'] = WikiField()
@@ -162,16 +176,23 @@ class AnswerForm(forms.Form):
     text   = AnswerEditorField()
     wiki   = WikiField()
 
-    def __init__(self, question, *args, **kwargs):
-        super(AnswerForm, self).__init__(*args, **kwargs)
+    def __init__(self, data=None, user=None, *args, **kwargs):
+        super(AnswerForm, self).__init__(data, *args, **kwargs)
+        
+        if int(user.reputation) < settings.CAPTCHA_IF_REP_LESS_THAN and not (user.is_superuser or user.is_staff):
+            spam_fields = call_all_handlers('create_anti_spam_field')
+            if spam_fields:
+                spam_fields = dict(spam_fields)
+                for name, field in spam_fields.items():
+                    self.fields[name] = field
+
+                self._anti_spam_fields = spam_fields.keys()
+            else:
+                self._anti_spam_fields = []
 
         if settings.WIKI_ON:
             self.fields['wiki'] = WikiField()
 
-            #if question.nis.wiki:
-            #    self.fields['wiki'].initial = True
-
-
 class RetagQuestionForm(forms.Form):
     tags   = TagNamesField()
     # initialize the default values
@@ -214,6 +235,17 @@ class EditQuestionForm(forms.Form):
         self.fields['tags'] = TagNamesField(user)
         self.fields['tags'].initial = revision.tagnames
 
+        if int(user.reputation) < settings.CAPTCHA_IF_REP_LESS_THAN and not (user.is_superuser or user.is_staff):
+            spam_fields = call_all_handlers('create_anti_spam_field')
+            if spam_fields:
+                spam_fields = dict(spam_fields)
+                for name, field in spam_fields.items():
+                    self.fields[name] = field
+
+                self._anti_spam_fields = spam_fields.keys()
+            else:
+                self._anti_spam_fields = []
+
         if settings.WIKI_ON:
             self.fields['wiki'] = WikiField(disabled=(question.nis.wiki and not user.can_cancel_wiki(question)), initial=question.nis.wiki)
 
@@ -229,6 +261,17 @@ class EditAnswerForm(forms.Form):
 
         self.fields['text'].initial = revision.body
 
+        if int(user.reputation) < settings.CAPTCHA_IF_REP_LESS_THAN and not (user.is_superuser or user.is_staff):
+            spam_fields = call_all_handlers('create_anti_spam_field')
+            if spam_fields:
+                spam_fields = dict(spam_fields)
+                for name, field in spam_fields.items():
+                    self.fields[name] = field
+
+                self._anti_spam_fields = spam_fields.keys()
+            else:
+                self._anti_spam_fields = []
+        
         if settings.WIKI_ON:
             self.fields['wiki'] = WikiField(disabled=(answer.nis.wiki and not user.can_cancel_wiki(answer)), initial=answer.nis.wiki)
 
index efb0b191535252c0d34a58ec0fe37645b1ec12e6..6e37d11123cbbc2c4abbacf8407316d36f9ac4b5 100644 (file)
@@ -80,5 +80,6 @@ class Command(NoArgsCommand):
             print " Your APP_URL does not seem to be a valid url. Please fill this setting with the URL of your OSQA installation"
         else:
             print " APP_URL - %s" % settings.APP_URL
+            print " APP_BASE_URL - %s" % settings.APP_BASE_URL
 
         
index 0dfe1d2cea73ebe7e90ed70bb325c263900250a9..43d12b323edb5d643f87ca1f790e5d236ecb92da 100644 (file)
@@ -419,8 +419,6 @@ class Node(BaseModel, NodeContent):
         super(Node, self).delete(*args, **kwargs)
 
     def save(self, *args, **kwargs):
-        tags_changed = self._process_changes_in_tags()
-
         if not self.id:
             self.node_type = self.get_type()
             super(BaseModel, self).save(*args, **kwargs)
@@ -431,8 +429,11 @@ class Node(BaseModel, NodeContent):
 
         if self.parent_id and not self.abs_parent_id:
             self.abs_parent = self.parent.absolute_parent
-
+        
+        tags_changed = self._process_changes_in_tags()
+        
         super(Node, self).save(*args, **kwargs)
+        
         if tags_changed: self.tags = list(Tag.objects.filter(name__in=self.tagname_list()))
 
     class Meta:
index 8ef201dc01cf9dce5e59c15ac8e1d308aa55d8b6..9d6324875f9273c6d9ab5da77290f7bb5c4645e9 100644 (file)
@@ -22,6 +22,8 @@ QUESTIONS_PER_PAGE_CHOICES = (
 )
 
 class AnonymousUser(DjangoAnonymousUser):
+    reputation = 0
+    
     def get_visible_answers(self, question):
         return question.answers.filter_state(deleted=False)
 
index 9b0cbed037702599ddd57605e223b820a896a94f..e10fc76b0f6f1fb0a3ddb6dcce1a3b3e3a103d9a 100644 (file)
@@ -16,7 +16,8 @@ DJSTYLE_ADMIN_INTERFACE = Setting('DJSTYLE_ADMIN_INTERFACE', True)
 NODE_MAN_FILTERS = Setting('NODE_MAN_FILTERS', [])
 
 APP_URL = djsettings.APP_URL
-FORUM_SCRIPT_ALIAS = djsettings.FORUM_SCRIPT_ALIAS
+APP_BASE_URL = djsettings.APP_BASE_URL
+FORCE_SCRIPT_NAME = djsettings.FORCE_SCRIPT_NAME
 OSQA_SKIN = djsettings.OSQA_DEFAULT_SKIN
 LANGUAGE_CODE = djsettings.LANGUAGE_CODE
 ADMIN_MEDIA_PREFIX = djsettings.ADMIN_MEDIA_PREFIX
index 4c9486a5dd7a57b46778e465362300342368a7a0..5e8bddfbafe27285035595fae3536c7a6ec8f032 100644 (file)
@@ -40,16 +40,16 @@ widget=PasswordInput))
 \r
 EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
 label = _("Use TLS"),\r
-help_text = _("Does your SMTP server usFes TLS for authentication."),\r
+help_text = _("Whether to use TLS for authentication with your SMTP server."),\r
 required=False))\r
 \r
 DEFAULT_FROM_EMAIL = Setting('DEFAULT_FROM_EMAIL', '', EMAIL_SET, dict(\r
-label = _("Site 'from' email address"),\r
+label = _("Site 'from' Email Address"),\r
 help_text = _("The address that will show up on the 'from' field on emails sent by your website."),\r
 required=False))\r
 \r
 EMAIL_SUBJECT_PREFIX = Setting('EMAIL_SUBJECT_PREFIX', '', EMAIL_SET, dict(\r
-label = _("Email subject prefix"),\r
+label = _("Email Subject Prefix"),\r
 help_text = _("Every email sent through your website will have the subject prefixed by this string. It's usually a good idea to have such a prefix so your users can easily set up a filter on theyr email clients."),\r
 required=False))\r
 \r
@@ -59,17 +59,17 @@ help_text = _("Email footer text, usually \"CAN SPAM\" compliance, or the physic
 required=False))\r
 \r
 EMAIL_BORDER_COLOR = Setting('EMAIL_BORDER_COLOR', '#e5ebf8', EMAIL_SET, dict(\r
-label = _("Email Border color"),\r
+label = _("Email Border Color"),\r
 help_text = _("The outter border color of the email base template"),\r
 required=False))\r
 \r
 EMAIL_PARAGRAPH_STYLE = Setting('EMAIL_PARAGRAPH_STYLE', "color:#333333;font-family:'helvetica neue', arial, Helvetica, sans-serif;line-height:18px;font-size:14px;margin-top:10px;", EMAIL_SET, dict(\r
-label = _("Email Paragraph style"),\r
+label = _("Email Paragraph Style"),\r
 help_text = _("A valid css string to be used to style email paragraphs (the P tag)."),\r
 required=False))\r
 \r
 EMAIL_ANCHOR_STYLE = Setting('EMAIL_ANCHOR_STYLE', "text-decoration:none;color:#3060a8;font-weight:bold;", EMAIL_SET, dict(\r
-label = _("Email link style"),\r
+label = _("Email Link Style"),\r
 help_text = _("A valid css string to be used to style email links (the A tag)."),\r
 required=False))\r
 \r
index b2ff60d172df6a9416979de875f15611d4062239..820682345ace7bef79d8bd2e579807ebf52aec3b 100644 (file)
@@ -3,6 +3,10 @@ from django.utils.translation import ugettext_lazy as _
 \r
 MIN_REP_SET = SettingSet('minrep', _('Minimum reputation config'), _("Configure the minimum reputation required to perform certain actions on your site."), 300)\r
 \r
+CAPTCHA_IF_REP_LESS_THAN = Setting('CAPTCHA_IF_REP_LESS_THAN', 0, MIN_REP_SET, dict(\r
+label = _("Show captcha if user with less reputation than"),\r
+help_text = _("If the user has less reputation, captcha is used to when adding new content.")))\r
+\r
 REP_TO_VOTE_UP = Setting('REP_TO_VOTE_UP', 15, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to vote up"),\r
 help_text = _("The minimum reputation an user must have to be allowed to vote up.")))\r
index c9d846626eb4a94bdfc2e044bd34b0e41a350faf..985adddc84829781f5f1babff6a8e92226ea7ef2 100644 (file)
             <div class="title-desc">
                 {{ form.summary.help_text }}
             </div>
+            
+            {% if form.recaptcha %}
+            <div class="question-captcha">
+               {{ form.recaptcha.errors }}
+               {{ form.recaptcha }}
+            </div>
+            {% endif %}
+            
             <input type="button" value="{% trans "Save edit" %}" class="submit" onclick="submitClicked(event, this.form)" />
             <input type="button" value="{% trans "Cancel" %}" class="submit" onclick="submitClicked(event, this.form);history.back(-1);" />
         </form>
index bb4ad67357cd8e3154ff1669f27737aaa97a0428..fa38b767b54ff936ed9d0595c43182c08c277a44 100644 (file)
                        <p class="title-desc">
                                {{ form.tags.help_text }}
                        </p>
+                       
+            {% if form.recaptcha %}
+            <div class="question-captcha" style="float: left">
+               {{ form.recaptcha.errors }}
+               {{ form.recaptcha }}
+            </div>
+            <div class="clear"></div>
+            {% endif %}
+                       
             {% if not request.user.is_authenticated %}                                                                        
             <input name="ask" type="button" value="{% trans "Login/signup to post your question" %}" class="submit" onclick="submitClicked(event, this.form)"/>
                        {% else %}
index 0fbcc5d0c386b2d39a34a77505899d09be298f1b..2281f0e6e3cc36ec8f17ad30b22ff405f88cf123 100644 (file)
@@ -22,7 +22,7 @@
         <script type="text/javascript">
         /* <![CDATA[ */
             var i18nLang = '{{settings.LANGUAGE_CODE}}';
-            var scriptUrl = '/{{settings.FORUM_SCRIPT_ALIAS}}'
+            var scriptUrl = '{{settings.FORCE_SCRIPT_NAME}}/'
             var osqaSkin = '{{settings.OSQA_SKIN}}';
 
             var messages = {
index efb797b243b37fe22166ddf87ca6b4985355f5c5..c6c4cdeb136b4b277aa96c8d62329b8b2036eea8 100644 (file)
@@ -11,7 +11,7 @@
 {% block metadescription %}{{ question.meta_description }}{% endblock %}\r
 {% block metakeywords %}{{question.tagname_meta_generator}}{% endblock %}\r
 {% block meta %}\r
-        <link rel="canonical" href="{{settings.APP_URL}}{{question.get_absolute_url}}" />\r
+        <link rel="canonical" href="{{settings.APP_BASE_URL}}{{question.get_absolute_url}}" />\r
         <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ question.get_absolute_url }}?type=rss">\r
 {% endblock %}\r
 {% block title %}{% spaceless %}{{ question.headline }}{% endspaceless %}{% endblock %}\r
                         </table>  \r
                     </div>\r
                     {{ answer.text.errors }}\r
-                    <div id="previewer" class="wmd-preview"></div>                    \r
+                    <div id="previewer" class="wmd-preview"></div>\r
                 </div>\r
+\r
+                   {% if answer.recaptcha %}\r
+                   <div class="question-captcha" style="float: left;">\r
+                       {{ answer.recaptcha.errors }}\r
+                       {{ answer.recaptcha }}\r
+                   </div>\r
+                   <div class="clear"></div>\r
+                   {% endif %}\r
+                \r
                 <p><span class="form-error"></span></p>\r
                 <input type="button"\r
                     {% if user.is_anonymous %}\r
index f0c9e4dd00f808ea93cb2bdfd318bbfc19edf22d..9d7a6cd074ecd8d0c5ddc77f450109467ae8ef64 100644 (file)
             <div class="title-desc">
                 {{ form.summary.help_text }}
             </div>
+            
+            {% if form.recaptcha %}
+            <div class="question-captcha" style="float: left">
+               {{ form.recaptcha.errors }}
+               {{ form.recaptcha }}
+            </div>
+            <div class="clear"></div>
+            {% endif %}
+            
             <div class="error" ></div>
             <input type="button" value="{% trans "Save edit" %}" class="submit" onclick="submitClicked(event, this.form)" />
             <input type="button" value="{% trans "Cancel" %}" class="submit" onclick="submitClicked(event, null); history.back(-1);" />
index 7a5bf0684f6aa2d0ac161ad5b0eeef356e5c8b56..462e284c66a04878e6f218b2b0a24963fd333572 100644 (file)
@@ -1,6 +1,7 @@
 import os\r
 import re\r
 import datetime\r
+import logging\r
 from forum.models import User, Question, Comment, QuestionSubscription, SubscriptionSettings, Answer\r
 from forum.utils.mail import send_template_email\r
 from django.utils.translation import ugettext as _\r
@@ -110,10 +111,9 @@ def answer_accepted(action, new):
 \r
     subscribers = question.subscribers.filter(\r
             subscription_settings__enable_notifications=True,\r
-            subscription_settings__notify_accepted=True,\r
             subscription_settings__subscribed_questions='i'\r
     ).exclude(id=action.node.nstate.accepted.by.id).distinct()\r
-\r
+    \r
     subscribers = filter_subscribers(subscribers)\r
 \r
     send_template_email(subscribers, "notifications/answeraccepted.html", {'answer': action.node})\r
@@ -176,4 +176,4 @@ QuestionViewAction.hook(question_viewed)
 #\r
 #            q_author.message_set.create(message=msg)\r
 #\r
-#post_save.connect(record_answer_event, sender=Answer)
\ No newline at end of file
+#post_save.connect(record_answer_event, sender=Answer)\r
index 1d2147607c5cd4436c39eb6daf54ee355a28fb15..63b3a8d147509d38c79bd31075fb47b150269b6b 100644 (file)
@@ -98,7 +98,7 @@ class FullUrlNode(template.Node):
         self.default_node = default_node
 
     def render(self, context):
-        domain = settings.APP_URL
+        domain = settings.APP_BASE_URL
         path = self.default_node.render(context)
         return "%s%s" % (domain, path)
 
index be6ee599585ed24955b842c7e207d690e77ef194..76935fe448d3fe753fe6c1d9402c03b8aeadcde9 100644 (file)
@@ -100,9 +100,9 @@ def diff_date(date, limen=2):
 
     if days > 2:
         if date.year == now.year:
-            return date.strftime(_("%b %d at %H:%M"))
+            return date.strftime(_("%b %d at %H:%M").encode())
         else:
-            return date.strftime(_("%b %d '%y at %H:%M"))
+            return date.strftime(_("%b %d '%y at %H:%M").encode())
     elif days == 2:
         return _('2 days ago')
     elif days == 1:
@@ -118,8 +118,15 @@ def diff_date(date, limen=2):
 def media(url):
     url = skins.find_media_source(url)
     if url:
-        url = '///' + settings.FORUM_SCRIPT_ALIAS + '/m/' + url
-        return posixpath.normpath(url)
+        # Create the URL prefix.
+        url_prefix = settings.FORCE_SCRIPT_NAME + '/m/'
+
+        # Make sure any duplicate forward slashes are replaced with a single
+        # forward slash.
+        url_prefix = re.sub("/+", "/", url_prefix)
+
+        url = url_prefix + url
+        return url
 
 class ItemSeparatorNode(template.Node):
     def __init__(self, separator):
@@ -138,7 +145,7 @@ class BlockMediaUrlNode(template.Node):
         self.items = nodelist
 
     def render(self, context):
-        prefix = '///' + settings.FORUM_SCRIPT_ALIAS + 'm/'
+        prefix = settings.APP_URL + 'm/'
         url = ''
         if self.items:
             url += '/'
@@ -147,7 +154,7 @@ class BlockMediaUrlNode(template.Node):
 
         url = skins.find_media_source(url)
         url = prefix + url
-        out = posixpath.normpath(url)
+        out = url
         return out.replace(' ', '')
 
 @register.tag(name='blockmedia')
@@ -167,7 +174,7 @@ def blockmedia(parser, token):
 
 @register.simple_tag
 def fullmedia(url):
-    domain = settings.APP_URL
+    domain = settings.APP_BASE_URL
     #protocol = getattr(settings, "PROTOCOL", "http")
     path = media(url)
     return "%s%s" % (domain, path)
index 6afaf62ac3978f62ad6933b2a29ceb3679ef50c9..bf84e2f641c49c519fe6163f615468f42231c778 100644 (file)
@@ -68,7 +68,7 @@ def hyperlink(url, title, **attrs):
     return mark_safe('<a href="%s" %s>%s</a>' % (url, " ".join('%s="%s"' % i for i in attrs.items()), title))
 
 def objlink(obj, **attrs):
-    return hyperlink(settings.APP_URL + obj.get_absolute_url(), unicode(obj), **attrs)
+    return hyperlink(settings.APP_BASE_URL + obj.get_absolute_url(), unicode(obj), **attrs)
 
     
 
index 6134d124b2fd390f5657b69a18c5893e4f4bfc41..ad4785dcef53e6a273702ea9b7d8abe78ddaff86 100644 (file)
@@ -31,6 +31,9 @@ from forum.actions import UserJoinsAction
 
 def signin_page(request):
     request.session['on_signin_url'] = request.META.get('HTTP_REFERER', '/')
+    
+    if reverse('auth_signin') == request.session['on_signin_url'].replace(settings.APP_URL, ''):
+        request.session['on_signin_url'] = reverse('index')
 
     all_providers = [provider.context for provider in AUTH_PROVIDERS.values()]
 
@@ -258,6 +261,11 @@ def temp_signin(request, user, code):
     user = get_object_or_404(User, id=user)
 
     if (ValidationHash.objects.validate(code, user, 'templogin', [user.id])):
+        
+        # If the user requests temp_signin he must have forgotten his password. So we mark it as unusable.
+        user.set_unusable_password()
+        user.save()
+        
         return login_and_forward(request, user, reverse('user_authsettings', kwargs={'id': user.id}),
                                  _(
                                          "You are logged in with a temporary access key, please take the time to fix your issue with authentication."
@@ -272,6 +280,11 @@ def send_validation_email(request):
         try:
             hash = ValidationHash.objects.get(user=request.user, type='email')
             hash.delete()
+            
+            # If we were able to get a previous validation hash we should raise an
+            # Exception immediately. Otherwise new validation hash will not be created
+            # and users will not receive the desired e-mail vaidation link.
+            raise Exception("Validation has already been sent")
         except:
             hash = ValidationHash.objects.create_new(request.user, 'email', [request.user.email])
 
index e0929220b6b0dfa5d9f3a1967d71b0b18ba42b45..f8113be2f6da4e091d9fc8ad39830794bfbafa4e 100644 (file)
@@ -314,9 +314,9 @@ def question(request, id, slug='', answer=None):
         return HttpResponsePermanentRedirect(question.get_absolute_url())
 
     if request.POST:
-        answer_form = AnswerForm(question, request.POST)
+        answer_form = AnswerForm(request.POST, user=request.user)
     else:
-        answer_form = AnswerForm(question)
+        answer_form = AnswerForm(user=request.user)
 
     answers = request.user.get_visible_answers(question)
 
index 125318b765edee0a8c65bdbb57bb5bcc1f629dd7..dbc68c017c4c583160e453031e2400fef4b013d6 100644 (file)
@@ -218,7 +218,7 @@ def answer(request, id):
     question = get_object_or_404(Question, id=id)
 
     if request.POST:
-        form = AnswerForm(question, request.POST)
+        form = AnswerForm(request.POST, request.user)
 
         if request.session.pop('reviewing_pending_data', False) or not form.is_valid():
             request.session['redirect_POST_data'] = request.POST
index 03bc660bd19ade70cba1fb19e5e7ed1ac27883c5..6b203c00a7ffd9f24c131184a638edac6314f9f2 100644 (file)
@@ -19,7 +19,10 @@ If you believe this is an error, please contact the forum administrator.
                {% for post_item in post_data.items %}
                <input type="hidden" name="{{ post_item.0 }}" value="{{ post_item.1 }}" />
                {% endfor %}
-               {{ captcha_form.captcha }}</td>
+               
+               {{ captcha_form.recaptcha }}
+               
+               </td>
        </tr>
        <tr>
                <td><input type="submit" value"{% trans "Submit" %} /></td>
@@ -28,4 +31,4 @@ If you believe this is an error, please contact the forum administrator.
 </form>
 
 </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
index c85a0058527a3bd087f2b309c4bfe97e8847799c..837b7560ff389d7dfa5a20f52631db3f2aadf617 100644 (file)
@@ -15,4 +15,5 @@ class LocalAuthContext(ConsumerTemplateContext):
     weight = 1000
     human_name = 'Local authentication'
     stack_item_template = 'modules/localauth/loginform.html'
-    show_to_logged_in_user = False
\ No newline at end of file
+    show_to_logged_in_user = False
+
diff --git a/locale/bg/LC_MESSAGES/django.mo b/locale/bg/LC_MESSAGES/django.mo
new file mode 100755 (executable)
index 0000000..31395ed
Binary files /dev/null and b/locale/bg/LC_MESSAGES/django.mo differ
diff --git a/locale/bg/LC_MESSAGES/django.po b/locale/bg/LC_MESSAGES/django.po
new file mode 100755 (executable)
index 0000000..5839f56
--- /dev/null
@@ -0,0 +1,9070 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-01-28 23:44+0200\n"
+"PO-Revision-Date: 2010-12-08 23:13\n"
+"Last-Translator: <jordan.jambazov@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: forum/feed.py:70 forum/models/page.py:5 forum/utils/pagination.py:162
+#: forum/views/readers.py:166 forum/views/readers.py:282
+#, fuzzy
+msgid "page"
+msgstr "страница"
+
+#: forum/feed.py:70 forum/utils/pagination.py:158 forum/views/readers.py:166
+msgid "pagesize"
+msgstr ""
+
+#: forum/feed.py:70 forum/utils/pagination.py:166 forum/views/readers.py:166
+msgid "sort"
+msgstr "ΠΏΠΎΠ΄Ρ€Π΅Π΄ΠΈ"
+
+#: forum/feed.py:86
+#, fuzzy, python-format
+msgid "Answers to: %s"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ Π½Π° %s"
+
+#: forum/feed.py:100
+#, fuzzy, python-format
+msgid "Answer by %s"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ ΠΎΡ‚ %s"
+
+#: forum/feed.py:102
+#, python-format
+msgid "Comment by %(cauthor)s on %(pauthor)s's %(qora)s"
+msgstr "ΠšΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ ΠΎΡ‚ %(cauthor)s Π½Π° %(pauthor)s %(qora)s"
+
+#: forum/feed.py:103 forum/models/answer.py:5
+#: forum/skins/default/templates/osqaadmin/dashboard.html:24
+#: forum/skins/default/templates/osqaadmin/index.html:26
+#: forum/skins/default/templates/question_list/item.html:15
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:24
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:26
+#: forum/skins/zapprotect/templates/question_list/item.html:15
+#: forum/views/writers.py:238 forum_modules/akismet/startup.py:59
+msgid "answer"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/feed.py:103 forum/models/question.py:19
+#: forum/skins/default/templates/osqaadmin/dashboard.html:19
+#: forum/skins/default/templates/osqaadmin/index.html:21
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:19
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:21
+#: forum/views/writers.py:89 forum_modules/akismet/startup.py:58
+msgid "question"
+msgstr "Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/registry.py:11 forum/registry.py:46
+#: forum/skins/default/templates/index.html:15
+#: forum/skins/default/templates/question_edit_tips.html:22
+#: forum/skins/zapprotect/templates/index.html:15
+#: forum/skins/zapprotect/templates/question_edit_tips.html:22
+msgid "faq"
+msgstr "Ρ‡Π·Π²"
+
+#: forum/registry.py:12 forum/registry.py:47
+#: forum/skins/default/templates/index.html:14
+#: forum/skins/zapprotect/templates/index.html:14
+msgid "about"
+msgstr "Π·Π° Π½Π°Ρ"
+
+#: forum/registry.py:15
+msgid "logout"
+msgstr "ΠΈΠ·Ρ…ΠΎΠ΄"
+
+#: forum/registry.py:15
+msgid "login"
+msgstr "Π²Ρ…ΠΎΠ΄"
+
+#: forum/registry.py:28
+msgid "administration"
+msgstr "администрация"
+
+#: forum/registry.py:41
+#, fuzzy
+msgid "contact"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/registry.py:44
+#, fuzzy
+msgid "support"
+msgstr "плюс"
+
+#: forum/registry.py:45
+#, fuzzy
+msgid "privacy"
+msgstr "privacy"
+
+#: forum/registry.py:60 forum/skins/default/templates/users/edit.html:33
+#: forum/skins/zapprotect/templates/users/edit.html:33
+msgid "edit profile"
+msgstr "РСдакция Π½Π° ΠΏΡ€ΠΎΡ„ΠΈΠ»Π°"
+
+#: forum/registry.py:66
+#, fuzzy
+msgid "authentication settings"
+msgstr "ΠžΠΏΡ†ΠΈΠΈ Π·Π° ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅"
+
+#: forum/registry.py:72
+#, fuzzy
+msgid "email notification settings"
+msgstr "ΠžΠΏΡ†ΠΈΠΈ Π·Π° ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅"
+
+#: forum/registry.py:78
+msgid "other preferences"
+msgstr "Π΄Ρ€ΡƒΠ³ΠΈ ΠΏΡ€Π΅Π΄ΠΏΠΎΡ‡ΠΈΡ‚ания"
+
+#: forum/registry.py:82
+msgid "Moderation tools"
+msgstr "ΠœΠΎΠ΄Π΅Ρ€Π°Ρ‚ΠΎΡ€ΡΠΊΠΈ ΠΈΠ½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚ΠΈ"
+
+#: forum/registry.py:84
+#, fuzzy
+msgid "withdraw suspension"
+msgstr "Π˜Π·ΠΏΡ€Π°Ρ‚Π΅Ρ‚Π΅ Π’Π°ΡˆΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/registry.py:84
+msgid "suspend this user"
+msgstr "спри Ρ‚ΠΎΠ·ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»"
+
+#: forum/registry.py:90
+msgid "give/take karma"
+msgstr "Π΄Π°ΠΉ/Π²Π·Π΅ΠΌΠΈ ΠΊΠ°Ρ€ΠΌΠ°"
+
+#: forum/registry.py:97
+msgid "remove moderator status"
+msgstr "ΠΏΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΌΠΎΠ΄Π΅Ρ€Π°Ρ‚орски ΡΡ‚Π°Ρ‚ΡƒΡ‚"
+
+#: forum/registry.py:97
+msgid "grant moderator status"
+msgstr "Π΄Π°ΠΉ ΠΌΠΎΠ΄Π΅Ρ€Π°Ρ‚орски ΡΡ‚Π°Ρ‚ΡƒΡ‚"
+
+#: forum/registry.py:103
+msgid "remove super user status"
+msgstr "ΠΏΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΡΡƒΠΏΠ΅Ρ€ ΠΏΠΎΡ‚рСбитСлското ΡΡŠΡΡ‚ояниС"
+
+#: forum/registry.py:103
+msgid "grant super user status"
+msgstr "прСдоставянС Π½Π° ΡΡ‚Π°Ρ‚ΡƒΡ‚ ΡΡƒΠΏΠ΅Ρ€ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»"
+
+#: forum/urls.py:34
+msgid "nimda/"
+msgstr ""
+
+#: forum/urls.py:43
+msgid "upfiles/"
+msgstr ""
+
+#: forum/urls.py:48
+msgid "faq/"
+msgstr ""
+
+#: forum/urls.py:48
+msgid "FAQ"
+msgstr ""
+
+#: forum/urls.py:50
+msgid "about/"
+msgstr ""
+
+#: forum/urls.py:51
+msgid "About"
+msgstr "Π—Π° Π½Π°Ρ"
+
+#: forum/urls.py:52
+msgid "markdown_help/"
+msgstr ""
+
+#: forum/urls.py:55
+msgid "privacy/"
+msgstr ""
+
+#: forum/urls.py:56
+msgid "logout/"
+msgstr ""
+
+#: forum/urls.py:57
+msgid "answers/"
+msgstr ""
+
+#: forum/urls.py:57 forum/urls.py:69 forum/urls.py:126 forum/urls.py:200
+msgid "edit/"
+msgstr ""
+
+#: forum/urls.py:59
+msgid "revisions/"
+msgstr ""
+
+#: forum/urls.py:60 forum/urls.py:61 forum/urls.py:62 forum/urls.py:65
+#: forum/urls.py:66 forum/urls.py:69 forum/urls.py:71 forum/urls.py:73
+#: forum/urls.py:75 forum/urls.py:101 forum/urls.py:102 forum/urls.py:103
+msgid "questions/"
+msgstr ""
+
+#: forum/urls.py:61
+msgid "ask/"
+msgstr ""
+
+#: forum/urls.py:62
+#, fuzzy
+msgid "related_questions/"
+msgstr "Подобни Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/urls.py:65
+msgid "unanswered/"
+msgstr ""
+
+#: forum/urls.py:71
+msgid "close/"
+msgstr ""
+
+#: forum/urls.py:73
+msgid "reopen/"
+msgstr ""
+
+#: forum/urls.py:75
+msgid "answer/"
+msgstr ""
+
+#: forum/urls.py:76
+msgid "pending-data/"
+msgstr ""
+
+#: forum/urls.py:78
+msgid "vote/"
+msgstr ""
+
+#: forum/urls.py:80
+#, fuzzy
+msgid "like_comment/"
+msgstr "answer comment"
+
+#: forum/urls.py:81
+#, fuzzy
+msgid "comment/"
+msgstr "post a comment"
+
+#: forum/urls.py:82
+#, fuzzy
+msgid "delete_comment/"
+msgstr "post a comment"
+
+#: forum/urls.py:84
+msgid "accept_answer/"
+msgstr ""
+
+#: forum/urls.py:86
+msgid "mark_favorite/"
+msgstr ""
+
+#: forum/urls.py:88
+msgid "flag/"
+msgstr ""
+
+#: forum/urls.py:89
+msgid "delete/"
+msgstr ""
+
+#: forum/urls.py:90 forum/urls.py:91
+msgid "subscribe/"
+msgstr ""
+
+#: forum/urls.py:92
+msgid "matching_tags/"
+msgstr ""
+
+#: forum/urls.py:93
+msgid "matching_users/"
+msgstr ""
+
+#: forum/urls.py:94
+msgid "node_markdown/"
+msgstr ""
+
+#: forum/urls.py:95
+#, fuzzy
+msgid "convert/"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/urls.py:97
+msgid "wikify/"
+msgstr ""
+
+#: forum/urls.py:99
+msgid "question/"
+msgstr ""
+
+#: forum/urls.py:106 forum/urls.py:107
+msgid "tags/"
+msgstr ""
+
+#: forum/urls.py:109 forum/urls.py:113
+msgid "mark-tag/"
+msgstr ""
+
+#: forum/urls.py:109
+msgid "interesting/"
+msgstr ""
+
+#: forum/urls.py:113
+msgid "ignored/"
+msgstr ""
+
+#: forum/urls.py:117
+msgid "unmark-tag/"
+msgstr ""
+
+#: forum/urls.py:122 forum/urls.py:126 forum/urls.py:127 forum/urls.py:129
+#: forum/urls.py:131 forum/urls.py:133 forum/urls.py:135 forum/urls.py:137
+#: forum/urls.py:139 forum/urls.py:141 forum/urls.py:143 forum/urls.py:145
+msgid "users/"
+msgstr ""
+
+#: forum/urls.py:127
+#, fuzzy
+msgid "award/"
+msgstr "all badges"
+
+#: forum/urls.py:129
+#, fuzzy
+msgid "suspend/"
+msgstr "You can safely re-use the same login for all OpenID-enabled websites."
+
+#: forum/urls.py:131
+msgid "powers/"
+msgstr ""
+
+#: forum/urls.py:133
+msgid "subscriptions/"
+msgstr ""
+
+#: forum/urls.py:135
+msgid "preferences/"
+msgstr ""
+
+#: forum/urls.py:137
+msgid "favorites/"
+msgstr ""
+
+#: forum/urls.py:139
+#, fuzzy
+msgid "reputation/"
+msgstr "karma"
+
+#: forum/urls.py:141
+msgid "votes/"
+msgstr ""
+
+#: forum/urls.py:143
+msgid "recent/"
+msgstr ""
+
+#: forum/urls.py:146 forum/urls.py:147
+msgid "badges/"
+msgstr ""
+
+#: forum/urls.py:150
+msgid "upload/"
+msgstr ""
+
+#: forum/urls.py:151
+msgid "search/"
+msgstr ""
+
+#: forum/urls.py:152
+#, fuzzy
+msgid "contact/"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/urls.py:156 forum/urls.py:157 forum/urls.py:158 forum/urls.py:160
+#: forum/urls.py:162 forum/urls.py:164 forum/urls.py:166 forum/urls.py:168
+#: forum/urls.py:170 forum/urls.py:172 forum/urls.py:174 forum/urls.py:176
+#: forum_modules/localauth/urls.py:7
+msgid "account/"
+msgstr ""
+
+#: forum/urls.py:156 forum/urls.py:158
+msgid "signin/"
+msgstr ""
+
+#: forum/urls.py:157
+msgid "signout/"
+msgstr ""
+
+#: forum/urls.py:160
+msgid "done/"
+msgstr ""
+
+#: forum/urls.py:162 forum_modules/localauth/urls.py:7
+msgid "register/"
+msgstr ""
+
+#: forum/urls.py:164
+msgid "validate/"
+msgstr ""
+
+#: forum/urls.py:166 forum/urls.py:168
+msgid "tempsignin/"
+msgstr ""
+
+#: forum/urls.py:170
+msgid "authsettings/"
+msgstr ""
+
+#: forum/urls.py:172 forum/urls.py:174
+msgid "providers/"
+msgstr ""
+
+#: forum/urls.py:172
+msgid "remove/"
+msgstr ""
+
+#: forum/urls.py:174
+msgid "add/"
+msgstr ""
+
+#: forum/urls.py:176
+msgid "send-validation/"
+msgstr ""
+
+#: forum/urls.py:179 forum/urls.py:180 forum/urls.py:182 forum/urls.py:183
+#: forum/urls.py:185 forum/urls.py:187 forum/urls.py:189 forum/urls.py:191
+#: forum/urls.py:193 forum/urls.py:195 forum/urls.py:198 forum/urls.py:200
+#: forum/urls.py:203 forum/urls.py:206 forum_modules/exporter/urls.py:8
+#: forum_modules/exporter/urls.py:9 forum_modules/exporter/urls.py:10
+#: forum_modules/exporter/urls.py:12 forum_modules/sximporter/urls.py:8
+msgid "admin/"
+msgstr ""
+
+#: forum/urls.py:180
+msgid "switch_interface/"
+msgstr ""
+
+#: forum/urls.py:182
+msgid "statistics/"
+msgstr ""
+
+#: forum/urls.py:183
+msgid "denormalize/"
+msgstr ""
+
+#: forum/urls.py:185
+msgid "go_bootstrap/"
+msgstr ""
+
+#: forum/urls.py:187
+msgid "go_defaults/"
+msgstr ""
+
+#: forum/urls.py:189 forum/urls.py:206
+#, fuzzy
+msgid "settings/"
+msgstr "karma"
+
+#: forum/urls.py:191
+msgid "maintenance/"
+msgstr ""
+
+#: forum/urls.py:193
+msgid "flagged_posts/"
+msgstr ""
+
+#: forum/urls.py:195 forum/urls.py:198 forum/urls.py:200
+msgid "static_pages/"
+msgstr ""
+
+#: forum/urls.py:198
+msgid "new/"
+msgstr ""
+
+#: forum/urls.py:203
+msgid "tools/"
+msgstr ""
+
+#: forum/actions/meta.py:39
+#, python-format
+msgid "%(user)s %(vote_desc)s %(post_desc)s"
+msgstr ""
+
+#: forum/actions/meta.py:58
+#, fuzzy
+msgid "voted up"
+msgstr "ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Π½"
+
+#: forum/actions/meta.py:74
+msgid "voted down"
+msgstr "ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½"
+
+#: forum/actions/meta.py:88
+#, fuzzy
+msgid "liked"
+msgstr "Π·Π°Π΄Π°Π΄Π΅Π½ΠΎ"
+
+#: forum/actions/meta.py:116
+msgid "No reason given"
+msgstr "Π‘Π΅Π· Π΄Π° ΠΈΠ·Ρ‚ΡŠΠΊΠ²Π° ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ"
+
+#: forum/actions/meta.py:121
+#, python-format
+msgid "%(user)s flagged %(post_desc)s: %(reason)s"
+msgstr ""
+
+#: forum/actions/meta.py:152 forum/actions/user.py:32
+#: forum/models/action.py:218
+msgid "your"
+msgstr "Ρ‚Π²ΠΎΠΉ"
+
+#: forum/actions/meta.py:152 forum/actions/user.py:32
+msgid "his"
+msgstr "Π½Π΅Π³ΠΎΠ²"
+
+#: forum/actions/meta.py:156
+#, python-format
+msgid ""
+"%(user)s accepted %(answerer)s answer on %(asker)s question %(question)s"
+msgstr ""
+
+#: forum/actions/meta.py:172
+#, python-format
+msgid "%(user)s marked %(post_desc)s as favorite"
+msgstr ""
+
+#: forum/actions/meta.py:192
+#, python-format
+msgid "%(user)s deleted %(post_desc)s"
+msgstr ""
+
+#: forum/actions/meta.py:201
+msgid "flagged by multiple users: "
+msgstr "отбСлязан ΠΎΡ‚ Π½ΡΠΊΠΎΠ»ΠΊΠΎ ΠΏΠΎΡ‚рСбитСля:"
+
+#: forum/actions/node.py:8
+msgid "Initial revision"
+msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½Π° Π²Π΅Ρ€ΡΠΈΡ"
+
+#: forum/actions/node.py:19 forum/templatetags/node_tags.py:203
+msgid "asked"
+msgstr "Π·Π°Π΄Π°Π΄Π΅Π½ΠΎ"
+
+#: forum/actions/node.py:31
+#, fuzzy, python-format
+msgid "%(user)s asked %(question)s"
+msgstr "%(user)s ΠΏΠΎΠΏΠΈΡ‚Π° %(question)s"
+
+#: forum/actions/node.py:37 forum/templatetags/node_tags.py:204
+msgid "answered"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½ΠΎ"
+
+#: forum/actions/node.py:49
+#, fuzzy, python-format
+msgid "%(user)s answered %(asker)s on %(question)s"
+msgstr ""
+"<div class=\"questions-count\">%(num_q)s</div>questions <strong>without "
+"accepted answers</strong>"
+
+#: forum/actions/node.py:56
+#, fuzzy
+msgid "commented"
+msgstr "post a comment"
+
+#: forum/actions/node.py:64
+#, fuzzy, python-format
+msgid "%(user)s commented on %(post_desc)s"
+msgstr "Нов ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° %(question_title)s"
+
+#: forum/actions/node.py:70 forum/actions/page.py:23
+#, fuzzy
+msgid "edited"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½"
+
+#: forum/actions/node.py:82
+#, python-format
+msgid "%(user)s edited %(post_desc)s"
+msgstr "%(user)s Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π° %(post_desc)s"
+
+#: forum/actions/node.py:91
+msgid "retagged"
+msgstr "ΠΏΡ€Π΅Ρ‚Π°Π³Π½Π°Ρ‚ΠΎ"
+
+#: forum/actions/node.py:95
+msgid "Retag"
+msgstr "Нов Ρ‚Π°Π³"
+
+#: forum/actions/node.py:104
+#, python-format
+msgid "%(user)s retagged %(post_desc)s"
+msgstr "%(user)s Ρ€Π΅Ρ‚Π°Π³Π½Π° %(post_desc)s"
+
+#: forum/actions/node.py:113
+#, fuzzy
+msgid "reverted"
+msgstr "ΠΏΡ€Π΅Ρ‚Π°Π³Π½Π°Ρ‚ΠΎ"
+
+#: forum/actions/node.py:127
+#, python-format
+msgid ""
+"%(user)s reverted %(post_desc)s from revision %(initial)d (%(initial_sum)s) "
+"to revision %(final)d (%(final_sum)s)"
+msgstr ""
+"%(user)s Π²ΡŠΡ€Π½Π° %(post_desc)s ΠΎΡ‚ Ρ€Π΅Π²ΠΈΠ·ΠΈΡ %(initial)d (%(initial_sum)s) Π΄ΠΎ "
+"рСвизия %(final)d (%(final_sum)s)"
+
+#: forum/actions/node.py:138
+#, fuzzy
+msgid "closed"
+msgstr "Π·Π°Ρ‚Π²ΠΎΡ€Π΅Π½ΠΎ"
+
+#: forum/actions/node.py:152
+#, python-format
+msgid "%(user)s closed %(post_desc)s: %(reason)s"
+msgstr "%(user)s Π·Π°Ρ‚Π²ΠΎΡ€ΠΈ %(post_desc)s: %(reason)s"
+
+#: forum/actions/node.py:159
+#, fuzzy
+msgid "converted"
+msgstr "ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½"
+
+#: forum/actions/node.py:177
+#, python-format
+msgid "%(user)s converted an answer to %(question)s into a comment"
+msgstr "%(user)s ΠΏΡ€Π΅Π²ΡŠΡ€Π½Π° ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π° Π½Π° %(question)s Π² ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€"
+
+#: forum/actions/node.py:183
+msgid "wikified"
+msgstr ""
+
+#: forum/actions/node.py:195
+#, python-format
+msgid "%(user)s marked %(node)s as community wiki."
+msgstr "%(user)s ΠΎΡ‚бСляза %(node)s ΠΊΠ°Ρ‚ΠΎ Ρ‡Π°ΡΡ‚ ΠΎΡ‚ ΡƒΠΈΠΉΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚.\t"
+
+#: forum/actions/page.py:6
+#, fuzzy
+msgid "created"
+msgstr "създадСно"
+
+#: forum/actions/page.py:17
+#, python-format
+msgid "%(user)s created a new page titled %(page)s"
+msgstr "%(user)s ΡΡŠΠ·Π΄Π°Π΄Π΅ Π½ΠΎΠ²Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π° ΠΎΠ·Π°Π³Π»Π°Π²Π΅Π½Π° %(page)s"
+
+#: forum/actions/page.py:36
+#, python-format
+msgid "%(user)s edited the page titled %(page)s"
+msgstr "%(user)s Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°Ρ‚Π° ΠΎΠ·Π°Π³Π»Π°Π²Π΅Π½Π° %(page)s"
+
+#: forum/actions/page.py:42
+msgid "published"
+msgstr "ΠΏΡƒΠ±Π»ΠΈΠΊΡƒΠ²Π°Π½ΠΎ"
+
+#: forum/actions/page.py:55
+#, fuzzy, python-format
+msgid "%(user)s published a new page titled %(page)s"
+msgstr "%(username)s Π΅ Π½ΠΎΠ² ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π» Π½Π° %(app_name)s"
+
+#: forum/actions/user.py:10
+#, fuzzy
+msgid "joined"
+msgstr "ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€Π°Π½ΠΎ"
+
+#: forum/actions/user.py:20
+#, python-format
+msgid "%(user)s %(have_has)s joined the %(app_name)s Q&A community"
+msgstr "%(user)s %(have_has)s ΡΠ΅ ΠΏΡ€ΠΈΡΡŠΠ΅Π΄ΠΈΠ½ΠΈ ΠΊΡŠΠΌ %(app_name)s Q&A ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π°"
+
+#: forum/actions/user.py:22
+msgid "have"
+msgstr "ΠΈΠΌΠ°"
+
+#: forum/actions/user.py:22
+msgid "has"
+msgstr "ΠΈΠΌΠ°"
+
+#: forum/actions/user.py:27
+#, fuzzy
+msgid "edited profile"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½ ΠΏΠΎΡ‚рСбитСлски ΠΏΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum/actions/user.py:30
+#, python-format
+msgid "%(user)s edited %(hes_or_your)s %(profile_link)s"
+msgstr "%(user)s Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π° %(hes_or_your)s %(profile_link)s"
+
+#: forum/actions/user.py:33
+#, fuzzy
+msgid "profile"
+msgstr "ΠΏΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum/actions/user.py:37
+msgid "gave bonus"
+msgstr "Π΄Π°Π΄Π΅ Π±ΠΎΠ½ΡƒΡ"
+
+#: forum/actions/user.py:49
+#, python-format
+msgid "Congratulations, you have been awarded an extra %s reputation points."
+msgstr "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»Π΅Π½ΠΈΡ, Π²ΠΈΠ΅ ΡΡ‚Π΅ Π½Π°Π³Ρ€Π°Π΄Π΅Π½ΠΈ Ρ Π΄ΠΎΠΏΡŠΠ»Π½ΠΈΡ‚Π΅Π»Π½ΠΈ %s Ρ‚ΠΎΡ‡ΠΊΠΈ."
+
+#: forum/actions/user.py:50
+msgid "Thank you"
+msgstr "Благодаря"
+
+#: forum/actions/user.py:53
+#, python-format
+msgid "You have been penalized in %s reputation points."
+msgstr "Π’ΠΈΠ΅ ΡΡ‚Π΅ Π±ΠΈΠ»ΠΈ ΡΠ°Π½ΠΊΡ†ΠΈΠΎΠ½ΠΈΡ€Π°Π½ΠΈ Ρ %s Ρ‚ΠΎΡ‡ΠΊΠΈ."
+
+#: forum/actions/user.py:57 forum/templatetags/extra_tags.py:93
+#: forum_modules/exporter/templates/running.html:157
+msgid "unknown"
+msgstr "нСизвСстСн"
+
+#: forum/actions/user.py:62
+#, python-format
+msgid ""
+"%(user)s awarded an extra %(value)s reputation points to %(users)s: %"
+"(message)s"
+msgstr "%(user)s Π½Π°Π³Ρ€Π°Π΄ΠΈ Ρ %(value)s Ρ‚ΠΎΡ‡ΠΊΠΈ  %(users)s: %(message)s\t"
+
+#: forum/actions/user.py:67
+#, python-format
+msgid ""
+"%(user)s penalised %(users)s in %(value)s reputation points: %(message)s"
+msgstr "%(user)s Π½Π°ΠΊΠ°Π·Π° %(users)s Ρ %(value)s Ρ‚ΠΎΡ‡ΠΊΠΈ: %(message)s\t"
+
+#: forum/actions/user.py:75
+#, fuzzy
+msgid "was awarded"
+msgstr "всички Π½Π°Π³Ρ€Π°Π΄ΠΈ"
+
+#: forum/actions/user.py:103
+#, python-format
+msgid ""
+"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
+"href=\"%(profile_url)s\">your profile</a>."
+msgstr ""
+"ЧСстито! ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ…Ρ‚Π΅ Π·Π½Π°Ρ‡ΠΊΠ° '%(badge_name)s'. ΠŸΡ€ΠΎΠ²Π΅Ρ€Π΅Ρ‚Π΅ Π²ΡŠΠ² <a href=\"%"
+"(profile_url)s\">ΠΏΡ€ΠΎΡ„ΠΈΠ»Π° ΡΠΈ</a>.\t"
+
+#: forum/actions/user.py:125
+#, python-format
+msgid "%(user)s %(were_was)s awarded the %(badge_name)s badge"
+msgstr "%(user)s  %(were_was)s ΡΠΏΠ΅Ρ‡Π΅Π»ΠΈ %(badge_name)s Π·Π½Π°Ρ‡ΠΊΠ°"
+
+#: forum/actions/user.py:127
+#, fuzzy
+msgid "were"
+msgstr "бяха"
+
+#: forum/actions/user.py:127
+msgid "was"
+msgstr "бСшС"
+
+#: forum/actions/user.py:132
+#, fuzzy
+msgid "suspended"
+msgstr "ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΎ"
+
+#: forum/actions/user.py:150
+msgid "Your suspension has been removed."
+msgstr "Π’Π°ΡˆΠ°Ρ‚Π° Π·Π°Π±Ρ€Π°Π½Π° Π±Π΅ΡˆΠ΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½Π°."
+
+#: forum/actions/user.py:154
+#, python-format
+msgid "for %s days"
+msgstr "Π·Π° %s Π΄Π΅Π½Π°"
+
+#: forum/actions/user.py:156
+msgid "indefinetely"
+msgstr ""
+
+#: forum/actions/user.py:158
+#, python-format
+msgid "%(user)s suspended %(users)s %(suspension)s: %(msg)s"
+msgstr ""
+
+#: forum/actions/user.py:160 forum/views/users.py:241
+msgid "Bad behaviour"
+msgstr "Π›ΠΎΡˆΠΎ ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅"
+
+#: forum/forms/admin.py:16
+#, fuzzy
+msgid "Please input at least one ip address"
+msgstr "Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ ΠΏΠΎΠ½Π΅ Π΅Π΄ΠΈΠ½ IP Π°Π΄Ρ€Π΅Ρ"
+
+#: forum/forms/admin.py:22
+#, python-format
+msgid "Invalid ip address: %s"
+msgstr "НСвалидСн IP Π°Π΄Ρ€Π΅Ρ: %s"
+
+#: forum/forms/admin.py:25
+msgid "Please use the dotted quad notation for the ip addresses"
+msgstr ""
+
+#: forum/forms/admin.py:32
+msgid "Allow ips"
+msgstr ""
+
+#: forum/forms/admin.py:33
+msgid ""
+"Comma separated list of ips allowed to access the site while in maintenance"
+msgstr ""
+
+#: forum/forms/admin.py:37
+#: forum/skins/default/templates/users/karma_bonus.html:9
+#: forum/skins/zapprotect/templates/users/karma_bonus.html:9
+#, fuzzy
+msgid "Message"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: forum/forms/admin.py:38
+msgid "A message to display to your site visitors while in maintainance mode"
+msgstr ""
+
+#: forum/forms/admin.py:43
+msgid "Default"
+msgstr ""
+
+#: forum/forms/admin.py:44
+msgid "Default with sidebar"
+msgstr ""
+
+#: forum/forms/admin.py:45
+#, fuzzy
+msgid "None"
+msgstr "Π±Ρ€ΠΎΠ½Π·"
+
+#: forum/forms/admin.py:49 forum/settings/static.py:6
+#, fuzzy
+msgid "Markdown"
+msgstr "Markdown ΡΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#: forum/forms/admin.py:50 forum/settings/static.py:7
+msgid "HTML"
+msgstr ""
+
+#: forum/forms/admin.py:51 forum/settings/static.py:8
+msgid "Escaped"
+msgstr ""
+
+#: forum/forms/admin.py:76
+#: forum/skins/default/templates/osqaadmin/nodeman.html:284
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:284
+#, fuzzy
+msgid "Title"
+msgstr "Π·Π°Π³Π»Π°Π²ΠΈΠ΅"
+
+#: forum/forms/admin.py:78
+msgid "Page URL"
+msgstr "URL Π°Π΄Ρ€Π΅Ρ Π½Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°Ρ‚Π°"
+
+#: forum/forms/admin.py:80
+#, fuzzy
+msgid "Page Content"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/forms/admin.py:81
+msgid "Mime Type"
+msgstr "Mime Π’ΠΈΠΏ"
+
+#: forum/forms/admin.py:84
+msgid "Render Mode"
+msgstr "Render Mode"
+
+#: forum/forms/admin.py:87
+msgid "Template"
+msgstr "Π¨Π°Π±Π»ΠΎΠ½"
+
+#: forum/forms/admin.py:88
+msgid "Sidebar Content"
+msgstr ""
+
+#: forum/forms/admin.py:89
+msgid "Wrap sidebar block"
+msgstr ""
+
+#: forum/forms/admin.py:91
+msgid "Sidebar Render Mode"
+msgstr ""
+
+#: forum/forms/admin.py:93
+#, fuzzy
+msgid "Allow comments"
+msgstr "post a comment"
+
+#: forum/forms/admin.py:100
+#, fuzzy
+msgid "send validation email"
+msgstr "Stop Email"
+
+#: forum/forms/admin.py:105
+#, fuzzy
+msgid "email address"
+msgstr "ИмСйл Π°Π΄Ρ€Π΅Ρ (Π½Π΅ Π³ΠΎ ΡΠΏΠΎΠ΄Π΅Π»ΡΠΌΠ΅)"
+
+#: forum/forms/auth.py:21
+#, fuzzy
+msgid "Your account email"
+msgstr ""
+"<strong>Нов ΠΈΠΌΠ΅ΠΉΠ»:</strong> (няма Π΄Π° Π±ΡŠΠ΄Π΅ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½, Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ "
+"дСйствитСлСн)"
+
+#: forum/forms/auth.py:23
+msgid "You cannot leave this field blank"
+msgstr "Врябва Π΄Π° Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ Π½Π΅Ρ‰ΠΎ"
+
+#: forum/forms/auth.py:24 forum/forms/general.py:103
+msgid "please enter a valid email address"
+msgstr "Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»Π΅Π½ ΠΈΠΌΠ΅ΠΉΠ» Π°Π΄Ρ€Π΅Ρ"
+
+#: forum/forms/auth.py:32
+msgid "Sorry, but this email is not on our database."
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅ Ρ‚ΠΎΠ·ΠΈ ΠΈΠΌΠ΅ΠΉΠ» Π½Π΅ Π΅ Π² Π½Π°ΡˆΠ°Ρ‚Π° Π±Π°Π·Π° Π΄Π°Π½Π½ΠΈ."
+
+#: forum/forms/auth.py:40
+msgid "okay, let's try!"
+msgstr "Π΄ΠΎΠ±Ρ€Π΅, Ρ‰Π΅ ΠΎΠΏΠΈΡ‚Π°ΠΌ"
+
+#: forum/forms/auth.py:41
+msgid "no OSQA community email please, thanks"
+msgstr "Π½Π΅ ΠΈΡΠΊΠ°ΠΌ ΠΈΠΌΠ΅ΠΉΠ»ΠΈ ΠΎΡ‚ Zapprotect"
+
+#: forum/forms/auth.py:44
+msgid "please choose one of the options above"
+msgstr "ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π½ΡΠΊΠΎΡ ΠΎΡ‚ ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΎΠΏΡ†ΠΈΠΈ"
+
+#: forum/forms/auth.py:51
+msgid "Current password"
+msgstr "Π’Π΅ΠΊΡƒΡ‰Π° ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/forms/auth.py:62
+msgid ""
+"Old password is incorrect.                     Please enter the correct "
+"password."
+msgstr "Π’Π΅ΠΊΡƒΡ‰Π°Ρ‚Π° ΠΏΠ°Ρ€ΠΎΠ»Π° Π½Π΅ Π΅ Π²ΡΡ€Π½Π°. ΠœΠΎΠ»Ρ, Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ ΠΈΡΡ‚инската ΠΏΠ°Ρ€ΠΎΠ»Π°."
+
+#: forum/forms/general.py:27
+msgid "this field is required"
+msgstr "Π’ΠΎΠ²Π° ΠΏΠΎΠ»Π΅ Π΅ Π·Π°Π΄ΡŠΠ»ΠΆΠΈΡ‚Π΅Π»Π½ΠΎ"
+
+#: forum/forms/general.py:40
+msgid "choose a username"
+msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΏΠΎΡ‚рСбитСлско ΠΈΠΌΠ΅"
+
+#: forum/forms/general.py:45
+msgid "user name is required"
+msgstr "потрСбитСлско ΠΈΠΌΠ΅ Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ"
+
+#: forum/forms/general.py:46
+msgid "sorry, this name is taken, please choose another"
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅, Ρ‚ΠΎΠ²Π° ΠΈΠΌΠ΅ Π΅ Π²Π·Π΅Ρ‚ΠΎ, ΠΌΠΎΠ»Ρ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π΄Ρ€ΡƒΠ³ΠΎ"
+
+#: forum/forms/general.py:47
+msgid "sorry, this name is not allowed, please choose another"
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅, Ρ‚ΠΎΠ²Π° ΠΈΠΌΠ΅ Π½Π΅ Π΅ ΠΏΠΎΠ·Π²ΠΎΠ»Π΅Π½ΠΎ, ΠΌΠΎΠ»Ρ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π΄Ρ€ΡƒΠ³ΠΎ"
+
+#: forum/forms/general.py:48
+msgid "sorry, there is no user with this name"
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅, Π½ΡΠΌΠ° ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π» Ρ Ρ‚ΠΎΠ²Π° ΠΈΠΌΠ΅"
+
+#: forum/forms/general.py:49
+msgid "sorry, we have a serious error - user name is taken by several users"
+msgstr ""
+"Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅, Π½ΠΈΠ΅ ΠΈΠΌΠ°ΠΌΠ΅ Π΅Π΄Π½Π° ΡΠ΅Ρ€ΠΈΠΎΠ·Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ° - ΠΏΠΎΡ‚рСбитСлско ΠΈΠΌΠ΅ ΡΠ΅ Π²Π·Π΅ΠΌΠ° ΠΎΡ‚ "
+"няколко ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ"
+
+#: forum/forms/general.py:50
+msgid "user name can only consist of letters, empty space and underscore"
+msgstr ""
+"потрСбитСлското ΠΈΠΌΠ΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΡΡŠΡΡ‚ΠΎΠΈ ΡΠ°ΠΌΠΎ ΠΎΡ‚ Π±ΡƒΠΊΠ²ΠΈ, ΠΏΡ€Π°Π·Π½ΠΎ ΠΌΡΡΡ‚ΠΎ ΠΈ "
+"ΠΏΠΎΠ΄Ρ‡Π΅Ρ€Ρ‚Π°Π²Π°Π½Π΅"
+
+#: forum/forms/general.py:51
+#, python-format
+msgid "user name is to short, please use at least %d characters"
+msgstr "потрСбитСлското ΠΈΠΌΠ΅ Π΅ ΠΏΡ€Π΅ΠΊΠ°Π»Π΅Π½ΠΎ ΠΊΡ€Π°Ρ‚ΠΊΠΎ, ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΠΏΠΎΠ½Π΅ %d ΡΠΈΠΌΠ²ΠΎΠ»Π°"
+
+#: forum/forms/general.py:101
+msgid "your email address"
+msgstr "Π’Π°ΡˆΠΈΡ ΠΈΠΌΠ΅ΠΉΠ» <i>(Π½Π΅ ΡΠ΅ ΡΠΏΠΎΠ΄Π΅Π»Ρ)</i>"
+
+#: forum/forms/general.py:102
+msgid "email address is required"
+msgstr "ΠΈΠΌΠ΅ΠΉΠ» Π°Π΄Ρ€Π΅ΡΠ° ΡΠ΅ ΠΈΠ·ΠΈΡΠΊΠ²Π°"
+
+#: forum/forms/general.py:104
+msgid "this email is already used by someone else, please choose another"
+msgstr "Ρ‚ΠΎΠ·ΠΈ ΠΈΠΌΠ΅ΠΉΠ» Π²Π΅Ρ‡Π΅ ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° ΠΎΡ‚ Π½ΡΠΊΠΎΠΉ Π΄Ρ€ΡƒΠ³, ΠΌΠΎΠ»Ρ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π΄Ρ€ΡƒΠ³"
+
+#: forum/forms/general.py:129
+msgid "choose password"
+msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/forms/general.py:130
+msgid "password is required"
+msgstr "Изисква ΡΠ΅ ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/forms/general.py:133
+msgid "retype password"
+msgstr "ΠŸΠ°Ρ€ΠΎΠ»Π° <i>(Π½Π°ΠΏΠΈΡˆΠ΅Ρ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ)</i>"
+
+#: forum/forms/general.py:134
+msgid "please, retype your password"
+msgstr "Моля, Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ ΠΏΠ°Ρ€ΠΎΠ»Π°Ρ‚Π° ΡΠΈ"
+
+#: forum/forms/general.py:135
+msgid "sorry, entered passwords did not match, please try again"
+msgstr "БъТалявамС, Π²ΠΏΠΈΡΠ°Π½ΠΈΡ‚Π΅ ΠΏΠ°Ρ€ΠΎΠ»ΠΈ Π½Π΅ ΡΡŠΠ²ΠΏΠ°Π΄Π°Ρ‚, ΠΎΠΏΠΈΡ‚Π°ΠΉΡ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ"
+
+#: forum/forms/qanda.py:19
+#: forum/skins/default/templates/sidebar/markdown_help.html:12
+#: forum/skins/default/templates/sidebar/markdown_help.html:17
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:12
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:17
+msgid "title"
+msgstr "Π·Π°Π³Π»Π°Π²ΠΈΠ΅"
+
+#: forum/forms/qanda.py:20
+msgid "please enter a descriptive title for your question"
+msgstr "Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ ΠΎΠΏΠΈΡΠ°Ρ‚Π΅Π»Π½ΠΎ Π·Π°Π³Π»Π°Π²ΠΈΠ΅ Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/forms/qanda.py:25
+#, fuzzy, python-format
+msgid "title must be must be at least %s characters"
+msgstr "Π·Π°Π³Π»Π°Π²ΠΈΠ΅Ρ‚ΠΎ Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ > 10 ΡΠΈΠΌΠ²ΠΎΠ»Π°"
+
+#: forum/forms/qanda.py:33
+msgid "content"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/forms/qanda.py:46
+#, fuzzy, python-format
+msgid "question content must be at least %s characters"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅Ρ‚ΠΎ Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ° Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ > 10 ΡΠΈΠΌΠ²ΠΎΠ»Π°"
+
+#: forum/forms/qanda.py:57
+#, fuzzy, python-format
+msgid "answer content must be at least %s characters"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅Ρ‚ΠΎ Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ° Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ > 10 ΡΠΈΠΌΠ²ΠΎΠ»Π°"
+
+#: forum/forms/qanda.py:68 forum/skins/default/templates/header.html:35
+#: forum/skins/default/templates/search.html:20
+#: forum/skins/zapprotect/templates/header.html:35
+#: forum/skins/zapprotect/templates/search.html:20 forum/views/readers.py:218
+msgid "tags"
+msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/forms/qanda.py:70
+#, fuzzy, python-format
+msgid ""
+"Tags are short keywords, with no spaces within. At least %(min)s and up to %"
+"(max)s tags can be used."
+msgstr ""
+"Π’Π°Π³ΠΎΠ²Π΅Ρ‚Π΅ ΡΠ° ΠΊΡ€Π°Ρ‚ΠΊΠΈ ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈ Π΄ΡƒΠΌΠΈ, Π±Π΅Π· Ρ€Π°Π·ΡΡ‚ояниС ΠΌΠ΅ΠΆΠ΄Ρƒ Ρ‚ях. ΠœΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° "
+"ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚Π΅ Π΄ΠΎ 5 Ρ‚Π°Π³Π°."
+
+#: forum/forms/qanda.py:86
+#, python-format
+msgid "please use between %(min)s and %(max)s tags"
+msgstr "моля ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΠΎΡ‚ %(min)s Π΄ΠΎ %(max)s Ρ‚Π°Π³Π°"
+
+#: forum/forms/qanda.py:92
+#, python-format
+msgid "please use between %(min)s and %(max)s characters in you tags"
+msgstr "ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΠΎΡ‚ %(min)s Π΄ΠΎ %(max)s ΡΠΈΠΌΠ²ΠΎΠ»Π° Π² Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅"
+
+#: forum/forms/qanda.py:94
+#, fuzzy
+msgid ""
+"please use following characters in tags: letters , numbers, and characters "
+"'.-_'"
+msgstr "Π·Π° Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΡΠΈΠΌΠ²ΠΎΠ»ΠΈΡ‚Π΅ a-z, Π°-я, Ρ‡ΠΈΡΠ»Π°, Π·Π½Π°Ρ†ΠΈ ΠΈ '.-_#'"
+
+#: forum/forms/qanda.py:104
+#, python-format
+msgid ""
+"You don't have enough reputation to create new tags. The following tags do "
+"not exist yet: %s"
+msgstr ""
+"Π’ΠΈΠ΅ Π½Π΅ Ρ€Π°Π·ΠΏΠΎΠ»Π°Π³Π°Ρ‚ Ρ Π΄ΠΎΡΡ‚Π°Ρ‚ΡŠΡ‡Π½ΠΎ Ρ€Π΅ΠΏΡƒΡ‚ация, Π·Π° Π΄Π° ΡΡŠΠ·Π΄Π°Π²Π°Ρ‚Π΅ Π½ΠΎΠ²ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅. "
+"Π‘Π»Π΅Π΄Π½ΠΈΡ‚Π΅ Π±Π΅Π»Π΅ΠΆΠΊΠΈ Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‚ ΠΎΡ‰Π΅: %s"
+
+#: forum/forms/qanda.py:114
+#: forum/skins/default/templates/question_summary_list_roll.html:26
+#: forum/skins/default/templates/question_summary_list_roll.html:38
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:26
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:38
+msgid "community wiki"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/forms/qanda.py:115
+msgid ""
+"if you choose community wiki option, the question and answer do not generate "
+"points and name of author will not be shown"
+msgstr ""
+"Π°ΠΊΠΎ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚, Π²ΡŠΠΏΡ€ΠΎΡΠ° ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π° Π½Π΅ Π³Π΅Π½Π΅Ρ€ΠΈΡ€Π°Ρ‚ Ρ‚ΠΎΡ‡ΠΊΠΈ ΠΈ ΠΈΠΌΠ΅Ρ‚ΠΎ Π½Π° "
+"Π°Π²Ρ‚ΠΎΡ€Π° Π½ΡΠΌΠ° Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π²Π°Π½ΠΎ"
+
+#: forum/forms/qanda.py:133
+msgid "update summary:"
+msgstr "основна ΠΈΠ½Ρ„ормация Π·Π° ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅Ρ‚ΠΎ:"
+
+#: forum/forms/qanda.py:134
+msgid ""
+"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
+"improved style, this field is optional)"
+msgstr ""
+"Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ ΠΊΡ€Π°Ρ‚ΠΊΠΎ Π·Π°ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ Π½Π° Π½ΠΎΠ²Π°Ρ‚Π° Ρ€Π΅Π²ΠΈΠ·ΠΈΡ (Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡ, "
+"Π³Ρ€Π°ΠΌΠ°Ρ‚ΠΈΠΊΠ°, ΠΏΠΎΠ΄ΠΎΠ±Ρ€Π΅Π½ ΡΡ‚ΠΈΠ», Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ»Π΅ Π½Π΅ Π΅ Π·Π°Π΄ΡŠΠ»ΠΆΠΈΡ‚Π΅Π»Π½ΠΎ)"
+
+#: forum/forms/qanda.py:138
+msgid "Your message:"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: forum/forms/qanda.py:144
+msgid "Your name:"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΠΈΠΌΠ΅:"
+
+#: forum/forms/qanda.py:145
+msgid "Email (not shared with anyone):"
+msgstr "ИмСйл (Π½Π΅ ΡΠ΅ ΡΠΏΠΎΠ΄Π΅Π»Ρ Ρ Π½ΠΈΠΊΠΎΠΉ):"
+
+#: forum/forms/qanda.py:236
+msgid "this email does not have to be linked to gravatar"
+msgstr "Ρ‚ΠΎΠ·ΠΈ ΠΈΠΌΠ΅ΠΉΠ» Π½Π΅ Π΅ Π½ΡƒΠΆΠ½ΠΎ Π΄Π° Π±ΡŠΠ΄Π΅ ΡΠ²ΡŠΡ€Π·Π°Π½ Ρ gravatar"
+
+#: forum/forms/qanda.py:237
+msgid "Real name"
+msgstr "Π˜ΡΡ‚ΠΈΠ½ΡΠΊΠΎ ΠΈΠΌΠ΅"
+
+#: forum/forms/qanda.py:238
+msgid "Website"
+msgstr "Π£Π΅Π± ΡΠ°ΠΉΡ‚"
+
+#: forum/forms/qanda.py:239
+msgid "Location"
+msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅"
+
+#: forum/forms/qanda.py:240
+msgid "Date of birth"
+msgstr "Π”Π°Ρ‚Π° Π½Π° Ρ€Π°ΠΆΠ΄Π°Π½Π΅"
+
+#: forum/forms/qanda.py:240
+msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
+msgstr ""
+"няма Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π²Π°Π½ΠΎ, ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° ΡΠ΅ Π·Π° ΠΈΠ·Ρ‡ΠΈΡΠ»ΡΠ²Π°Π½Π΅ Π½Π° Π²ΡŠΠ·Ρ€Π°ΡΡ‚Ρ‚Π°, Ρ„ΠΎΡ€ΠΌΠ°Ρ‚: "
+"YYYY-MM-DD"
+
+#: forum/forms/qanda.py:241
+#: forum/skins/default/templates/account_settings.html:21
+#: forum/skins/default/templates/osqaadmin/moderation.html:68
+#: forum/skins/zapprotect/templates/account_settings.html:21
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:68
+msgid "Profile"
+msgstr "ΠŸΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum/forms/qanda.py:246
+msgid "Screen name"
+msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΎ ΠΈΠΌΠ΅"
+
+#: forum/forms/qanda.py:273
+msgid "this email has already been registered, please use another one"
+msgstr "Ρ‚ΠΎΠ·ΠΈ ΠΈΠΌΠ΅ΠΉΠ» Π²Π΅Ρ‡Π΅ Π΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Π½, ΠΌΠΎΠ»Ρ, Π²ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ Π΄Ρ€ΡƒΠ³"
+
+#: forum/forms/qanda.py:278
+msgid "Instantly"
+msgstr "ΠœΠΎΠΌΠ΅Π½Ρ‚Π°Π»Π½ΠΎ"
+
+#: forum/forms/qanda.py:281
+msgid "No notifications"
+msgstr "Π‘Π΅Π· ΠΈΠ·Π²Π΅ΡΡ‚ия"
+
+#: forum/middleware/anon_user.py:34
+#, python-format
+msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
+msgstr "Π—Π° ΠΏΡŠΡ€Π²ΠΈ ΠΏΡŠΡ‚ Ρ‚ΡƒΠΊ? ΠŸΡ€ΠΎΠ²Π΅Ρ€Π΅Ρ‚Π΅ <a href=\"%s\">Π§Π—ΠŸ</a>."
+
+#: forum/models/action.py:215
+msgid "You"
+msgstr "Π’ΠΈΠ΅"
+
+#: forum/models/action.py:230
+#, fuzzy, python-format
+msgid "on %(link)s"
+msgstr "Π² %(link)s"
+
+#: forum/models/action.py:234
+#, python-format
+msgid "%(user)s %(node_name)s %(node_desc)s"
+msgstr ""
+
+#: forum/models/comment.py:6 forum/views/commands.py:230
+#: forum/views/commands.py:256 forum_modules/akismet/startup.py:60
+#, fuzzy
+msgid "comment"
+msgstr "ΠΊΠΎΠΌΠ΅Π½Ρ‚ΠΈΡ€Π°ΠΉ"
+
+#: forum/models/meta.py:63
+msgid "Unknown"
+msgstr "НСизвСстСн"
+
+#: forum/models/meta.py:68
+msgid "No description available"
+msgstr "Няма ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅"
+
+#: forum/models/node.py:237
+#, fuzzy
+msgid "post"
+msgstr "Π΄ΠΎΠ±Π°Π²Π΅Π½ΠΎ"
+
+#: forum/models/page.py:31
+#, python-format
+msgid "[Unpublished] %s"
+msgstr "[НСпубликувани] %s"
+
+#: forum/models/question.py:33
+msgid "[deleted] "
+msgstr "[ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚]"
+
+#: forum/models/question.py:36
+msgid "[closed] "
+msgstr "[Π·Π°Ρ‚Π²ΠΎΡ€Π΅Π½]"
+
+#: forum/models/tag.py:38
+msgid "interesting"
+msgstr "интСрСсно"
+
+#: forum/models/tag.py:38
+msgid "ignored"
+msgstr "ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€Π°Π½ΠΎ"
+
+#: forum/models/user.py:201 forum/views/readers.py:115
+#, fuzzy
+msgid "asked-by"
+msgstr "Π·Π°Π΄Π°Π΄Π΅Π½ΠΎ"
+
+#: forum/models/user.py:205 forum/views/readers.py:118
+#, fuzzy
+msgid "answered-by"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½ΠΎ"
+
+#: forum/models/user.py:209 forum/views/readers.py:121
+#, fuzzy
+msgid "subscribed-by"
+msgstr "Π°Π±ΠΎΠ½ΠΈΡ€Π°ΠΉ ΠΌΠ΅"
+
+#: forum/settings/__init__.py:44
+msgid "Badges config"
+msgstr "Настройка Π½Π° Π·Π½Π°Ρ‡ΠΊΠΈΡ‚Π΅"
+
+#: forum/settings/__init__.py:44
+msgid "Configure badges on your OSQA site."
+msgstr ""
+
+#: forum/settings/accept.py:5
+#, fuzzy
+msgid "Accepting answers"
+msgstr "oldest"
+
+#: forum/settings/accept.py:5
+msgid "Settings to tweak the behaviour of accepting answers."
+msgstr ""
+
+#: forum/settings/accept.py:8
+#, fuzzy
+msgid "Disallow answers to be accepted"
+msgstr "answer accepted"
+
+#: forum/settings/accept.py:9
+msgid ""
+"Disable accepting answers feature. If you reenable it in the future, "
+"currently accepted answers will still be marked as accepted."
+msgstr ""
+
+#: forum/settings/accept.py:13
+#, fuzzy
+msgid "Maximum accepted answers per question"
+msgstr "Π½Π΅ Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/settings/accept.py:14
+msgid "How many accepted answers are allowed per question. Use 0 for no limit."
+msgstr ""
+
+#: forum/settings/accept.py:17
+msgid "Maximum accepted answers per user/question"
+msgstr ""
+
+#: forum/settings/accept.py:18
+msgid ""
+"If more than one accpeted answer is allowed, how many can be accepted per "
+"single user per question."
+msgstr ""
+
+#: forum/settings/accept.py:21
+#, fuzzy
+msgid "Users an accept own answer"
+msgstr "oldest"
+
+#: forum/settings/accept.py:22
+msgid "Are normal users allowed to accept theyr own answers.."
+msgstr ""
+"Π”Π°Π»ΠΈ ΠΎΠ±ΠΈΠΊΠ½ΠΎΠ²Π΅Π½ΠΈΡ‚Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΏΡ€ΠΈΠ΅ΠΌΠ°Ρ‚ ΡΠΎΠ±ΡΡ‚Π²Π΅Π½ΠΈΡ‚Π΅ ΡΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ"
+
+#: forum/settings/basic.py:9
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:67
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:67
+#, fuzzy
+msgid "Basic settings"
+msgstr ""
+"<span class='big strong'>Adjust frequency of email updates.</span> Receive "
+"updates on interesting questions by email, <strong><br/>help the community</"
+"strong> by answering questions of your colleagues. If you do not wish to "
+"receive emails - select 'no email' on all items below.<br/>Updates are only "
+"sent when there is any new activity on selected items."
+
+#: forum/settings/basic.py:9
+msgid "The basic settings for your application"
+msgstr "ΠžΡΠ½ΠΎΠ²Π½ΠΈΡ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ Π·Π° Π²Π°ΡˆΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅"
+
+#: forum/settings/basic.py:12
+msgid "Application logo"
+msgstr "Π›ΠΎΠ³ΠΎ"
+
+#: forum/settings/basic.py:13
+#, fuzzy
+msgid "Your site main logo."
+msgstr ""
+"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+"anyone, must be valid)"
+
+#: forum/settings/basic.py:17
+msgid "Favicon"
+msgstr ""
+
+#: forum/settings/basic.py:18
+msgid "Your site favicon."
+msgstr ""
+
+#: forum/settings/basic.py:22
+msgid "Application title"
+msgstr ""
+
+#: forum/settings/basic.py:23
+msgid "The title of your application that will show in the browsers title bar"
+msgstr ""
+
+#: forum/settings/basic.py:26
+msgid "Application short name"
+msgstr ""
+
+#: forum/settings/basic.py:30
+msgid "Application keywords"
+msgstr ""
+
+#: forum/settings/basic.py:31
+msgid "The meta keywords that will be available through the HTML meta tags."
+msgstr ""
+
+#: forum/settings/basic.py:34
+#, fuzzy
+msgid "Application description"
+msgstr ""
+"Gold badge is the highest award in this community. To obtain it have to show "
+"profound knowledge and ability in addition to your active participation."
+
+#: forum/settings/basic.py:35
+msgid "The description of your application"
+msgstr ""
+
+#: forum/settings/basic.py:39
+msgid "Copyright notice"
+msgstr ""
+
+#: forum/settings/basic.py:40
+msgid "The copyright notice visible at the footer of your page."
+msgstr ""
+
+#: forum/settings/basic.py:43
+msgid "Support URL"
+msgstr ""
+
+#: forum/settings/basic.py:44
+msgid ""
+"The URL provided for users to get support. It can be http: or mailto: or "
+"whatever your preferred support scheme is."
+msgstr ""
+
+#: forum/settings/basic.py:48
+msgid "Contact URL"
+msgstr ""
+
+#: forum/settings/basic.py:49
+msgid ""
+"The URL provided for users to contact you. It can be http: or mailto: or "
+"whatever your preferred contact scheme is."
+msgstr ""
+
+#: forum/settings/email.py:5
+msgid "Email settings"
+msgstr ""
+
+#: forum/settings/email.py:5
+msgid "Email server and other email related settings."
+msgstr ""
+
+#: forum/settings/email.py:8
+msgid "Email Server"
+msgstr ""
+
+#: forum/settings/email.py:9
+msgid "The SMTP server through which your application will be sending emails."
+msgstr ""
+
+#: forum/settings/email.py:13
+msgid "Email Port"
+msgstr ""
+
+#: forum/settings/email.py:14
+msgid ""
+"The port on which your SMTP server is listening to. Usually this is 25, but "
+"can be something else."
+msgstr ""
+
+#: forum/settings/email.py:18
+msgid "Email User"
+msgstr ""
+
+#: forum/settings/email.py:19
+msgid "The username for your SMTP connection."
+msgstr ""
+
+#: forum/settings/email.py:23
+msgid "Email Password"
+msgstr ""
+
+#: forum/settings/email.py:24
+msgid "The password for your SMTP connection."
+msgstr ""
+
+#: forum/settings/email.py:29
+msgid "Use TLS"
+msgstr ""
+
+#: forum/settings/email.py:30
+msgid "Does your SMTP server usFes TLS for authentication."
+msgstr ""
+
+#: forum/settings/email.py:34
+#, fuzzy
+msgid "Site 'from' email address"
+msgstr "Your email <i>(never shared)</i>"
+
+#: forum/settings/email.py:35
+msgid ""
+"The address that will show up on the 'from' field on emails sent by your "
+"website."
+msgstr ""
+
+#: forum/settings/email.py:39
+#, fuzzy
+msgid "Email subject prefix"
+msgstr "Welcome to the Q&A forum"
+
+#: forum/settings/email.py:40
+msgid ""
+"Every email sent through your website will have the subject prefixed by this "
+"string. It's usually a good idea to have such a prefix so your users can "
+"easilly set up a filter on theyr email clients."
+msgstr ""
+
+#: forum/settings/email.py:44
+msgid "Email Footer Text"
+msgstr ""
+
+#: forum/settings/email.py:45
+msgid ""
+"Email footer text, usually \"CAN SPAM\" compliance, or the physical address "
+"of the organization running the website. See <a href=\"http://en.wikipedia."
+"org/wiki/CAN-SPAM_Act_of_2003\">this Wikipedia article</a> for more info."
+msgstr ""
+
+#: forum/settings/email.py:49
+msgid "Email Border color"
+msgstr ""
+
+#: forum/settings/email.py:50
+msgid "The outter border color of the email base template"
+msgstr ""
+
+#: forum/settings/email.py:54
+msgid "Email Paragraph style"
+msgstr ""
+
+#: forum/settings/email.py:55
+msgid "A valid css string to be used to style email paragraphs (the P tag)."
+msgstr ""
+
+#: forum/settings/email.py:59
+msgid "Email link style"
+msgstr ""
+
+#: forum/settings/email.py:60
+msgid "A valid css string to be used to style email links (the A tag)."
+msgstr ""
+
+#: forum/settings/extkeys.py:4
+msgid "External Keys"
+msgstr ""
+
+#: forum/settings/extkeys.py:4
+msgid ""
+"Keys for various external providers that your application may optionally use."
+msgstr ""
+
+#: forum/settings/extkeys.py:7
+msgid "Google sitemap code"
+msgstr ""
+
+#: forum/settings/extkeys.py:8
+msgid ""
+"This is the code you get when you register your site at <a href='https://www."
+"google.com/webmasters/tools/'>Google webmaster central</a>."
+msgstr ""
+
+#: forum/settings/extkeys.py:12
+msgid "Google analytics key"
+msgstr ""
+
+#: forum/settings/extkeys.py:13
+msgid ""
+"Your Google analytics key. You can get one at the <a href='http://www.google."
+"com/analytics/'>Google analytics official website</a>"
+msgstr ""
+
+#: forum/settings/form.py:5
+msgid "Form settings"
+msgstr ""
+
+#: forum/settings/form.py:5
+#, fuzzy
+msgid "General settings for the OSQA forms."
+msgstr "ΠŸΠΎΠ·Π΄Ρ€Π°Π²ΠΈ ΠΎΡ‚ Zapprotect Q&A"
+
+#: forum/settings/form.py:8
+#, fuzzy
+msgid "Enable community wiki"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/settings/form.py:9
+msgid "Can questions or answers be marked as community wiki."
+msgstr ""
+
+#: forum/settings/form.py:13
+#, fuzzy
+msgid "Limit tag creation"
+msgstr "karma"
+
+#: forum/settings/form.py:14
+msgid ""
+"Limit tag creation to super users, staff or users with a minimum reputation."
+msgstr ""
+
+#: forum/settings/form.py:20
+msgid "Minimum number of characters for a question's title"
+msgstr ""
+
+#: forum/settings/form.py:21
+msgid ""
+"The minimum number of characters a user must enter into the title field of a "
+"question."
+msgstr ""
+
+#: forum/settings/form.py:28
+msgid "Minimum number of characters for a question's content"
+msgstr ""
+
+#: forum/settings/form.py:29
+msgid ""
+"The minimum number of characters a user must enter into the content field of "
+"a question."
+msgstr ""
+
+#: forum/settings/form.py:36
+#, fuzzy
+msgid "Empty question content"
+msgstr "ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/settings/form.py:37
+msgid "If a question's content can be empty."
+msgstr ""
+
+#: forum/settings/form.py:45
+msgid "Required number of tags per question"
+msgstr ""
+
+#: forum/settings/form.py:46
+msgid "How many tags are required in questions."
+msgstr ""
+
+#: forum/settings/form.py:50
+msgid "Maximum number of tags per question"
+msgstr ""
+
+#: forum/settings/form.py:51
+msgid "How many tags are allowed in questions."
+msgstr ""
+
+#: forum/settings/form.py:55
+msgid "Minimum length of a tag"
+msgstr ""
+
+#: forum/settings/form.py:56
+msgid "How short a tag can be."
+msgstr ""
+
+#: forum/settings/form.py:60
+msgid "Maximum length of a tag"
+msgstr ""
+
+#: forum/settings/form.py:61
+msgid "How long a tag can be."
+msgstr ""
+
+#: forum/settings/form.py:69
+msgid "Minimum number of characters for a comment"
+msgstr ""
+
+#: forum/settings/form.py:70
+msgid ""
+"The minimum number of characters a user must enter into the body of a "
+"comment."
+msgstr ""
+
+#: forum/settings/form.py:73
+msgid "Maximum length of comment"
+msgstr ""
+
+#: forum/settings/form.py:74
+msgid ""
+"The maximum number of characters a user can enter into the body of a comment."
+msgstr ""
+
+#: forum/settings/form.py:77
+msgid "Allow markdown in comments"
+msgstr ""
+
+#: forum/settings/form.py:78
+msgid "Allow users to use markdown in comments."
+msgstr ""
+
+#: forum/settings/form.py:82
+msgid "Show author gravatar in comments"
+msgstr ""
+
+#: forum/settings/form.py:83
+msgid "Show the gravatar image of a comment author."
+msgstr ""
+
+#: forum/settings/forms.py:52
+#, fuzzy
+msgid "context"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/settings/forms.py:52
+msgid "default"
+msgstr ""
+
+#: forum/settings/forms.py:65
+#, fuzzy
+msgid "Change this:"
+msgstr "Change Email"
+
+#: forum/settings/minrep.py:4
+#, fuzzy
+msgid "Minimum reputation config"
+msgstr "karma"
+
+#: forum/settings/minrep.py:4
+msgid ""
+"Configure the minimum reputation required to perform certain actions on your "
+"site."
+msgstr ""
+
+#: forum/settings/minrep.py:7
+msgid "Minimum reputation to vote up"
+msgstr ""
+
+#: forum/settings/minrep.py:8
+msgid "The minimum reputation an user must have to be allowed to vote up."
+msgstr ""
+
+#: forum/settings/minrep.py:11
+#, fuzzy
+msgid "Minimum reputation to vote down"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:12
+msgid "The minimum reputation an user must have to be allowed to vote down."
+msgstr ""
+
+#: forum/settings/minrep.py:15
+msgid "Minimum reputation to flag a post"
+msgstr ""
+
+#: forum/settings/minrep.py:16
+msgid "The minimum reputation an user must have to be allowed to flag a post."
+msgstr ""
+
+#: forum/settings/minrep.py:19
+#, fuzzy
+msgid "Minimum reputation to comment"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:20
+msgid ""
+"The minimum reputation an user must have to be allowed to comment a post."
+msgstr ""
+
+#: forum/settings/minrep.py:23
+#, fuzzy
+msgid "Minimum reputation to like a comment"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:24
+msgid ""
+"The minimum reputation an user must have to be allowed to \"like\" a comment."
+msgstr ""
+
+#: forum/settings/minrep.py:27
+msgid "Minimum reputation to upload"
+msgstr ""
+
+#: forum/settings/minrep.py:28
+msgid ""
+"The minimum reputation an user must have to be allowed to upload a file."
+msgstr ""
+
+#: forum/settings/minrep.py:31
+#, fuzzy
+msgid "Minimum reputation to create tags"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:32
+msgid ""
+"The minimum reputation an user must have to be allowed to create new tags."
+msgstr ""
+
+#: forum/settings/minrep.py:35
+msgid "Minimum reputation to close own question"
+msgstr ""
+
+#: forum/settings/minrep.py:36
+msgid ""
+"The minimum reputation an user must have to be allowed to close his own "
+"question."
+msgstr ""
+
+#: forum/settings/minrep.py:39
+msgid "Minimum reputation to reopen own question"
+msgstr ""
+
+#: forum/settings/minrep.py:40
+msgid ""
+"The minimum reputation an user must have to be allowed to reopen his own "
+"question."
+msgstr ""
+
+#: forum/settings/minrep.py:43
+msgid "Minimum reputation to retag others questions"
+msgstr ""
+
+#: forum/settings/minrep.py:44
+msgid ""
+"The minimum reputation an user must have to be allowed to retag others "
+"questions."
+msgstr ""
+
+#: forum/settings/minrep.py:47
+msgid "Minimum reputation to edit wiki posts"
+msgstr ""
+
+#: forum/settings/minrep.py:48
+msgid ""
+"The minimum reputation an user must have to be allowed to edit community "
+"wiki posts."
+msgstr ""
+
+#: forum/settings/minrep.py:51
+#, fuzzy
+msgid "Minimum reputation to mark post as community wiki"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:52
+msgid ""
+"The minimum reputation an user must have to be allowed to mark a post as "
+"community wiki."
+msgstr ""
+
+#: forum/settings/minrep.py:55
+msgid "Minimum reputation to edit others posts"
+msgstr ""
+
+#: forum/settings/minrep.py:56
+msgid ""
+"The minimum reputation an user must have to be allowed to edit others posts."
+msgstr ""
+
+#: forum/settings/minrep.py:59
+msgid "Minimum reputation to close others posts"
+msgstr ""
+
+#: forum/settings/minrep.py:60
+msgid ""
+"The minimum reputation an user must have to be allowed to close others posts."
+msgstr ""
+
+#: forum/settings/minrep.py:63
+#, fuzzy
+msgid "Minimum reputation to delete comments"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:64
+msgid ""
+"The minimum reputation an user must have to be allowed to delete comments."
+msgstr ""
+
+#: forum/settings/minrep.py:67
+#, fuzzy
+msgid "Minimum reputation to convert answers to comment"
+msgstr "user karma"
+
+#: forum/settings/minrep.py:68
+msgid ""
+"The minimum reputation an user must have to be allowed to convert an answer "
+"into a comment."
+msgstr ""
+
+#: forum/settings/minrep.py:71
+msgid "Minimum reputation to view offensive flags"
+msgstr ""
+
+#: forum/settings/minrep.py:72
+msgid "The minimum reputation an user must have to view offensive flags."
+msgstr ""
+
+#: forum/settings/moderation.py:7
+#, fuzzy
+msgid "Moderation settings"
+msgstr "ΠžΠΏΡ†ΠΈΠΈ Π·Π° ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅"
+
+#: forum/settings/moderation.py:7
+msgid "Define the moderation workflow of your site"
+msgstr ""
+
+#: forum/settings/moderation.py:13
+msgid "Flag Reasons"
+msgstr ""
+
+#: forum/settings/moderation.py:14
+msgid "Create some flag reasons to use in the flag post popup."
+msgstr ""
+
+#: forum/settings/moderation.py:22
+msgid "Close Reasons"
+msgstr ""
+
+#: forum/settings/moderation.py:23
+msgid "Create some close reasons to use in the close question popup."
+msgstr ""
+
+#: forum/settings/repgain.py:4
+msgid "Reputation gains and losses config"
+msgstr ""
+
+#: forum/settings/repgain.py:4
+msgid ""
+"Configure the reputation points a user may gain or lose upon certain actions."
+msgstr ""
+
+#: forum/settings/repgain.py:7
+#, fuzzy
+msgid "Initial reputation"
+msgstr "karma"
+
+#: forum/settings/repgain.py:8
+msgid "The initial reputation an user gets when he first signs in."
+msgstr ""
+
+#: forum/settings/repgain.py:12
+msgid "Maximum reputation a user can gain in one day for being upvoted."
+msgstr ""
+
+#: forum/settings/repgain.py:15
+msgid "Rep gain by upvoted"
+msgstr ""
+
+#: forum/settings/repgain.py:16
+msgid "Reputation a user gains for having one of his posts up voted."
+msgstr ""
+
+#: forum/settings/repgain.py:19
+msgid "Rep lost by downvoted"
+msgstr ""
+
+#: forum/settings/repgain.py:20
+msgid "Reputation a user loses for having one of his posts down voted."
+msgstr ""
+
+#: forum/settings/repgain.py:23
+msgid "Rep lost by downvoting"
+msgstr ""
+
+#: forum/settings/repgain.py:24
+msgid "Reputation a user loses for down voting a post."
+msgstr ""
+
+#: forum/settings/repgain.py:28
+msgid "Rep gain by accepted answer"
+msgstr ""
+
+#: forum/settings/repgain.py:29
+msgid "Reputation a user gains for having one of his answers accepted."
+msgstr ""
+
+#: forum/settings/repgain.py:32
+msgid "Rep gain by accepting answer"
+msgstr ""
+
+#: forum/settings/repgain.py:33
+msgid ""
+"Reputation a user gains for accepting an answer to one of his questions."
+msgstr ""
+
+#: forum/settings/repgain.py:36
+msgid "Rep lost by post flagged"
+msgstr ""
+
+#: forum/settings/repgain.py:37
+msgid "Reputation a user loses by having one of his posts flagged."
+msgstr ""
+
+#: forum/settings/repgain.py:40
+msgid "Rep lost by post flagged and hidden"
+msgstr ""
+
+#: forum/settings/repgain.py:41
+msgid ""
+"Reputation a user loses by having the last revision of one of his posts "
+"flagged the enough number of times to hide the post."
+msgstr ""
+
+#: forum/settings/repgain.py:44
+msgid "Rep lost by post flagged and deleted"
+msgstr ""
+
+#: forum/settings/repgain.py:45
+msgid ""
+"Reputation a user loses by having the last revision of one of his posts "
+"flagged the enough number of times to delete the post."
+msgstr ""
+
+#: forum/settings/sidebar.py:10
+msgid "Show the Welcome box"
+msgstr ""
+
+#: forum/settings/sidebar.py:11
+msgid "Do you want to show the welcome box when a user first visits your site."
+msgstr ""
+
+#: forum/settings/sidebar.py:15
+msgid "Application intro"
+msgstr ""
+
+#: forum/settings/sidebar.py:16
+msgid ""
+"The introductory page that is visible in the sidebar for anonymous users."
+msgstr ""
+
+#: forum/settings/sidebar.py:46
+msgid "Upper block rendering mode"
+msgstr ""
+
+#: forum/settings/sidebar.py:47
+msgid "How to render your upper block code."
+msgstr ""
+
+#: forum/settings/sidebar.py:75
+msgid "Lower block rendering mode"
+msgstr ""
+
+#: forum/settings/sidebar.py:76
+msgid "How to render your lower block code."
+msgstr ""
+
+#: forum/settings/static.py:17
+msgid "Use custom CSS"
+msgstr ""
+
+#: forum/settings/static.py:18
+msgid "Do you want to use custom CSS."
+msgstr ""
+
+#: forum/settings/static.py:22
+msgid "Custom CSS"
+msgstr ""
+
+#: forum/settings/static.py:23
+msgid "Your custom CSS."
+msgstr ""
+
+#: forum/settings/static.py:31
+msgid "Use custom header"
+msgstr ""
+
+#: forum/settings/static.py:32
+msgid "Do you want to use a custom header."
+msgstr ""
+
+#: forum/settings/static.py:36
+msgid "Custom Header"
+msgstr ""
+
+#: forum/settings/static.py:37
+msgid "Your custom header."
+msgstr ""
+
+#: forum/settings/static.py:42
+msgid "Custom Header rendering mode"
+msgstr ""
+
+#: forum/settings/static.py:43
+msgid "How to render your custom header code."
+msgstr ""
+
+#: forum/settings/static.py:48
+msgid "Show announcement bar"
+msgstr ""
+
+#: forum/settings/static.py:49
+msgid ""
+"Some piece of content that goes under the search bar and can be used for "
+"announcements, etc."
+msgstr ""
+
+#: forum/settings/static.py:53
+msgid "Announcement bar"
+msgstr ""
+
+#: forum/settings/static.py:54
+msgid "The announcement bar content."
+msgstr ""
+
+#: forum/settings/static.py:59
+msgid "Announcement bar rendering mode"
+msgstr ""
+
+#: forum/settings/static.py:60
+msgid "How to render your announcement bar code."
+msgstr ""
+
+#: forum/settings/static.py:65
+msgid "Use custom footer"
+msgstr ""
+
+#: forum/settings/static.py:66
+msgid "Do you want to use a custom footer."
+msgstr ""
+
+#: forum/settings/static.py:70
+msgid "Custom Footer"
+msgstr ""
+
+#: forum/settings/static.py:71
+#, fuzzy
+msgid "Your custom footer."
+msgstr ""
+"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+"anyone, must be valid)"
+
+#: forum/settings/static.py:76
+msgid "Custom footer rendering mode"
+msgstr ""
+
+#: forum/settings/static.py:77
+msgid "How to render your custom footer code."
+msgstr ""
+
+#: forum/settings/static.py:82
+msgid "Replace default footer"
+msgstr ""
+
+#: forum/settings/static.py:83
+msgid "Above default footer"
+msgstr ""
+
+#: forum/settings/static.py:84
+msgid "Below default footer"
+msgstr ""
+
+#: forum/settings/static.py:88
+msgid "Custom Footer Mode"
+msgstr ""
+
+#: forum/settings/static.py:89
+msgid "How your custom footer will appear."
+msgstr ""
+
+#: forum/settings/static.py:98
+msgid "Use custom Head elements"
+msgstr ""
+
+#: forum/settings/static.py:99
+msgid "Do you want to use custom head elements."
+msgstr ""
+
+#: forum/settings/static.py:103
+msgid "Custom Head"
+msgstr ""
+
+#: forum/settings/static.py:104
+msgid "Your custom Head elements."
+msgstr ""
+
+#: forum/settings/upload.py:5
+msgid "File upload settings"
+msgstr ""
+
+#: forum/settings/upload.py:5
+msgid "File uploads related settings."
+msgstr ""
+
+#: forum/settings/upload.py:8
+msgid "Uploaded files folder"
+msgstr ""
+
+#: forum/settings/upload.py:9
+msgid ""
+"The filesystem path where uploaded files will be stored. Please note that "
+"this folder must exist."
+msgstr ""
+
+#: forum/settings/upload.py:12
+msgid "Uploaded files alias"
+msgstr ""
+
+#: forum/settings/upload.py:13
+msgid ""
+"The url alias for uploaded files. Notice that if you change this setting, "
+"you'll need to restart your site."
+msgstr ""
+
+#: forum/settings/upload.py:16
+msgid "Max file size"
+msgstr ""
+
+#: forum/settings/upload.py:17
+msgid "The maximum allowed file size for uploads in mb."
+msgstr ""
+
+#: forum/settings/urls.py:4
+msgid "URL settings"
+msgstr ""
+
+#: forum/settings/urls.py:4
+msgid "Some settings to tweak behaviour of site urls (experimental)."
+msgstr ""
+
+#: forum/settings/urls.py:7
+msgid "Allow unicode in slugs"
+msgstr ""
+
+#: forum/settings/urls.py:8
+msgid "Allow unicode/non-latin characters in urls."
+msgstr ""
+
+#: forum/settings/urls.py:12
+msgid "Force single url"
+msgstr ""
+
+#: forum/settings/urls.py:13
+msgid ""
+"Redirect the request in case there is a mismatch between the slug in the url "
+"and the actual slug"
+msgstr ""
+
+#: forum/settings/users.py:7
+#, fuzzy
+msgid "Users settings"
+msgstr ""
+"<span class='big strong'>Adjust frequency of email updates.</span> Receive "
+"updates on interesting questions by email, <strong><br/>help the community</"
+"strong> by answering questions of your colleagues. If you do not wish to "
+"receive emails - select 'no email' on all items below.<br/>Updates are only "
+"sent when there is any new activity on selected items."
+
+#: forum/settings/users.py:7
+#, fuzzy
+msgid "General settings for the OSQA users."
+msgstr "ΠŸΠΎΠ·Π΄Ρ€Π°Π²ΠΈ ΠΎΡ‚ Zapprotect Q&A"
+
+#: forum/settings/users.py:10
+#, fuzzy
+msgid "Editable screen name"
+msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΎ ΠΈΠΌΠ΅"
+
+#: forum/settings/users.py:11
+msgid "Allow users to alter their screen name."
+msgstr ""
+
+#: forum/settings/users.py:15
+msgid "Minimum username length"
+msgstr ""
+
+#: forum/settings/users.py:16
+msgid "The minimum length (in character) of a username."
+msgstr ""
+
+#: forum/settings/users.py:19
+msgid "fuck"
+msgstr ""
+
+#: forum/settings/users.py:19
+msgid "shit"
+msgstr ""
+
+#: forum/settings/users.py:19
+#, fuzzy
+msgid "ass"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ"
+
+#: forum/settings/users.py:19
+msgid "sex"
+msgstr ""
+
+#: forum/settings/users.py:19
+#, fuzzy
+msgid "add"
+msgstr "Π”ΠΎΠ±Π°Π²ΠΈ"
+
+#: forum/settings/users.py:19 forum/templatetags/node_tags.py:94
+msgid "edit"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ"
+
+#: forum/settings/users.py:19 forum/views/auth.py:382 forum/views/auth.py:387
+#, fuzzy
+msgid "save"
+msgstr "срСбро"
+
+#: forum/settings/users.py:19 forum/templatetags/node_tags.py:118
+msgid "delete"
+msgstr ""
+
+#: forum/settings/users.py:19
+#, fuzzy
+msgid "manage"
+msgstr "снимка"
+
+#: forum/settings/users.py:19
+#, fuzzy
+msgid "update"
+msgstr "ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΎ"
+
+#: forum/settings/users.py:19
+#: forum/skins/default/templates/auth/auth_settings.html:12
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:12
+msgid "remove"
+msgstr "ΠΏΡ€Π΅ΠΌΠ°Ρ…Π½ΠΈ"
+
+#: forum/settings/users.py:19
+msgid "new"
+msgstr ""
+
+#: forum/settings/users.py:21
+#, fuzzy
+msgid "Disabled usernames"
+msgstr "Choose screen name"
+
+#: forum/settings/users.py:22
+msgid ""
+"A comma separated list of disabled usernames (usernames not allowed during a "
+"new user registration)."
+msgstr ""
+
+#: forum/settings/users.py:26
+msgid "Show status diamonds"
+msgstr ""
+
+#: forum/settings/users.py:27
+msgid "Show status \"diamonds\" next to moderators or superusers usernames."
+msgstr ""
+
+#: forum/settings/users.py:32
+#, fuzzy
+msgid "Force unique email"
+msgstr ""
+"<strong>Нов ΠΈΠΌΠ΅ΠΉΠ»:</strong> (няма Π΄Π° Π±ΡŠΠ΄Π΅ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½, Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ "
+"дСйствитСлСн)"
+
+#: forum/settings/users.py:33
+msgid "Should each user have an unique email."
+msgstr ""
+
+#: forum/settings/users.py:37
+msgid "Require email validation to..."
+msgstr ""
+
+#: forum/settings/users.py:38
+msgid ""
+"Which actions in this site, users without a valid email will be prevented "
+"from doing."
+msgstr ""
+
+#: forum/settings/users.py:40
+#, fuzzy
+msgid "ask questions"
+msgstr "Π·Π°Π΄Π°ΠΉ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/settings/users.py:40
+#, fuzzy
+msgid "provide answers"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/settings/users.py:40
+#, fuzzy
+msgid "make comments"
+msgstr "post a comment"
+
+#: forum/settings/users.py:40
+#, fuzzy
+msgid "report posts"
+msgstr "karma"
+
+#: forum/settings/users.py:45
+msgid "Don't notify to invalid emails"
+msgstr ""
+
+#: forum/settings/users.py:46
+msgid "Do not notify users with unvalidated emails."
+msgstr ""
+
+#: forum/settings/users.py:50
+msgid "Hold pending posts for X minutes"
+msgstr ""
+
+#: forum/settings/users.py:51
+msgid ""
+"How much time in minutes a post should be kept in session until the user "
+"logs in or validates the email."
+msgstr ""
+
+#: forum/settings/users.py:55
+msgid "Warn about pending posts afer X minutes"
+msgstr ""
+
+#: forum/settings/users.py:56
+msgid ""
+"How much time in minutes a user that just logged in or validated his email "
+"should be warned about a pending post instead of publishing it automatically."
+msgstr ""
+
+#: forum/settings/users.py:60
+msgid "suitable for display on all websites with any audience type."
+msgstr ""
+
+#: forum/settings/users.py:61
+msgid ""
+"may contain rude gestures, provocatively dressed individuals, the lesser "
+"swear words, or mild violence."
+msgstr ""
+
+#: forum/settings/users.py:62
+msgid ""
+"may contain such things as harsh profanity, intense violence, nudity, or "
+"hard drug use."
+msgstr ""
+
+#: forum/settings/users.py:63
+msgid "may contain hardcore sexual imagery or extremely disturbing violence."
+msgstr ""
+
+#: forum/settings/users.py:67
+#, fuzzy
+msgid "Gravatar rating"
+msgstr ""
+"<strong>Gravatar</strong> means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong> - your unique avatar image "
+"associated with your email address. It's simply a picture that shows next to "
+"your posts on the websites that support gravatar protocol. By default gravar "
+"appears as a square filled with a snowflake-like figure. You can <strong>set "
+"your image</strong> at <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a>"
+
+#: forum/settings/users.py:68
+msgid ""
+"Gravatar allows users to self-rate their images so that they can indicate if "
+"an image is appropriate for a certain audience."
+msgstr ""
+
+#: forum/settings/users.py:74
+msgid ""
+"(mystery-man) a simple, cartoon-style silhouetted outline of a person (does "
+"not vary by email hash)"
+msgstr ""
+
+#: forum/settings/users.py:75
+msgid "a geometric pattern based on an email hash"
+msgstr ""
+
+#: forum/settings/users.py:76
+msgid "a generated \"monster\" with different colors, faces, etc"
+msgstr ""
+
+#: forum/settings/users.py:77
+msgid "generated faces with differing features and backgrounds"
+msgstr ""
+
+#: forum/settings/users.py:81
+#, fuzzy
+msgid "Gravatar default"
+msgstr ""
+"<strong>Gravatar</strong> means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong> - your unique avatar image "
+"associated with your email address. It's simply a picture that shows next to "
+"your posts on the websites that support gravatar protocol. By default gravar "
+"appears as a square filled with a snowflake-like figure. You can <strong>set "
+"your image</strong> at <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a>"
+
+#: forum/settings/users.py:82
+msgid ""
+"Gravatar has a number of built in options which you can also use as defaults."
+msgstr ""
+
+#: forum/settings/view.py:5
+msgid "View settings"
+msgstr ""
+
+#: forum/settings/view.py:5
+msgid "Set up how certain parts of the site are displayed."
+msgstr ""
+
+#: forum/settings/view.py:8
+msgid "Recent tags block size"
+msgstr ""
+
+#: forum/settings/view.py:9
+msgid ""
+"The number of tags to display in the recent tags block in the front page."
+msgstr ""
+
+#: forum/settings/view.py:12
+#, fuzzy
+msgid "Recent awards block size"
+msgstr "Recent badges"
+
+#: forum/settings/view.py:13
+msgid ""
+"The number of awards to display in the recent awards block in the front page."
+msgstr ""
+
+#: forum/settings/view.py:16
+#, fuzzy
+msgid "Limit related tags block"
+msgstr "Tags"
+
+#: forum/settings/view.py:17
+msgid ""
+"Limit related tags block size in questions list pages. Set to 0 to display "
+"all all tags."
+msgstr ""
+
+#: forum/settings/voting.py:4
+msgid "Voting rules"
+msgstr ""
+
+#: forum/settings/voting.py:4
+msgid "Configure the voting rules on your site."
+msgstr ""
+
+#: forum/settings/voting.py:7
+msgid "Maximum votes per day"
+msgstr ""
+
+#: forum/settings/voting.py:8
+msgid "The maximum number of votes an user can cast per day."
+msgstr ""
+
+#: forum/settings/voting.py:11
+msgid "Start warning about votes left"
+msgstr ""
+
+#: forum/settings/voting.py:12
+msgid "From how many votes left should an user start to be warned about it."
+msgstr ""
+
+#: forum/settings/voting.py:15
+msgid "Maximum flags per day"
+msgstr ""
+
+#: forum/settings/voting.py:16
+msgid "The maximum number of times an can flag a post per day."
+msgstr ""
+
+#: forum/settings/voting.py:19
+msgid "Flag count to hide post"
+msgstr ""
+
+#: forum/settings/voting.py:20
+msgid ""
+"How many times a post needs to be flagged to be hidden from the main page."
+msgstr ""
+
+#: forum/settings/voting.py:23
+msgid "Flag count to delete post"
+msgstr ""
+
+#: forum/settings/voting.py:24
+msgid "How many times a post needs to be flagged to be deleted."
+msgstr ""
+
+#: forum/settings/voting.py:27
+msgid "Days to cancel a vote"
+msgstr ""
+
+#: forum/settings/voting.py:28
+msgid "How many days an user can cancel a vote after he originaly casted it."
+msgstr ""
+
+#: forum/skins/default/templates/401.html:3
+#: forum/skins/default/templates/401.html:28
+#: forum/skins/zapprotect/templates/401.html:3
+#: forum/skins/zapprotect/templates/401.html:28
+msgid "Not logged in"
+msgstr ""
+
+#: forum/skins/default/templates/401.html:32
+#: forum/skins/zapprotect/templates/401.html:32
+msgid "You are not logged in..."
+msgstr ""
+
+#: forum/skins/default/templates/401.html:34
+#: forum/skins/zapprotect/templates/401.html:34
+msgid "...and the resource you're trying to access is pretocted."
+msgstr ""
+
+#: forum/skins/default/templates/401.html:36
+#: forum/skins/zapprotect/templates/401.html:36
+msgid "Redirecting to the login page."
+msgstr ""
+
+#: forum/skins/default/templates/401.html:39
+#: forum/skins/zapprotect/templates/401.html:39
+msgid "If you're not automatically redirected in 5 seconds, please click"
+msgstr ""
+
+#: forum/skins/default/templates/401.html:40
+#: forum/skins/default/templates/auth/signin.html:102
+#: forum/skins/default/templates/notifications/base.html:27
+#: forum/skins/zapprotect/templates/401.html:40
+#: forum/skins/zapprotect/templates/auth/signin.html:102
+#: forum/skins/zapprotect/templates/notifications/base.html:27
+msgid "here"
+msgstr "Ρ‚ΡƒΠΊ"
+
+#: forum/skins/default/templates/403.html:3
+#: forum/skins/default/templates/403.html:11
+#: forum/skins/zapprotect/templates/403.html:3
+#: forum/skins/zapprotect/templates/403.html:11
+msgid "Forbidden"
+msgstr "Π—Π°Π±Ρ€Π°Π½Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/403.html:15
+#: forum/skins/zapprotect/templates/403.html:15
+msgid "Sorry, you don't have permissions to access this page."
+msgstr "БъТалявам, Π½ΠΎ Π½ΡΠΌΠ°Ρ‚Π΅ ΠΏΡ€Π°Π²ΠΎ Π΄Π° Ρ€Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Ρ‚Π΅ Ρ‚Π°Π·ΠΈ ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°."
+
+#: forum/skins/default/templates/403.html:17
+#: forum/skins/default/templates/404.html:26
+#: forum/skins/zapprotect/templates/403.html:17
+#: forum/skins/zapprotect/templates/404.html:26
+msgid "This might have happened for the following reasons:"
+msgstr "Π’ΠΎΠ²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ ΡΡ‚Π°Π½Π°Π»ΠΎ ΠΏΠΎΡ€Π°Π΄ΠΈ ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ:"
+
+#: forum/skins/default/templates/403.html:19
+#: forum/skins/zapprotect/templates/403.html:19
+msgid ""
+"you followed a link on an email, but you're currently logged in as another "
+"user;"
+msgstr ""
+"ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ…Ρ‚Π΅ Π»ΠΈΠ½ΠΊ ΠΎΡ‚ ΠΈΠΌΠ΅ΠΉΠ», Π½ΠΎ Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΡΡ‚Π΅ Π²Π»Π΅Π·Π½Π°Π»ΠΈ ΠΊΠ°Ρ‚ΠΎ Π΄Ρ€ΡƒΠ³ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»"
+
+#: forum/skins/default/templates/403.html:20
+#: forum/skins/zapprotect/templates/403.html:20
+msgid "there are errors in the url, please confirm it;"
+msgstr "ΠΈΠΌΠ° Π³Ρ€Π΅ΡˆΠΊΠΈ Π² Π°Π΄Ρ€Π΅ΡΠ°, ΠΌΠΎΠ»Ρ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Ρ‚Π΅ Π³ΠΎ;"
+
+#: forum/skins/default/templates/403.html:21
+#: forum/skins/zapprotect/templates/403.html:21
+#, fuzzy
+msgid "if you believe you shouldn't bee seeing this error, please"
+msgstr "Π°ΠΊΠΎ ΡΠΌΡΡ‚Π°Ρ‚Π΅, Ρ‡Π΅ Ρ‚Π°Π·ΠΈ ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π° 404 Π½Π΅ Π΅ Ρ‚рябвало Π΄Π° ΡΠ΅ ΠΏΠΎΠΊΠ°Π·Π²Π°"
+
+#: forum/skins/default/templates/403.html:23
+#: forum/skins/default/templates/404.html:31
+#: forum/skins/zapprotect/templates/403.html:23
+#: forum/skins/zapprotect/templates/404.html:31
+msgid "report this problem"
+msgstr "оповСстСтС Π·Π° ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ°"
+
+#: forum/skins/default/templates/403.html:29
+#: forum/skins/zapprotect/templates/403.html:29
+#, fuzzy
+msgid "to home page"
+msgstr "ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π½Π° Π½Π°Ρ‡Π°Π»Π½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/403.html:30
+#: forum/skins/default/templates/404.html:41
+#: forum/skins/zapprotect/templates/403.html:30
+#: forum/skins/zapprotect/templates/404.html:41
+msgid "see all questions"
+msgstr "Π²ΠΈΠΆΡ‚Π΅ Π²ΡΠΈΡ‡ΠΊΠΈ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/403.html:31
+#: forum/skins/default/templates/404.html:42
+#: forum/skins/zapprotect/templates/403.html:31
+#: forum/skins/zapprotect/templates/404.html:42
+msgid "see all tags"
+msgstr "Π²ΠΈΠΆΡ‚Π΅ Π²ΡΠΈΡ‡ΠΊΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/404.html:4
+#: forum/skins/zapprotect/templates/404.html:4
+msgid "404 Error"
+msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° 404"
+
+#: forum/skins/default/templates/404.html:20
+#: forum/skins/zapprotect/templates/404.html:20
+#, fuzzy
+msgid "404 Not Found"
+msgstr "Нищо Π½Π΅ Π±Π΅ΡˆΠ΅ Π½Π°ΠΌΠ΅Ρ€Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/404.html:24
+#: forum/skins/zapprotect/templates/404.html:24
+msgid "Sorry, could not find the page you requested."
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅ Ρ‚ΡŠΡ€ΡΠ΅Π½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π° Π½Π΅ Π±Π΅ΡˆΠ΅ Π½Π°ΠΌΠ΅Ρ€Π΅Π½Π°."
+
+#: forum/skins/default/templates/404.html:28
+#: forum/skins/zapprotect/templates/404.html:28
+msgid "this question or answer has been deleted;"
+msgstr "Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ ΠΈΠ»ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π΅ Π±ΠΈΠ» ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚;"
+
+#: forum/skins/default/templates/404.html:29
+#: forum/skins/zapprotect/templates/404.html:29
+msgid "url has error - please check it;"
+msgstr "адрСса ΠΈΠΌΠ° Π³Ρ€Π΅ΡˆΠΊΠ° -- ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Ρ‚Π΅ Π³ΠΎ;"
+
+#: forum/skins/default/templates/404.html:30
+#: forum/skins/zapprotect/templates/404.html:30
+#, fuzzy
+msgid "if you believe this error 404 should not have occurred, please"
+msgstr "Π°ΠΊΠΎ ΡΠΌΡΡ‚Π°Ρ‚Π΅, Ρ‡Π΅ Ρ‚Π°Π·ΠΈ ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π° 404 Π½Π΅ Π΅ Ρ‚рябвало Π΄Π° ΡΠ΅ ΠΏΠΎΠΊΠ°Π·Π²Π°"
+
+#: forum/skins/default/templates/404.html:40
+#: forum/skins/default/templates/500.html:27
+#: forum/skins/zapprotect/templates/404.html:40
+#: forum/skins/zapprotect/templates/500.html:27
+msgid "back to previous page"
+msgstr "Π²ΡŠΡ€Π½Π΅Ρ‚Π΅ ΡΠ΅ Π½Π° ΠΏΡ€Π΅Π΄ΠΈΡˆΠ½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/500.html:22
+#: forum/skins/zapprotect/templates/500.html:22
+msgid "sorry, system error"
+msgstr "съТалявамС, ΡΠΈΡΡ‚Π΅ΠΌΠ½Π° Π³Ρ€Π΅ΡˆΠΊΠ°"
+
+#: forum/skins/default/templates/500.html:24
+#: forum/skins/zapprotect/templates/500.html:24
+msgid "system error log is recorded, error will be fixed as soon as possible"
+msgstr "систСмния Π»ΠΎΠ³ Π΅ Π·Π°ΠΏΠΈΡΠ°Π½, Π³Ρ€Π΅ΡˆΠΊΠ°Ρ‚Π° Ρ‰Π΅ Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π°Π²Π΅Π½Π° Π²ΡŠΠ·ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉ-скоро"
+
+#: forum/skins/default/templates/500.html:25
+#: forum/skins/zapprotect/templates/500.html:25
+msgid "please report the error to the site administrators if you wish"
+msgstr "моля, ΡΠΏΠΎΠ΄Π΅Π»Π΅Ρ‚Π΅ Π³Ρ€Π΅ΡˆΠΊΠ°Ρ‚Π° Ρ Π°Π΄ΠΌΠΈΠ½ΠΈΡΡ‚Ρ€Π°Ρ‚ΠΎΡ€ΠΈΡ‚Π΅ Π½Π° ΡΠ°ΠΉΡ‚Π°"
+
+#: forum/skins/default/templates/500.html:28
+#: forum/skins/zapprotect/templates/500.html:28
+msgid "see latest questions"
+msgstr "Π²ΠΈΠΆΡ‚Π΅ ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/500.html:29
+#: forum/skins/zapprotect/templates/500.html:29
+msgid "see tags"
+msgstr "Π²ΠΈΠΆ Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅"
+
+#: forum/skins/default/templates/503.html:6
+#: forum/skins/default/templates/503.html:17
+#: forum/skins/zapprotect/templates/503.html:6
+#: forum/skins/zapprotect/templates/503.html:17
+msgid "System down for maintenance"
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:4
+#: forum/skins/zapprotect/templates/account_settings.html:4
+msgid "Account functions"
+msgstr "Π€ΡƒΠ½ΠΊΡ†ΠΈΠΈ Π½Π° ΠΏΡ€ΠΎΡ„ΠΈΠ»Π°"
+
+#: forum/skins/default/templates/account_settings.html:29
+#: forum/skins/default/templates/auth/auth_settings.html:33
+#: forum/skins/zapprotect/templates/account_settings.html:29
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:33
+msgid "Change password"
+msgstr "Бмяна Π½Π° ΠΏΠ°Ρ€ΠΎΠ»Π°Ρ‚Π°"
+
+#: forum/skins/default/templates/account_settings.html:30
+#: forum/skins/zapprotect/templates/account_settings.html:30
+msgid "Give your  account a new password."
+msgstr "ΠŸΡ€Π΅Π΄ΠΎΡΡ‚Π°Π²Π΅Ρ‚Π΅ Π½ΠΎΠ²Π° ΠΏΠ°Ρ€ΠΎΠ»Π° Π·Π° ΠΏΡ€ΠΎΡ„ΠΈΠ»Π° ΡΠΈ."
+
+#: forum/skins/default/templates/account_settings.html:32
+#: forum/skins/zapprotect/templates/account_settings.html:32
+msgid "Change email "
+msgstr "ΠŸΡ€ΠΎΠΌΡΠ½Π° Π½Π° ΠΈΠΌΠ΅ΠΉΠ»Π° "
+
+#: forum/skins/default/templates/account_settings.html:33
+#: forum/skins/zapprotect/templates/account_settings.html:33
+msgid "Add or update the email address associated with your account."
+msgstr "Π”ΠΎΠ±Π°Π²Π΅Ρ‚Π΅ ΠΈΠ»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Ρ‚Π΅ ΠΈΠΌΠ΅ΠΉΠ»Π° Π°ΡΠΎΡ†ΠΈΠΈΡ€Π°Π½ Ρ Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚."
+
+#: forum/skins/default/templates/account_settings.html:35
+#: forum/skins/zapprotect/templates/account_settings.html:35
+msgid "Change OpenID"
+msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½ΠΈ OpenID"
+
+#: forum/skins/default/templates/account_settings.html:36
+#: forum/skins/zapprotect/templates/account_settings.html:36
+msgid "Change openid associated to your account"
+msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½Π΅Ρ‚Π΅ OpenID ΡΠ²ΡŠΡ€Π·Π°Π½ Ρ Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚"
+
+#: forum/skins/default/templates/account_settings.html:39
+#: forum/skins/zapprotect/templates/account_settings.html:39
+msgid "Delete account"
+msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠΉ ΠΏΡ€ΠΎΡ„ΠΈΠ»Π°"
+
+#: forum/skins/default/templates/account_settings.html:40
+#: forum/skins/zapprotect/templates/account_settings.html:40
+msgid "Erase your username and all your data from website"
+msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠΉ ΠΏΠΎΡ‚рСбитСля ΠΈ Ρ†ΡΠ»Π°Ρ‚Π° ΠΈΠ½Ρ„ормация ΠΎΡ‚ ΡΠ°ΠΉΡ‚Π°"
+
+#: forum/skins/default/templates/answer_edit.html:5
+#: forum/skins/default/templates/answer_edit.html:62
+#: forum/skins/zapprotect/templates/answer_edit.html:5
+#: forum/skins/zapprotect/templates/answer_edit.html:62
+msgid "Edit answer"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π°"
+
+#: forum/skins/default/templates/answer_edit.html:19
+#: forum/skins/default/templates/answer_edit.html:22
+#: forum/skins/default/templates/ask.html:26
+#: forum/skins/default/templates/ask.html:29
+#: forum/skins/default/templates/question.html:38
+#: forum/skins/default/templates/question.html:41
+#: forum/skins/default/templates/question_edit.html:19
+#: forum/skins/default/templates/question_edit.html:22
+#: forum/skins/zapprotect/templates/answer_edit.html:19
+#: forum/skins/zapprotect/templates/answer_edit.html:22
+#: forum/skins/zapprotect/templates/ask.html:26
+#: forum/skins/zapprotect/templates/ask.html:29
+#: forum/skins/zapprotect/templates/question.html:38
+#: forum/skins/zapprotect/templates/question.html:41
+#: forum/skins/zapprotect/templates/question_edit.html:19
+#: forum/skins/zapprotect/templates/question_edit.html:22
+msgid "hide preview"
+msgstr "скрий ΠΏΡ€Π΅Π³Π»Π΅Π΄Π°"
+
+#: forum/skins/default/templates/answer_edit.html:22
+#: forum/skins/default/templates/ask.html:29
+#: forum/skins/default/templates/question.html:41
+#: forum/skins/default/templates/question_edit.html:22
+#: forum/skins/zapprotect/templates/answer_edit.html:22
+#: forum/skins/zapprotect/templates/ask.html:29
+#: forum/skins/zapprotect/templates/question.html:41
+#: forum/skins/zapprotect/templates/question_edit.html:22
+msgid "show preview"
+msgstr "ΠΏΠΎΠΊΠ°ΠΆΠΈ ΠΏΡ€Π΅Π³Π»Π΅Π΄Π°"
+
+#: forum/skins/default/templates/answer_edit.html:62
+#: forum/skins/default/templates/question_edit.html:91
+#: forum/skins/default/templates/question_retag.html:58
+#: forum/skins/default/templates/revisions.html:38
+#: forum/skins/zapprotect/templates/answer_edit.html:62
+#: forum/skins/zapprotect/templates/question_edit.html:91
+#: forum/skins/zapprotect/templates/question_retag.html:58
+#: forum/skins/zapprotect/templates/revisions.html:38
+msgid "back"
+msgstr "Π½Π°Π·Π°Π΄"
+
+#: forum/skins/default/templates/answer_edit.html:67
+#: forum/skins/default/templates/question_edit.html:96
+#: forum/skins/default/templates/revisions.html:54
+#: forum/skins/zapprotect/templates/answer_edit.html:67
+#: forum/skins/zapprotect/templates/question_edit.html:96
+#: forum/skins/zapprotect/templates/revisions.html:54
+msgid "revision"
+msgstr "рСвизия"
+
+#: forum/skins/default/templates/answer_edit.html:70
+#: forum/skins/default/templates/question_edit.html:100
+#: forum/skins/zapprotect/templates/answer_edit.html:70
+#: forum/skins/zapprotect/templates/question_edit.html:100
+msgid "select revision"
+msgstr "ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Ρ€Π΅Π²ΠΈΠ·ΠΈΡ"
+
+#: forum/skins/default/templates/answer_edit.html:77
+#: forum/skins/default/templates/ask.html:129
+#: forum/skins/default/templates/question.html:222
+#: forum/skins/default/templates/question_edit.html:117
+#: forum/skins/zapprotect/templates/answer_edit.html:77
+#: forum/skins/zapprotect/templates/ask.html:129
+#: forum/skins/zapprotect/templates/question.html:222
+#: forum/skins/zapprotect/templates/question_edit.html:117
+msgid "Toggle the real time Markdown editor preview"
+msgstr "ПокаТи Π²ΠΈΠ·ΡƒΠ°Π»Π½ΠΈΡ Ρ‚Скстов Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€"
+
+#: forum/skins/default/templates/answer_edit.html:77
+#: forum/skins/default/templates/ask.html:129
+#: forum/skins/default/templates/question.html:223
+#: forum/skins/default/templates/question_edit.html:117
+#: forum/skins/zapprotect/templates/answer_edit.html:77
+#: forum/skins/zapprotect/templates/ask.html:129
+#: forum/skins/zapprotect/templates/question.html:223
+#: forum/skins/zapprotect/templates/question_edit.html:117
+msgid "toggle preview"
+msgstr "ΠΏΠΎΠΊΠ°ΠΆΠΈ ΠΏΡ€Π΅Π³Π»Π΅Π΄Π°"
+
+#: forum/skins/default/templates/answer_edit.html:93
+#: forum/skins/default/templates/question_edit.html:144
+#: forum/skins/default/templates/question_retag.html:79
+#: forum/skins/zapprotect/templates/answer_edit.html:93
+#: forum/skins/zapprotect/templates/question_edit.html:144
+#: forum/skins/zapprotect/templates/question_retag.html:79
+msgid "Save edit"
+msgstr "Π—Π°ΠΏΠ°Π·ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/answer_edit.html:94
+#: forum/skins/default/templates/base_content.html:34
+#: forum/skins/default/templates/close.html:29
+#: forum/skins/default/templates/feedback.html:50
+#: forum/skins/default/templates/question_edit.html:145
+#: forum/skins/default/templates/question_retag.html:80
+#: forum/skins/default/templates/reopen.html:30
+#: forum/skins/default/templates/users/edit.html:99
+#: forum/skins/zapprotect/templates/answer_edit.html:94
+#: forum/skins/zapprotect/templates/base_content.html:34
+#: forum/skins/zapprotect/templates/close.html:29
+#: forum/skins/zapprotect/templates/feedback.html:50
+#: forum/skins/zapprotect/templates/question_edit.html:145
+#: forum/skins/zapprotect/templates/question_retag.html:80
+#: forum/skins/zapprotect/templates/reopen.html:30
+#: forum/skins/zapprotect/templates/users/edit.html:99
+msgid "Cancel"
+msgstr "ΠžΡ‚ΠΊΠ°ΠΆΠΈ"
+
+#: forum/skins/default/templates/answer_edit_tips.html:4
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:4
+msgid "answer tips"
+msgstr "Π‘ΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#: forum/skins/default/templates/answer_edit_tips.html:7
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:7
+msgid "please make your answer relevant to this community"
+msgstr "Π½Π°ΠΏΡ€Π°Π²Π΅Ρ‚Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ…одящ Π·Π° ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π°"
+
+#: forum/skins/default/templates/answer_edit_tips.html:10
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:10
+msgid "try to give an answer, rather than engage into a discussion"
+msgstr "ΠΎΠΏΠΈΡ‚Π°ΠΉΡ‚Π΅ ΡΠ΅ Π΄Π° ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚Π΅, Π° Π½Π΅ ΠΈΠ·ΠΈΡΠΊΠ²Π°ΠΉΡ‚Π΅ Π΄ΠΈΡΠΊΡƒΡΠΈΡ"
+
+#: forum/skins/default/templates/answer_edit_tips.html:13
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:13
+msgid "please try to provide details"
+msgstr "ΠΎΠΏΠΈΡ‚Π°ΠΉΡ‚Π΅ ΡΠ΅ Π΄Π° ΠΏΡ€Π΅Π΄ΠΎΡΡ‚Π°Π²ΠΈΡ‚Π΅ Π΄Π΅Ρ‚Π°ΠΉΠ»Π½Π° ΠΈΠ½Ρ„ормация"
+
+#: forum/skins/default/templates/answer_edit_tips.html:16
+#: forum/skins/default/templates/question_edit_tips.html:18
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:16
+#: forum/skins/zapprotect/templates/question_edit_tips.html:18
+msgid "be clear and concise"
+msgstr "Π±ΡŠΠ΄Π΅Ρ‚Π΅ ΠΊΡ€Π°Ρ‚ΠΊΠΈ ΠΈ ΡΡΠ½ΠΈ"
+
+#: forum/skins/default/templates/answer_edit_tips.html:20
+#: forum/skins/default/templates/question_edit_tips.html:22
+#: forum/skins/zapprotect/templates/answer_edit_tips.html:20
+#: forum/skins/zapprotect/templates/question_edit_tips.html:22
+msgid "see frequently asked questions"
+msgstr "Π²ΠΈΠΆΡ‚Π΅ Ρ‡Π΅ΡΡ‚ΠΎ Π·Π°Π΄Π°Π²Π°Π½ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/ask.html:4
+#: forum/skins/default/templates/ask.html:92
+#: forum/skins/zapprotect/templates/ask.html:4
+#: forum/skins/zapprotect/templates/ask.html:92
+msgid "Ask a question"
+msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/ask.html:99
+#: forum/skins/zapprotect/templates/ask.html:99
+msgid "You are welcome to start submitting your question anonymously."
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:100
+#: forum/skins/zapprotect/templates/ask.html:100
+msgid ""
+"\n"
+"                    After submiting your question, you will be redirected to "
+"the login/signup page.\n"
+"                    Your question will be saved in the current session and "
+"will be published after you login with your existing account,\n"
+"                    or signup for a new account"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:104
+#: forum/skins/zapprotect/templates/ask.html:104
+msgid "and validate your email."
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:109
+#: forum/skins/zapprotect/templates/ask.html:109
+msgid ""
+"Remember, your question will not be published until you validate your email."
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:110
+#: forum/skins/default/templates/question.html:208
+#: forum/skins/default/templates/users/info.html:86
+#: forum/skins/zapprotect/templates/ask.html:110
+#: forum/skins/zapprotect/templates/question.html:208
+#: forum/skins/zapprotect/templates/users/info.html:86
+msgid "Send me a validation link."
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:145
+#: forum/skins/zapprotect/templates/ask.html:145
+msgid "(required)"
+msgstr "(Π·Π°Π΄ΡŠΠ»ΠΆΠΈΡ‚Π΅Π»Π½ΠΎ)"
+
+#: forum/skins/default/templates/ask.html:152
+#: forum/skins/zapprotect/templates/ask.html:152
+msgid "Login/signup to post your question"
+msgstr "ΠžΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°ΠΉΡ‚Π΅ ΡΠ΅ Π·Π° Π΄Π° ΠΏΡƒΠ±Π»ΠΈΠΊΡƒΠ²Π°Ρ‚Π΅"
+
+#: forum/skins/default/templates/ask.html:154
+#: forum/skins/zapprotect/templates/ask.html:154
+msgid "Ask your question"
+msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ Π’Π°ΡˆΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/badge.html:7
+#: forum/skins/default/templates/badge.html:18
+#: forum/skins/zapprotect/templates/badge.html:7
+#: forum/skins/zapprotect/templates/badge.html:18
+msgid "Badge"
+msgstr "Π’ΠΎΡ‡ΠΊΠ°"
+
+#: forum/skins/default/templates/badge.html:27
+#: forum/skins/zapprotect/templates/badge.html:27
+msgid "The users have been awarded with badges:"
+msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»Ρ Π΅ Π½Π°Π³Ρ€Π°Π΄Π΅Π½ Ρ Ρ‚ΠΎΡ‡ΠΊΠΈ:"
+
+#: forum/skins/default/templates/badges.html:6
+#: forum/skins/zapprotect/templates/badges.html:6
+msgid "Badges summary"
+msgstr "ΠžΠ±ΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ Π·Π° Ρ‚ΠΎΡ‡ΠΊΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/badges.html:9
+#: forum/skins/zapprotect/templates/badges.html:9
+msgid "Badges"
+msgstr "Π’ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/badges.html:13
+#: forum/skins/zapprotect/templates/badges.html:13
+msgid "Community gives you awards for your questions, answers and votes."
+msgstr ""
+"Ако Π’Π°ΡˆΠΈΡ‚Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ ΡΠ° ΠΏΠΎΠ»Π·ΠΎΡ‚Π²ΠΎΡ€Π½ΠΈ, ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π° Ρ‰Π΅ Π’ΠΈ ΡΠ΅ ΠΎΡ‚Π±Π»Π°Π³ΠΎΠ΄Π°Ρ€ΠΈ Ρ Ρ‚ΠΎΡ‡ΠΊΠΈ."
+
+#: forum/skins/default/templates/badges.html:14
+#: forum/skins/zapprotect/templates/badges.html:14
+#, fuzzy
+msgid ""
+"Below is the list of available badges and number of times each type of badge "
+"has been awarded.\n"
+"    "
+msgstr ""
+"Currently badges differ only by their level: <strong>gold</strong>, "
+"<strong>silver</strong> and <strong>bronze</strong> (their meanings are "
+"described on the right). In the future there will be many types of badges at "
+"each level. <strong>Please give us your <a href='%(feedback_faq_url)"
+"s'>feedback</a></strong> - what kinds of badges would you like to see and "
+"suggest the activity for which those badges might be awarded."
+
+#: forum/skins/default/templates/badges.html:41
+#: forum/skins/zapprotect/templates/badges.html:41
+msgid "Community badges"
+msgstr "Badge levels"
+
+#: forum/skins/default/templates/badges.html:44
+#: forum/skins/zapprotect/templates/badges.html:44
+msgid "gold badge: the highest honor and is very rare"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:44
+#: forum/skins/zapprotect/templates/badges.html:44
+msgid "gold"
+msgstr "Π·Π»Π°Ρ‚ΠΎ"
+
+#: forum/skins/default/templates/badges.html:47
+#: forum/skins/zapprotect/templates/badges.html:47
+msgid "gold badge description"
+msgstr ""
+"Gold badge is the highest award in this community. To obtain it have to show "
+"profound knowledge and ability in addition to your active participation."
+
+#: forum/skins/default/templates/badges.html:51
+#: forum/skins/zapprotect/templates/badges.html:51
+msgid ""
+"silver badge: occasionally awarded for the very high quality contributions"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:52
+#: forum/skins/zapprotect/templates/badges.html:52
+msgid "silver"
+msgstr "срСбро"
+
+#: forum/skins/default/templates/badges.html:55
+#: forum/skins/zapprotect/templates/badges.html:55
+msgid "silver badge description"
+msgstr ""
+"Obtaining silver badge requires significant patience. If you have received "
+"one, that means you have greatly contributed to this community."
+
+#: forum/skins/default/templates/badges.html:58
+#: forum/skins/zapprotect/templates/badges.html:58
+msgid "bronze badge: often given as a special honor"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:59
+#: forum/skins/zapprotect/templates/badges.html:59
+msgid "bronze"
+msgstr "Π±Ρ€ΠΎΠ½Π·"
+
+#: forum/skins/default/templates/badges.html:62
+#: forum/skins/zapprotect/templates/badges.html:62
+msgid "bronze badge description"
+msgstr ""
+"If you are an active participant in this community, you will be recognized "
+"with this badge."
+
+#: forum/skins/default/templates/base_content.html:30
+#: forum/skins/zapprotect/templates/base_content.html:30
+msgid "Are you sure?"
+msgstr ""
+
+#: forum/skins/default/templates/base_content.html:31
+#: forum/skins/zapprotect/templates/base_content.html:31
+msgid "Yes"
+msgstr ""
+
+#: forum/skins/default/templates/base_content.html:32
+#: forum/skins/zapprotect/templates/base_content.html:32
+msgid "No"
+msgstr ""
+
+#: forum/skins/default/templates/base_content.html:33
+#: forum/skins/zapprotect/templates/base_content.html:33
+#, fuzzy
+msgid "Message:"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: forum/skins/default/templates/base_content.html:35
+#: forum/skins/zapprotect/templates/base_content.html:35
+#, fuzzy
+msgid "Close"
+msgstr "[Π·Π°Ρ‚Π²ΠΎΡ€Π΅Π½ΠΎ]"
+
+#: forum/skins/default/templates/base_content.html:36
+#: forum/skins/zapprotect/templates/base_content.html:36
+msgid "Ok"
+msgstr ""
+
+#: forum/skins/default/templates/base_content.html:38
+#: forum/skins/zapprotect/templates/base_content.html:38
+#: forum/templatetags/node_tags.py:151
+#, fuzzy
+msgid "word"
+msgstr "ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/skins/default/templates/base_content.html:39
+#: forum/skins/zapprotect/templates/base_content.html:39
+#, fuzzy
+msgid "words"
+msgstr "ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/skins/default/templates/base_content.html:40
+#: forum/skins/zapprotect/templates/base_content.html:40
+#: forum/templatetags/node_tags.py:150
+#, fuzzy
+msgid "character"
+msgstr ""
+"#-#-#-#-#  django.pot (PACKAGE VERSION)  #-#-#-#-#\n"
+"#-#-#-#-#  django.pot (PACKAGE VERSION)  #-#-#-#-#\n"
+
+#: forum/skins/default/templates/base_content.html:41
+#: forum/skins/zapprotect/templates/base_content.html:41
+msgid "characters"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:6
+#: forum/skins/default/templates/close.html:16
+#: forum/skins/zapprotect/templates/close.html:6
+#: forum/skins/zapprotect/templates/close.html:16
+msgid "Close question"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:19
+#: forum/skins/zapprotect/templates/close.html:19
+msgid "Close the question"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:25
+#: forum/skins/zapprotect/templates/close.html:25
+msgid "Reasons"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:28
+#: forum/skins/zapprotect/templates/close.html:28
+msgid "OK to close"
+msgstr ""
+
+#: forum/skins/default/templates/email_base.html:32
+#: forum/skins/zapprotect/templates/email_base.html:32
+msgid "home"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:6
+#: forum/skins/zapprotect/templates/feedback.html:6
+msgid "Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:11
+#: forum/skins/zapprotect/templates/feedback.html:11
+msgid "Give us your feedback!"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:17
+#: forum/skins/zapprotect/templates/feedback.html:17
+#, python-format
+msgid ""
+"\n"
+"            <span class='big strong'>Dear %(user_name)s</span>, we look "
+"forward to hearing your feedback. \n"
+"            Please type and send us your message below.\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:24
+#: forum/skins/zapprotect/templates/feedback.html:24
+msgid ""
+"\n"
+"            <span class='big strong'>Dear visitor</span>, we look forward to "
+"hearing your feedback.\n"
+"            Please type and send us your message below.\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:41
+#: forum/skins/zapprotect/templates/feedback.html:41
+msgid "(this field is required)"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:49
+#: forum/skins/zapprotect/templates/feedback.html:49
+msgid "Send Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:8
+#: forum/skins/zapprotect/templates/header.html:8
+msgid "back to home page"
+msgstr "ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π½Π° Π½Π°Ρ‡Π°Π»Π½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/header.html:20
+#: forum/skins/zapprotect/templates/header.html:20
+msgid "ask a question"
+msgstr "Π·Π°Π΄Π°ΠΉ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/header.html:30
+#: forum/skins/default/templates/opensearch.html:7
+#: forum/skins/default/templates/search.html:15
+#: forum/skins/zapprotect/templates/header.html:30
+#: forum/skins/zapprotect/templates/opensearch.html:7
+#: forum/skins/zapprotect/templates/search.html:15
+msgid "search"
+msgstr "Ρ‚ΡŠΡ€ΡΠ΅Π½Π΅"
+
+#: forum/skins/default/templates/header.html:34
+#: forum/skins/default/templates/search.html:19
+#: forum/skins/zapprotect/templates/header.html:34
+#: forum/skins/zapprotect/templates/search.html:19 forum/views/readers.py:98
+#: forum/views/readers.py:100 forum/views/readers.py:139
+#: forum/views/users.py:317
+msgid "questions"
+msgstr "Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/header.html:36
+#: forum/skins/default/templates/search.html:21
+#: forum/skins/zapprotect/templates/header.html:36
+#: forum/skins/zapprotect/templates/search.html:21 forum/views/users.py:59
+msgid "users"
+msgstr "ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ"
+
+#: forum/skins/default/templates/index.html:11
+#: forum/skins/zapprotect/templates/index.html:11
+#, fuzzy
+msgid "welcome to "
+msgstr "Π”ΠΎΠ±Ρ€Π΅ Π΄ΠΎΡˆΠ»ΠΈ Π² Zapprotect Q&amp;A"
+
+#: forum/skins/default/templates/logout.html:6
+#: forum/skins/default/templates/logout.html:16
+#: forum/skins/zapprotect/templates/logout.html:6
+#: forum/skins/zapprotect/templates/logout.html:16
+msgid "Logout"
+msgstr "Π˜Π·Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/logout.html:19
+#: forum/skins/zapprotect/templates/logout.html:19
+msgid ""
+"As a registered user you can login with your OpenID, log out of the site or "
+"permanently remove your account."
+msgstr ""
+"Clicking <strong>Logout</strong> will log you out from the forum, but will "
+"not sign you off from your OpenID provider.</p><p>If you wish to sign off "
+"completely - please make sure to log out from your OpenID provider as well."
+
+#: forum/skins/default/templates/logout.html:20
+#: forum/skins/zapprotect/templates/logout.html:20
+msgid "Logout now"
+msgstr "ИзлСз ΡΠ΅Π³Π°"
+
+#: forum/skins/default/templates/markdown_help.html:6
+#: forum/skins/zapprotect/templates/markdown_help.html:6
+#, fuzzy
+msgid "Markdown Help"
+msgstr "Markdown ΡΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#: forum/skins/default/templates/markdown_help.html:15
+#: forum/skins/zapprotect/templates/markdown_help.html:15
+#, fuzzy
+msgid "Markdown Syntax"
+msgstr "Markdown ΡΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#: forum/skins/default/templates/markdown_help.html:16
+#: forum/skins/zapprotect/templates/markdown_help.html:16
+msgid ""
+"This document describes some of the more important parts of Markdown (for "
+"writers, that is).  There's a lot more to the syntax than is mentioned here, "
+"though.  To get the full syntax documentation, go to John Gruber's <a href="
+"\"http://daringfireball.net/projects/markdown/syntax\" rel=\"nofollow"
+"\">Markdown Syntax</a> page"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:20
+#: forum/skins/zapprotect/templates/markdown_help.html:20
+#, fuzzy
+msgid "Headers"
+msgstr "Π’ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/markdown_help.html:22
+#: forum/skins/zapprotect/templates/markdown_help.html:22
+msgid ""
+"For top-level headers underline the text with equal signs.  For second-level "
+"headers use dashes to underline."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:26
+#: forum/skins/default/templates/markdown_help.html:30
+#: forum/skins/default/templates/markdown_help.html:49
+#: forum/skins/default/templates/markdown_help.html:52
+#: forum/skins/zapprotect/templates/markdown_help.html:26
+#: forum/skins/zapprotect/templates/markdown_help.html:30
+#: forum/skins/zapprotect/templates/markdown_help.html:49
+#: forum/skins/zapprotect/templates/markdown_help.html:52
+msgid "This is an H1"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:36
+#: forum/skins/default/templates/markdown_help.html:40
+#: forum/skins/default/templates/markdown_help.html:58
+#: forum/skins/default/templates/markdown_help.html:61
+#: forum/skins/zapprotect/templates/markdown_help.html:36
+#: forum/skins/zapprotect/templates/markdown_help.html:40
+#: forum/skins/zapprotect/templates/markdown_help.html:58
+#: forum/skins/zapprotect/templates/markdown_help.html:61
+msgid "This is an H2"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:45
+#: forum/skins/zapprotect/templates/markdown_help.html:45
+msgid ""
+"If you would rather, you can prefix headers with a hash (#) symbol instead.  "
+"The number of hash symbols indicates the header level.  For example, a "
+"single hash indicates a header level of one while two indicates the second "
+"header level:"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:67
+#: forum/skins/default/templates/markdown_help.html:70
+#: forum/skins/zapprotect/templates/markdown_help.html:67
+#: forum/skins/zapprotect/templates/markdown_help.html:70
+msgid "This is an H3"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:75
+#: forum/skins/zapprotect/templates/markdown_help.html:75
+msgid ""
+"Which you choose is a matter of style.  Whichever you thinks looks better in "
+"the text document.  In both cases, the final, fully formatted, document "
+"looks the same."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:80
+#: forum/skins/zapprotect/templates/markdown_help.html:80
+msgid "Paragraphs"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:82
+#: forum/skins/zapprotect/templates/markdown_help.html:82
+msgid "Paragraphs are surrounded by blank lines."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:85
+#: forum/skins/zapprotect/templates/markdown_help.html:85
+msgid "This is paragraph one."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:88
+#: forum/skins/zapprotect/templates/markdown_help.html:88
+msgid "This is paragraph two."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:93
+#: forum/skins/zapprotect/templates/markdown_help.html:93
+#, fuzzy
+msgid "Links"
+msgstr "Π’Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/markdown_help.html:95
+#: forum/skins/zapprotect/templates/markdown_help.html:95
+msgid ""
+"\n"
+"                There are two parts to every link.\n"
+"                The first is the actual text that the user will see and it "
+"is surrounded by brackets.\n"
+"                The second is address of the page you wish to link to and it "
+"is surrounded in parenthesis.\n"
+"                "
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:103
+#: forum/skins/default/templates/markdown_help.html:106
+#: forum/skins/zapprotect/templates/markdown_help.html:103
+#: forum/skins/zapprotect/templates/markdown_help.html:106
+msgid "link text"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:103
+#: forum/skins/zapprotect/templates/markdown_help.html:103
+msgid "http://example.com/"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:112
+#: forum/skins/zapprotect/templates/markdown_help.html:112
+msgid "Formatting"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:114
+#: forum/skins/zapprotect/templates/markdown_help.html:114
+msgid ""
+"To indicate bold text surround the text with two star (*) symbols or two "
+"underscore (_) symbols:"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:118
+#: forum/skins/default/templates/markdown_help.html:121
+#: forum/skins/zapprotect/templates/markdown_help.html:118
+#: forum/skins/zapprotect/templates/markdown_help.html:121
+msgid "This is bold"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:126
+#: forum/skins/default/templates/markdown_help.html:129
+#: forum/skins/zapprotect/templates/markdown_help.html:126
+#: forum/skins/zapprotect/templates/markdown_help.html:129
+msgid "This is also bold"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:134
+#: forum/skins/zapprotect/templates/markdown_help.html:134
+msgid ""
+"To indicate italicized text surround the text with a single star (*) symbol "
+"or underscore (_) symbol:"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:138
+#: forum/skins/default/templates/markdown_help.html:141
+#: forum/skins/zapprotect/templates/markdown_help.html:138
+#: forum/skins/zapprotect/templates/markdown_help.html:141
+msgid "This is italics"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:146
+#: forum/skins/default/templates/markdown_help.html:149
+#: forum/skins/zapprotect/templates/markdown_help.html:146
+#: forum/skins/zapprotect/templates/markdown_help.html:149
+msgid "This is also italics"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:154
+#: forum/skins/zapprotect/templates/markdown_help.html:154
+msgid ""
+"To indicate italicized and bold text surround the text with three star (*) "
+"symbol or underscore (_) symbol:"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:158
+#: forum/skins/default/templates/markdown_help.html:161
+#: forum/skins/zapprotect/templates/markdown_help.html:158
+#: forum/skins/zapprotect/templates/markdown_help.html:161
+msgid "This is bold and italics"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:166
+#: forum/skins/default/templates/markdown_help.html:169
+#: forum/skins/zapprotect/templates/markdown_help.html:166
+#: forum/skins/zapprotect/templates/markdown_help.html:169
+msgid "This is also bold and italics"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:176
+#: forum/skins/zapprotect/templates/markdown_help.html:176
+msgid "Blockquotes"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:178
+#: forum/skins/zapprotect/templates/markdown_help.html:178
+msgid ""
+"To create an indented area use the right angle bracket (&gt;) character "
+"before each line to be included in the blockquote."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:182
+#: forum/skins/default/templates/markdown_help.html:186
+#: forum/skins/default/templates/markdown_help.html:195
+#: forum/skins/default/templates/markdown_help.html:200
+#: forum/skins/zapprotect/templates/markdown_help.html:182
+#: forum/skins/zapprotect/templates/markdown_help.html:186
+#: forum/skins/zapprotect/templates/markdown_help.html:195
+#: forum/skins/zapprotect/templates/markdown_help.html:200
+msgid "This is part of a blockquote."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:183
+#: forum/skins/default/templates/markdown_help.html:186
+#: forum/skins/zapprotect/templates/markdown_help.html:183
+#: forum/skins/zapprotect/templates/markdown_help.html:186
+msgid "This is part of the same blockquote."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:191
+#: forum/skins/zapprotect/templates/markdown_help.html:191
+msgid ""
+"Rather than putting it in front of each line to include in the block quote "
+"you can put it at the beginning and end the quote with a newline."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:196
+#: forum/skins/default/templates/markdown_help.html:200
+#: forum/skins/zapprotect/templates/markdown_help.html:196
+#: forum/skins/zapprotect/templates/markdown_help.html:200
+msgid "This continues the blockquote even though there's no bracket."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:197
+#: forum/skins/default/templates/markdown_help.html:201
+#: forum/skins/zapprotect/templates/markdown_help.html:197
+#: forum/skins/zapprotect/templates/markdown_help.html:201
+msgid "The blank line ends the blockquote."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:207
+#: forum/skins/zapprotect/templates/markdown_help.html:207
+msgid "Lists"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:209
+#: forum/skins/zapprotect/templates/markdown_help.html:209
+msgid ""
+"To create a numbered list in Markdown, prefix each item in the list with a "
+"number followed by a period and space.  The number you use actually doesn't "
+"matter."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:213
+#: forum/skins/default/templates/markdown_help.html:214
+#: forum/skins/default/templates/markdown_help.html:215
+#: forum/skins/default/templates/markdown_help.html:219
+#: forum/skins/default/templates/markdown_help.html:220
+#: forum/skins/default/templates/markdown_help.html:221
+#: forum/skins/zapprotect/templates/markdown_help.html:213
+#: forum/skins/zapprotect/templates/markdown_help.html:214
+#: forum/skins/zapprotect/templates/markdown_help.html:215
+#: forum/skins/zapprotect/templates/markdown_help.html:219
+#: forum/skins/zapprotect/templates/markdown_help.html:220
+#: forum/skins/zapprotect/templates/markdown_help.html:221
+msgid "Item"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:227
+#: forum/skins/zapprotect/templates/markdown_help.html:227
+msgid ""
+"To create a bulleted list, prefix each item in the list with a star (*) "
+"character."
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:231
+#: forum/skins/default/templates/markdown_help.html:237
+#: forum/skins/zapprotect/templates/markdown_help.html:231
+#: forum/skins/zapprotect/templates/markdown_help.html:237
+msgid "A list item"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:232
+#: forum/skins/default/templates/markdown_help.html:238
+#: forum/skins/zapprotect/templates/markdown_help.html:232
+#: forum/skins/zapprotect/templates/markdown_help.html:238
+msgid "Another list item"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:233
+#: forum/skins/default/templates/markdown_help.html:239
+#: forum/skins/zapprotect/templates/markdown_help.html:233
+#: forum/skins/zapprotect/templates/markdown_help.html:239
+msgid "A third list item"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:246
+#: forum/skins/zapprotect/templates/markdown_help.html:246
+msgid "A Lot More"
+msgstr ""
+
+#: forum/skins/default/templates/markdown_help.html:247
+#: forum/skins/zapprotect/templates/markdown_help.html:247
+msgid ""
+"There's a lot more to the Markdown syntax than is mentioned here.  But for "
+"creative writers, this covers a lot of the necessities.  To find out more "
+"about Markdown than you'd ever want to really know, <a href=\"http://"
+"daringfireball.net/projects/markdown/syntax\" target=\"_blank\" rel="
+"\"nofollow\">go to the Markdown page where it all started</a>."
+msgstr ""
+
+#: forum/skins/default/templates/notarobot.html:3
+#: forum/skins/zapprotect/templates/notarobot.html:3
+msgid "Please prove that you are a Human Being"
+msgstr "Моля, ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚Π΅, Ρ‡Π΅ ΡΡ‚Π΅ Π§ΠΎΠ²Π΅ΠΊ"
+
+#: forum/skins/default/templates/notarobot.html:10
+#: forum/skins/zapprotect/templates/notarobot.html:10
+msgid "I am a Human Being"
+msgstr "Аз ΡΡŠΠΌ Π§ΠΎΠ²Π΅ΠΊ"
+
+#: forum/skins/default/templates/opensearch.html:4
+#: forum/skins/default/templates/opensearch.html:5
+#: forum/skins/default/templates/osqaadmin/nodeman.html:275
+#: forum/skins/zapprotect/templates/opensearch.html:4
+#: forum/skins/zapprotect/templates/opensearch.html:5
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:275
+#: rosetta/templates/rosetta/pofile.html:42
+#, fuzzy
+msgid "Search"
+msgstr "Ρ‚ΡŠΡ€ΡΠ΅Π½Π΅"
+
+#: forum/skins/default/templates/opensearch.html:5
+#: forum/skins/zapprotect/templates/opensearch.html:5
+msgid "using your browser."
+msgstr ""
+
+#: forum/skins/default/templates/pagesize.html:6
+#: forum/skins/default/templates/paginator/page_sizes.html:4
+#: forum/skins/zapprotect/templates/pagesize.html:6
+#: forum/skins/zapprotect/templates/paginator/page_sizes.html:4
+msgid "posts per page"
+msgstr "ΠΏΡƒΠ±Π»ΠΈΠΊΠ°Ρ†ΠΈΠΈ Π½Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/paginator.html:6
+#: forum/skins/default/templates/paginator.html:7
+#: forum/skins/default/templates/paginator/page_numbers.html:6
+#: forum/skins/zapprotect/templates/paginator.html:6
+#: forum/skins/zapprotect/templates/paginator.html:7
+#: forum/skins/zapprotect/templates/paginator/page_numbers.html:6
+msgid "previous"
+msgstr "ΠΏΡ€Π΅Π΄ΠΈΡˆΠ½Π°"
+
+#: forum/skins/default/templates/paginator.html:19
+#: forum/skins/zapprotect/templates/paginator.html:19
+msgid "current page"
+msgstr "Ρ‚Π΅ΠΊΡƒΡ‰Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+#: forum/skins/zapprotect/templates/paginator.html:22
+#: forum/skins/zapprotect/templates/paginator.html:29
+msgid "page number "
+msgstr "Π½ΠΎΠΌΠ΅Ρ€ Π½Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°Ρ‚Π° "
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+#: forum/skins/zapprotect/templates/paginator.html:22
+#: forum/skins/zapprotect/templates/paginator.html:29
+msgid "number - make blank in english"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:33
+#: forum/skins/default/templates/paginator/page_numbers.html:22
+#: forum/skins/zapprotect/templates/paginator.html:33
+#: forum/skins/zapprotect/templates/paginator/page_numbers.html:22
+msgid "next page"
+msgstr "слСдваща ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/privacy.html:6
+#: forum/skins/default/templates/privacy.html:11
+#: forum/skins/zapprotect/templates/privacy.html:6
+#: forum/skins/zapprotect/templates/privacy.html:11
+msgid "Privacy policy"
+msgstr "ДСкларация Π·Π° ΠΏΠΎΠ²Π΅Ρ€ΠΈΡ‚Слност"
+
+#: forum/skins/default/templates/privacy.html:15
+#: forum/skins/zapprotect/templates/privacy.html:15
+msgid "general message about privacy"
+msgstr ""
+"Respecting users privacy is an important core principle of this Q&amp;A "
+"forum. Information on this page details how this forum protects your "
+"privacy, and what type of information is collected."
+
+#: forum/skins/default/templates/privacy.html:18
+#: forum/skins/zapprotect/templates/privacy.html:18
+msgid "Site Visitors"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:20
+#: forum/skins/zapprotect/templates/privacy.html:20
+msgid "what technical information is collected about visitors"
+msgstr ""
+"Information on question views, revisions of questions and answers - both "
+"times and content are recorded for each user in order to correctly count "
+"number of views, maintain data integrity and report relevant updates."
+
+#: forum/skins/default/templates/privacy.html:23
+#: forum/skins/zapprotect/templates/privacy.html:23
+msgid "Personal Information"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:25
+#: forum/skins/zapprotect/templates/privacy.html:25
+msgid "details on personal information policies"
+msgstr ""
+"Members of this community may choose to display personally identifiable "
+"information in their profiles. Forum will never display such information "
+"without a request from the user."
+
+#: forum/skins/default/templates/privacy.html:28
+#: forum/skins/zapprotect/templates/privacy.html:28
+msgid "Other Services"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:30
+#: forum/skins/zapprotect/templates/privacy.html:30
+msgid "details on sharing data with third parties"
+msgstr ""
+"None of the data that is not openly shown on the forum by the choice of the "
+"user is shared with any third party."
+
+#: forum/skins/default/templates/privacy.html:35
+#: forum/skins/zapprotect/templates/privacy.html:35
+msgid "cookie policy details"
+msgstr ""
+"Forum software relies on the internet cookie technology to keep track of "
+"user sessions. Cookies must be enabled in your browser so that forum can "
+"work for you."
+
+#: forum/skins/default/templates/privacy.html:37
+#: forum/skins/zapprotect/templates/privacy.html:37
+msgid "Policy Changes"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:38
+#: forum/skins/zapprotect/templates/privacy.html:38
+msgid "how privacy policies can be changed"
+msgstr ""
+"These policies may be adjusted to improve protection of user's privacy. "
+"Whenever such changes occur, users will be notified via the internal "
+"messaging system. "
+
+#: forum/skins/default/templates/question.html:110
+#: forum/skins/default/templates/sidebar/recent_tags.html:9
+#: forum/skins/zapprotect/templates/question.html:110
+#: forum/skins/zapprotect/templates/sidebar/recent_tags.html:9
+#, python-format
+msgid "see questions tagged '%(tagname)s'"
+msgstr "ΠΎΡ‰Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ Ρ Ρ‚Π°Π³ '%(tagname)s'"
+
+#: forum/skins/default/templates/question.html:129
+#: forum/skins/zapprotect/templates/question.html:129
+#, python-format
+msgid ""
+"The question has been closed for the following reason \"%(close_reason)s\" by"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠ° Π±Π΅ΡˆΠ΅ Π·Π°Ρ‚Π²ΠΎΡ€Π΅Π½ ΠΏΠΎΡ€Π°Π΄ΠΈ \"%(close_reason)s\" ΠΎΡ‚"
+
+#: forum/skins/default/templates/question.html:140
+#: forum/skins/zapprotect/templates/question.html:140
+#, fuzzy, python-format
+msgid "One Answer:"
+msgid_plural "%(counter)s Answers:"
+msgstr[0] "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅"
+msgstr[1] "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/question.html:189
+#: forum/skins/zapprotect/templates/question.html:189
+msgid "Your answer"
+msgstr "Π’Π°ΡˆΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/skins/default/templates/question.html:191
+#: forum/skins/zapprotect/templates/question.html:191
+msgid "Be the first one to answer this question!"
+msgstr "Π‘ΡŠΠ΄Π΅Ρ‚Π΅ ΠΏΡŠΡ€Π²ΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΠ» Π½Π° Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ!"
+
+#: forum/skins/default/templates/question.html:198
+#: forum/skins/zapprotect/templates/question.html:198
+#, fuzzy
+msgid "You can answer anonymously and then login."
+msgstr ""
+"<span class='strong big'>Π—Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ Π΄Π° Π΄ΠΎΠ±Π°Π²ΡΡ‚Π΅ Π°Π½ΠΎΠ½ΠΈΠΌΠ½ΠΎ</span> - Π’Π°ΡˆΠΈΡ "
+"ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Ρ‰Π΅ Π±ΡŠΠ΄Π° Π·Π°ΠΏΠ°Π·Π΅Π½ Π² ΡΠ΅ΡΠΈΡΡ‚Π° Π΄ΠΎΠΊΠ°Ρ‚ΠΎ Π²Π»Π΅Π·Π½Π΅Ρ‚Π΅ ΠΈΠ»ΠΈ ΡΠΈ Π½Π°ΠΏΡ€Π°Π²ΠΈΡ‚Π΅ Π°ΠΊΠ°ΡƒΠ½Ρ‚. "
+"Моля ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ <strong>Π½Π΅ΡƒΡ‚Ρ€Π°Π»Π½ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ</strong>, Π·Π° Π΄ΠΈΡΠΊΡƒΡΠΈΡ, "
+"<strong>ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΡΠ°ΠΌΠΎ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΡ‚Π΅</strong> ΠΈ <strong>моля, Π³Π»Π°ΡΡƒΠ²Π°ΠΉΡ‚Π΅</"
+"strong> (слСд ΠΊΠ°Ρ‚ΠΎ ΡΠ΅ ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Ρ‚Π΅)!"
+
+#: forum/skins/default/templates/question.html:202
+#: forum/skins/zapprotect/templates/question.html:202
+#, fuzzy
+msgid "Answer your own question only to give an answer."
+msgstr ""
+"<span class='big strong'>Π’ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚Π΅ Π½Π° Π’Π°ΡˆΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ</span>, Π½ΠΎ "
+"сС ΡƒΠ²Π΅Ρ€Π΅Ρ‚Π΅ Ρ‡Π΅ ΠΏΡ€Π΅Π΄ΠΎΡΡ‚авятС <strong>ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€</strong>. Π—Π°ΠΏΠΎΠΌΠ½Π΅Ρ‚Π΅, Ρ‡Π΅ Π²ΠΈΠ½Π°Π³ΠΈ "
+"ΠΌΠΎΠΆΠ΅Ρ‚Π΅ <strong>Π΄Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ</strong>. ΠœΠΎΠ»Ρ "
+"<strong>ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈ Π·Π° Π΄ΠΈΡΠΊΡƒΡ‚ΠΈΡ€Π°Π½Π΅</strong> ΠΈ <strong>Π½Π΅ "
+"забравяйтС Π΄Π° Π³Π»Π°ΡΡƒΠ²Π°Ρ‚Π΅</strong> Π·Π° ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚Π΅, ΠΊΠΎΠΈΡ‚ΠΎ Ρ…арСсватС (ΠΈΠ»ΠΈ Π½Π΅ "
+"харСсватС)"
+
+#: forum/skins/default/templates/question.html:204
+#: forum/skins/zapprotect/templates/question.html:204
+#, fuzzy
+msgid "Please only give an answer, no discussions."
+msgstr ""
+"<span class='big strong'>ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€Π° Ρ‚рябва Π΄Π° ΡΡŠΠ΄ΡŠΡ€ΠΆΠ° ΡΠ°ΠΌΠΎ ΡΡŠΡ‰Π΅ΡΡ‚Π²Π΅Π½Π° "
+"информация</span>. ΠΠΊΠΎ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΊΠΎΠΌΠ΅Π½Ρ‚ΠΈΡ€Π°Ρ‚Π΅, ΠΏΡ€ΠΎΡΡ‚ΠΎ <strong>ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ "
+"опцията Π·Π° ΠΊΠΎΠΌΠ΅Π½Ρ‚ΠΈΡ€Π°Π½Π΅</strong>. Π—Π°ΠΏΠΎΠΌΠ½Π΅Ρ‚Π΅, Ρ‡Π΅ Π²ΠΈΠ½Π°Π³ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° "
+"<strong>ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π’Π°ΡˆΠΈΡ‚Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ</strong> - Π½Π΅ Π΅ Π½ΡƒΠΆΠ½ΠΎ Π΄Π° ΠΎΡ‚говарятС Π½Π° "
+"ΡΡŠΡ‰ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ Π΄Π²Π° ΠΏΡŠΡ‚ΠΈ. Π—Π°Ρ‰ΠΎ Ρ‚Π°ΠΊΠ° <strong>Π½Π΅ Π·Π°Π±Ρ€Π°Π²ΡΠΉΡ‚Π΅ Π΄Π° Π³Π»Π°ΡΡƒΠ²Π°Ρ‚Π΅</"
+"strong> - Π½Π°ΠΈΡΡ‚ΠΈΠ½Π° ΠΏΠΎΠΌΠ°Π³Π° Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΈΠ·Π±Ρ€Π°Π½ΠΈ Π½Π°ΠΉ-Π΄ΠΎΠ±Ρ€ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ!"
+
+#: forum/skins/default/templates/question.html:207
+#: forum/skins/zapprotect/templates/question.html:207
+msgid ""
+"Remember, your answer will not be published until you validate your email."
+msgstr ""
+
+#: forum/skins/default/templates/question.html:246
+#: forum/skins/zapprotect/templates/question.html:246
+msgid "Login/Signup to Post Your Answer"
+msgstr "ΠžΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°ΠΉΡ‚Π΅ ΡΠ΅ Π·Π° Π΄Π° Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ Π’Π°ΡˆΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/skins/default/templates/question.html:249
+#: forum/skins/zapprotect/templates/question.html:249
+msgid "Answer Your Own Question"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Ρ‚Π΅ Π½Π° Π’Π°ΡˆΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/question.html:251
+#: forum/skins/zapprotect/templates/question.html:251
+msgid "Answer the question"
+msgstr "Π˜Π·ΠΏΡ€Π°Ρ‚Π΅Ρ‚Π΅ Π’Π°ΡˆΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/skins/default/templates/question.html:269
+#: forum/skins/zapprotect/templates/question.html:269
+msgid "Question tags"
+msgstr "Π’Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/question.html:274
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:45
+#: forum/skins/default/templates/question_list/item.html:31
+#: forum/skins/zapprotect/templates/question.html:274
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:52
+#: forum/skins/zapprotect/templates/tags.html:45
+#: forum/skins/zapprotect/templates/question_list/item.html:31
+msgid "see questions tagged"
+msgstr "Π²ΠΈΠΆ Π²ΡŠΠΏΡ€ΠΎΡΠΈΡ‚Π΅ ΠΏΠΎ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/question.html:274
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:45
+#: forum/skins/default/templates/question_list/item.html:31
+#: forum/skins/zapprotect/templates/question.html:274
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:52
+#: forum/skins/zapprotect/templates/tags.html:45
+#: forum/skins/zapprotect/templates/question_list/item.html:31
+msgid "using tags"
+msgstr "ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/question.html:279
+#: forum/skins/zapprotect/templates/question.html:279
+msgid "question asked"
+msgstr "Π—Π°Π΄Π°Π΄Π΅Π½ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/question.html:282
+#: forum/skins/zapprotect/templates/question.html:282
+msgid "question was seen"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠ° Π΅ Π²ΠΈΠ΄ΡΠ½"
+
+#: forum/skins/default/templates/question.html:282
+#: forum/skins/zapprotect/templates/question.html:282
+msgid "times"
+msgstr "ΠΏΡŠΡ‚ΠΈ"
+
+#: forum/skins/default/templates/question.html:285
+#: forum/skins/zapprotect/templates/question.html:285
+msgid "last updated"
+msgstr "ПослСдно ΠΎΠ±Π½ΠΎΠ²Π΅Π½"
+
+#: forum/skins/default/templates/question.html:291
+#: forum/skins/zapprotect/templates/question.html:291
+msgid "Related questions"
+msgstr "Подобни Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/question_edit.html:5
+#: forum/skins/default/templates/question_edit.html:91
+#: forum/skins/zapprotect/templates/question_edit.html:5
+#: forum/skins/zapprotect/templates/question_edit.html:91
+msgid "Edit question"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/skins/default/templates/question_edit_tips.html:4
+#: forum/skins/zapprotect/templates/question_edit_tips.html:4
+msgid "Title Tips"
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:9
+#: forum/skins/zapprotect/templates/question_edit_tips.html:9
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                ask a question relevant to the %(app_title)s community \n"
+"                "
+msgstr ""
+"\n"
+"(one comment)"
+
+#: forum/skins/default/templates/question_edit_tips.html:15
+#: forum/skins/zapprotect/templates/question_edit_tips.html:15
+msgid "please try provide enough details"
+msgstr "ΡƒΠ²Π΅Ρ€Π΅Ρ‚Π΅ ΡΠ΅, Ρ‡Π΅ ΡƒΡ‚очняватС Π²ΡΠΈΡ‡ΠΊΠΈ Π°ΡΠΏΠ΅ΠΊΡ‚ΠΈ"
+
+#: forum/skins/default/templates/question_edit_tips.html:30
+#: forum/skins/zapprotect/templates/question_edit_tips.html:30
+msgid "What Are Tags"
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:33
+#: forum/skins/zapprotect/templates/question_edit_tips.html:33
+msgid "Tags are words that will tell others what this question is about."
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:36
+#: forum/skins/zapprotect/templates/question_edit_tips.html:36
+msgid "They will help other find your question."
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:39
+#: forum/skins/zapprotect/templates/question_edit_tips.html:39
+#, python-format
+msgid ""
+"\n"
+"                A question can have up to %(max_number_of_tags)s tags, but "
+"it must have at least %(min_number_of_tags)s.\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/question_retag.html:5
+#: forum/skins/default/templates/question_retag.html:58
+#: forum/skins/zapprotect/templates/question_retag.html:5
+#: forum/skins/zapprotect/templates/question_retag.html:58
+msgid "Change tags"
+msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅"
+
+#: forum/skins/default/templates/question_retag.html:43
+#: forum/skins/zapprotect/templates/question_retag.html:43
+msgid "tags are required"
+msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅ ΡΠ° Π·Π°Π΄ΡŠΠ»ΠΆΠΈΡ‚Π΅Π»Π½ΠΈ"
+
+#: forum/skins/default/templates/question_retag.html:44
+#: forum/skins/zapprotect/templates/question_retag.html:44
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                        maxlength: \"up to %(max_number_of_tags)s tags, less "
+"than %(max_length_of_tags)s characters each\"\n"
+"                        "
+msgstr ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>question with title "
+"containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></"
+"p>"
+
+#: forum/skins/default/templates/question_retag.html:88
+#: forum/skins/zapprotect/templates/question_retag.html:88
+msgid "Why use and modify tags?"
+msgstr "Π—Π°Ρ‰ΠΎ Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΌΠ΅ Ρ‚Π°Π³ΠΎΠ²Π΅?"
+
+#: forum/skins/default/templates/question_retag.html:91
+#: forum/skins/zapprotect/templates/question_retag.html:91
+msgid "tags help us keep Questions organized"
+msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅ Π½ΠΈ ΠΏΠΎΠΌΠ°Π³Π°Ρ‚ Π΄Π° ΠΎΡ€Π³Π°Π½ΠΈΠ·ΠΈΡ€Π°ΠΌΠ΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/question_retag.html:99
+#: forum/skins/zapprotect/templates/question_retag.html:99
+msgid "tag editors receive special awards from the community"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€ΠΈΡ‚Π΅ Π½Π° Ρ‚Π°Π³ΠΎΠ²Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Π²Π°Ρ‚ ΡΠΏΠ΅Ρ†ΠΈΠ°Π»Π½ΠΈ Π½Π°Π³Ρ€Π°Π΄ΠΈ ΠΎΡ‚ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π°"
+
+#: forum/skins/default/templates/question_summary_list_roll.html:13
+#: forum/skins/default/templates/question_list/count.html:15
+#: forum/skins/default/templates/question_list/item.html:15
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:13
+#: forum/skins/zapprotect/templates/question_list/count.html:15
+#: forum/skins/zapprotect/templates/question_list/item.html:15
+#: forum/views/users.py:55
+msgid "answers"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ"
+
+#: forum/skins/default/templates/question_summary_list_roll.html:14
+#: forum/skins/default/templates/question_list/item.html:11
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:14
+#: forum/skins/zapprotect/templates/question_list/item.html:11
+#: forum/views/commands.py:77 forum/views/readers.py:62
+#: forum/views/readers.py:63 forum/views/readers.py:265
+#: forum/views/users.py:54 forum/views/users.py:55 forum/views/users.py:356
+msgid "votes"
+msgstr "гласовС"
+
+#: forum/skins/default/templates/question_summary_list_roll.html:15
+#: forum/skins/default/templates/question_list/item.html:19
+#: forum/skins/zapprotect/templates/question_summary_list_roll.html:15
+#: forum/skins/zapprotect/templates/question_list/item.html:19
+msgid "views"
+msgstr "прСглСТдания"
+
+#: forum/skins/default/templates/questions.html:18
+#: forum/skins/default/templates/users/stats.html:19
+#: forum/skins/zapprotect/templates/questions.html:18
+#: forum/skins/zapprotect/templates/users/stats.html:19
+#, fuzzy
+msgid "subscribe to question RSS feed"
+msgstr "Π’ΠΈΠ΅ ΡΡ‚Π΅ Π°Π±ΠΎΠ½ΠΈΡ€Π°Π½ Π·Π° Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ."
+
+#: forum/skins/default/templates/reopen.html:6
+#: forum/skins/default/templates/reopen.html:16
+#: forum/skins/zapprotect/templates/reopen.html:6
+#: forum/skins/zapprotect/templates/reopen.html:16
+msgid "Reopen question"
+msgstr "ΠžΡ‚Π²ΠΎΡ€ΠΈ ΠΎΡ‚Π½ΠΎΠ²ΠΎ Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/skins/default/templates/reopen.html:19
+#: forum/skins/zapprotect/templates/reopen.html:19
+msgid "Open the previously closed question"
+msgstr "ΠžΡ‚Π²ΠΎΡ€ΠΈ ΠΏΡ€Π΅Π΄ΠΈ Π·Π°Ρ‚ворСния Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/reopen.html:22
+#: forum/skins/zapprotect/templates/reopen.html:22
+msgid "The question was closed for the following reason "
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠ° Π΅ Π±ΠΈΠ» Π·Π°Ρ‚Π²ΠΎΡ€Π΅Π½ ΠΏΠΎΡ€Π°Π΄ΠΈ ΡΠ»Π΅Π΄Π½Π°Ρ‚Π° ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π° "
+
+#: forum/skins/default/templates/reopen.html:22
+#: forum/skins/zapprotect/templates/reopen.html:22
+msgid "reason - leave blank in english"
+msgstr "ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π° - ΠΎΡΡ‚Π°Π²ΠΈ ΠΏΡ€Π°Π·Π½ΠΎ"
+
+#: forum/skins/default/templates/reopen.html:22
+#: forum/skins/zapprotect/templates/reopen.html:22
+msgid "on "
+msgstr "Π½Π° "
+
+#: forum/skins/default/templates/reopen.html:22
+#: forum/skins/zapprotect/templates/reopen.html:22
+msgid "date closed"
+msgstr "Π΄Π°Ρ‚Π° Π½Π° Π·Π°Ρ‚варянС"
+
+#: forum/skins/default/templates/reopen.html:29
+#: forum/skins/zapprotect/templates/reopen.html:29
+msgid "Reopen this question"
+msgstr "ΠžΡ‚Π²ΠΎΡ€ΠΈ ΠΎΡ‚Π½ΠΎΠ²ΠΎ Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/revisions.html:7
+#: forum/skins/default/templates/revisions.html:38
+#: forum/skins/zapprotect/templates/revisions.html:7
+#: forum/skins/zapprotect/templates/revisions.html:38
+msgid "Revision history"
+msgstr "Π˜ΡΡ‚ΠΎΡ€ΠΈΡ Π½Π° Ρ€Π΅Π²ΠΈΠ·ΠΈΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/revisions.html:52
+#: forum/skins/zapprotect/templates/revisions.html:52
+msgid "click to hide/show revision"
+msgstr "скрий/ΠΏΠΎΠΊΠ°ΠΆΠΈ Ρ€Π΅Π²ΠΈΠ·ΠΈΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/search.html:7
+#: forum/skins/zapprotect/templates/search.html:7
+#, python-format
+msgid ""
+"\n"
+"\t    Search in %(app_name)s\n"
+"\t"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:3
+#: forum/skins/zapprotect/templates/subscription_status.html:3
+#, fuzzy
+msgid "Follow this question"
+msgstr "ΠžΡ‚Π²ΠΎΡ€ΠΈ ΠΎΡ‚Π½ΠΎΠ²ΠΎ Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/skins/default/templates/subscription_status.html:4
+#: forum/skins/zapprotect/templates/subscription_status.html:4
+#, fuzzy
+msgid "By Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
+
+#: forum/skins/default/templates/subscription_status.html:9
+#: forum/skins/zapprotect/templates/subscription_status.html:9
+msgid "You were automatically subscribed to this question."
+msgstr "Π’ΠΈΠ΅ Π±ΡΡ…Ρ‚Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π°Π±ΠΎΠ½ΠΈΡ€Π°Π½ Π·Π° Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ."
+
+#: forum/skins/default/templates/subscription_status.html:11
+#: forum/skins/zapprotect/templates/subscription_status.html:11
+msgid "You are subscribed to this question."
+msgstr "Π’ΠΈΠ΅ ΡΡ‚Π΅ Π°Π±ΠΎΠ½ΠΈΡ€Π°Π½ Π·Π° Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ."
+
+#: forum/skins/default/templates/subscription_status.html:14
+#: forum/skins/zapprotect/templates/subscription_status.html:14
+msgid "You are not subscribed to this question."
+msgstr "Π’ΠΈΠ΅ Π½Π΅ ΡΡ‚Π΅ Π°Π±ΠΎΠ½ΠΈΡ€Π°Π½ Π·Π° Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ."
+
+#: forum/skins/default/templates/subscription_status.html:19
+#: forum/skins/zapprotect/templates/subscription_status.html:19
+#: forum/views/commands.py:463
+msgid "unsubscribe me"
+msgstr "ΠΌΠ°Ρ…Π½ΠΈ Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚Π° ΠΌΠΈ"
+
+#: forum/skins/default/templates/subscription_status.html:21
+#: forum/skins/zapprotect/templates/subscription_status.html:21
+#: forum/views/commands.py:463
+msgid "subscribe me"
+msgstr "Π°Π±ΠΎΠ½ΠΈΡ€Π°ΠΉ ΠΌΠ΅"
+
+#: forum/skins/default/templates/subscription_status.html:26
+#: forum/skins/zapprotect/templates/subscription_status.html:26
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            (you can adjust your notification settings on your <a href=\"%"
+"(subscriptions_url)s\">profile</a>)\n"
+"        "
+msgstr ""
+"(ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚Π½ΠΈΡ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ Π² Π’Π°ΡˆΠΈΡ <a href=\"%(profile_url)"
+"s?sort=email_subscriptions\">ΠΏΡ€ΠΎΡ„ΠΈΠ»</a>)\n"
+
+#: forum/skins/default/templates/subscription_status.html:31
+#: forum/skins/zapprotect/templates/subscription_status.html:31
+#, fuzzy
+msgid "Once you sign in you will be able to subscribe for any updates here"
+msgstr ""
+"<span class='strong'>Π’ΡƒΠΊ</span> (слСд ΠΊΠ°Ρ‚ΠΎ ΡΠ΅ ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Ρ‚Π΅) Ρ‰Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΡΠ΅ "
+"Π°Π±ΠΎΠ½ΠΈΡ€Π°Ρ‚Π΅ Π·Π° ΠΏΠ΅Ρ€ΠΈΠΎΠ΄ΠΈΡ‡Π½ΠΈ ΠΈΠ·Π²Π΅ΡΡ‚явания ΠΏΠΎ Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ."
+
+#: forum/skins/default/templates/subscription_status.html:33
+#: forum/skins/zapprotect/templates/subscription_status.html:33
+msgid "By RSS"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:36
+#: forum/skins/zapprotect/templates/subscription_status.html:36
+#, fuzzy
+msgid "subscribe to answers"
+msgstr "Π°Π±ΠΎΠ½ΠΈΡ€Π°ΠΉ ΠΌΠ΅"
+
+#: forum/skins/default/templates/subscription_status.html:37
+#: forum/skins/zapprotect/templates/subscription_status.html:37
+#, fuzzy
+msgid "Answers"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ"
+
+#: forum/skins/default/templates/subscription_status.html:41
+#: forum/skins/zapprotect/templates/subscription_status.html:41
+#, fuzzy
+msgid "subscribe to comments and answers"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/skins/default/templates/subscription_status.html:42
+#: forum/skins/zapprotect/templates/subscription_status.html:42
+#, fuzzy
+msgid "Answers and Comments"
+msgstr "Π΄ΠΎΠ±Π°Π²ΠΈ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈ"
+
+#: forum/skins/default/templates/tag_selector.html:4
+#: forum/skins/default/templates/question_list/tag_selector.html:6
+#: forum/skins/zapprotect/templates/tag_selector.html:4
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:6
+msgid "Interesting tags"
+msgstr "Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/tag_selector.html:10
+#: forum/skins/default/templates/tag_selector.html:27
+#: forum/skins/default/templates/question_list/related_tags.html:9
+#: forum/skins/default/templates/question_list/tag_selector.html:12
+#: forum/skins/default/templates/question_list/tag_selector.html:29
+#: forum/skins/zapprotect/templates/tag_selector.html:10
+#: forum/skins/zapprotect/templates/tag_selector.html:27
+#: forum/skins/zapprotect/templates/question_list/related_tags.html:9
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:12
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:29
+#, python-format
+msgid "see questions tagged '%(tag_name)s'"
+msgstr "Π²ΠΈΠΆ Π²ΡŠΠΏΡ€ΠΎΡΠΈΡ‚Π΅ Ρ Ρ‚Π°Π³ '%(tag_name)s'"
+
+#: forum/skins/default/templates/tag_selector.html:14
+#: forum/skins/default/templates/question_list/tag_selector.html:16
+#: forum/skins/zapprotect/templates/tag_selector.html:14
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:16
+#, python-format
+msgid "remove '%(tag_name)s' from the list of interesting tags"
+msgstr "ΠΏΡ€Π΅ΠΌΠ°Ρ…Π½ΠΈ '%(tag_name)s' ΠΎΡ‚ ΡΠΏΠΈΡΡŠΠΊΠ° Ρ ΠΈΠ½Ρ‚СрСсни Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/tag_selector.html:20
+#: forum/skins/default/templates/tag_selector.html:37
+#: forum/skins/default/templates/question_list/tag_selector.html:22
+#: forum/skins/default/templates/question_list/tag_selector.html:39
+#: forum/skins/zapprotect/templates/tag_selector.html:20
+#: forum/skins/zapprotect/templates/tag_selector.html:37
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:22
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:39
+msgid "Add"
+msgstr "Π”ΠΎΠ±Π°Π²ΠΈ"
+
+#: forum/skins/default/templates/tag_selector.html:21
+#: forum/skins/default/templates/question_list/tag_selector.html:23
+#: forum/skins/zapprotect/templates/tag_selector.html:21
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:23
+msgid "Ignored tags"
+msgstr "Π˜Π³Π½ΠΎΡ€ΠΈΡ€Π°Π½ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/tag_selector.html:31
+#: forum/skins/default/templates/question_list/tag_selector.html:33
+#: forum/skins/zapprotect/templates/tag_selector.html:31
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:33
+#, python-format
+msgid "remove '%(tag_name)s' from the list of ignored tags"
+msgstr "ΠΏΡ€Π΅ΠΌΠ°Ρ…Π½ΠΈ '%(tag_name)s' ΠΎΡ‚ ΡΠΏΠΈΡΡŠΠΊΠ° Ρ ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€Π°Π½ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/tag_selector.html:40
+#: forum/skins/default/templates/question_list/tag_selector.html:43
+#: forum/skins/zapprotect/templates/tag_selector.html:40
+#: forum/skins/zapprotect/templates/question_list/tag_selector.html:43
+msgid "keep ignored questions hidden"
+msgstr "скривай ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€Π°Π½ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/tags.html:6
+#: forum/skins/default/templates/tags.html:29
+#: forum/skins/zapprotect/templates/tags.html:6
+#: forum/skins/zapprotect/templates/tags.html:29
+msgid "Tag list"
+msgstr "Бписък Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/tags.html:35
+#: forum/skins/zapprotect/templates/tags.html:35
+msgid "All tags matching query"
+msgstr "Всички Ρ‚Π°Π³ΠΎΠ²Π΅ ΠΎΡ‚говарящи Π½Π° Π·Π°ΡΠ²ΠΊΠ°Ρ‚Π°"
+
+#: forum/skins/default/templates/tags.html:38
+#: forum/skins/zapprotect/templates/tags.html:38
+msgid "Nothing found"
+msgstr "Нищо Π½Π΅ Π±Π΅ΡˆΠ΅ Π½Π°ΠΌΠ΅Ρ€Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/auth/auth_settings.html:5
+#: forum/skins/default/templates/auth/auth_settings.html:7
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:5
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:7
+msgid "Authentication settings"
+msgstr "ΠžΠΏΡ†ΠΈΠΈ Π·Π° ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅"
+
+#: forum/skins/default/templates/auth/auth_settings.html:9
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:9
+msgid ""
+"These are the external authentication providers currently associated with "
+"your account."
+msgstr "Π’ΠΎΠ²Π° ΡΠ° Π²ΡŠΠ½ΡˆΠ½ΠΈ ΠΎΡ‚ΠΎΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€ΠΈ ΡΠ²ΡŠΡ€Π·Π°Π½ΠΈ Ρ Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚"
+
+#: forum/skins/default/templates/auth/auth_settings.html:17
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:17
+msgid ""
+"You currently have no external authentication provider associated with your "
+"account."
+msgstr "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Π½ΡΠΌΠ°Ρ‚Π΅ Π²ΡŠΠ½ΡˆΠ½ΠΈ ΠΎΡ‚ΠΎΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€ΠΈ ΡΠ²ΡŠΡ€Π·Π°Π½ΠΈ Ρ Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚."
+
+#: forum/skins/default/templates/auth/auth_settings.html:20
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:20
+msgid "Add new provider"
+msgstr "Π”ΠΎΠ±Π°Π²ΠΈ Π½ΠΎΠ² ΠΎΡ‚ΠΎΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€"
+
+#: forum/skins/default/templates/auth/auth_settings.html:24
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:24
+msgid "This is where you can change your password. Make sure you remember it!"
+msgstr ""
+"<span class='strong'>Π—Π° Π΄Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΏΠ°Ρ€ΠΎΠ»Π°Ρ‚Π°</span> ΠΏΠΎΠΏΡŠΠ»Π½Π΅Ρ‚Π΅ ΠΈ ΠΈΠ·ΠΏΡ€Π°Ρ‚Π΅Ρ‚Π΅ "
+"Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π°."
+
+#: forum/skins/default/templates/auth/auth_settings.html:26
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:26
+msgid ""
+"You can set up a password for your account, so you can login using standard "
+"username and password!"
+msgstr ""
+"ΠœΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° Π·Π°Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΏΠ°Ρ€ΠΎΠ»Π° Π·Π° Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚, Ρ‚Π°ΠΊΠ° Ρ‡Π΅ Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚Π΅ ΡΡ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ "
+"потрСбитСлско ΠΈΠΌΠ΅ ΠΈ ΠΏΠ°Ρ€ΠΎΠ»Π°!"
+
+#: forum/skins/default/templates/auth/auth_settings.html:33
+#: forum/skins/zapprotect/templates/auth/auth_settings.html:33
+#, fuzzy
+msgid "Create password"
+msgstr "ΠŸΠ°Ρ€ΠΎΠ»Π° <i>(Π½Π°ΠΏΠΈΡˆΠ΅Ρ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ)</i>"
+
+#: forum/skins/default/templates/auth/complete.html:5
+#: forum/skins/zapprotect/templates/auth/complete.html:5
+msgid "Connect your OpenID with this site"
+msgstr "Π‘Π²ΡŠΡ€ΠΆΠ΅Ρ‚Π΅ OpenID ΠΊΡŠΠΌ Ρ‚ΠΎΠ·ΠΈ ΡΠ°ΠΉΡ‚"
+
+#: forum/skins/default/templates/auth/complete.html:8
+#: forum/skins/zapprotect/templates/auth/complete.html:8
+msgid "Connect your OpenID with your account on this site"
+msgstr "Нова ΠΏΠΎΡ‚рСбитСлска Ρ€Π΅Π³ΠΈΡΡ‚рация"
+
+#: forum/skins/default/templates/auth/complete.html:12
+#: forum/skins/zapprotect/templates/auth/complete.html:12
+msgid "You are here for the first time with "
+msgstr "Π’ΠΈΠ΅ ΡΡ‚Π΅ Ρ‚ΡƒΠΊ Π·Π° ΠΏΡ€ΡŠΠ² ΠΏΡŠΡ‚ ΠΎΡ‚ "
+
+#: forum/skins/default/templates/auth/complete.html:13
+#: forum/skins/zapprotect/templates/auth/complete.html:13
+msgid ""
+"Please create your screen name and save your email address. Saved email "
+"address will let you subscribe for the updates on the most interesting "
+"questions and will be used to create and retrieve your unique avatar image. "
+msgstr ""
+"Π‘ΡŠΠ·Π΄Π°ΠΉΡ‚Π΅ Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΠΏΡƒΠ±Π»ΠΈΡ‡Π½ΠΎ ΠΈΠΌΠ΅ ΠΈ Π·Π°ΠΏΠ°Π·Π΅Ρ‚Π΅ ΠΈΠΌΠ΅ΠΉΠ»Π° ΡΠΈ. Π—Π°ΠΏΠ°Π·Π΅Π½ΠΈΡ‚Π΅ ΠΈΠΌΠ΅ΠΉΠ» Π°Π΄Ρ€Π΅ΡΠΈ "
+"Ρ‰Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚Π΅ Π·Π° Π΄Π° ΡΠ΅ Π°Π±ΠΎΠ½ΠΈΡ€Π°Ρ‚Π΅ Π·Π° ΠΈΠ·Π²Π΅ΡΡ‚ия Π·Π° Π½Π°ΠΉ-интСрСснитС "
+"Π²ΡŠΠΏΡ€ΠΎΡΠΈ."
+
+#: forum/skins/default/templates/auth/complete.html:15
+#: forum/skins/zapprotect/templates/auth/complete.html:15
+msgid "This account already exists, please use another."
+msgstr "Π’ΠΎΠ·ΠΈ Π°ΠΊΠ°ΡƒΠ½Ρ‚ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°, ΠΈΠ·ΠΏΠ»ΠΎΠ·Π²Π°ΠΉΡ‚Π΅ Π΄Ρ€ΡƒΠ³."
+
+#: forum/skins/default/templates/auth/complete.html:70
+#: forum/skins/zapprotect/templates/auth/complete.html:70
+msgid "receive updates motivational blurb"
+msgstr ""
+"<strong>ΠŸΠΎΠ»ΡƒΡ‡Π°Π²Π°ΠΉΡ‚Π΅ ΡŠΠΏΠ΄Π΅ΠΉΡ‚ΠΈ ΠΏΠΎ ΠΈΠΌΠ΅ΠΉΠ»</strong> - Ρ‚ΠΎΠ²Π° Ρ‰Π΅ ΠΏΠΎΠΌΠΎΠ³Π½Π΅ Π½Π° Π½Π°ΡˆΠ°Ρ‚Π° "
+"общност Π΄Π° ΠΏΠΎΠΌΠΎΠ³Π½Π΅ ΠΈ Π΄Π° ΡΡ‚Π°Π½Π΅ ΠΏΠΎ-ΠΏΠΎΠ»Π·ΠΎΡ‚Π²ΠΎΡ€Π½Π°.<br/>По ΠΏΠΎΠ΄Ρ€Π°Π·Π±ΠΈΡ€Π°Π½Π΅, ΡΠ΅ "
+"ΠΈΠ·ΠΏΡ€Π°Ρ‰Π° ΡΠ°ΠΌΠΎ Π΅Π΄ΠΈΠ½ ΠΈΠΌΠ΅ΠΉΠ» Π½Π° ΡΠ΅Π΄ΠΌΠΈΡ†Π° Ρ Ρ†ΡΠ»Π°Ρ‚Π° Π½Π°ΠΉ-Π²Π°ΠΆΠ½Π° ΠΈΠ½Ρ„ормация.<br/>Ако "
+"ΠΆΠ΅Π»Π°Π΅Ρ‚Π΅, ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Ρ‚Π°Π·ΠΈ ΠΎΠΏΡ†ΠΈΡ ΡΠ΅Π³Π° ΠΈΠ»ΠΈ ΠΏΠΎ Π²ΡΡΠΊΠΎ Π΅Π΄Π½ΠΎ Π²Ρ€Π΅ΠΌΠ΅ ΠΏΡ€Π΅Π· "
+"настройкитС Π½Π° Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚."
+
+#: forum/skins/default/templates/auth/complete.html:74
+#: forum/skins/zapprotect/templates/auth/complete.html:74
+msgid "please select one of the options above"
+msgstr "ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π΅Π΄Π½Π° ΠΎΡ‚ ΠΏΠΎΡΠΎΡ‡Π΅Π½ΠΈΡ‚Π΅ ΠΎΠΏΡ†ΠΈΠΈ"
+
+#: forum/skins/default/templates/auth/complete.html:77
+#: forum/skins/zapprotect/templates/auth/complete.html:77
+msgid "Tag filter tool will be your right panel, once you log in."
+msgstr "Π˜Π½ΡΡ‚Ρ€ΠΎΠΌΠ΅Π½Ρ‚ Π·Π° Ρ„ΠΈΠ»Ρ‚Ρ€ΠΈΡ€Π°Π½Π΅ Π½Π° Ρ‚Π°Π³ΠΎΠ²Π΅, Π½Π°ΠΌΠΈΡ€Π° ΡΠ΅ ΠΎΡ‚дясно ΡΠ»Π΅Π΄ ΠΎΡ‚оризация."
+
+#: forum/skins/default/templates/auth/complete.html:78
+#: forum/skins/zapprotect/templates/auth/complete.html:78
+msgid "create account"
+msgstr "РСгистрация"
+
+#: forum/skins/default/templates/auth/complete.html:87
+#: forum/skins/zapprotect/templates/auth/complete.html:87
+msgid "Existing account"
+msgstr "Π‘ΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ Π°ΠΊΠ°ΡƒΠ½Ρ‚"
+
+#: forum/skins/default/templates/auth/complete.html:88
+#: forum/skins/zapprotect/templates/auth/complete.html:88
+msgid "user name"
+msgstr "потрСбитСлско ΠΈΠΌΠ΅"
+
+#: forum/skins/default/templates/auth/complete.html:89
+#: forum/skins/zapprotect/templates/auth/complete.html:89
+msgid "password"
+msgstr "ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum/skins/default/templates/auth/complete.html:96
+#: forum/skins/zapprotect/templates/auth/complete.html:96
+msgid "Register"
+msgstr "РСгистрация"
+
+#: forum/skins/default/templates/auth/complete.html:97
+#: forum/skins/zapprotect/templates/auth/complete.html:97
+#: forum_modules/localauth/templates/loginform.html:27
+msgid "Forgot your password?"
+msgstr "Π—Π°Π±Ρ€Π°Π²Π΅Π½Π° ΠΏΠ°Ρ€ΠΎΠ»Π°?"
+
+#: forum/skins/default/templates/auth/mail_validation.html:11
+#: forum/skins/zapprotect/templates/auth/mail_validation.html:11
+#, python-format
+msgid "%(prefix)s Your email validation link %(app_name)s"
+msgstr ""
+
+#: forum/skins/default/templates/auth/mail_validation.html:14
+#: forum/skins/zapprotect/templates/auth/mail_validation.html:14
+#, fuzzy
+msgid "Please use the following link to help us verify your email address:"
+msgstr "Π˜Π·ΠΏΠΎΠ»Π·Π²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΠΏΠΎΡΠΎΡ‡Π΅Π½ΠΈΡ Π»ΠΈΠ½ΠΊ Ρ‰Π΅ ΠΏΠΎΡ‚Π²ΡŠΡ€Π΄ΠΈ Π’Π°ΡˆΠΈΡ ΠΈΠΌΠ΅ΠΉΠ»."
+
+#: forum/skins/default/templates/auth/mail_validation.html:16
+#: forum/skins/default/templates/auth/welcome_email.html:26
+#: forum/skins/zapprotect/templates/auth/mail_validation.html:16
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:26
+#, fuzzy
+msgid "Validate my email address"
+msgstr "Your email <i>(never shared)</i>"
+
+#: forum/skins/default/templates/auth/mail_validation.html:18
+#: forum/skins/default/templates/auth/temp_login_email.html:19
+#: forum/skins/default/templates/auth/welcome_email.html:28
+#: forum/skins/zapprotect/templates/auth/mail_validation.html:18
+#: forum/skins/zapprotect/templates/auth/temp_login_email.html:19
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:28
+msgid ""
+"If the above link is not clickable, copy and paste this url into your web "
+"browser's address bar:"
+msgstr ""
+
+#: forum/skins/default/templates/auth/mail_validation.html:24
+#: forum/skins/default/templates/auth/welcome_email.html:40
+#: forum/skins/zapprotect/templates/auth/mail_validation.html:24
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:40
+msgid ""
+"Copy and paste this url into your web browser's address bar to help us "
+"verify your email address:"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:6
+#: forum/skins/zapprotect/templates/auth/signin.html:6
+#: forum_modules/localauth/templates/loginform.html:24
+#: forum_modules/openidauth/templates/openidurl.html:15
+msgid "Login"
+msgstr "Π’Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/auth/signin.html:24
+#: forum/skins/zapprotect/templates/auth/signin.html:24
+msgid "User login"
+msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΈ Π²Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/auth/signin.html:36
+#: forum/skins/default/templates/auth/signin.html:93
+#: forum/skins/default/templates/auth/signin.html:99
+#: forum/skins/zapprotect/templates/auth/signin.html:36
+#: forum/skins/zapprotect/templates/auth/signin.html:93
+#: forum/skins/zapprotect/templates/auth/signin.html:99
+msgid "Or..."
+msgstr "Или..."
+
+#: forum/skins/default/templates/auth/signin.html:39
+#: forum/skins/zapprotect/templates/auth/signin.html:39
+msgid ""
+"\n"
+"        External login services use <b><a href=\"http://openid.net/"
+"\">OpenID</a></b> technology, where your password always stays confidential "
+"between\n"
+"        you and your login provider and you don't have to remember another "
+"one.\n"
+"    "
+msgstr ""
+"\n"
+"Π’ΡŠΠ½ΡˆΠ½ΠΈΡ‚Π΅ ΡƒΡΠ»ΡƒΠ³ΠΈ Π·Π° ΠΎΡ‚оризация ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚ <b><a href=\"http://openid.net/"
+"\">OpenID</a></b> Ρ‚Схнология, ΠΊΠ°Ρ‚ΠΎ Ρ†ΡΠ»Π°Ρ‚Π° ΠΈΠ½Ρ„ормация ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΊΠ»ΠΈΠ΅Π½Ρ‚Π° ΠΈ ΡΡŠΡ€Π²ΡŠΡ€Π° "
+"остава Π·Π°Ρ‰ΠΈΡ‚Π΅Π½Π°.     "
+
+#: forum/skins/default/templates/auth/signin.html:47
+#: forum/skins/zapprotect/templates/auth/signin.html:47
+msgid "Validate my email after I login."
+msgstr "ΠŸΠΎΡ‚Π²ΡŠΡ€Π΄ΠΈ ΠΌΠΎΡ ΠΈΠΌΠ΅ΠΉΠ» ΡΠ»Π΅Π΄ ΠΊΠ°Ρ‚ΠΎ Π²Π»Π΅Π·Π½Π°."
+
+#: forum/skins/default/templates/auth/signin.html:102
+#: forum/skins/zapprotect/templates/auth/signin.html:102
+msgid "Click"
+msgstr "ΠšΠ»ΠΈΠΊΠ½Π΅Ρ‚Π΅"
+
+#: forum/skins/default/templates/auth/signin.html:102
+#: forum/skins/zapprotect/templates/auth/signin.html:102
+msgid "if you're having troubles signing in."
+msgstr "Π°ΠΊΠΎ ΠΈΠΌΠ°Ρ‚Π΅ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ Ρ Π²Π»ΠΈΠ·Π°Π½Π΅Ρ‚ΠΎ."
+
+#: forum/skins/default/templates/auth/signin.html:107
+#: forum/skins/zapprotect/templates/auth/signin.html:107
+msgid "Enter your "
+msgstr "Π’ΡŠΠ²Π΅Π΄Π΅Ρ‚Π΅ Π’Π°ΡˆΠΈΡ "
+
+#: forum/skins/default/templates/auth/signin.html:163
+#: forum/skins/zapprotect/templates/auth/signin.html:163
+msgid "Why use OpenID?"
+msgstr "Π—Π°Ρ‰ΠΎ Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΌΠ΅ OpenID?"
+
+#: forum/skins/default/templates/auth/signin.html:166
+#: forum/skins/zapprotect/templates/auth/signin.html:166
+msgid "with openid it is easier"
+msgstr "Използвайки OpenID Π½Π΅ Π΅ Π½ΡƒΠΆΠ½ΠΎ Π΄Π° ΡΡŠΠ·Π΄Π°Π²Π°Ρ‚Π΅ Π½ΠΎΠ² ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»."
+
+#: forum/skins/default/templates/auth/signin.html:169
+#: forum/skins/zapprotect/templates/auth/signin.html:169
+msgid "reuse openid"
+msgstr ""
+"ΠœΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΏΠΎΠΊΠΎΠΉΠ½ΠΎ Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚Π΅ ΡΡŠΡ‰ΠΈΡ OpenID ΠΏΡ€ΠΎΡ„ΠΈΠ» Π·Π° ΠΎΡΡ‚Π°Π½Π°Π»ΠΈΡ‚Π΅ ΡΠ°ΠΉΡ‚ΠΎΠ²Π΅, "
+"ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Ρ‰ΠΈ Ρ‚Схнологията."
+
+#: forum/skins/default/templates/auth/signin.html:172
+#: forum/skins/zapprotect/templates/auth/signin.html:172
+msgid "openid is widely adopted"
+msgstr ""
+"Има ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΎΡ‚ 200 000 000 OpenID ΠΏΡ€ΠΎΡ„ΠΈΠ»Π° ΠΈ ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΎΡ‚ 15 000 ΡΠ°ΠΉΡ‚Π° ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Ρ‰ΠΈ "
+"тСхнологията."
+
+#: forum/skins/default/templates/auth/signin.html:175
+#: forum/skins/zapprotect/templates/auth/signin.html:175
+msgid "openid is supported open standard"
+msgstr "OpenID Π΅ Π±Π°Π·ΠΈΡ€Π°Π½ Π½Π° ΠΎΡ‚Π²ΠΎΡ€Π΅Π½ ΡΡ‚Π°Π½Π΄Π°Ρ€Ρ‚, ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Π½ ΠΎΡ‚ ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΠ°Π½ΠΈΠΈ."
+
+#: forum/skins/default/templates/auth/signin.html:180
+#: forum/skins/zapprotect/templates/auth/signin.html:180
+msgid "Find out more"
+msgstr "Π Π°Π·Π±Π΅Ρ€ΠΈ ΠΏΠΎΠ²Π΅Ρ‡Π΅"
+
+#: forum/skins/default/templates/auth/signin.html:181
+#: forum/skins/zapprotect/templates/auth/signin.html:181
+msgid "Get OpenID"
+msgstr "Π’Π·Π΅ΠΌΠΈ OpenID"
+
+#: forum/skins/default/templates/auth/temp_login_email.html:11
+#: forum/skins/zapprotect/templates/auth/temp_login_email.html:11
+#, python-format
+msgid "%(prefix)s Temporary login link"
+msgstr "%(prefix)s Π’Ρ€Π΅ΠΌΠ΅Π½Π΅Π½ Π»ΠΈΠ½ΠΊ Π·Π° Π²Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/auth/temp_login_email.html:15
+#: forum/skins/zapprotect/templates/auth/temp_login_email.html:15
+#, python-format
+msgid ""
+"The following link grants you a one time access to your account at %"
+"(app_name)s."
+msgstr ""
+"БлСдния Π»ΠΈΠ½ΠΊ ΠΏΡ€Π΅Π΄ΠΎΡΡ‚авя Π²ΡŠΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ Π·Π° Π΅Π΄Π½ΠΎΠΊΡ€Π°Ρ‚Π½Π° ΠΎΡ‚оризация Π½Π° %(app_name)s"
+
+#: forum/skins/default/templates/auth/temp_login_email.html:17
+#: forum/skins/zapprotect/templates/auth/temp_login_email.html:17
+#, fuzzy
+msgid "Go to your account"
+msgstr ""
+"<strong>Нов ΠΈΠΌΠ΅ΠΉΠ»:</strong> (няма Π΄Π° Π±ΡŠΠ΄Π΅ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½, Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ "
+"дСйствитСлСн)"
+
+#: forum/skins/default/templates/auth/temp_login_email.html:25
+#: forum/skins/zapprotect/templates/auth/temp_login_email.html:25
+#, python-format
+msgid ""
+"The following url grants you a one time access to your account at %(app_name)"
+"s."
+msgstr ""
+"БлСдния Π°Π΄Ρ€Π΅Ρ ΠΏΡ€Π΅Π΄ΠΎΡΡ‚авя ΠΏΡ€Π°Π²Π° Π·Π° Π΅Π΄Π½ΠΎΠΊΡ€Π°Ρ‚Π½Π° ΠΎΡ‚оризация Π²ΡŠΠ² Π’Π°ΡˆΠΈΡ ΠΏΡ€ΠΎΡ„ΠΈΠ» Π½Π° %"
+"(app_name)s"
+
+#: forum/skins/default/templates/auth/temp_login_request.html:5
+#: forum/skins/zapprotect/templates/auth/temp_login_request.html:5
+msgid "Request temporary login key"
+msgstr "Поискай Π²Ρ€Π΅ΠΌΠ΅Π½Π΅Π½ ΠΊΠ»ΡŽΡ‡ Π·Π° Π΄ΠΎΡΡ‚ΡŠΠΏ"
+
+#: forum/skins/default/templates/auth/temp_login_request.html:7
+#: forum/skins/zapprotect/templates/auth/temp_login_request.html:7
+msgid "Account: request temporary login key"
+msgstr "ΠŸΡ€ΠΎΡ„ΠΈΠ»: ΠΏΠΎΠΈΡΠΊΠ°ΠΉ Π²Ρ€Π΅ΠΌΠ΅Π½Π΅Π½ ΠΊΠ»ΡŽΡ‡ Π·Π° Π΄ΠΎΡΡ‚ΡŠΠΏ"
+
+#: forum/skins/default/templates/auth/temp_login_request.html:8
+#: forum/skins/zapprotect/templates/auth/temp_login_request.html:8
+#, fuzzy
+msgid ""
+"\n"
+"    If you're experiencing problems accessing your account, or if you forgot "
+"your password,\n"
+"    here you can request a temporary login key. Fill out your account email "
+"and we'll send you a temporary access link that\n"
+"    will enable you to access your account. This token is valid only once "
+"and for a limited period of time.\n"
+" "
+msgstr ""
+"Ако ΠΈΠ·ΠΏΠΈΡ‚Π²Π°Ρ‚Π΅ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΈ Ρ Π΄ΠΎΡΡ‚ΡŠΠΏΠ° Π΄ΠΎ Π’Π°ΡˆΠΈΡ Π°ΠΊΠ°ΡƒΠ½Ρ‚ ΠΈΠ»ΠΈ ΡΡ‚Π΅ Π·Π°Π±Ρ€Π°Π²ΠΈΠ»ΠΈ ΠΏΠ°Ρ€ΠΎΠ»Π°Ρ‚Π° "
+"си, Ρ‚ΡƒΠΊ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΠΎΠΈΡΠΊΠ°Ρ‚Π΅ Π²Ρ€Π΅ΠΌΠ΅Π½Π΅Π½ ΠΊΠΎΠ΄ Π·Π° Π΄ΠΎΡΡ‚ΡŠΠΏ. ΠŸΠΎΠΏΡŠΠ»Π½Π΅Ρ‚Π΅ Π’Π°ΡˆΠΈΡ ΠΈΠΌΠ΅ΠΉΠ» "
+"адрСс ΠΈ Π½ΠΈΠ΅ Ρ‰Π΅ ΠΈΠ·ΠΏΡ€Π°Ρ‚ΠΈΠΌ Π²Ρ€Π΅ΠΌΠ΅Π½Π½Π° Π²Ρ€ΡŠΠ·ΠΊΠ°, ΠΏΡ€Π΅Π΄ΠΎΡΡ‚авяща Π΄ΠΎΡΡ‚ΡŠΠΏ Π΄ΠΎ ΠΏΡ€ΠΎΡ„ΠΈΠ»Π°. "
+"Π’ΠΎΠ²Π° Ρ‰Π΅ Π’ΠΈ Π΄Π°Π΄Π΅ ΡˆΠ°Π½Ρ Π΄Π° ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π΄ΠΎΡΡ‚ΡŠΠΏ Π΄ΠΎ ΠΏΡ€ΠΎΡ„ΠΈΠ»Π° ΡΠΈ. Π’ΠΎΠ·ΠΈ ΠΊΠΎΠ΄ Π΅ Π΄ΠΎΡΡ‚ΡŠΠΏΠ΅Π½ "
+"само Π²Π΅Π΄Π½ΡŠΠΆ ΠΈ Π·Π° ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ ΠΈΠ½Ρ‚Π΅Ρ€Π²Π°Π» ΠΎΡ‚ Π²Ρ€Π΅ΠΌΠ΅.\n"
+
+#: forum/skins/default/templates/auth/temp_login_request.html:25
+#: forum/skins/zapprotect/templates/auth/temp_login_request.html:25
+#, fuzzy
+msgid "Send link"
+msgstr "Π˜Π·ΠΏΡ€Π°Ρ‚ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠ°"
+
+#: forum/skins/default/templates/auth/welcome_email.html:12
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:12
+#, fuzzy, python-format
+msgid "%(prefix)s Welcome to %(app_name)s"
+msgstr "%(username)s Π΅ Π½ΠΎΠ² ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π» Π½Π° %(app_name)s"
+
+#: forum/skins/default/templates/auth/welcome_email.html:16
+#: forum/skins/default/templates/auth/welcome_email.html:34
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:16
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:34
+#, python-format
+msgid ""
+"Howdy and welcome to %(app_name)s. We know you're busy, so we'll keep this "
+"real simple."
+msgstr ""
+"Π”ΠΎΠ±Ρ€Π΅ Π΄ΠΎΡˆΠ»ΠΈ Π½Π° %(app_name)s. Π—Π½Π°Π΅ΠΌ, Ρ‡Π΅ ΡΡ‚Π΅ Π·Π°Π΅Ρ‚ΠΈ, Π·Π° Ρ‚ΠΎΠ²Π° ΠΎΠ±Π΅Ρ‰Π°Π²Π°ΠΌΠ΅ Π²ΡΠΈΡ‡ΠΊΠΎ "
+"Π΄Π° Π±ΡŠΠ΄Π΅ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»Π½ΠΎ ΠΏΡ€ΠΎΡΡ‚ΠΎ."
+
+#: forum/skins/default/templates/auth/welcome_email.html:19
+#: forum/skins/default/templates/auth/welcome_email.html:35
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:19
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:35
+msgid "Here's your login info (store it in a cool dry place):"
+msgstr "Π’ΠΎΠ²Π° Π΅ Π’Π°ΡˆΠ°Ρ‚Π° ΠΈΠ½Ρ„ормация Π·Π° Π»ΠΎΠ³ΠΈΠ½ (Π·Π°ΠΏΠ°Π·Π΅Ρ‚Π΅ Ρ Π½Π° ΡΠΈΠ³ΡƒΡ€Π½ΠΎ ΠΌΡΡΡ‚ΠΎ):"
+
+#: forum/skins/default/templates/auth/welcome_email.html:21
+#: forum/skins/default/templates/auth/welcome_email.html:37
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:21
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:37
+#, fuzzy
+msgid "Username: "
+msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΎ ΠΈΠΌΠ΅: "
+
+#: forum/skins/default/templates/auth/welcome_email.html:22
+#: forum/skins/default/templates/auth/welcome_email.html:38
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:22
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:38
+msgid "Password: As IF we would send your password in cleartext!"
+msgstr "ΠŸΠ°Ρ€ΠΎΠ»Π°: "
+
+#: forum/skins/default/templates/auth/welcome_email.html:24
+#: forum/skins/zapprotect/templates/auth/welcome_email.html:24
+#, fuzzy
+msgid "The following link will help us verify your email address:"
+msgstr "Π˜Π·ΠΏΠΎΠ»Π·Π²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΠΏΠΎΡΠΎΡ‡Π΅Π½ΠΈΡ Π»ΠΈΠ½ΠΊ Ρ‰Π΅ ΠΏΠΎΡ‚Π²ΡŠΡ€Π΄ΠΈ Π’Π°ΡˆΠΈΡ ΠΈΠΌΠ΅ΠΉΠ»."
+
+#: forum/skins/default/templates/feeds/rss_answer_title.html:2
+#: forum/skins/zapprotect/templates/feeds/rss_answer_title.html:2
+#, python-format
+msgid "Answer by %(author)s"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€ ΠΎΡ‚ %(author)s"
+
+#: forum/skins/default/templates/node/accept_button.html:5
+#: forum/skins/zapprotect/templates/node/accept_button.html:5
+#, python-format
+msgid "%(who)s has selected this answer as the correct answer"
+msgstr "%(who)s ΠΈΠ·Π±Ρ€Π° Ρ‚ΠΎΠ·ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π·Π° Π²Π΅Ρ€Π΅Π½"
+
+#: forum/skins/default/templates/node/accept_button.html:5
+#: forum/skins/zapprotect/templates/node/accept_button.html:5
+msgid "mark this answer as the accepted answer"
+msgstr "ΠΎΡ‚Π±Π΅Π»Π΅ΠΆΠΈ Ρ‚ΠΎΠ·ΠΈ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ ΠΊΠ°Ρ‚ΠΎ ΠΏΡ€ΠΈΠ΅Ρ‚"
+
+#: forum/skins/default/templates/node/comments.html:13
+#: forum/skins/zapprotect/templates/node/comments.html:13
+msgid "I like this comment (click again to cancel)"
+msgstr "Аз Ρ…арСсвам Ρ‚ΠΎΠ·ΠΈ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€"
+
+#: forum/skins/default/templates/node/comments.html:17
+#: forum/skins/zapprotect/templates/node/comments.html:17
+#, fuzzy
+msgid "Edit comment"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ"
+
+#: forum/skins/default/templates/node/comments.html:21
+#: forum/skins/zapprotect/templates/node/comments.html:21
+#, fuzzy
+msgid "Delete comment"
+msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠΉ"
+
+#: forum/skins/default/templates/node/comments.html:34
+#: forum/skins/zapprotect/templates/node/comments.html:34
+#, python-format
+msgid "showing %(showing)s of %(total)s"
+msgstr "ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΈ %(showing)s ΠΎΡ‚ %(total)s"
+
+#: forum/skins/default/templates/node/comments.html:36
+#: forum/skins/zapprotect/templates/node/comments.html:36
+msgid "show all"
+msgstr "ΠΏΠΎΠΊΠ°ΠΆΠΈ Π²ΡΠΈΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/node/comments.html:39
+#: forum/skins/zapprotect/templates/node/comments.html:39
+#, fuzzy
+msgid "add new comment"
+msgstr "Π΄ΠΎΠ±Π°Π²ΠΈ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€"
+
+#: forum/skins/default/templates/node/comments.html:50
+#: forum/skins/zapprotect/templates/node/comments.html:50
+msgid "characters needed"
+msgstr "Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΈ ΡΠΈΠΌΠ²ΠΎΠ»ΠΈ"
+
+#: forum/skins/default/templates/node/comments.html:51
+#: forum/skins/zapprotect/templates/node/comments.html:51
+msgid "characters left"
+msgstr "оставащи ΡΠΈΠΌΠ²ΠΎΠ»ΠΈ"
+
+#: forum/skins/default/templates/node/comments.html:53
+#: forum/skins/zapprotect/templates/node/comments.html:53
+#, fuzzy
+msgid " comment"
+msgstr " ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€"
+
+#: forum/skins/default/templates/node/comments.html:54
+#: forum/skins/zapprotect/templates/node/comments.html:54
+#, fuzzy
+msgid " cancel"
+msgstr "ΠžΡ‚ΠΊΠ°ΠΆΠΈ"
+
+#: forum/skins/default/templates/node/comments.html:66
+#: forum/skins/zapprotect/templates/node/comments.html:66
+#, fuzzy
+msgid "just now"
+msgstr "Logout Now"
+
+#: forum/skins/default/templates/node/convert_to_comment.html:4
+#: forum/skins/zapprotect/templates/node/convert_to_comment.html:4
+#, fuzzy
+msgid "Place the comment under:"
+msgstr "ΠŸΠΎΡΡ‚Π°Π²ΠΈ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€Π° ΠΏΠΎΠ΄:"
+
+#: forum/skins/default/templates/node/favorite_mark.html:3
+#: forum/skins/zapprotect/templates/node/favorite_mark.html:3
+msgid "mark/unmark this question as favorite (click again to cancel)"
+msgstr "ΠΎΡ‚Π±Π΅Π»Π΅ΠΆΠΈ Π²ΡŠΠΏΡ€ΠΎΡΠ° ΠΊΠ°Ρ‚ΠΎ Π»ΡŽΠ±ΠΈΠΌ"
+
+#: forum/skins/default/templates/node/post_controls.html:14
+#: forum/skins/zapprotect/templates/node/post_controls.html:14
+#, fuzzy
+msgid "more"
+msgstr "ΠΏΠΎΠ²Π΅Ρ‡Π΅"
+
+#: forum/skins/default/templates/node/report.html:3
+#: forum/skins/zapprotect/templates/node/report.html:3
+msgid ""
+"Please select a reason bellow or use the text box to input your own reason."
+msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π½ΡΠΊΠΎΡ ΠΎΡ‚ ΠΏΠΎΡΠΎΡ‡Π΅Π½ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ ΠΈΠ»ΠΈ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΠΏΠΎΠ»Π΅."
+
+#: forum/skins/default/templates/node/vote_buttons.html:3
+#: forum/skins/zapprotect/templates/node/vote_buttons.html:3
+msgid "I like this post (click again to cancel)"
+msgstr "Аз Ρ…арСсвам Ρ‚Π°Π·ΠΈ ΠΏΡƒΠ±Π»ΠΈΠΊΠ°Ρ†ΠΈΡ"
+
+#: forum/skins/default/templates/node/vote_buttons.html:7
+#: forum/skins/zapprotect/templates/node/vote_buttons.html:7
+msgid "current number of votes"
+msgstr "количСство Π³Π»Π°ΡΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/node/vote_buttons.html:10
+#: forum/skins/zapprotect/templates/node/vote_buttons.html:10
+msgid "I dont like this post (click again to cancel)"
+msgstr "Аз Π½Π΅ Ρ…арСсвам Ρ‚Π°Π·ΠΈ ΠΏΡƒΠ±Π»ΠΈΠΊΠ°Ρ†ΠΈΡ"
+
+#: forum/skins/default/templates/node/wiki_symbol.html:5
+#: forum/skins/zapprotect/templates/node/wiki_symbol.html:5
+#, python-format
+msgid "This %(post_type)s is marked \"community wiki\"."
+msgstr "Π’ΠΎΠ·ΠΈ %(post_type)s Π΅ ΠΌΠ°Ρ€ΠΊΠΈΡ€Π°Π½ ΠΊΠ°Ρ‚ΠΎ \"ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚\""
+
+#: forum/skins/default/templates/node/wiki_symbol.html:7
+#: forum/skins/zapprotect/templates/node/wiki_symbol.html:7
+#, python-format
+msgid "Feel free to <a href=\"%(edit_url)s\">edit it</a>."
+msgstr "ЧуствайтС ΡΠ΅ ΡΠ²ΠΎΠ±ΠΎΠ΄Π½ΠΈ Π΄Π° <a href=\"%(edit_url)s\">Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Ρ‚Π΅</a>"
+
+#: forum/skins/default/templates/notifications/answeraccepted.html:15
+#: forum/skins/zapprotect/templates/notifications/answeraccepted.html:15
+#, fuzzy, python-format
+msgid "%(prefix)s An answer to: %(question_title)s has been accepted"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€Π° Π½Π° Π²ΡŠΠΏΡ€ΠΎΡΠ° '%(question_title)s' Π±Π΅ΡˆΠ΅ ΠΏΡ€ΠΈΠ΅Ρ‚"
+
+#: forum/skins/default/templates/notifications/answeraccepted.html:19
+#: forum/skins/zapprotect/templates/notifications/answeraccepted.html:19
+#, python-format
+msgid ""
+"\n"
+"            %(accepted_by_link)s has just accepted %(answer_author_link)s's "
+"answer on his question\n"
+"            %(question_link)s.\n"
+"            "
+msgstr ""
+"\n"
+"            %(accepted_by_link)s Ρ‚ΠΎΠΊΡƒ Ρ‰ΠΎ ΠΏΡ€ΠΈΠ΅ %(answer_author_link)s's "
+"ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π½Π° Π½Π΅Π³ΠΎΠ²ΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ\n"
+"            %(question_link)s.\n"
+"            "
+
+#: forum/skins/default/templates/notifications/answeraccepted.html:27
+#: forum/skins/zapprotect/templates/notifications/answeraccepted.html:27
+#, python-format
+msgid ""
+"\n"
+"%(accepted_by)s has just accepted %(answer_author)s's answer on his "
+"question\n"
+"\"%(question_title)s\".\n"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/base.html:21
+#: forum/skins/default/templates/notifications/base_text.html:4
+#: forum/skins/zapprotect/templates/notifications/base.html:21
+#: forum/skins/zapprotect/templates/notifications/base_text.html:4
+msgid "Hello"
+msgstr "Π—Π΄Ρ€Π°Π²Π΅ΠΉΡ‚Π΅"
+
+#: forum/skins/default/templates/notifications/base.html:24
+#: forum/skins/default/templates/notifications/base_text.html:9
+#: forum/skins/zapprotect/templates/notifications/base.html:24
+#: forum/skins/zapprotect/templates/notifications/base_text.html:9
+msgid "Thanks"
+msgstr "ΠŸΠΎΠ·Π΄Ρ€Π°Π²ΠΈ"
+
+#: forum/skins/default/templates/notifications/base.html:26
+#: forum/skins/zapprotect/templates/notifications/base.html:26
+msgid "P.S. You can always fine-tune which notifications you receive"
+msgstr "P.S. Π’ΠΈΠ½Π°Π³ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΊΠΎΠΈ ΠΈΠ·Π²Π΅ΡΡ‚ия Π΄Π° ΠΏΠΎΠ»ΡƒΡ‡Π°Π²Π°Ρ‚Π΅"
+
+#: forum/skins/default/templates/notifications/base_text.html:13
+#: forum/skins/zapprotect/templates/notifications/base_text.html:13
+msgid "P.S. You can always fine-tune which notifications you receive here:"
+msgstr "P.S. Π’ΠΈΠ½Π°Π³ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΊΠΎΠΈ ΠΈΠ·Π²Π΅ΡΡ‚ия Π΄Π° ΠΏΠΎΠ»ΡƒΡ‡Π°Π²Π°Ρ‚Π΅ Ρ‚ΡƒΠΊ:"
+
+#: forum/skins/default/templates/notifications/digest.html:14
+#: forum/skins/zapprotect/templates/notifications/digest.html:14
+#, fuzzy, python-format
+msgid "%(prefix)s Daily digest"
+msgstr "%(prefix)s Π”Π½Π΅Π²Π΅Π½ Π±ΡŽΠ»Π΅Ρ‚ΠΈΠ½"
+
+#: forum/skins/default/templates/notifications/digest.html:18
+#: forum/skins/zapprotect/templates/notifications/digest.html:18
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            This is a brief of what's going on the %(app_name)s community "
+"since our last update.\n"
+"            "
+msgstr ""
+"\n"
+"(Π΅Π΄ΠΈΠ½ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€)"
+
+#: forum/skins/default/templates/notifications/digest.html:26
+#: forum/skins/zapprotect/templates/notifications/digest.html:26
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            There are %(new_member_count)s new members in the community. %"
+"(new_member_links)s were the most active so far.\n"
+"        "
+msgstr ""
+"Има %(new_member_count)s Π½ΠΎΠ²ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ Π² ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π°. %(new_member_links)s "
+"са Π±ΠΈΠ»ΠΈ Π½Π°ΠΉ-Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈ Π΄ΠΎ ΡΠ΅Π³Π°.\n"
+
+#: forum/skins/default/templates/notifications/digest.html:30
+#: forum/skins/zapprotect/templates/notifications/digest.html:30
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            %(new_member_links)s have joined the %(app_name)s community.\n"
+"        "
+msgstr ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>Ρ‚Π°Π³Π½Π°Ρ‚ΠΈ Π²ΡŠΠΏΡ€ΠΎΡΠ°</p><p><span "
+"class=\"tag\">%(tagname)s</span></p>"
+
+#: forum/skins/default/templates/notifications/digest.html:46
+#: forum/skins/zapprotect/templates/notifications/digest.html:46
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            %(new_question_count)s %(new_questions_link)s were posted since "
+"our last update.\n"
+"            "
+msgstr ""
+"\n"
+"(Π΅Π΄ΠΈΠ½ ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€)"
+
+#: forum/skins/default/templates/notifications/digest.html:53
+#: forum/skins/zapprotect/templates/notifications/digest.html:53
+#, fuzzy
+msgid "We think you might like the following questions:"
+msgstr "Π’ΠΎΠ²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ ΡΡ‚Π°Π½Π°Π»ΠΎ ΠΏΠΎΡ€Π°Π΄ΠΈ ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ:"
+
+#: forum/skins/default/templates/notifications/digest.html:66
+#: forum/skins/zapprotect/templates/notifications/digest.html:66
+msgid ""
+"These new questions didn't get many attention from the community, but we "
+"think you may be able to help:"
+msgstr ""
+"Π’Π΅Π·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡΠΈ Π½Π΅ ΡΠ° ΠΏΡ€Π΅Π΄ΠΈΠ·Π²ΠΈΠΊΠ°Π»ΠΈ ΠΌΠ½ΠΎΠ³ΠΎ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π² ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚Ρ‚Π°, Π½ΠΎ Π½ΠΈΠ΅ ΡΠΌΡΡ‚Π°ΠΌΠ΅, "
+"Ρ‡Π΅ Π’ΠΈΠ΅ Π±ΠΈΡ…Ρ‚Π΅ ΠΌΠΎΠ³Π»ΠΈ Π΄Π° ΠΏΠΎΠΌΠΎΠ³Π½Π΅Ρ‚Π΅:"
+
+#: forum/skins/default/templates/notifications/digest.html:78
+#: forum/skins/zapprotect/templates/notifications/digest.html:78
+#, python-format
+msgid ""
+"Meanwhile, some of your %(subscriptions_link)s have new updates since you "
+"last visited them:"
+msgstr ""
+"ΠœΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ, Π½ΡΠΊΠΎΠΈ ΠΎΡ‚ Π’Π°ΡˆΠΈΡ‚Π΅ %(subscriptions_link)s Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚ΠΈ ΠΈΠΌΠ°Ρ‚ "
+"обновявания ΡΠ»Π΅Π΄ ΠΊΠ°Ρ‚ΠΎ ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΎ ΡΡ‚Π΅ Π³ΠΈ ΠΏΡ€Π΅Π³Π»Π΅Π΄Π°Π»ΠΈ:"
+
+#: forum/skins/default/templates/notifications/feedback.html:12
+#: forum/skins/zapprotect/templates/notifications/feedback.html:12
+#, fuzzy, python-format
+msgid "%(prefix)s Feedback message from %(app_name)s"
+msgstr "%(prefix)s ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ Π·Π° ΠžΠ±Ρ€Π°Ρ‚Π½Π° Π’Ρ€ΡŠΠ·ΠΊΠ° ΠΎΡ‚ %(app_name)s"
+
+#: forum/skins/default/templates/notifications/feedback.html:16
+#: forum/skins/default/templates/notifications/feedback.html:29
+#: forum/skins/zapprotect/templates/notifications/feedback.html:16
+#: forum/skins/zapprotect/templates/notifications/feedback.html:29
+msgid "Sender"
+msgstr "Π˜Π·ΠΏΡ€Π°Ρ‚ΠΈΠ»"
+
+#: forum/skins/default/templates/notifications/feedback.html:16
+#: forum/skins/default/templates/notifications/feedback.html:29
+#: forum/skins/zapprotect/templates/notifications/feedback.html:16
+#: forum/skins/zapprotect/templates/notifications/feedback.html:29
+msgid "anonymous"
+msgstr "Π°Π½ΠΎΠ½ΠΈΠΌΠ΅Π½"
+
+#: forum/skins/default/templates/notifications/feedback.html:17
+#: forum/skins/default/templates/notifications/feedback.html:30
+#: forum/skins/default/templates/users/info.html:80
+#: forum/skins/zapprotect/templates/notifications/feedback.html:17
+#: forum/skins/zapprotect/templates/notifications/feedback.html:30
+#: forum/skins/zapprotect/templates/users/info.html:80
+msgid "email"
+msgstr "ΠΈΠΌΠ΅ΠΉΠ»"
+
+#: forum/skins/default/templates/notifications/feedback.html:23
+#: forum/skins/default/templates/notifications/feedback.html:33
+#: forum/skins/zapprotect/templates/notifications/feedback.html:23
+#: forum/skins/zapprotect/templates/notifications/feedback.html:33
+msgid "Message body:"
+msgstr "Π‘ΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅:"
+
+#: forum/skins/default/templates/notifications/newanswer.html:16
+#: forum/skins/zapprotect/templates/notifications/newanswer.html:16
+#, fuzzy, python-format
+msgid "%(prefix)s New answer to: %(question_title)s"
+msgstr "%(prefix)s ΠΠΎΠ² ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π΄ΠΎ: %(question_title)s"
+
+#: forum/skins/default/templates/notifications/newanswer.html:20
+#: forum/skins/zapprotect/templates/notifications/newanswer.html:20
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            %(author_link)s has just posted a new answer on %(app_name)s to "
+"the question\n"
+"            %(question_link)s:\n"
+"            "
+msgstr ""
+"\n"
+"            %(author_link)s Ρ‚ΠΎΠΊΡƒ Ρ‰ΠΎ ΠΏΡƒΠ±Π»ΠΈΠΊΡƒΠ²Π° Π½ΠΎΠ² ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π² %(app_name)s Π½Π° "
+"Π²ΡŠΠΏΡ€ΠΎΡΠ° \n"
+"            %(question_link)s:\n"
+"            "
+
+#: forum/skins/default/templates/notifications/newanswer.html:30
+#: forum/skins/default/templates/notifications/newanswer.html:40
+#: forum/skins/default/templates/notifications/newcomment.html:32
+#: forum/skins/default/templates/notifications/newcomment.html:43
+#: forum/skins/default/templates/notifications/newquestion.html:33
+#: forum/skins/default/templates/notifications/newquestion.html:43
+#: forum/skins/zapprotect/templates/notifications/newanswer.html:30
+#: forum/skins/zapprotect/templates/notifications/newanswer.html:40
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:32
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:43
+#: forum/skins/zapprotect/templates/notifications/newquestion.html:33
+#: forum/skins/zapprotect/templates/notifications/newquestion.html:43
+msgid "Don't forget to come over and cast your vote."
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newanswer.html:34
+#: forum/skins/zapprotect/templates/notifications/newanswer.html:34
+#, python-format
+msgid ""
+"\n"
+"%(answer_author)s has just posted a new answer on %(safe_app_name)s to the "
+"question\n"
+"\"%(question_title)s\":\n"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:17
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:17
+#, fuzzy, python-format
+msgid "%(prefix)s New comment on: %(question_title)s"
+msgstr "Нов ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° %(question_title)s"
+
+#: forum/skins/default/templates/notifications/newcomment.html:21
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:21
+#, fuzzy, python-format
+msgid "%(author_link)s has just posted a comment on "
+msgstr ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>question tagged</p><p><span "
+"class=\"tag\">%(tagname)s</span></p>"
+
+#: forum/skins/default/templates/notifications/newcomment.html:23
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:23
+#, python-format
+msgid "the answer posted by %(post_author)s to "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:25
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:25
+#, fuzzy, python-format
+msgid "the question %(question_link)s"
+msgstr "Нов ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° %(question_title)s"
+
+#: forum/skins/default/templates/notifications/newcomment.html:36
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:36
+#, fuzzy, python-format
+msgid "%(comment_author)s has just posted a comment on "
+msgstr ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>question tagged</p><p><span "
+"class=\"tag\">%(tagname)s</span></p>"
+
+#: forum/skins/default/templates/notifications/newcomment.html:38
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:38
+#, python-format
+msgid "the answer posted by %(safe_post_author)s to "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:40
+#: forum/skins/zapprotect/templates/notifications/newcomment.html:40
+#, fuzzy, python-format
+msgid "the question \"%(question_title)s\""
+msgstr "Нов ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° %(question_title)s"
+
+#: forum/skins/default/templates/notifications/newmember.html:15
+#: forum/skins/zapprotect/templates/notifications/newmember.html:15
+#, fuzzy, python-format
+msgid "%(prefix)s %(safe_newmember_name)s is a new member on %(safe_app_name)s"
+msgstr "%(username)s Π΅ Π½ΠΎΠ² ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π» Π½Π° %(app_name)s"
+
+#: forum/skins/default/templates/notifications/newmember.html:19
+#: forum/skins/zapprotect/templates/notifications/newmember.html:19
+#, python-format
+msgid ""
+"\n"
+"            %(newmember_link)s has just joined %(app_name)s.\n"
+"            View <a style=\"%(a_style)s\" href=\"%(app_url)s%(newmember_url)s"
+"\">%(newmember_name)s's profile</a>.\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newmember.html:27
+#: forum/skins/zapprotect/templates/notifications/newmember.html:27
+#, python-format
+msgid ""
+"\n"
+"%(safe_newmember_name)s has just joined %(safe_app_name)s. You can visit %"
+"(safe_newmember_name)s's profile using the following url:\n"
+"%(app_url)s%(newmember_url)s\n"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newquestion.html:18
+#: forum/skins/zapprotect/templates/notifications/newquestion.html:18
+#, fuzzy, python-format
+msgid "%(prefix)s New question: %(question_title)s on %(safe_app_name)s"
+msgstr "Нов Π²ΡŠΠΏΡ€ΠΎΡ Π½Π° %(app_name)s"
+
+#: forum/skins/default/templates/notifications/newquestion.html:22
+#: forum/skins/zapprotect/templates/notifications/newquestion.html:22
+#, python-format
+msgid ""
+"\n"
+"            %(author_link)s has just posted a new question on %(app_name)s, "
+"entitled\n"
+"            %(question_link)s\n"
+"             and tagged \"<em>%(tag_links)s</em>\". Here's what it says:\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newquestion.html:37
+#: forum/skins/zapprotect/templates/notifications/newquestion.html:37
+#, python-format
+msgid ""
+"\n"
+"%(question_author)s has just posted a new question on %(safe_app_name)s, "
+"entitled\n"
+"\"%(question_title)s\" and tagged %(question_tags)s:\n"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/base.html:13
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:22
+#: forum/skins/zapprotect/templates/osqaadmin/base.html:13
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:22
+msgid "OSQA administration area"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/base.html:26
+#: forum/skins/zapprotect/templates/osqaadmin/base.html:26
+msgid "Switch to django style interface"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/base.html:27
+#: forum/skins/zapprotect/templates/osqaadmin/base.html:27
+msgid "Administration menu"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/createuser.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/createuser.html:7
+#, fuzzy
+msgid "Create User"
+msgstr "ΠŸΠ°Ρ€ΠΎΠ»Π° <i>(Π½Π°ΠΏΠΈΡˆΠ΅Ρ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ)</i>"
+
+#: forum/skins/default/templates/osqaadmin/createuser.html:10
+#: forum/skins/zapprotect/templates/osqaadmin/createuser.html:10
+#, fuzzy
+msgid "Quick creation of a new user"
+msgstr "answer"
+
+#: forum/skins/default/templates/osqaadmin/createuser.html:17
+#: forum/skins/default/templates/osqaadmin/edit_page.html:25
+#: forum/skins/default/templates/osqaadmin/nodeman.html:397
+#: forum/skins/default/templates/osqaadmin/set.html:16
+#: forum/skins/default/templates/users/preferences.html:25
+#: forum/skins/zapprotect/templates/osqaadmin/createuser.html:17
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:25
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:397
+#: forum/skins/zapprotect/templates/osqaadmin/set.html:16
+#: forum/skins/zapprotect/templates/users/preferences.html:25
+#, fuzzy
+msgid "Save"
+msgstr "Π—Π°ΠΏΠ°Π·ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:7
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:42
+#: forum/skins/default/templates/osqaadmin/index.html:7
+#: forum/skins/default/templates/osqaadmin/statistics.html:25
+#: forum/skins/default/templates/osqaadmin/statistics.html:26
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:42
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/statistics.html:25
+#: forum/skins/zapprotect/templates/osqaadmin/statistics.html:26
+msgid "Dashboard"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:10
+#: forum/skins/default/templates/osqaadmin/index.html:10
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:10
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:10
+msgid "Welcome to the OSQA administration area."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:16
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:16
+msgid "Quick statistics"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:19
+#: forum/skins/default/templates/osqaadmin/dashboard.html:24
+#: forum/skins/default/templates/osqaadmin/index.html:21
+#: forum/skins/default/templates/osqaadmin/index.html:26
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:19
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:24
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:21
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:26
+msgid "in the last 24 hours"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:29
+#: forum/skins/default/templates/osqaadmin/index.html:31
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:29
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:31
+msgid "user"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:29
+#: forum/skins/default/templates/osqaadmin/index.html:31
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:29
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:31
+msgid "joined in the last 24 hours"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:36
+#: forum/skins/default/templates/osqaadmin/index.html:37
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:36
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:37
+msgid "Site status"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:40
+#: forum/skins/default/templates/osqaadmin/index.html:42
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:40
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:42
+msgid ""
+"Your site is running in bootstrap mode, click the button below to revert to "
+"defaults."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:43
+#: forum/skins/default/templates/osqaadmin/index.html:45
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:43
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:45
+msgid ""
+"Your site is running in standard mode, click the button below to run in "
+"bootstrap mode."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:45
+#: forum/skins/default/templates/osqaadmin/index.html:47
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:45
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:47
+msgid ""
+"Your site is running with some customized settings, click the buttons below "
+"to run with defaults or in bootstrap mode"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:49
+#: forum/skins/default/templates/osqaadmin/index.html:51
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:49
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:51
+msgid "Are you sure you want to revert to the defaults?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:49
+#: forum/skins/default/templates/osqaadmin/index.html:51
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:49
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:51
+msgid "revert to defaults"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:52
+#: forum/skins/default/templates/osqaadmin/index.html:54
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:52
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:54
+msgid "Are you sure you want to run bootstrap mode?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:52
+#: forum/skins/default/templates/osqaadmin/index.html:54
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:52
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:54
+msgid "go bootstrap"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/dashboard.html:66
+#: forum/skins/default/templates/osqaadmin/index.html:71
+#: forum/skins/zapprotect/templates/osqaadmin/dashboard.html:66
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:71
+msgid "Recent activity"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:29
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:29
+#, fuzzy
+msgid "Administration Area"
+msgstr "администрация"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:33
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:33
+#, fuzzy
+msgid "Welcome,"
+msgstr "Π”ΠΎΠ±Ρ€Π΅ Π΄ΠΎΡˆΠ»ΠΈ Π² Zapprotect Q&amp;A"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:35
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:35
+msgid "To standard interface"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:36
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:36
+#, fuzzy
+msgid "Back to home page"
+msgstr "ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π½Π° Π½Π°Ρ‡Π°Π»Π½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:37
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:37
+#, fuzzy
+msgid "Log out"
+msgstr "Π˜Π·Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:41
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:41
+#: rosetta/templates/rosetta/languages.html:6
+#: rosetta/templates/rosetta/pofile.html:18
+msgid "Home"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:59
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:59
+msgid "Unpublished changes"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:62
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:62
+msgid "Items marked with this icon have unpublished changes."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:78
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:78
+msgid "Workflow settings"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:88
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:88
+msgid "Forum settings"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:96
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:96
+#, fuzzy
+msgid "Static content"
+msgstr "ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:98
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:98
+#, fuzzy
+msgid "Custom Pages"
+msgstr "Π’Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:104
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:108
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:112
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:122
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:104
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:108
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:112
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:122
+msgid "Unsaved changes"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:117
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:117
+#, fuzzy
+msgid "Other settings"
+msgstr "ΠžΠΏΡ†ΠΈΠΈ Π·Π° ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅"
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:128
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:128
+msgid "Tools"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:130
+#: forum/skins/default/templates/osqaadmin/maintenance.html:5
+#: forum/skins/default/templates/osqaadmin/maintenance.html:6
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:130
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:5
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:6
+msgid "Maintenance mode"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/djstyle_base.html:131
+#: forum/skins/default/templates/osqaadmin/flagged_posts.html:6
+#: forum/skins/default/templates/osqaadmin/flagged_posts.html:7
+#: forum/skins/default/templates/osqaadmin/flagged_posts.html:13
+#: forum/skins/zapprotect/templates/osqaadmin/djstyle_base.html:131
+#: forum/skins/zapprotect/templates/osqaadmin/flagged_posts.html:6
+#: forum/skins/zapprotect/templates/osqaadmin/flagged_posts.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/flagged_posts.html:13
+msgid "Flagged Posts"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:5
+#: forum/skins/default/templates/osqaadmin/edit_page.html:8
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:5
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:8
+#, fuzzy
+msgid "Editing page"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π°"
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:7
+msgid "Static Pages"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:8
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:8
+#, fuzzy
+msgid "Creating page"
+msgstr "Ρ‚Π΅ΠΊΡƒΡ‰Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:11
+#: forum/skins/default/templates/osqaadmin/static_pages.html:12
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:11
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:12
+#, fuzzy
+msgid "New page"
+msgstr "слСдваща ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:12
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:12
+msgid "Published"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:12
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:12
+msgid "Unpublished"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:23
+#: forum/skins/default/templates/osqaadmin/static_pages.html:21
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:23
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:21
+#, fuzzy
+msgid "Edit"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ"
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:28
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:28
+msgid "Unpublish"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/edit_page.html:30
+#: forum/skins/zapprotect/templates/osqaadmin/edit_page.html:30
+msgid "Publish"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/flagged_posts.html:8
+#: forum/skins/zapprotect/templates/osqaadmin/flagged_posts.html:8
+msgid "This are the posts that have been flagged by users."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:17
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:17
+msgid "Site statistics"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:65
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:65
+msgid "Recalculate scores and reputation"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:66
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:66
+msgid "This is a heavy operation, are you sure?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:66
+#: forum/skins/zapprotect/templates/osqaadmin/index.html:66
+msgid "Recalculate"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:7
+msgid ""
+"Maintainance mode allows you to close your site for maintainance, allowing "
+"only a predetermined set of ip addresses to access it normally."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:12
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:12
+msgid "Your site is currently running on maintenance mode."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:13
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:13
+msgid "You can adjust the settings bellow"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:19
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:19
+#, fuzzy
+msgid "Adjust settings"
+msgstr ""
+"<span class='big strong'>Adjust frequency of email updates.</span> Receive "
+"updates on interesting questions by email, <strong><br/>help the community</"
+"strong> by answering questions of your colleagues. If you do not wish to "
+"receive emails - select 'no email' on all items below.<br/>Updates are only "
+"sent when there is any new activity on selected items."
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:20
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:20
+#, fuzzy
+msgid "Open site"
+msgstr "Π£Π΅Π± ΡΠ°ΠΉΡ‚"
+
+#: forum/skins/default/templates/osqaadmin/maintenance.html:22
+#: forum/skins/zapprotect/templates/osqaadmin/maintenance.html:22
+msgid "Close for maintenance"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:5
+#: forum/skins/default/templates/osqaadmin/moderation.html:6
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:5
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:6
+#, fuzzy
+msgid "Moderation"
+msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:7
+msgid ""
+"These tools allow you to search for undesired behaviours and cheating "
+"patterns."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:13
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:13
+msgid "Verify:"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:16
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:16
+msgid "highest ranking users"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:17
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:17
+#, fuzzy
+msgid "newer users"
+msgstr "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:18
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:18
+#, fuzzy
+msgid "older users"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:19
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:19
+msgid "users with these ids"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:23
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:23
+msgid "(Comma separated list of user ids)"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:25
+#: forum/skins/default/templates/osqaadmin/nodeman.html:419
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:25
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:419
+#: rosetta/templates/rosetta/pofile.html:44
+msgid "Go"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:50
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:50
+msgid "Possible cheaters"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:56
+#: forum/skins/default/templates/osqaadmin/moderation.html:69
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:56
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:69
+#, fuzzy
+msgid "Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:58
+#: forum/skins/default/templates/osqaadmin/moderation.html:82
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:58
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:82
+#, fuzzy
+msgid "Validated"
+msgstr "ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:60
+#: forum/skins/default/templates/osqaadmin/moderation.html:84
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:60
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:84
+msgid "Not validated"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:63
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:63
+#, fuzzy
+msgid "Reputation:"
+msgstr "karma"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:70
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:70
+#, fuzzy
+msgid "Reputation"
+msgstr "karma"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:71
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:71
+msgid "Affecting actions"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:72
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:72
+msgid "Cross ips"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:73
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:73
+#, fuzzy
+msgid "Cheating score"
+msgstr "Бмяна Π½Π° ΠΏΠ°Ρ€ΠΎΠ»Π°Ρ‚Π°"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:76
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:76
+#, fuzzy
+msgid "Possible fake accounts"
+msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠΉ ΠΏΡ€ΠΎΡ„ΠΈΠ»Π°"
+
+#: forum/skins/default/templates/osqaadmin/moderation.html:89
+#: forum/skins/default/templates/osqaadmin/moderation.html:90
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:89
+#: forum/skins/zapprotect/templates/osqaadmin/moderation.html:90
+#, fuzzy
+msgid "out of"
+msgstr "ИзлСз ΡΠ΅Π³Π°"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:73
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:73
+msgid "rep"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:102
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:102
+#, fuzzy
+msgid "uses"
+msgstr "ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:261
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:261
+#, fuzzy
+msgid "Node manager"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:264
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:264
+msgid "Nodes bulk management"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:277
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:277
+msgid "reset text filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:289
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:289
+msgid "Body"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:294
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:294
+msgid "Title and Body"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:324
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:324
+#, fuzzy
+msgid "Filter"
+msgstr "срСбро"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:324
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:324
+msgid "Click to show/hide"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:326
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:326
+msgid "By type"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:329
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:329
+msgid "click to clear the type filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:329
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:329
+msgid "all"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:332
+#: forum/skins/default/templates/osqaadmin/nodeman.html:343
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:332
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:343
+msgid "click to remove from the filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:332
+#: forum/skins/default/templates/osqaadmin/nodeman.html:343
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:332
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:343
+msgid "click to add to the filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:337
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:337
+msgid "By state"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:340
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:340
+msgid "click to clear the state filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:340
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:340
+msgid "any"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:349
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:349
+msgid "Match any selected"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:350
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:350
+msgid "Match all selected"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:354
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:354
+msgid "By author(s)"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:356
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:356
+msgid "No users selected, use the box bellow to add users to the filter."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:366
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:366
+msgid "Click on the cross next to a user name to remove it from the filter."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:370
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:370
+#, fuzzy
+msgid "By tag(s)"
+msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:372
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:372
+msgid "No tags selected, use the box bellow to add tags to the filter."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:382
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:382
+msgid "Click on the cross next to a tag name to remove it from the filter."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:386
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:386
+msgid "Pre defined"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:388
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:388
+msgid "There are no saved filters. Click bellow to add."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:396
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:396
+#, fuzzy
+msgid "Filter name..."
+msgstr "потрСбитСлско ΠΈΠΌΠ΅"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:397
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:397
+msgid "Click to save the current filter"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:400
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:400
+msgid "Show"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:403
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:403
+msgid "Refresh"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:410
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:410
+#, fuzzy
+msgid "Action"
+msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:413
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:413
+#, fuzzy
+msgid "Mark deleted"
+msgstr "[ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΎ]"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:414
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:414
+#, fuzzy
+msgid "Undelete"
+msgstr "[ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΎ]"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:415
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:415
+#, fuzzy
+msgid "Delete completely"
+msgstr "post a comment"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:416
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:416
+#, fuzzy
+msgid "Close (questions only)"
+msgstr "<strong>Newest</strong> questions are shown first."
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:419
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:419
+msgid "Run the selected action"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:442
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:442
+msgid "Type"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:443
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:443
+msgid "Summary"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:445
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:445
+#, fuzzy
+msgid "State"
+msgstr "Π·Π°Π³Π»Π°Π²ΠΈΠ΅"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:447
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:447
+msgid "Author"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:450
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:450
+msgid "Added at"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:453
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:453
+msgid "Score"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:456
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:456
+msgid "Last activity by"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:459
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:459
+msgid "Last activity at"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:461
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:461
+#: forum_modules/exporter/exporter.py:326
+#: forum_modules/exporter/importer.py:357
+#, fuzzy
+msgid "Tags"
+msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/osqaadmin/nodeman.html:490
+#: forum/skins/zapprotect/templates/osqaadmin/nodeman.html:490
+msgid "by"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/set.html:18
+#: forum/skins/zapprotect/templates/osqaadmin/set.html:18
+#, fuzzy
+msgid "Preview"
+msgstr "прСглСТдания"
+
+#: forum/skins/default/templates/osqaadmin/set.html:20
+#: forum/skins/zapprotect/templates/osqaadmin/set.html:20
+msgid "Reset Changes"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/static_pages.html:5
+#: forum/skins/default/templates/osqaadmin/static_pages.html:6
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:5
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:6
+msgid "Static pages"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/static_pages.html:7
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:7
+msgid "Allows you to create a set of static pages"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/static_pages.html:10
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:10
+msgid "Select page to edit"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/static_pages.html:16
+#: forum/skins/zapprotect/templates/osqaadmin/static_pages.html:16
+#, fuzzy
+msgid "Pages"
+msgstr "Π’ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/osqaadmin/statistics.html:27
+#: forum/skins/zapprotect/templates/osqaadmin/statistics.html:27
+msgid ""
+"Some simple graphics to help you get a notion of whats going on in your site."
+msgstr ""
+
+#: forum/skins/default/templates/paginator/sort_tabs.html:9
+#: forum/skins/zapprotect/templates/paginator/sort_tabs.html:9
+msgid "Check to make the sort order sticky"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/item.html:11
+#: forum/skins/zapprotect/templates/question_list/item.html:11
+#: forum/views/commands.py:66 forum/views/commands.py:69
+#: forum/views/commands.py:112
+msgid "vote"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/item.html:13
+#: forum/skins/zapprotect/templates/question_list/item.html:13
+msgid "this question has an accepted answer"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/item.html:19
+#: forum/skins/zapprotect/templates/question_list/item.html:19
+#, fuzzy
+msgid "view"
+msgstr "прСглСТдания"
+
+#: forum/skins/default/templates/question_list/related_tags.html:6
+#: forum/skins/zapprotect/templates/question_list/related_tags.html:6
+msgid "Related tags"
+msgstr "Tags"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:4
+msgid "most recently updated questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:4
+#: forum/views/readers.py:44
+msgid "active"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:5
+msgid "most recently asked questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:5
+#: forum/views/readers.py:45 forum/views/readers.py:61
+#: forum/views/readers.py:263 forum/views/users.py:40 forum/views/users.py:53
+msgid "newest"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:6
+msgid "hottest questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:6
+#: forum/views/readers.py:46
+msgid "hottest"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:7
+msgid "most voted questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+#: forum/skins/zapprotect/templates/question_list/sort_tabs.html:7
+#: forum/views/readers.py:47
+msgid "most voted"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/subscription_item.html:4
+#: forum/skins/zapprotect/templates/question_list/subscription_item.html:4
+#, fuzzy
+msgid "Unsubscribe"
+msgstr "ΠΌΠ°Ρ…Π½ΠΈ Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚Π° ΠΌΠΈ"
+
+#: forum/skins/default/templates/question_list/subscription_item.html:8
+#: forum/skins/zapprotect/templates/question_list/subscription_item.html:8
+msgid "Last checked"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:5
+#: forum/skins/zapprotect/templates/question_list/title.html:5
+msgid "Found by tags"
+msgstr "Tagged questions"
+
+#: forum/skins/default/templates/question_list/title.html:9
+#: forum/skins/zapprotect/templates/question_list/title.html:9
+msgid "Search results"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:11
+#: forum/skins/zapprotect/templates/question_list/title.html:11
+msgid "Found by title"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:15
+#: forum/skins/zapprotect/templates/question_list/title.html:15
+msgid "Unanswered questions"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠΈ Π±Π΅Π· ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/skins/default/templates/question_list/title.html:20
+#: forum/skins/zapprotect/templates/question_list/title.html:20
+#: forum/views/readers.py:141
+#, fuzzy
+msgid "All Questions"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:3
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:3
+#, fuzzy
+msgid "Markdown Basics"
+msgstr "Markdown ΡΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:6
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:6
+msgid "*italic* or __italic__"
+msgstr "*ΠΈΡ‚Π°Π»ΠΈΠΊ* ΠΈΠ»ΠΈ __ΠΈΡ‚Π°Π»ΠΈΠΊ__"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:9
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:9
+msgid "**bold** or __bold__"
+msgstr "**Π΄Π΅Π±Π΅Π»** ΠΈΠ»ΠΈ __Π΄Π΅Π±Π΅Π»__"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:12
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:12
+msgid "link"
+msgstr "Π²Ρ€ΡŠΠ·ΠΊΠ°"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:12
+#: forum/skins/default/templates/sidebar/markdown_help.html:17
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:12
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:17
+msgid "text"
+msgstr "тСкст"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:17
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:17
+msgid "image"
+msgstr "снимка"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:21
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:21
+msgid "numbered list:"
+msgstr "ΠΏΠΎΠ΄Ρ€Π΅Π΄Π΅Π½ Π»ΠΈΡΡ‚:"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:26
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:26
+msgid ""
+"to add a line break simply add two spaces to where you would like the new "
+"line to be."
+msgstr ""
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:29
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:29
+msgid "basic HTML tags are also supported"
+msgstr "основни HTML Ρ‚Π°Π³ΠΎΠ²Π΅ ΡΡŠΡ‰ΠΎ ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Ρ‚"
+
+#: forum/skins/default/templates/sidebar/markdown_help.html:33
+#: forum/skins/zapprotect/templates/sidebar/markdown_help.html:33
+msgid "learn more about Markdown"
+msgstr "Π½Π°ΡƒΡ‡Π΅Ρ‚Π΅ ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΎΡ‚носно Markdown"
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:4
+#: forum/skins/zapprotect/templates/sidebar/recent_awards.html:4
+msgid "Recent awards"
+msgstr "ПослСдни Ρ‚ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:15
+#: forum/skins/zapprotect/templates/sidebar/recent_awards.html:15
+msgid "all awards"
+msgstr "всички Ρ‚ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:4
+#: forum/skins/zapprotect/templates/sidebar/recent_tags.html:4
+msgid "Recent tags"
+msgstr "ПослСдни Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:12
+#: forum/skins/zapprotect/templates/sidebar/recent_tags.html:12
+msgid "popular tags"
+msgstr "популярни Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/users/edit.html:6
+#: forum/skins/zapprotect/templates/users/edit.html:6
+msgid "Edit user profile"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°ΠΉ ΠΏΠΎΡ‚рСбитСлския ΠΏΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum/skins/default/templates/users/edit.html:45
+#: forum/skins/zapprotect/templates/users/edit.html:45
+msgid "image associated with your email address"
+msgstr ""
+
+#: forum/skins/default/templates/users/edit.html:45
+#: forum/skins/zapprotect/templates/users/edit.html:45
+#, fuzzy
+msgid "gravatar"
+msgstr "Какво Π΅ Gravatar?"
+
+#: forum/skins/default/templates/users/edit.html:50
+#: forum/skins/default/templates/users/info.html:39
+#: forum/skins/zapprotect/templates/users/edit.html:50
+#: forum/skins/zapprotect/templates/users/info.html:39
+msgid "Registered user"
+msgstr "РСгистриран ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»"
+
+#: forum/skins/default/templates/users/edit.html:57
+#: forum/skins/zapprotect/templates/users/edit.html:57
+msgid "Screen Name"
+msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΎ ΠΈΠΌΠ΅"
+
+#: forum/skins/default/templates/users/edit.html:98
+#: forum/skins/default/templates/users/subscriptions_settings.html:119
+#: forum/skins/zapprotect/templates/users/edit.html:98
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:119
+msgid "Update"
+msgstr "Обнови"
+
+#: forum/skins/default/templates/users/info.html:26
+#: forum/skins/default/templates/users/signature.html:8
+#: forum/skins/zapprotect/templates/users/info.html:26
+#: forum/skins/zapprotect/templates/users/signature.html:8
+#: forum/views/users.py:39
+msgid "reputation"
+msgstr "ΠšΠ°Ρ€ΠΌΠ°"
+
+#: forum/skins/default/templates/users/info.html:28
+#: forum/skins/zapprotect/templates/users/info.html:28
+#, fuzzy
+msgid "Suspended"
+msgstr "ΠŸΡ€Π΅ΠΎΡΡ‚Π°Π½ΠΎΠ²Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/users/info.html:43
+#: forum/skins/zapprotect/templates/users/info.html:43
+msgid "real name"
+msgstr "Π˜ΡΡ‚ΠΈΠ½ΡΠΊΠΎ ΠΈΠΌΠ΅"
+
+#: forum/skins/default/templates/users/info.html:48
+#: forum/skins/zapprotect/templates/users/info.html:48
+msgid "member for"
+msgstr "member since"
+
+#: forum/skins/default/templates/users/info.html:53
+#: forum/skins/zapprotect/templates/users/info.html:53
+msgid "last seen"
+msgstr "послСдно Π²ΠΈΠ΄ΡΠ½"
+
+#: forum/skins/default/templates/users/info.html:59
+#: forum/skins/zapprotect/templates/users/info.html:59
+msgid "user's website"
+msgstr "потрСбитСлски ΡΠ°ΠΉΡ‚"
+
+#: forum/skins/default/templates/users/info.html:65
+#: forum/skins/zapprotect/templates/users/info.html:65
+msgid "location"
+msgstr "мСстополоТСниС"
+
+#: forum/skins/default/templates/users/info.html:73
+#: forum/skins/zapprotect/templates/users/info.html:73
+msgid "age"
+msgstr "Π²ΡŠΠ·Ρ€Π°ΡΡ‚"
+
+#: forum/skins/default/templates/users/info.html:74
+#: forum/skins/zapprotect/templates/users/info.html:74
+msgid "age unit"
+msgstr "years old"
+
+#: forum/skins/default/templates/users/info.html:84
+#: forum/skins/zapprotect/templates/users/info.html:84
+msgid "not validated"
+msgstr "Π½Π΅ Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ"
+
+#: forum/skins/default/templates/users/info.html:95
+#: forum/skins/zapprotect/templates/users/info.html:95
+msgid "todays unused votes"
+msgstr "Π½Π΅ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Π½ΠΈ Π³Π»Π°ΡΠΎΠ²Π΅ Π΄Π½Π΅Ρ"
+
+#: forum/skins/default/templates/users/info.html:96
+#: forum/skins/zapprotect/templates/users/info.html:96
+msgid "votes left"
+msgstr "останали Π³Π»Π°ΡΠΎΠ²Π΅"
+
+#: forum/skins/default/templates/users/karma_bonus.html:5
+#: forum/skins/zapprotect/templates/users/karma_bonus.html:5
+msgid "Points"
+msgstr "Π’ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/users/menu.html:4
+#: forum/skins/zapprotect/templates/users/menu.html:4
+#, fuzzy
+msgid "User tools"
+msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΈ Π²Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/users/online_users.html:6
+#: forum/skins/default/templates/users/online_users.html:23
+#: forum/skins/zapprotect/templates/users/online_users.html:6
+#: forum/skins/zapprotect/templates/users/online_users.html:23
+#, fuzzy
+msgid "Users Online"
+msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΈ Π²Ρ…ΠΎΠ΄"
+
+#: forum/skins/default/templates/users/online_users.html:29
+#: forum/skins/default/templates/users/users.html:29
+#: forum/skins/zapprotect/templates/users/online_users.html:29
+#: forum/skins/zapprotect/templates/users/users.html:29
+#, python-format
+msgid "users matching query %(suser)s:"
+msgstr ""
+
+#: forum/skins/default/templates/users/online_users.html:33
+#: forum/skins/default/templates/users/users.html:33
+#: forum/skins/zapprotect/templates/users/online_users.html:33
+#: forum/skins/zapprotect/templates/users/users.html:33
+msgid "Nothing found."
+msgstr ""
+
+#: forum/skins/default/templates/users/preferences.html:6
+#: forum/skins/zapprotect/templates/users/preferences.html:6
+msgid "Preferences"
+msgstr ""
+
+#: forum/skins/default/templates/users/preferences.html:10
+#: forum/skins/zapprotect/templates/users/preferences.html:10
+msgid "Here you can set some personal preferences."
+msgstr ""
+
+#: forum/skins/default/templates/users/preferences.html:16
+#: forum/skins/zapprotect/templates/users/preferences.html:16
+msgid "Navigation:"
+msgstr ""
+
+#: forum/skins/default/templates/users/preferences.html:21
+#: forum/skins/zapprotect/templates/users/preferences.html:21
+msgid "Allways remember the sort order I apply to the lists I view"
+msgstr ""
+
+#: forum/skins/default/templates/users/signature.html:11
+#: forum/skins/default/templates/users/signature.html:17
+#: forum/skins/default/templates/users/signature.html:23
+#: forum/skins/zapprotect/templates/users/signature.html:11
+#: forum/skins/zapprotect/templates/users/signature.html:17
+#: forum/skins/zapprotect/templates/users/signature.html:23
+#: forum/templatetags/extra_tags.py:76 forum/views/meta.py:81
+msgid "badges"
+msgstr "Ρ‚ΠΎΡ‡ΠΊΠΈ"
+
+#: forum/skins/default/templates/users/signature.html:31
+#: forum/skins/zapprotect/templates/users/signature.html:31
+#: forum/templatetags/extra_tags.py:49
+msgid "(suspended)"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:13
+#: forum/skins/zapprotect/templates/users/stats.html:13
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Question\n"
+"                "
+msgid_plural ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Questions\n"
+"                "
+msgstr[0] ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>question without an "
+"accepted answer</p>"
+msgstr[1] ""
+"\n"
+"<div class=\"questions-count\">%(q_num)s</div><p>questions without an "
+"accepted answer</p>"
+
+#: forum/skins/default/templates/users/stats.html:35
+#: forum/skins/zapprotect/templates/users/stats.html:35
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Answer\n"
+"                "
+msgid_plural ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Answers\n"
+"                "
+msgstr[0] ""
+"\n"
+"(one comment)"
+msgstr[1] ""
+"\n"
+"(one comment)"
+
+#: forum/skins/default/templates/users/stats.html:49
+#: forum/skins/zapprotect/templates/users/stats.html:49
+#, python-format
+msgid "the answer has been voted for %(vote_count)s times"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:49
+#: forum/skins/zapprotect/templates/users/stats.html:49
+msgid "this answer has been selected as correct"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:67
+#: forum/skins/zapprotect/templates/users/stats.html:67
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">%(cnt)s</span> Vote\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(cnt)s</span> Votes\n"
+"                "
+msgstr[0] ""
+"\n"
+"(one comment)"
+msgstr[1] ""
+"\n"
+"(one comment)"
+
+#: forum/skins/default/templates/users/stats.html:78
+#: forum/skins/zapprotect/templates/users/stats.html:78
+msgid "thumb up"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:79
+#: forum/skins/zapprotect/templates/users/stats.html:79
+msgid "user has voted up this many times"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:83
+#: forum/skins/zapprotect/templates/users/stats.html:83
+msgid "thumb down"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:84
+#: forum/skins/zapprotect/templates/users/stats.html:84
+msgid "user voted down this many times"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:93
+#: forum/skins/zapprotect/templates/users/stats.html:93
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">%(counter)s</span> Tag\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(counter)s</span> Tags\n"
+"                "
+msgstr[0] ""
+"\n"
+"(one comment)"
+msgstr[1] ""
+"\n"
+"(one comment)"
+
+#: forum/skins/default/templates/users/stats.html:106
+#: forum/skins/zapprotect/templates/users/stats.html:106
+#, python-format
+msgid ""
+"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:121
+#: forum/skins/zapprotect/templates/users/stats.html:121
+#, python-format
+msgid ""
+"\n"
+"            <span class=\"count\">%(counter)s</span> Badge\n"
+"            "
+msgid_plural ""
+"\n"
+"            <span class=\"count\">%(counter)s</span> Badges\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/subscriptions_management.html:6
+#: forum/skins/zapprotect/templates/users/subscriptions_management.html:6
+msgid "Manage your current subscriptions"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_management.html:9
+#: forum/skins/zapprotect/templates/users/subscriptions_management.html:9
+msgid "don't show auto-subscribe"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_management.html:11
+#: forum/skins/zapprotect/templates/users/subscriptions_management.html:11
+#, fuzzy
+msgid "show auto-subscribe"
+msgstr "ΠΌΠ°Ρ…Π½ΠΈ Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚Π° ΠΌΠΈ"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:5
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:5
+#, fuzzy
+msgid "Notifications and subscription settings"
+msgstr ""
+"<span class='big strong'>Adjust frequency of email updates.</span> Receive "
+"updates on interesting questions by email, <strong><br/>help the community</"
+"strong> by answering questions of your colleagues. If you do not wish to "
+"receive emails - select 'no email' on all items below.<br/>Updates are only "
+"sent when there is any new activity on selected items."
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:7
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:7
+msgid ""
+"\n"
+"    Here you can decide which types of notifications you wish to receive, "
+"and their frequency.<br />\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:11
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:11
+msgid ""
+"\n"
+"    Currently you have notifications enabled. You can always stop all "
+"notifications without losing your settings and restart them afterwards.<br /"
+">\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:15
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:15
+msgid ""
+"\n"
+"    Currently you have notifications disabled. You can enable them by "
+"clicking on the <strong>Start notifications</strong> button below.<br />\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:26
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:26
+msgid "Notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:30
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:30
+msgid "A new member joins"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:34
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:34
+#, fuzzy
+msgid "A new question is posted"
+msgstr "Tips"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:38
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:38
+msgid "A new question matching my interesting tags is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:42
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:42
+msgid "There's an update on one of my subscriptions"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:50
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:50
+msgid "Auto subscribe me to:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:55
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:55
+#, fuzzy
+msgid "Questions I ask"
+msgstr "Tags"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:58
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:58
+#, fuzzy
+msgid "Questions I answer"
+msgstr "answer"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:61
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:61
+#, fuzzy
+msgid "Questions I comment"
+msgstr "question comment"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:66
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:66
+#, fuzzy
+msgid "Questions I view"
+msgstr "Tags"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:69
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:69
+msgid "All questions matching my interesting tags"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:72
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:72
+msgid "All questions"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:80
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:80
+msgid "On my subscriptions, notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:85
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:85
+#, fuzzy
+msgid "An answer is posted"
+msgstr "Tips"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:88
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:88
+msgid "A comment on one of my posts is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:93
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:93
+msgid "A comment is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:96
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:96
+#, fuzzy
+msgid "An answer is accepted"
+msgstr "answer accepted"
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:104
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:104
+msgid "More:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:109
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:109
+msgid ""
+"Notify me when someone replies to one of my comments on any post using the "
+"<pre>@username</pre> notation"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:114
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:114
+msgid "Send me the daily digest with information about the site activity"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:121
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:121
+msgid "Stop notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions_settings.html:123
+#: forum/skins/zapprotect/templates/users/subscriptions_settings.html:123
+msgid "Start notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:4
+#: forum/skins/zapprotect/templates/users/suspend_user.html:4
+msgid "Suspend user"
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:8
+#: forum/skins/zapprotect/templates/users/suspend_user.html:8
+#, fuzzy
+msgid "Indefinetly"
+msgstr "ΠœΠΎΠΌΠ΅Π½Ρ‚Π°Π»Π½ΠΎ"
+
+#: forum/skins/default/templates/users/suspend_user.html:9
+#: forum/skins/zapprotect/templates/users/suspend_user.html:9
+msgid "For X days"
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:15
+#: forum/skins/zapprotect/templates/users/suspend_user.html:15
+msgid "Suspend for"
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:15
+#: forum/skins/zapprotect/templates/users/suspend_user.html:15
+msgid "days"
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:20
+#: forum/skins/zapprotect/templates/users/suspend_user.html:20
+#, fuzzy
+msgid "Public message"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: forum/skins/default/templates/users/suspend_user.html:26
+#: forum/skins/zapprotect/templates/users/suspend_user.html:26
+msgid "This message will be visible through the user activity log."
+msgstr ""
+
+#: forum/skins/default/templates/users/suspend_user.html:31
+#: forum/skins/zapprotect/templates/users/suspend_user.html:31
+#, fuzzy
+msgid "Private message"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: forum/skins/default/templates/users/suspend_user.html:37
+#: forum/skins/zapprotect/templates/users/suspend_user.html:37
+msgid "If set, only the suspended user will see this message."
+msgstr ""
+
+#: forum/skins/default/templates/users/users.html:6
+#: forum/skins/default/templates/users/users.html:23
+#: forum/skins/zapprotect/templates/users/users.html:6
+#: forum/skins/zapprotect/templates/users/users.html:23
+#: forum_modules/exporter/exporter.py:334
+#: forum_modules/exporter/importer.py:300
+msgid "Users"
+msgstr ""
+
+#: forum/skins/default/templates/users/votes.html:15
+#: forum/skins/zapprotect/templates/users/votes.html:15
+#: forum/views/commands.py:72
+msgid "upvote"
+msgstr "плюс"
+
+#: forum/skins/default/templates/users/votes.html:17
+#: forum/skins/zapprotect/templates/users/votes.html:17
+#: forum/views/commands.py:72
+msgid "downvote"
+msgstr "минус"
+
+#: forum/templatetags/extra_tags.py:77
+msgid "reputation points"
+msgstr "karma"
+
+#: forum/templatetags/extra_tags.py:107
+msgid "2 days ago"
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:109
+msgid "yesterday"
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:111
+#, python-format
+msgid "%(hr)d hour ago"
+msgid_plural "%(hr)d hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/extra_tags.py:113
+#, python-format
+msgid "%(min)d min ago"
+msgid_plural "%(min)d mins ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/extra_tags.py:115
+#, python-format
+msgid "%(sec)d sec ago"
+msgid_plural "%(sec)d secs ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/node_tags.py:90
+msgid "permanent link"
+msgstr "link"
+
+#: forum/templatetags/node_tags.py:90
+msgid "answer permanent link"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:96
+msgid "retag"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:100
+msgid "reopen"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:102
+msgid "close"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:105
+msgid "report"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:111
+msgid ""
+"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:115
+#, fuzzy
+msgid "undelete"
+msgstr "[ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΎ]"
+
+#: forum/templatetags/node_tags.py:122
+#, fuzzy
+msgid "see revisions"
+msgstr "ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Ρ€Π΅Π²ΠΈΠ·ΠΈΡ"
+
+#: forum/templatetags/node_tags.py:129
+#, fuzzy
+msgid "mark as community wiki"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/templatetags/node_tags.py:133
+#, fuzzy
+msgid "cancel community wiki"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/templatetags/node_tags.py:137
+#, fuzzy
+msgid "convert to comment"
+msgstr "post a comment"
+
+#: forum/templatetags/node_tags.py:204
+msgid "posted"
+msgstr "Π΄ΠΎΠ±Π°Π²Π΅Π½ΠΎ"
+
+#: forum/views/admin.py:116
+#, fuzzy
+msgid "Questions Graph"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/admin.py:120
+msgid "Users Graph"
+msgstr ""
+
+#: forum/views/admin.py:159
+#, python-format
+msgid "'%s' settings saved succesfully"
+msgstr ""
+
+#: forum/views/admin.py:266
+msgid "Bootstrap mode enabled"
+msgstr ""
+
+#: forum/views/admin.py:280
+msgid "All values reverted to defaults"
+msgstr ""
+
+#: forum/views/admin.py:296
+msgid "All values recalculated"
+msgstr ""
+
+#: forum/views/admin.py:311
+msgid "Maintenance mode enabled"
+msgstr ""
+
+#: forum/views/admin.py:313
+msgid "Settings adjusted"
+msgstr ""
+
+#: forum/views/admin.py:320
+msgid "Your site is now running normally"
+msgstr ""
+
+#: forum/views/admin.py:324
+msgid "Currently down for maintenance. We'll be back soon"
+msgstr ""
+
+#: forum/views/admin.py:384
+msgid "createuser"
+msgstr ""
+
+#: forum/views/admin.py:384
+#, fuzzy
+msgid "Create new user"
+msgstr "ΠŸΠ°Ρ€ΠΎΠ»Π° <i>(Π½Π°ΠΏΠΈΡˆΠ΅Ρ‚Π΅ ΠΎΡ‚Π½ΠΎΠ²ΠΎ)</i>"
+
+#: forum/views/admin.py:399
+#, python-format
+msgid "New user created sucessfully. %s."
+msgstr ""
+
+#: forum/views/admin.py:400
+#, fuzzy, python-format
+msgid "See %s profile"
+msgstr "Π·Π°Π²ΡŠΡ€ΡˆΠ΅Π½ ΠΏΠΎΡ‚рСбитСлски ΠΏΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum/views/admin.py:413
+msgid "added_at"
+msgstr ""
+
+#: forum/views/admin.py:414
+msgid "added_at_asc"
+msgstr ""
+
+#: forum/views/admin.py:415
+msgid "author"
+msgstr ""
+
+#: forum/views/admin.py:416
+msgid "author_asc"
+msgstr ""
+
+#: forum/views/admin.py:417
+msgid "score"
+msgstr ""
+
+#: forum/views/admin.py:418
+msgid "score_asc"
+msgstr ""
+
+#: forum/views/admin.py:419
+msgid "act_at"
+msgstr ""
+
+#: forum/views/admin.py:420
+msgid "act_at_asc"
+msgstr ""
+
+#: forum/views/admin.py:421
+msgid "act_by"
+msgstr ""
+
+#: forum/views/admin.py:422
+msgid "act_by_asc"
+msgstr ""
+
+#: forum/views/admin.py:425
+msgid "nodeman"
+msgstr ""
+
+#: forum/views/admin.py:425
+msgid "Bulk management"
+msgstr ""
+
+#: forum/views/admin.py:431
+#, fuzzy
+msgid "filter"
+msgstr "срСбро"
+
+#: forum/views/admin.py:444
+msgid "No action performed"
+msgstr ""
+
+#: forum/views/admin.py:451
+msgid "All selected nodes marked as deleted"
+msgstr ""
+
+#: forum/views/admin.py:458
+msgid "All selected nodes undeleted"
+msgstr ""
+
+#: forum/views/admin.py:463
+msgid "bulk close"
+msgstr ""
+
+#: forum/views/admin.py:465
+#, fuzzy
+msgid "Selected questions were closed"
+msgstr "ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/views/admin.py:477
+msgid "All selected nodes deleted"
+msgstr ""
+
+#: forum/views/auth.py:111 forum/views/auth.py:123
+msgid ""
+"Sorry, these login credentials belong to anoother user. Plese terminate your "
+"current session and try again."
+msgstr ""
+
+#: forum/views/auth.py:114
+msgid "You are already logged in with that user."
+msgstr ""
+
+#: forum/views/auth.py:120
+msgid "These login credentials are already associated with your account."
+msgstr ""
+
+#: forum/views/auth.py:129
+msgid "The new credentials are now associated with your account"
+msgstr ""
+
+#: forum/views/auth.py:170
+msgid ""
+"Oops, something went wrong in the middle of this process. Please try again. "
+"Note that you need to have cookies enabled for the authentication to work."
+msgstr ""
+
+#: forum/views/auth.py:186 forum_modules/localauth/views.py:35
+msgid "A welcome email has been sent to your email address. "
+msgstr ""
+
+#: forum/views/auth.py:191
+msgid ""
+"Oops, something went wrong in the middle of this process. Please try again."
+msgstr ""
+
+#: forum/views/auth.py:247
+msgid "An email has been sent with your temporary login key"
+msgstr ""
+
+#: forum/views/auth.py:263
+msgid ""
+"You are logged in with a temporary access key, please take the time to fix "
+"your issue with authentication."
+msgstr ""
+
+#: forum/views/auth.py:279
+msgid "A message with an email validation link was just sent to your address."
+msgstr ""
+
+#: forum/views/auth.py:290
+msgid "Thank you, your email is now validated."
+msgstr ""
+
+#: forum/views/auth.py:315
+#, fuzzy
+msgid "New password set"
+msgstr "Recover password"
+
+#: forum/views/auth.py:319
+msgid "Your password was changed"
+msgstr ""
+
+#: forum/views/auth.py:355
+#, python-format
+msgid "You removed the association with %s"
+msgstr ""
+
+#: forum/views/auth.py:367
+#, python-format
+msgid "Welcome back %s, you are now logged in"
+msgstr ""
+
+#: forum/views/auth.py:381
+#, python-format
+msgid "You have a %s pending submission."
+msgstr ""
+
+#: forum/views/auth.py:382
+#, fuzzy
+msgid "save it"
+msgstr "Π—Π°ΠΏΠ°Π·ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅"
+
+#: forum/views/auth.py:383 forum/views/writers.py:264
+#, fuzzy
+msgid "review"
+msgstr "прСглСТдания"
+
+#: forum/views/auth.py:384 forum/views/writers.py:261
+#, fuzzy
+msgid "cancel"
+msgstr "ΠžΡ‚ΠΊΠ°ΠΆΠΈ"
+
+#: forum/views/auth.py:392
+msgid "Sorry, but this account is suspended"
+msgstr ""
+
+#: forum/views/commands.py:23
+#, python-format
+msgid ""
+"Sorry, but you don't have enough reputation points to %(action)s.<br /"
+">Please check the <a href='%(faq_url)s'>faq</a>"
+msgstr ""
+
+#: forum/views/commands.py:31
+#, python-format
+msgid ""
+"Sorry but you cannot %(action)s your own post.<br />Please check the <a "
+"href='%(faq_url)s'>faq</a>"
+msgstr ""
+
+#: forum/views/commands.py:39
+#, python-format
+msgid ""
+"Sorry but anonymous users cannot %(action)s.<br />Please login or create an "
+"account <a href='%(signin_url)s'>here</a>."
+msgstr ""
+
+#: forum/views/commands.py:47
+#, python-format
+msgid ""
+"Sorry, but you don't have enough %(action)s left for today..<br />The limit "
+"is %(limit)s per day..<br />Please check the <a href='%(faq_url)s'>faq</a>"
+msgstr ""
+
+#: forum/views/commands.py:55
+#, python-format
+msgid ""
+"Sorry, but you cannot %(action)s twice the same post.<br />Please check the "
+"<a href='%(faq_url)s'>faq</a>"
+msgstr ""
+
+#: forum/views/commands.py:87
+#, python-format
+msgid ""
+"Sorry but you cannot cancel a vote after %(ndays)d %(tdays)s from the "
+"original vote"
+msgstr ""
+
+#: forum/views/commands.py:89
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/views/commands.py:111
+#, python-format
+msgid "You have %(nvotes)s %(tvotes)s left today."
+msgstr ""
+
+#: forum/views/commands.py:125 forum/views/commands.py:131
+msgid "flag posts"
+msgstr ""
+
+#: forum/views/commands.py:128
+msgid "flag"
+msgstr ""
+
+#: forum/views/commands.py:136
+msgid "flags"
+msgstr ""
+
+#: forum/views/commands.py:141
+#, python-format
+msgid "You already flagged this post with the following reason: %(reason)s"
+msgstr ""
+
+#: forum/views/commands.py:146 forum/views/commands.py:374
+#, fuzzy
+msgid "Reason is empty"
+msgstr "Π˜ΡΡ‚ΠΎΡ€ΠΈΡ Π½Π° Ρ€Π΅Π²ΠΈΠ·ΠΈΠΈΡ‚Π΅"
+
+#: forum/views/commands.py:150
+msgid ""
+"Thank you for your report. A moderator will review your submission shortly."
+msgstr ""
+
+#: forum/views/commands.py:158 forum/views/commands.py:164
+#, fuzzy
+msgid "like comments"
+msgstr "post a comment"
+
+#: forum/views/commands.py:161
+msgid "like"
+msgstr ""
+
+#: forum/views/commands.py:188 forum/views/commands.py:191
+#, fuzzy
+msgid "delete comments"
+msgstr "post a comment"
+
+#: forum/views/commands.py:207
+msgid "mark a question as favorite"
+msgstr ""
+
+#: forum/views/commands.py:233 forum/views/commands.py:491
+#: forum/views/commands.py:502
+msgid "Invalid request"
+msgstr ""
+
+#: forum/views/commands.py:238
+msgid "Comment is empty"
+msgstr ""
+
+#: forum/views/commands.py:241
+#, python-format
+msgid "At least %d characters required on comment body."
+msgstr ""
+
+#: forum/views/commands.py:244
+#, python-format
+msgid "No more than %d characters on comment body."
+msgstr ""
+
+#: forum/views/commands.py:250
+#, fuzzy
+msgid "edit comments"
+msgstr "post a comment"
+
+#: forum/views/commands.py:283 forum/views/commands.py:297
+#, fuzzy
+msgid "accept answers"
+msgstr "oldest"
+
+#: forum/views/commands.py:303
+msgid "Sorry but you cannot accept the answer"
+msgstr ""
+
+#: forum/views/commands.py:312
+#, fuzzy
+msgid "This question already has an accepted answer."
+msgid_plural ""
+"Sorry but this question has reached the limit of accepted answers."
+msgstr[0] "Π²ΡŠΠΏΡ€ΠΎΡΠ° Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½, ΠΏΡ€ΠΈΠ΅Ρ‚ Π΅ Π²Π΅Ρ€Π΅Π½ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+msgstr[1] "Π²ΡŠΠΏΡ€ΠΎΡΠ° Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½, ΠΏΡ€ΠΈΠ΅Ρ‚ Π΅ Π²Π΅Ρ€Π΅Π½ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/views/commands.py:319
+msgid ""
+"The author of this answer already has an accepted answer in this question."
+msgid_plural ""
+"Sorry but the author of this answer has reached the limit of accepted "
+"answers per question."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/views/commands.py:334 forum/views/commands.py:337
+msgid "delete posts"
+msgstr ""
+
+#: forum/views/commands.py:360 forum/views/commands.py:369
+#, fuzzy
+msgid "close questions"
+msgstr "послСдни Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/commands.py:364
+#, fuzzy
+msgid "reopen questions"
+msgstr "ΠžΡ‚Π²ΠΎΡ€ΠΈ ΠΎΡ‚Π½ΠΎΠ²ΠΎ Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum/views/commands.py:386 forum/views/commands.py:398
+#, fuzzy
+msgid "mark posts as community wiki"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/views/commands.py:390
+#, fuzzy
+msgid "cancel a community wiki post"
+msgstr "ΡƒΠΈΠΊΠΈ ΠΎΠ±Ρ‰Π½ΠΎΡΡ‚"
+
+#: forum/views/commands.py:411
+#, python-format
+msgid "Answer by %(uname)s: %(snippet)s..."
+msgstr ""
+
+#: forum/views/commands.py:413
+#, fuzzy
+msgid "Question"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/commands.py:420 forum/views/commands.py:423
+#, fuzzy
+msgid "convert answers to comments"
+msgstr "ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€ Π½Π° ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π°"
+
+#: forum/views/commands.py:428 forum/views/commands.py:431
+msgid "That is an invalid post to put the comment under"
+msgstr ""
+
+#: forum/views/commands.py:446
+msgid "You do not have the correct credentials to preform this action."
+msgstr ""
+
+#: forum/views/decorators.py:73
+msgid ""
+"We're sorry, but an unknown error ocurred.<br />Please try again in a while."
+msgstr ""
+
+#: forum/views/meta.py:62
+msgid "Thanks for the feedback!"
+msgstr ""
+
+#: forum/views/meta.py:70
+msgid "We look forward to hearing your feedback! Please, give it next time :)"
+msgstr ""
+
+#: forum/views/readers.py:44
+#, fuzzy
+msgid "Most <strong>recently updated</strong> questions"
+msgstr " "
+
+#: forum/views/readers.py:45
+#, fuzzy
+msgid "most <strong>recently asked</strong> questions"
+msgstr "Π²ΠΈΠΆΡ‚Π΅ Ρ‡Π΅ΡΡ‚ΠΎ Π·Π°Π΄Π°Π²Π°Π½ΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/readers.py:46
+#, fuzzy
+msgid "most <strong>active</strong> questions in the last 24 hours</strong>"
+msgstr " "
+
+#: forum/views/readers.py:47
+#, fuzzy
+msgid "mostvoted"
+msgstr "ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½"
+
+#: forum/views/readers.py:47
+#, fuzzy
+msgid "most <strong>voted</strong> questions"
+msgstr " "
+
+#: forum/views/readers.py:60 forum/views/readers.py:261
+#: forum/views/users.py:41 forum/views/users.py:52
+msgid "oldest"
+msgstr ""
+
+#: forum/views/readers.py:60 forum/views/users.py:52
+msgid "oldest answers"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/views/readers.py:60 forum/views/users.py:52
+msgid "oldest answers will be shown first"
+msgstr "Π½Π°ΠΉ-старитС ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΈ ΠΏΡŠΡ€Π²ΠΈ"
+
+#: forum/views/readers.py:61 forum/views/users.py:53
+msgid "newest answers"
+msgstr "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅"
+
+#: forum/views/readers.py:61 forum/views/users.py:53
+msgid "newest answers will be shown first"
+msgstr "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΈ ΠΏΡŠΡ€Π²ΠΈ"
+
+#: forum/views/readers.py:62 forum/views/users.py:54
+msgid "popular answers"
+msgstr "с Π½Π°ΠΉ-ΠΌΠ½ΠΎΠ³ΠΎ Π³Π»Π°ΡΠΎΠ²Π΅"
+
+#: forum/views/readers.py:62 forum/views/users.py:54
+msgid "most voted answers will be shown first"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚Π΅ Ρ Π½Π°ΠΉ-ΠΌΠ½ΠΎΠ³ΠΎ Π³Π»Π°ΡΠΎΠ²Π΅ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΈ ΠΏΡŠΡ€Π²ΠΈ"
+
+#: forum/views/readers.py:68 forum/views/users.py:42
+#, fuzzy
+msgid "name"
+msgstr "ΠΏΠΎ ΠΈΠΌΠ΅"
+
+#: forum/views/readers.py:68
+msgid "by name"
+msgstr "ΠΏΠΎ ΠΈΠΌΠ΅"
+
+#: forum/views/readers.py:68
+msgid "sorted alphabetically"
+msgstr "сортирай ΠΏΠΎ Π°Π·Π±ΡƒΡ‡Π΅Π½ Ρ€Π΅Π΄"
+
+#: forum/views/readers.py:69 forum/views/readers.py:70
+#, fuzzy
+msgid "used"
+msgstr "Π·Π°Π΄Π°Π΄Π΅Π½ΠΎ"
+
+#: forum/views/readers.py:69
+msgid "by popularity"
+msgstr "ΠΏΠΎ ΠΏΠΎΠΏΡƒΠ»ΡΡ€Π½ΠΎΡΡ‚"
+
+#: forum/views/readers.py:69
+msgid "sorted by frequency of tag use"
+msgstr ""
+
+#: forum/views/readers.py:77
+msgid " - "
+msgstr ""
+
+#: forum/views/readers.py:77
+msgid "latest questions"
+msgstr "послСдни Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/readers.py:90
+#, fuzzy
+msgid "unanswered"
+msgstr "Π½Π΅ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½ΠΈ"
+
+#: forum/views/readers.py:94
+#, fuzzy
+msgid "open questions without an accepted answer"
+msgstr "Π²ΡŠΠΏΡ€ΠΎΡΠ° Π΅ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€Π΅Π½, ΠΏΡ€ΠΈΠ΅Ρ‚ Π΅ Π²Π΅Ρ€Π΅Π½ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum/views/readers.py:96
+#, fuzzy
+msgid "Unanswered Questions"
+msgstr "НСотговорСни Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/readers.py:106
+#, python-format
+msgid "questions tagged <span class=\"tag\">%(tag)s</span>"
+msgstr ""
+
+#: forum/views/readers.py:108
+#, fuzzy, python-format
+msgid "Questions Tagged With %(tag)s"
+msgstr "ΠΎΡ‰Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ Ρ Ρ‚Π°Π³ '%(tagname)s'"
+
+#: forum/views/readers.py:117
+#, fuzzy, python-format
+msgid "Questions asked by %s"
+msgstr "Π—Π°Π΄Π°Π΄Π΅Π½ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum/views/readers.py:120
+#, fuzzy, python-format
+msgid "Questions answered by %s"
+msgstr "answer"
+
+#: forum/views/readers.py:127
+#, fuzzy, python-format
+msgid "Questions you subscribed %s"
+msgstr "Tags"
+
+#: forum/views/readers.py:129
+#, fuzzy, python-format
+msgid "Questions subscribed by %s"
+msgstr "ΠΌΠ°Ρ…Π½ΠΈ Π°Π±ΠΎΠ½Π°ΠΌΠ΅Π½Ρ‚Π° ΠΌΠΈ"
+
+#: forum/views/readers.py:152
+msgid "Questions"
+msgstr "Π’ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#: forum/views/readers.py:206 forum/views/readers.py:207
+msgid "ranking"
+msgstr ""
+
+#: forum/views/readers.py:206
+msgid "relevance"
+msgstr ""
+
+#: forum/views/readers.py:206
+#, fuzzy
+msgid "most relevant questions"
+msgstr "ask a question relevant to the CNPROG community"
+
+#: forum/views/readers.py:212 forum/views/readers.py:214
+#, python-format
+msgid "questions matching '%(keywords)s'"
+msgstr ""
+
+#: forum/views/readers.py:362
+#, python-format
+msgid "Revision n. %(rev_number)d"
+msgstr ""
+
+#: forum/views/users.py:39
+#, fuzzy
+msgid "sorted by reputation"
+msgstr "karma"
+
+#: forum/views/users.py:40
+msgid "recent"
+msgstr ""
+
+#: forum/views/users.py:40
+#, fuzzy
+msgid "newest members"
+msgstr "Π½Π°ΠΉ-Π½ΠΎΠ²ΠΈΡ‚Π΅"
+
+#: forum/views/users.py:41
+msgid "last"
+msgstr ""
+
+#: forum/views/users.py:41
+#, fuzzy
+msgid "oldest members"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum/views/users.py:42
+msgid "by username"
+msgstr ""
+
+#: forum/views/users.py:42
+#, fuzzy
+msgid "sorted by username"
+msgstr "Choose screen name"
+
+#: forum/views/users.py:73
+msgid "Online Users"
+msgstr ""
+
+#: forum/views/users.py:167
+#, fuzzy
+msgid "Profile updated."
+msgstr "ПослСдно ΠΎΠ±Π½ΠΎΠ²Π΅Π½"
+
+#: forum/views/users.py:181
+msgid "Only superusers are allowed to alter other users permissions."
+msgstr ""
+
+#: forum/views/users.py:184
+msgid "Only the site owner can remove the super user status from other user."
+msgstr ""
+
+#: forum/views/users.py:206
+msgid "Only superusers are allowed to award reputation points"
+msgstr ""
+
+#: forum/views/users.py:211
+msgid "Invalid number of points to award."
+msgstr ""
+
+#: forum/views/users.py:229
+msgid "Only superusers can suspend other users"
+msgstr ""
+
+#: forum/views/users.py:250
+msgid "Invalid numeric argument for the number of days."
+msgstr ""
+
+#: forum/views/users.py:300
+msgid "overview"
+msgstr ""
+
+#: forum/views/users.py:300
+msgid "user overview"
+msgstr ""
+
+#: forum/views/users.py:332
+msgid "recent activity"
+msgstr ""
+
+#: forum/views/users.py:332
+msgid "recent user activity"
+msgstr ""
+
+#: forum/views/users.py:341
+#, fuzzy
+msgid "karma history"
+msgstr "karma history"
+
+#: forum/views/users.py:341
+#, fuzzy
+msgid "graph of user karma"
+msgstr "Graph of user karma"
+
+#: forum/views/users.py:356
+msgid "user vote record"
+msgstr ""
+
+#: forum/views/users.py:363
+msgid "favorites"
+msgstr ""
+
+#: forum/views/users.py:363
+msgid "questions that user selected as his/her favorite"
+msgstr ""
+
+#: forum/views/users.py:369
+#, fuzzy
+msgid "subscription"
+msgstr "АбонамСнт"
+
+#: forum/views/users.py:369
+msgid "subscriptions"
+msgstr ""
+
+#: forum/views/users.py:383
+#, fuzzy
+msgid "New subscription settings are now saved"
+msgstr ""
+"<span class='big strong'>Adjust frequency of email updates.</span> Receive "
+"updates on interesting questions by email, <strong><br/>help the community</"
+"strong> by answering questions of your colleagues. If you do not wish to "
+"receive emails - select 'no email' on all items below.<br/>Updates are only "
+"sent when there is any new activity on selected items."
+
+#: forum/views/users.py:389
+msgid "Notifications are now enabled"
+msgstr ""
+
+#: forum/views/users.py:391
+msgid "Notifications are now disabled"
+msgstr ""
+
+#: forum/views/users.py:435
+msgid "preferences"
+msgstr ""
+
+#: forum/views/users.py:442
+msgid "New preferences saved"
+msgstr ""
+
+#: forum/views/writers.py:59
+msgid "uploading images is limited to users with >60 reputation points"
+msgstr "sorry, file uploading requires karma >60"
+
+#: forum/views/writers.py:61
+msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
+msgstr ""
+
+#: forum/views/writers.py:63
+#, python-format
+msgid "maximum upload file size is %sM"
+msgstr ""
+
+#: forum/views/writers.py:65
+#, python-format
+msgid ""
+"Error uploading file. Please contact the site administrator. Thank you. %s"
+msgstr ""
+
+#: forum/views/writers.py:96
+#, python-format
+msgid "Your question is pending until you %s."
+msgstr ""
+
+#: forum/views/writers.py:97 forum/views/writers.py:246
+#, fuzzy
+msgid "validate your email"
+msgstr "How to validate email and why?"
+
+#: forum/views/writers.py:245
+#, python-format
+msgid "Your answer is pending until you %s."
+msgstr ""
+
+#: forum_modules/akismet/settings.py:7
+msgid "WordPress API key"
+msgstr ""
+
+#: forum_modules/akismet/settings.py:8
+msgid ""
+"Your WordPress API key. You can get one at <a href='http://wordpress."
+"com/'>http://wordpress.com/</a>"
+msgstr ""
+
+#: forum_modules/akismet/settings.py:12
+#, fuzzy
+msgid "Minimum reputation to not have your posts checked"
+msgstr "user karma"
+
+#: forum_modules/akismet/settings.py:13
+msgid ""
+"The minimum reputation a user must have so that when they post a question, "
+"answer or comment it is not checked for spam."
+msgstr ""
+
+#: forum_modules/akismet/startup.py:45
+#, python-format
+msgid "Sorry, but akismet thinks your %s is spam."
+msgstr ""
+
+#: forum_modules/akismet/templates/foundspam.html:3
+msgid "Akismet message"
+msgstr ""
+
+#: forum_modules/akismet/templates/foundspam.html:7
+#, python-format
+msgid "Akismet believes your %(action_name)s is spam."
+msgstr ""
+
+#: forum_modules/akismet/templates/foundspam.html:10
+#, python-format
+msgid ""
+"\n"
+"We're sorry, but Akismet believes your %(action_name)s is spam.<br />\n"
+"If you believe this is an error, please contact the forum administrator.\n"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:16
+#, python-format
+msgid "Asked a question with %s views"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:24
+#, fuzzy
+msgid "Popular Question"
+msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ Π’Π°ΡˆΠΈΡ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum_modules/default_badges/badges.py:30
+#, fuzzy
+msgid "Notable Question"
+msgstr "ΠΊΠΎΠΌΠ΅Π½Ρ‚ΠΈΡ€Π°Π½ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum_modules/default_badges/badges.py:35
+#, fuzzy
+msgid "Famous Question"
+msgstr "Π·Π°Π΄Π°ΠΉ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum_modules/default_badges/badges.py:54
+#, python-format
+msgid "Question voted up %s times"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:58
+#, fuzzy
+msgid "Nice Question"
+msgstr "Tags"
+
+#: forum_modules/default_badges/badges.py:63
+#, fuzzy
+msgid "Good Question"
+msgstr "Tags"
+
+#: forum_modules/default_badges/badges.py:68
+#, fuzzy
+msgid "Great Question"
+msgstr "Tags"
+
+#: forum_modules/default_badges/badges.py:77
+#, fuzzy, python-format
+msgid "Answer voted up %s times"
+msgstr "Post Your Answer"
+
+#: forum_modules/default_badges/badges.py:81
+#, fuzzy
+msgid "Nice Answer"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum_modules/default_badges/badges.py:86
+#, fuzzy
+msgid "Good Answer"
+msgstr "Π½Π°ΠΉ-старитС"
+
+#: forum_modules/default_badges/badges.py:91
+#, fuzzy
+msgid "Great Answer"
+msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum_modules/default_badges/badges.py:100
+#, python-format
+msgid "Question favorited by %s users"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:108
+#, fuzzy
+msgid "Favorite Question"
+msgstr "Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum_modules/default_badges/badges.py:113
+#, fuzzy
+msgid "Stellar Question"
+msgstr "Π˜Π·ΠΏΡ€Π°Ρ‚Π΅Ρ‚Π΅ Π’Π°ΡˆΠΈΡ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#: forum_modules/default_badges/badges.py:119
+msgid "Disciplined"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:120
+#, python-format
+msgid "Deleted own post with score of %s or higher"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:128
+msgid "Peer Pressure"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:129
+#, python-format
+msgid "Deleted own post with score of %s or lower"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:139
+msgid "Critic"
+msgstr "ΠšΡ€ΠΈΡ‚ΠΈΡ‡Π΅Π½"
+
+#: forum_modules/default_badges/badges.py:140
+msgid "First down vote"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:150
+#, fuzzy
+msgid "Supporter"
+msgstr "плюс"
+
+#: forum_modules/default_badges/badges.py:151
+msgid "First up vote"
+msgstr "ΠŸΡŠΡ€Π²ΠΈ ΠΏΠΎΠ»ΠΎΠΆΠΈΡ‚Π΅Π»Π΅Π½ Π²ΠΎΡ‚"
+
+#: forum_modules/default_badges/badges.py:168
+msgid "Citizen Patrol"
+msgstr "ГраТдански ΠŸΠ°Ρ‚Ρ€ΡƒΠ»"
+
+#: forum_modules/default_badges/badges.py:169
+msgid "First flagged post"
+msgstr "ΠŸΡŠΡ€Π²Π° ΠΌΠ°Ρ€ΠΊΠΈΡ€Π°Π½Π° ΠΏΡƒΠ±Π»ΠΈΠΊΠ°Ρ†ΠΈΡ"
+
+#: forum_modules/default_badges/badges.py:173
+msgid "Organizer"
+msgstr "ΠžΡ€Π³Π°Π½ΠΈΠ·Π°Ρ‚ΠΎΡ€"
+
+#: forum_modules/default_badges/badges.py:174
+msgid "First retag"
+msgstr "ΠŸΡŠΡ€Π²ΠΈ Ρ€Π΅Ρ‚Π°Π³"
+
+#: forum_modules/default_badges/badges.py:178
+#, fuzzy
+msgid "Editor"
+msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€"
+
+#: forum_modules/default_badges/badges.py:179
+msgid "First edit"
+msgstr "ΠŸΡŠΡ€Π²Π° Ρ€Π΅Π΄Π°ΠΊΡ†ΠΈΡ"
+
+#: forum_modules/default_badges/badges.py:183
+msgid "Scholar"
+msgstr "Π£Ρ‡Π΅Π½"
+
+#: forum_modules/default_badges/badges.py:184
+msgid "First accepted answer on your own question"
+msgstr "ΠŸΡŠΡ€Π²ΠΈ ΠΏΡ€ΠΈΠ΅Ρ‚ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€ Π½Π° Π’Π°ΡˆΠΈΡ ΡΠΎΠ±ΡΡ‚Π²Π΅Π½ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#: forum_modules/default_badges/badges.py:188
+msgid "Cleanup"
+msgstr "ΠŸΠΎΡ‡ΠΈΡΡ‚Π²Π°Π½Π΅"
+
+#: forum_modules/default_badges/badges.py:189
+msgid "First rollback"
+msgstr "ΠŸΡŠΡ€Π²ΠΎ ΠΏΠΎΡ‡ΠΈΡΡ‚Π²Π°Π½Π΅"
+
+#: forum_modules/default_badges/badges.py:195
+msgid "Autobiographer"
+msgstr "Автобиографист"
+
+#: forum_modules/default_badges/badges.py:196
+msgid "Completed all user profile fields"
+msgstr "Попълнил Π΅ Π²ΡΠΈΡ‡ΠΊΠΈ ΠΏΠΎΠ»Π΅Ρ‚Π° Π½Π° ΠΏΠΎΡ‚рСбитСлския ΠΏΡ€ΠΎΡ„ΠΈΠ»"
+
+#: forum_modules/default_badges/badges.py:209
+msgid "Civic Duty"
+msgstr "ГраТдански Π”ΡŠΠ»Π³"
+
+#: forum_modules/default_badges/badges.py:210
+#, python-format
+msgid "Voted %s times"
+msgstr "Гласувал %s ΠΏΡŠΡ‚ΠΈ"
+
+#: forum_modules/default_badges/badges.py:220
+#, fuzzy
+msgid "Pundit"
+msgstr "Π£Ρ‡Π΅Π½Π° Π³Π»Π°Π²Π°"
+
+#: forum_modules/default_badges/badges.py:221
+#, python-format
+msgid "Left %s comments"
+msgstr "ΠžΡΡ‚Π°Π²Π°Ρ‚ %s ΠΊΠΎΠΌΠ΅Π½Ρ‚Π°Ρ€Π°"
+
+#: forum_modules/default_badges/badges.py:231
+msgid "Self Learner"
+msgstr "Π‘Π°ΠΌΠΎΡƒΡ‡ΠΊΠ°"
+
+#: forum_modules/default_badges/badges.py:232
+#, fuzzy, python-format
+msgid "Answered your own question with at least %s up votes"
+msgstr "ΠžΡ‚Π³ΠΎΠ²ΠΎΡ€ΠΈΠ» Π½Π° ΡΠΎΠ±ΡΡ‚вСния ΡΠΈ Π²ΡŠΠΏΡ€ΠΎΡ Ρ ΠΏΠΎΠ½Π΅ %s ΠΏΠΎΠ»ΠΎΠΆΠΈΡ‚Π΅Π»Π½ΠΈ Π³Π»Π°ΡΠ°"
+
+#: forum_modules/default_badges/badges.py:244
+msgid "Strunk & White"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:245
+#, python-format
+msgid "Edited %s entries"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:255
+msgid "Student"
+msgstr "Π‘Ρ‚ΡƒΠ΄Π΅Π½Ρ‚"
+
+#: forum_modules/default_badges/badges.py:256
+msgid "Asked first question with at least one up vote"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:267
+#, fuzzy
+msgid "Teacher"
+msgstr "Ρ‚ΡŠΡ€ΡΠ΅Π½Π΅"
+
+#: forum_modules/default_badges/badges.py:268
+msgid "Answered first question with at least one up vote"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:280
+msgid "Enlightened"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:281
+#, python-format
+msgid "First answer was accepted with at least %s up votes"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:292
+msgid "Guru"
+msgstr "Π“ΡƒΡ€Ρƒ"
+
+#: forum_modules/default_badges/badges.py:293
+#, python-format
+msgid "Accepted answer and voted up %s times"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:304
+msgid "Necromancer"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:305
+#, python-format
+msgid ""
+"Answered a question more than %(dif_days)s days later with at least %"
+"(up_votes)s votes"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:317
+msgid "Taxonomist"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:318
+#, python-format
+msgid "Created a tag used by %s questions"
+msgstr "БъздадС Ρ‚Π°Π³ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Π½ ΠΎΡ‚ %s Π²ΡŠΠΏΡ€ΠΎΡΠ°"
+
+#: forum_modules/default_badges/settings.py:6
+msgid "Popular Question views"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:7
+msgid ""
+"\n"
+"Number of question views required to award a Popular Question badge to the "
+"question author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:12
+msgid "Notable Question views"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:13
+msgid ""
+"\n"
+"Number of question views required to award a Notable Question badge to the "
+"question author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:18
+msgid "Famous Question views"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:19
+msgid ""
+"\n"
+"Number of question views required to award a Famous Question badge to the "
+"question author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:24
+msgid "Nice Answer up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:25
+msgid ""
+"\n"
+"Number of up votes required to award a Nice Answer badge to the answer "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:30
+#, fuzzy
+msgid "Nice Question up votes"
+msgstr "Tags"
+
+#: forum_modules/default_badges/settings.py:31
+msgid ""
+"\n"
+"Number of up votes required to award a Nice Question badge to the question "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:36
+msgid "Good Answer up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:37
+msgid ""
+"\n"
+"Number of up votes required to award a Good Answer badge to the answer "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:42
+#, fuzzy
+msgid "Good Question up votes"
+msgstr "Tags"
+
+#: forum_modules/default_badges/settings.py:43
+msgid ""
+"\n"
+"Number of up votes required to award a Good Question badge to the question "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:48
+msgid "Great Answer up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:49
+msgid ""
+"\n"
+"Number of up votes required to award a Great Answer badge to the answer "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:54
+#, fuzzy
+msgid "Great Question up votes"
+msgstr "Tags"
+
+#: forum_modules/default_badges/settings.py:55
+msgid ""
+"\n"
+"Number of up votes required to award a Great Question badge to the question "
+"author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:60
+msgid "Favorite Question favorite count"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:61
+msgid ""
+"\n"
+"How many times a question needs to be favorited by other users to award a "
+"Favorite Question badge to the question author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:66
+msgid "Stellar Question favorite count"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:67
+msgid ""
+"\n"
+"How many times a question needs to be favorited by other users to award a "
+"Stellar Question badge to the question author\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:72
+msgid "Disciplined minimum score"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:73
+msgid ""
+"\n"
+"Minimum score a question needs to have to award the Disciplined badge to an "
+"author of a question who deletes it.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:78
+msgid "Peer Pressure maximum score"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:79
+msgid ""
+"\n"
+"Maximum score a question needs to have to award the Peer Pressure badge to "
+"an author of a question who deletes it.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:84
+msgid "Civic Duty votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:85
+msgid ""
+"\n"
+"Number of votes an user needs to cast to be awarded the Civic Duty badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:90
+msgid "Pundit number of comments"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:91
+msgid ""
+"\n"
+"Number of comments an user needs to post to be awarded the Pundit badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:96
+msgid "Self Learner up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:97
+msgid ""
+"\n"
+"Number of up votes an answer from the question author needs to have for the "
+"author to be awarded the Self Learner badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:102
+msgid "Strunk and White updates"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:103
+msgid ""
+"\n"
+"Number of question or answer updates an user needs to make to be awarded the "
+"Strunk & White badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:108
+msgid "Enlightened up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:109
+msgid ""
+"\n"
+"Number of up votes an accepted answer needs to have for the author to be "
+"awarded the Enlightened badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:114
+msgid "Guru up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:115
+msgid ""
+"\n"
+"Number of up votes an accepted answer needs to have for the author to be "
+"awarded the Guru badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:120
+msgid "Necromancer up votes"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:121
+msgid ""
+"\n"
+"Number of up votes an answer needs to have for the author to be awarded the "
+"Necromancer badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:126
+msgid "Necromancer difference in days"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:127
+msgid ""
+"\n"
+"Difference in days betwen the posted date of a question and an answer for "
+"the answer author to be awarded the Necromancer badge.\n"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:132
+msgid "Taxonomist usage count"
+msgstr ""
+
+#: forum_modules/default_badges/settings.py:133
+msgid ""
+"\n"
+"How many usages a tag needs to have for the tag creator to be awarded the "
+"Taxonomist badge. \n"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:139
+msgid "Compressing xml files"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:146
+msgid "Importing uploaded files"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:151
+msgid "Importing skins folder"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:155
+msgid "Writing inf file."
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:191
+msgid "Saving backup file"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:225
+#: forum_modules/exporter/importer.py:214
+msgid "Queued"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:228
+#: forum_modules/exporter/importer.py:217
+#, fuzzy
+msgid "Starting"
+msgstr "интСрСсно"
+
+#: forum_modules/exporter/exporter.py:249
+#, python-format
+msgid "Exporting %s"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:250
+msgid "Exporting"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:254
+msgid "Writing temp file"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:255
+#, python-format
+msgid "Writing %s temp file"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:260
+#: forum_modules/exporter/exporter.py:278
+#: forum_modules/exporter/importer.py:244
+#, fuzzy
+msgid "Done"
+msgstr "Π±Ρ€ΠΎΠ½Π·"
+
+#: forum_modules/exporter/exporter.py:272
+msgid "Compressing files"
+msgstr ""
+
+#: forum_modules/exporter/exporter.py:391
+#: forum_modules/exporter/importer.py:367
+#, fuzzy
+msgid "Nodes"
+msgstr "гласовС"
+
+#: forum_modules/exporter/exporter.py:436
+#: forum_modules/exporter/importer.py:440
+#, fuzzy
+msgid "Actions"
+msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅"
+
+#: forum_modules/exporter/exporter.py:482
+#: forum_modules/exporter/importer.py:509
+#, fuzzy
+msgid "Awards"
+msgstr "all badges"
+
+#: forum_modules/exporter/exporter.py:490
+#: forum_modules/exporter/importer.py:528
+msgid "Settings"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:5
+msgid "Anonymized data"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:5
+msgid "Don't export user data and make all content anonymous"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:6
+msgid "Uploaded files"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:6
+msgid "Include uploaded files in the backup"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:7
+msgid "Skins folder"
+msgstr ""
+
+#: forum_modules/exporter/forms.py:7
+msgid "Include skins folder in the backup"
+msgstr ""
+
+#: forum_modules/exporter/importer.py:238
+#, python-format
+msgid "Importing %s"
+msgstr ""
+
+#: forum_modules/exporter/importer.py:239
+msgid "Importing"
+msgstr ""
+
+#: forum_modules/exporter/settings.py:7
+msgid "Exporter settings"
+msgstr ""
+
+#: forum_modules/exporter/settings.py:7
+msgid "Data export settings"
+msgstr ""
+
+#: forum_modules/exporter/settings.py:10
+msgid "Backups storage"
+msgstr ""
+
+#: forum_modules/exporter/settings.py:11
+msgid "A folder to keep your backups organized."
+msgstr ""
+
+#: forum_modules/exporter/urls.py:8 forum_modules/exporter/urls.py:10
+#: forum_modules/exporter/urls.py:12
+msgid "exporter/"
+msgstr ""
+
+#: forum_modules/exporter/urls.py:8
+msgid "state/"
+msgstr ""
+
+#: forum_modules/exporter/urls.py:9
+msgid "running/"
+msgstr ""
+
+#: forum_modules/exporter/urls.py:10
+#, fuzzy
+msgid "download/"
+msgstr "ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½"
+
+#: forum_modules/exporter/urls.py:12
+msgid "import/"
+msgstr ""
+
+#: forum_modules/exporter/views.py:20 forum_modules/exporter/views.py:68
+msgid "exporter"
+msgstr ""
+
+#: forum_modules/exporter/views.py:20
+msgid "XML data export"
+msgstr ""
+
+#: forum_modules/exporter/templates/exporter.html:6
+#: forum_modules/exporter/templates/running.html:6
+msgid "XML data exporter"
+msgstr ""
+
+#: forum_modules/exporter/templates/exporter.html:9
+#: forum_modules/exporter/templates/running.html:9
+msgid "Export database to XML format"
+msgstr ""
+
+#: forum_modules/exporter/templates/exporter.html:14
+msgid "Available backups"
+msgstr ""
+
+#: forum_modules/exporter/templates/exporter.html:25
+msgid "Start new backup"
+msgstr ""
+
+#: forum_modules/exporter/templates/exporter.html:31
+msgid "Start"
+msgstr ""
+
+#: forum_modules/exporter/templates/importer.html:6
+#: forum_modules/exporter/templates/running.html:6
+msgid "XML data importer"
+msgstr ""
+
+#: forum_modules/exporter/templates/importer.html:9
+msgid "Import data from dump file"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:9
+msgid "Restore data from a previouus export"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:60
+msgid "Skiped"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:96
+msgid "Your backup is ready to be downloaded."
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:99
+msgid "All data sucessfully imported."
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:104
+msgid "An error has occurred during de export proccess"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:106
+msgid "An error has occurred during de import proccess"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:109
+msgid "Please check the log file for a full stack trace."
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:134
+msgid "Please wait while we prepare your backup file to download."
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:136
+msgid "Please wait while we import your data."
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:138
+msgid ""
+"\n"
+"            Started <span id=\"time_started\"></span>\n"
+"        "
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:142
+msgid "Download file"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:147
+msgid "Total progress"
+msgstr ""
+
+#: forum_modules/exporter/templates/running.html:157
+msgid " of "
+msgstr ""
+
+#: forum_modules/facebookauth/authentication.py:31
+msgid "Sorry, your Facebook session has expired, please try again"
+msgstr ""
+
+#: forum_modules/facebookauth/authentication.py:33
+msgid ""
+"The authentication with Facebook connect failed due to an invalid signature"
+msgstr ""
+
+#: forum_modules/facebookauth/authentication.py:35
+msgid ""
+"The authentication with Facebook connect failed, cannot find authentication "
+"tokens"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:75
+msgid "Please enter valid username and password (both are case-sensitive)."
+msgstr ""
+
+#: forum_modules/localauth/forms.py:79
+msgid "Login failed."
+msgstr ""
+
+#: forum_modules/localauth/forms.py:83
+msgid "This user is not a valid user"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:86
+msgid "Please enter username and password"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:88
+msgid "Please enter your password"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:90
+msgid "Please enter user name"
+msgstr ""
+
+#: forum_modules/localauth/urls.py:7
+msgid "local/"
+msgstr ""
+
+#: forum_modules/localauth/templates/loginform.html:4
+#, fuzzy
+msgid "Enter your local user name and password"
+msgstr ""
+"<span class='big strong'>Enter your CNPROG login and password</span><br/"
+"><span class='grey'>(or select your OpenID provider above)</span>"
+
+#: forum_modules/localauth/templates/loginform.html:4
+msgid "or select your external provider above"
+msgstr "ΠΈΠ»ΠΈ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π²ΡŠΠ½ΡˆΠ΅Π½ Π΄ΠΎΡΡ‚Π°Π²Ρ‡ΠΈΠΊ"
+
+#: forum_modules/localauth/templates/loginform.html:8
+#, fuzzy
+msgid "Login name"
+msgstr "Π’Ρ…ΠΎΠ΄"
+
+#: forum_modules/localauth/templates/loginform.html:16
+#, fuzzy
+msgid "Password"
+msgstr "ΠΏΠ°Ρ€ΠΎΠ»Π°"
+
+#: forum_modules/localauth/templates/loginform.html:27
+#, fuzzy
+msgid "Create account"
+msgstr "РСгистрация"
+
+#: forum_modules/oauthauth/consumer.py:33
+msgid "Error, the oauth token is not on the server"
+msgstr "Π“Ρ€Π΅ΡˆΠΊΠ°, Auth Token Π½Π΅ Π΅ Π½Π° ΡΡŠΡ€Π²ΡŠΡ€Π°"
+
+#: forum_modules/oauthauth/consumer.py:38
+msgid "Something went wrong! Auth tokens do not match"
+msgstr "НСщо ΡΠ΅ ΠΎΠ±ΡŠΡ€ΠΊΠ°! Auth ΡΠΈΠΌΠ²ΠΎΠ»ΠΈΡ‚Π΅ Π½Π΅ ΡΡŠΠ²ΠΏΠ°Π΄Π°Ρ‚"
+
+#: forum_modules/openidauth/consumer.py:51
+msgid "Sorry, but your input is not a valid OpenId"
+msgstr "Π—Π° ΡΡŠΠΆΠ°Π»Π΅Π½ΠΈΠ΅ Π²Π°ΡˆΠΈΡ Π²Ρ…ΠΎΠ΄ Π½Π΅ Π΅ Π²Π°Π»ΠΈΠ΄Π΅Π½ OpenID"
+
+#: forum_modules/openidauth/consumer.py:125
+msgid "The OpenId authentication request was canceled"
+msgstr "УдостовСряванСто Ρ OpenID Π±Π΅ΡˆΠ΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½ΠΎ"
+
+#: forum_modules/openidauth/consumer.py:127
+msgid "The OpenId authentication failed: "
+msgstr "УдостовСряванСто Ρ OpenID ΡΠ΅ ΠΏΡ€ΠΎΠ²Π°Π»ΠΈ:"
+
+#: forum_modules/openidauth/consumer.py:129
+msgid "Setup needed"
+msgstr ""
+
+#: forum_modules/openidauth/consumer.py:131
+msgid "The OpenId authentication failed with an unknown status: "
+msgstr ""
+
+#: forum_modules/openidauth/templates/openidurl.html:7
+msgid "Enter your OpenId Url"
+msgstr ""
+
+#: forum_modules/project_badges/badges.py:9
+msgid "Bug Buster"
+msgstr ""
+
+#: forum_modules/project_badges/badges.py:10
+#, python-format
+msgid "Got %s upvotes in a question tagged with \"bug\""
+msgstr ""
+
+#: forum_modules/recaptcha/formfield.py:20
+msgid "Invalid captcha"
+msgstr ""
+
+#: forum_modules/sximporter/importer.py:137
+#, fuzzy, python-format
+msgid "user-%(id)s"
+msgstr "ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΠΈ"
+
+#: forum_modules/sximporter/importer.py:147
+#, python-format
+msgid "user-%(id)s (google)"
+msgstr ""
+
+#: forum_modules/sximporter/importer.py:151
+#, python-format
+msgid "user-%(id)s (yahoo)"
+msgstr ""
+
+#: forum_modules/sximporter/urls.py:8
+msgid "sximporter/"
+msgstr ""
+
+#: forum_modules/sximporter/templates/page.html:7
+msgid "SX Importer"
+msgstr ""
+
+#: forum_modules/sximporter/templates/page.html:10
+msgid "Welcome to Stack Exchange dump importer."
+msgstr ""
+
+#: forum_modules/sximporter/templates/page.html:16
+msgid "Your user id in stack exchange"
+msgstr ""
+
+#: forum_modules/sximporter/templates/page.html:20
+msgid "Merge users with same user name and email"
+msgstr ""
+
+#: locale/phrases.py:1
+msgid "Test Phrase 1"
+msgstr ""
+
+#: locale/phrases.py:2
+msgid "Test Phrase 2"
+msgstr ""
+
+#: locale/phrases.py:3
+msgid "Test Phrase 3"
+msgstr ""
+
+#: locale/phrases.py:4
+msgid "Test Phrase n"
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:4
+#: rosetta/templates/rosetta/languages.html:6
+msgid "Language selection"
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:17
+#, fuzzy
+msgid "Application"
+msgstr "Π›ΠΎΠ³ΠΎ"
+
+#: rosetta/templates/rosetta/languages.html:18
+#, fuzzy
+msgid "Progress"
+msgstr "Π’ΠΎΡ‡ΠΊΠΈ"
+
+#: rosetta/templates/rosetta/languages.html:19
+#, fuzzy
+msgid "Messages"
+msgstr "Π’Π°ΡˆΠ΅Ρ‚ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅:"
+
+#: rosetta/templates/rosetta/languages.html:20
+#, fuzzy
+msgid "Translated"
+msgstr "ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΎ"
+
+#: rosetta/templates/rosetta/languages.html:21
+#: rosetta/templates/rosetta/pofile.html:57
+msgid "Fuzzy"
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:22
+msgid "Obsolete"
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:23
+#, fuzzy
+msgid "File"
+msgstr "срСбро"
+
+#: rosetta/templates/rosetta/languages.html:44
+msgid "Nothing to translate!"
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:45
+msgid ""
+"You haven't specified any languages in your settings file, or haven't yet "
+"generated a batch of translation catalogs."
+msgstr ""
+
+#: rosetta/templates/rosetta/languages.html:46
+#, python-format
+msgid ""
+"Please refer to <a href=\"%(i18n_doc_link)s\">Django's I18N documentation</"
+"a> for a guide on how to set up internationalization for your project."
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:8
+msgid "Pick another file"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:9
+msgid "Download this catalog"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:21
+#, python-format
+msgid "Progress: %(percent_translated)s%%"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:23
+msgid "File is read-only: download the file when done editing!"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:24
+msgid ""
+"Some items in your last translation block couldn't be saved: this usually "
+"happens when the catalog file changes on disk after you last loaded it."
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:28
+#, python-format
+msgid "Translate into %(rosetta_i18n_lang_name)s"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:31
+#, fuzzy
+msgid "Display:"
+msgstr "Π”Π½Π΅Π²Π½ΠΎ"
+
+#: rosetta/templates/rosetta/pofile.html:32
+msgid "Untranslated only"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:33
+msgid "Translated only"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:34
+msgid "Fuzzy only"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:35
+msgid "All"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:54
+msgid "Original"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:58
+msgid "Occurrences(s)"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:82
+msgid "suggest"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:93
+#, python-format
+msgid "%(more_count)s more"
+msgid_plural "%(more_count)s more"
+msgstr[0] ""
+msgstr[1] ""
+
+#: rosetta/templates/rosetta/pofile.html:105
+msgid "Save and translate next block"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:109
+#, fuzzy
+msgid "Skip to page:"
+msgstr "ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π½Π° Π½Π°Ρ‡Π°Π»Π½Π°Ρ‚Π° ΡΡ‚Ρ€Π°Π½ΠΈΡ†Π°"
+
+#: rosetta/templates/rosetta/pofile.html:122
+msgid "Displaying:"
+msgstr ""
+
+#: rosetta/templates/rosetta/pofile.html:124
+#, python-format
+msgid "%(hits)s/%(message_number)s message"
+msgid_plural "%(hits)s/%(message_number)s messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#~ msgid "duplicate question"
+#~ msgstr "повтарящ ΡΠ΅ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#~ msgid "question is off-topic or not relevant"
+#~ msgstr "Π²ΡŠΠΏΡ€ΠΎΡΠ° Π΅ ΠΈΠ·Π²ΡŠΠ½ Ρ‚Π΅ΠΌΠ°Ρ‚Π° ΠΈΠ»ΠΈ Π΅ Π½Π΅Ρ€Π΅Π»Π΅Π²Π°Π½Ρ‚Π΅Π½"
+
+#~ msgid "too subjective and argumentative"
+#~ msgstr "ΠΏΡ€Π΅ΠΊΠ°Π»Π΅Π½ΠΎ ΡΡƒΠ±Π΅ΠΊΡ‚ΠΈΠ²Π΅Π½ ΠΈ ΡΠΏΠΎΡ€Π΅Π½"
+
+#~ msgid "commented answer"
+#~ msgstr "ΠΊΠΎΠΌΠ΅Π½Ρ‚ΠΈΡ€Π°Π½ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#~ msgid "received award"
+#~ msgstr "ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π° Π½Π°Π³Ρ€Π°Π΄Π°"
+
+#~ msgid "marked best answer"
+#~ msgstr "ΠΌΠ°Ρ€ΠΊΠΈΡ€Π°Π½ Π·Π° Π½Π°ΠΉ-Π΄ΠΎΠ±ΡŠΡ€ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#~ msgid "upvote canceled"
+#~ msgstr "ΠΏΠΎΠ΄Π΄Ρ€ΡŠΠΆΠΊΠ°Ρ‚Π° Π΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½Π°"
+
+#~ msgid "downvote canceled"
+#~ msgstr "ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»ΡΠ½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½ΠΎ"
+
+#~ msgid "deleted answer"
+#~ msgstr "ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#~ msgid "marked offensive"
+#~ msgstr "ΠΌΠ°Ρ€ΠΊΠΈΡ€Π°Π½ΠΎ Π·Π° ΠΎΠ±ΠΈΠ΄Π½ΠΎ"
+
+#~ msgid "updated tags"
+#~ msgstr "ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΈ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#~ msgid "selected favorite"
+#~ msgstr "ΠΈΠ·Π±Ρ€Π°Π½ΠΎ Π·Π° Π»ΡŽΠ±ΠΈΠΌΠΎ"
+
+#~ msgid "email update sent to user"
+#~ msgstr "ΠΈΠ·ΠΏΡ€Π°Ρ‚Π΅Π½ΠΎ Π΅ ΠΈΠΌΠ΅ΠΉΠ» ΠΈΠ·Π²Π΅ΡΡ‚яванС Π΄ΠΎ ΠΏΠΎΡ‚рСбитСля"
+
+#~ msgid "question_answered"
+#~ msgstr "ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#~ msgid "answer_accepted"
+#~ msgstr "ΠΏΡ€ΠΈΠ΅Ρ‚ ΠΎΡ‚Π³ΠΎΠ²ΠΎΡ€"
+
+#~ msgid "initial version"
+#~ msgstr "ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½Π° Π²Π΅Ρ€ΡΠΈΡ"
+
+#~ msgid "Weekly"
+#~ msgstr "Π‘Π΅Π΄ΠΌΠΈΡ‡Π½ΠΎ"
+
+#~ msgid "please use 5 tags or less"
+#~ msgstr "моля, ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ Π΄ΠΎ 5 Ρ‚Π°Π³Π°"
+
+#~ msgid "tags must be shorter than 20 characters"
+#~ msgstr "Ρ‚Π°Π³ΠΎΠ²Π΅Ρ‚Π΅ Ρ‚рябва Π΄Π° ΡΠ° ΠΏΠΎ-ΠΊΡ€Π°Ρ‚ΠΊΠΈ ΠΎΡ‚ 20 ΡΠΈΠΌΠ²ΠΎΠ»Π°"
+
+#~ msgid "Automatically accept user's contributions for the email updates"
+#~ msgstr "Автоматично ΠΏΡ€ΠΈΠ΅ΠΌΠ°ΠΉ ΠΏΠΎΡ‚рСбитСлскитС Π΄ΠΎΠ±Π°Π²ΡΠ½ΠΈΡ Π·Π° ΠΈΠΌΠ΅ΠΉΠ» ΡŠΠΏΠ΄Π΅ΠΉΡ‚ΠΈΡ‚Π΅"
+
+#~ msgid "marked an answer"
+#~ msgstr "ΠΌΠ°Ρ€ΠΊΠΈΡ€Π°Π½ΠΎ ΠΊΠ°Ρ‚ΠΎ ΠΏΡ€ΠΎΡ‡Π΅Ρ‚Π΅Π½ΠΎ"
+
+#~ msgid "commented a question"
+#~ msgstr "списък Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ Π²ΡŠΠΏΡ€ΠΎΡΠΈ"
+
+#~ msgid "edited an answer"
+#~ msgstr "Π½Π°ΠΉ-старитС"
+
+#~ msgid "received badge"
+#~ msgstr "ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π° Ρ‚ΠΎΡ‡ΠΊΠ°"
+
+#~ msgid ""
+#~ "the page you tried to visit is protected or you don't have sufficient "
+#~ "points, see"
+#~ msgstr ""
+#~ "страницата Π΅ Π·Π°Ρ‰ΠΈΡ‚Π΅Π½Π° ΠΈΠ»ΠΈ Π½ΡΠΌΠ°Ρ‚Π΅ ΠΏΠΎΠ΄Ρ…одящитС ΠΏΡ€Π°Π²Π° Π·Π° Π΄Π° Ρ ΠΏΡ€Π΅Π³Π»Π΅ΠΆΠ΄Π°Ρ‚Π΅"
+
+#~ msgid "this answer has been accepted to be correct"
+#~ msgstr "Ρ‚ΠΎΠ·ΠΈ Π²ΡŠΠΏΡ€ΠΎΡ"
+
+#~ msgid "login to post question info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Π’ΠΈΠ΅ ΡΡ‚Π΅ ΡΠ²ΠΎΠ±ΠΎΠ΄Π½ΠΈ Π΄Π° Π·Π°Π΄Π°Π²Π°Ρ‚Π΅ Π’Π°ΡˆΠΈΡ‚Π΅ Π²ΡŠΠΏΡ€ΠΎΡΠΈ "
+#~ "Π°Π½ΠΎΠ½ΠΈΠΌΠ½ΠΎ</span>. ΠšΠΎΠ³Π°Ρ‚ΠΎ ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡ€Π°Ρ‚ΠΈΡ‚Π΅ ΠΏΡƒΠ±Π»ΠΈΠΊΠ°Ρ†ΠΈΡΡ‚Π°, Ρ‚я Ρ‰Π΅ Π±ΡŠΠ΄Π΅ "
+#~ "Π·Π°ΠΏΠ°Π·Π΅Π½Π° Π² ΡΠ΅ΡΠΈΡΡ‚Π° ΠΈ ΡΠ»Π΅Π΄ ΠΊΠ°Ρ‚ΠΎ ΡΠ΅ ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Ρ‚Π΅ Ρ‰Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΡ€ΠΎΠ΄ΡŠΠ»ΠΆΠΈΡ‚Π΅ "
+#~ "добавянСто. ΠŸΡ€ΠΎΡ†Π΅ΡΠ° Π½Π° Ρ€Π΅Π³ΠΈΡΡ‚рация ΠΈ ΠΎΡ‚ΠΎΡ€ΠΈΠ·ΠΈΡ€Π°Π½Π΅ Π΅ ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΡΡ‚. ΠžΡ‚Π½Π΅ΠΌΠ° ΠΏΠΎ-"
+#~ "ΠΌΠ°Π»ΠΊΠΎ ΠΎΡ‚ ΠΌΠΈΠ½ΡƒΡ‚Π°."
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ "                            see %(email_validation_faq_url)s\n"
+#~ "                            "
+#~ msgstr ""
+#~ "<span class='strong big'>ИзглСТда, Ρ‡Π΅ ΠΈΠΌΠ΅ΠΉΠ»Π° Π’ΠΈ, %(email)s Π½Π΅ Π΅ Π±ΠΈΠ» "
+#~ "ΠΏΠΎΡ‚Π²ΡŠΡ€Π΄Π΅Π½.</span> Π—Π° Π΄Π° Π΄ΠΎΠ±Π°Π²ΡΡ‚Π΅ ΠΈΠ½Ρ„ормация, Ρ‚рябва Π΄Π° ΠΏΠΎΡ‚Π²ΡŠΡ€Π΄ΠΈΡ‚Π΅ ΠΈΠΌΠ΅ΠΉΠ»Π° "
+#~ "си, ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° Π½Π°ΠΌΠ΅Ρ€ΠΈΡ‚Π΅ ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация Π½Π° <a href='%"
+#~ "(email_validation_faq_url)s'>страницата Π·Π° ΠΏΠΎΡ‚Π²ΡŠΡ€ΠΆΠ΄Π΅Π½ΠΈΠ΅ Π½Π° ΠΈΠΌΠ΅ΠΉΠ»Π°</a>."
+#~ "<br>ΠœΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡ€Π°Ρ‚ΠΈΡ‚Π΅ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΡΠΈ ΠΈ Π΄Π° ΠΏΠΎΡ‚Π²ΡŠΡ€Π΄ΠΈΡ‚Π΅ ΠΈΠΌΠ΅ΠΉΠ»Π° ΡΠ»Π΅Π΄ Ρ‚ΠΎΠ²Π°, "
+#~ "Π½ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ Π½ΡΠΌΠ° Π΄Π° Π±ΡŠΠ΄Π΅ Π²ΠΈΠ·ΡƒΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½ΠΎ. "
+
+#~ msgid ""
+#~ "Before asking the question - please make sure to use search to see "
+#~ "whether your question has alredy been answered."
+#~ msgstr ""
+#~ "Before you ask - please make sure to search for a similar question. You "
+#~ "can search questions by their title or tags."
+
+#~ msgid "What questions should I avoid asking?"
+#~ msgstr "What kinds of questions should be avoided?"
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr ""
+#~ "is a <strong>question and answer</strong> site - <strong>it is not a "
+#~ "discussion group</strong>. Please avoid holding debates in your answers "
+#~ "as they tend to dilute the essense of questions and answers. For the "
+#~ "brief discussions please use commenting facility."
+
+#~ msgid ""
+#~ "The reputation system allows users earn the authorization to perform a "
+#~ "variety of moderation tasks."
+#~ msgstr ""
+#~ "Karma system allows users to earn rights to perform a variety of "
+#~ "moderation tasks"
+
+#~ msgid "How does reputation system work?"
+#~ msgstr "How does karma system work?"
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#~ msgid "use tags"
+#~ msgstr "ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉ Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#~ msgid ""
+#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)"
+#~ "s"
+#~ msgstr ""
+#~ "<form style='margin:0;padding:0;' action='%(send_email_key_url)"
+#~ "s'><p><span class=\"bigger strong\">How?</span> If you have just set or "
+#~ "changed your email address - <strong>check your email and click the "
+#~ "included link</strong>.<br>The link contains a key generated specifically "
+#~ "for you. You can also <button style='display:inline' "
+#~ "type='submit'><strong>get a new key</strong></button> and check your "
+#~ "email again.</p></form><span class=\"bigger strong\">Why?</span> Email "
+#~ "validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
+
+#~ msgid ""
+#~ "Please ask your question at %(ask_question_url)s, help make our community "
+#~ "better!"
+#~ msgstr ""
+#~ "Please <a href='%(ask_question_url)s'>ask</a> your question, help make "
+#~ "our community better!"
+
+#~ msgid "give feedback"
+#~ msgstr "остави ΠΎΡ‚Π·ΠΈΠ²"
+
+#~ msgid "close date %(closed_at)s"
+#~ msgstr "Π΄Π°Ρ‚Π° Π½Π° Π·Π°Ρ‚варянС %(closed_at)s"
+
+#~ msgid "question tips"
+#~ msgstr "Π‘ΡŠΠ²Π΅Ρ‚ΠΈ"
+
+#~ msgid "up to 5 tags, less than 20 characters each"
+#~ msgstr "Π΄ΠΎ 5 Ρ‚Π°Π³Π°, Ρ Π΄ΡŠΠ»ΠΆΠΈΠ½Π° Π΄ΠΎ 20 ΡΠΈΠΌΠ²ΠΎΠ»Π° Π²ΡΠ΅ΠΊΠΈ"
+
+#~ msgid "all tags - make this empty in english"
+#~ msgstr "всички Ρ‚Π°Π³ΠΎΠ²Π΅"
+
+#~ msgid "Sorry, looks like we have some errors:"
+#~ msgstr "ИзглСТда Π΅ ΡΡ‚Π°Π½Π°Π»Π° Π³Ρ€Π΅ΡˆΠΊΠ°:"
+
+#~ msgid "Screen name label"
+#~ msgstr ""
+#~ "<strong>ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΎ ΠΈΠΌΠ΅</strong> (<i>Ρ‰Π΅ Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΎ Π½Π° ΠΎΡΡ‚Π°Π½Π°Π»ΠΈΡ‚Π΅</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>ИмСйл Π°Π΄Ρ€Π΅Ρ</strong> (<i><strong>няма<strong> Π΄Π° Π±ΡŠΠ΄Π΅ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½ΠΎ Ρ "
+#~ "Π½ΠΈΠΊΠΎΠΉ, Ρ‚рябва Π΄Π° Π±ΡŠΠ΄Π΅ Π²Π°Π»ΠΈΠ΄Π΅Π½</i>)"
+
+#~ msgid "To make use of the Forum, please follow the link below:"
+#~ msgstr "Π—Π° Π΄Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°Ρ‚Π΅ Zapprotect Q&A, ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΡΠ»Π΅Π΄Π½ΠΈΡ Π»ΠΈΠ½ΠΊ:"
+
+#~ msgid ""
+#~ "Sincerely,<br />\n"
+#~ "    Forum Administrator"
+#~ msgstr ""
+#~ "Sincerely,\n"
+#~ "Q&A Forum Administrator"
+
+#~ msgid "Click to sign in through any of these services."
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Please select your favorite login method "
+#~ "below.</span></p><p><font color=\"gray\">External login services use <a "
+#~ "href=\"http://openid.net\"><b>OpenID</b></a> technology, where your "
+#~ "password always stays confidential between you and your login provider "
+#~ "and you don't have to remember another one. CNPROG option requires your "
+#~ "login name and password entered here.</font></p>"
+
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>If you prefer, create your forum login name and "
+#~ "password here. However</span>, please keep in mind that we also support "
+#~ "<strong>OpenID</strong> login method. With <strong>OpenID</strong> you "
+#~ "can simply reuse your external login (e.g. Gmail or AOL) without ever "
+#~ "sharing your login details with anyone and having to remember yet another "
+#~ "password."
+
+#~ msgid " add comment"
+#~ msgstr "post a comment"
+
+#~ msgid "On question "
+#~ msgstr "Tips"
+
+#~ msgid ""
+#~ "\n"
+#~ "                    %(comment_count)s new comment%"
+#~ "(comment_count_pluralize)s\n"
+#~ "                "
+#~ msgstr ""
+#~ "\n"
+#~ "(one comment)"
+
+#~ msgid ""
+#~ "\n"
+#~ "                    Posted by %(author_name)s in %(question_time)s\n"
+#~ "                "
+#~ msgstr ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>question</p>"
+
+#~ msgid "avatar, see %(gravatar_faq_url)s"
+#~ msgstr "<a href='%(gravatar_faq_url)s'>gravatar</a>"
+
+#~ msgid "casted votes"
+#~ msgstr "votes"
+
+#~ msgid "Questions sorted by <strong>number of responses</strong>."
+#~ msgstr "Questions sorted by the <strong>number of answers</strong>."
+
+#~ msgid "user reputation in the community"
+#~ msgstr "user karma"
+
+#~ msgid "profile - user reputation"
+#~ msgstr "Profile - User's Karma"
+
+#~ msgid "profile - subscriptions"
+#~ msgstr "Profile - User's Karma"
+
+#~ msgid "email update message subject"
+#~ msgstr "news from Q&A forum"
+
+#~ msgid "%(name)s, this is an update message header for a question"
+#~ msgid_plural ""
+#~ "%(name)s, this is an update message header for %(num)d questions"
+#~ msgstr[0] ""
+#~ "<p>Dear %(name)s,</p></p>The following question has been updated on the "
+#~ "Q&A forum:</p>"
+#~ msgstr[1] ""
+#~ "<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated "
+#~ "on the Q&A forum:</p>"
+
+#~ msgid ""
+#~ "go to %(link)s to change frequency of email updates or %(email)s "
+#~ "administrator"
+#~ msgstr ""
+#~ "<p>Please remember that you can always <a href='%(link)s'>adjust</a> "
+#~ "frequency of the email updates or turn them off entirely.<br/>If you "
+#~ "believe that this message was sent in an error, please email about it the "
+#~ "forum administrator at %(email)s.</p><p>Sincerely,</p><p>Your friendly "
+#~ "Q&A forum server.</p>"
+
+#~ msgid "Account: change password"
+#~ msgstr "Change your password"
+
+#~ msgid "list of unanswered questions"
+#~ msgstr "unanswered questions"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> once a day by email when there are any new "
+#~ "answers or updates"
+
+#~ msgid "Notify me weekly when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> weekly when there are any new answers or "
+#~ "updates"
+
+#~ msgid ""
+#~ "\n"
+#~ "                You can always adjust frequency of email updates from "
+#~ "your %(profile_url)s\n"
+#~ "                "
+#~ msgstr ""
+#~ "\n"
+#~ "(note: you can always <a href='%(profile_url)s?"
+#~ "sort=email_subscriptions'>adjust frequency</a> of email updates)"
+
+#~ msgid ""
+#~ "\n"
+#~ "                    have total %(q_num)s questions containing %"
+#~ "(searchtitle)s in full text\n"
+#~ "                    "
+#~ msgid_plural ""
+#~ "\n"
+#~ "                    have total %(q_num)s questions containing %"
+#~ "(searchtitle)s in full text\n"
+#~ "                    "
+#~ msgstr[0] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>question containing "
+#~ "<strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>questions containing "
+#~ "<strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+
+#~ msgid "Most recently answered ones are shown first."
+#~ msgstr "<strong>Most recently answered</strong> questions are shown first."
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Enter your new email into the box below</span> "
+#~ "if you'd like to use another email for <strong>update subscriptions</"
+#~ "strong>.<br>Currently you are using <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Please enter your email address in the box below."
+#~ "</span> Valid email address is required on this Q&amp;A forum. If you "
+#~ "like, you can <strong>receive updates</strong> on interesting questions "
+#~ "or entire forum via email. Also, your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. Email addresses are never shown or otherwise shared with anybody "
+#~ "else."
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">An email with a validation link has been sent "
+#~ "to %(email)s.</span> Please <strong>follow the emailed link</strong> with "
+#~ "your web browser. Email validation is necessary to help insure the proper "
+#~ "use of email on <span class=\"orange\">Q&amp;A</span>. If you would like "
+#~ "to use <strong>another email</strong>, please <a href='%(change_email_url)"
+#~ "s'><strong>change it again</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your email address %(email)s has not been "
+#~ "changed.</span> If you decide to change it later - you can always do it "
+#~ "by editing it in your user profile or by using the <a href='%"
+#~ "(change_email_url)s'><strong>previous form</strong></a> again."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Your email address is now set to %(email)s.</"
+#~ "span> Updates on the questions that you like most will be sent to this "
+#~ "address. Email notifications are sent once a day or less frequently - "
+#~ "only when there are any news."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Thank you for verifying your email!</span> Now "
+#~ "you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+#~ "if you find a very interesting question you can <strong>subscribe for the "
+#~ "updates</strong> - then will be notified about changes <strong>once a "
+#~ "day</strong> or less frequently."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validation email not sent"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Your current email address %(email)s has been "
+#~ "validated before</span> so the new key was not sent. You can <a href='%"
+#~ "(change_link)s'>change</a> email used for update subscriptions if "
+#~ "necessary."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your %"
+#~ "(provider)s login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ "                            %(provider)s. Email is required too, see %"
+#~ "(gravatar_faq_url)s\n"
+#~ "                        "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... looks like screen name %(username)s "
+#~ "is already used in another account.</span></p><p>Please choose another "
+#~ "screen name to use with your %(provider)s login. Also, a valid email "
+#~ "address is required on the <span class='orange'>Q&amp;A</span> forum. "
+#~ "Your email is used to create a unique <a href='%(gravatar_faq_url)"
+#~ "s'><strong>gravatar</strong></a> image for your account. If you like, you "
+#~ "can <strong>receive updates</strong> on the interesting questions or "
+#~ "entire forum by email. Email addresses are never shown or otherwise "
+#~ "shared with anybody else.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your %"
+#~ "(provider)s login.</span></p><p>You can either keep your <strong>screen "
+#~ "name</strong> the same as your %(provider)s login name  or choose some "
+#~ "other nickname.</p><p>Also, please save a valid <strong>email</strong> "
+#~ "address. With the email you can <strong>subscribe for the updates</"
+#~ "strong> on the most interesting questions. Email address is also used to "
+#~ "create and retrieve your unique avatar image - <a href='%"
+#~ "(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "Facebook login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid "password recovery information"
+#~ msgstr ""
+#~ "<span class='big strong'>Forgot you password? No problems - just get a "
+#~ "new one!</span><br/>Please follow the following steps:<br/>&bull; submit "
+#~ "your user name below and check your email<br/>&bull; <strong>follow the "
+#~ "activation link</strong> for the new password - sent to you by email and "
+#~ "login with the suggested password<br/>&bull; at this you might want to "
+#~ "change your password to something you can remember better"
+
+#~ msgid "Reset password"
+#~ msgstr "Send me a new password"
+
+#~ msgid ""
+#~ "email explanation how to use new %(password)s for %(username)s\n"
+#~ "with the %(key_link)s"
+#~ msgstr ""
+#~ "To change your password, please follow these steps:\n"
+#~ "* visit this link: %(key_link)s\n"
+#~ "* login with user name %(username)s and password %(password)s\n"
+#~ "* go to your user profile and set the password to something you can "
+#~ "remember"
+
+#~ msgid ""
+#~ "\n"
+#~ "                Your answer to %(title)s %(summary)s will be posted once "
+#~ "you log in\n"
+#~ "                "
+#~ msgstr ""
+#~ "\n"
+#~ "<span class=\"strong big\">Your answer to </span> <i>\"<strong>%(title)s</"
+#~ "strong> %(summary)s...\"</i> <span class=\"strong big\">is saved and will "
+#~ "be posted once you log in.</span>"
+
+#~ msgid ""
+#~ "Your question \n"
+#~ "                %(title)s %(summary)s will be posted once you log in\n"
+#~ "                "
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your question</span> <i>\"<strong>%(title)s</"
+#~ "strong> %(summary)s...\"</i> <span class=\"strong big\">is saved and will "
+#~ "be posted once you log in.</span>"
+
+#~ msgid "Enter your <span id=\"enter_your_what\">Provider user name</span>"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Enter your </span><span id=\"enter_your_what\" "
+#~ "class='big strong'>Provider user name</span><br/><span class='grey'>(or "
+#~ "select another login method above)</span>"
+
+#~ msgid ""
+#~ "Enter your <a class=\"openid_logo\" href=\"http://openid.net\">OpenID</a> "
+#~ "web address"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Enter your <a class=\"openid_logo\" href="
+#~ "\"http://openid.net\">OpenID</a> web address</span><br/><span "
+#~ "class='grey'>(or choose another login method above)</span>"
+
+#~ msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#~ msgstr ""
+#~ "Your subscription is saved, but email address %(email)s needs to be "
+#~ "validated, please see <a href='%(details_url)s'>more details here</a>"
+
+#~ msgid "Incorrect username."
+#~ msgstr "sorry, there is no such user name"
+
+#~ msgid "your email needs to be validated see %(details_url)s"
+#~ msgstr ""
+#~ "Your email needs to be validated. Please see details <a "
+#~ "id='validate_email_alert' href='%(details_url)s'>here</a>."
+
+#~ msgid "Email verification subject line"
+#~ msgstr "Verification Email from Q&A forum"
+
+#~ msgid "first time greeting with %(url)s"
+#~ msgstr "Hello and welcome to OSQA - <a href='%(url)s'>please join us</a>!"
+
+#~ msgid ""
+#~ "\n"
+#~ "\t\t\t\thave total %(q_num)s questions\n"
+#~ "\t\t\t\t"
+#~ msgid_plural ""
+#~ "\n"
+#~ "\t\t\t\thave total %(q_num)s questions\n"
+#~ "\t\t\t\t"
+#~ msgstr[0] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>question</p>"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>questions</p>"
index a7c589300508523648a62fe07d68b59b85765799..bd76b22188ea3b1fa50cd03633c7c3f4b9bf61db 100644 (file)
@@ -59,6 +59,26 @@ ALLOW_MAX_FILE_SIZE = 1024 * 1024
 # User settings
 from settings_local import *
 
+try:
+    if len(FORUM_SCRIPT_ALIAS) > 0:
+        APP_URL = '%s/%s' % (APP_URL, FORUM_SCRIPT_ALIAS[:-1])
+except NameError:
+    pass
+
+app_url_split = APP_URL.split("://")
+
+APP_PROTOCOL = app_url_split[0]
+APP_DOMAIN = app_url_split[1].split('/')[0]
+APP_BASE_URL = '%s://%s' % (APP_PROTOCOL, APP_DOMAIN)
+
+FORCE_SCRIPT_NAME = ''
+
+for path in app_url_split[1].split('/')[1:]:
+    FORCE_SCRIPT_NAME = FORCE_SCRIPT_NAME + '/' + path
+
+if FORCE_SCRIPT_NAME.endswith('/'):
+    FORCE_SCRIPT_NAME = FORCE_SCRIPT_NAME[:-1]
+
 INSTALLED_APPS = [
     'django.contrib.auth',
     'django.contrib.contenttypes',
index 8f997e5253a1c2082b6790ec867d87f936fcf8ef..9768cfaf3b6fe0a024f3299fe11c9100f5d433dc 100644 (file)
@@ -35,20 +35,14 @@ CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').re
 #CACHE_BACKEND = 'dummy://'
 SESSION_ENGINE = 'django.contrib.sessions.backends.db'
 
-APP_URL = 'http://' #used by email notif system and RSS
+# This should be equal to your domain name, plus the web application context.
+# This shouldn't be followed by a trailing slash.
+# I.e., http://www.yoursite.com or http://www.hostedsite.com/yourhostapp
+APP_URL = 'http://'
 
 #LOCALIZATIONS
 TIME_ZONE = 'America/New_York'
 
-###########################
-#
-#   this will allow running your forum with url like http://site.com/forum
-#
-#   FORUM_SCRIPT_ALIAS = 'forum/'
-#
-FORUM_SCRIPT_ALIAS = '' #no leading slash, default = '' empty string
-
-
 #OTHER SETTINGS
 
 USE_I18N = True
diff --git a/urls.py b/urls.py
index 51fa72080700056993c6f007270e51a7de9fe903..0355657c9d3d7d279c19009ea10398fa90c3da94 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -3,7 +3,7 @@ from django.utils.translation import ugettext as _
 from django.conf import settings
 
 urlpatterns = patterns('',
-    (r'^%s' % settings.FORUM_SCRIPT_ALIAS, include('forum.urls')),
+    (r'', include('forum.urls')),
 )
 
 if 'rosetta' in settings.INSTALLED_APPS: