]> git.openstreetmap.org Git - osqa.git/commitdiff
Add functionallity for editing po files through the use of the django-rosetta
authorqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 28 Apr 2010 20:29:18 +0000 (20:29 +0000)
committerqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 28 Apr 2010 20:29:18 +0000 (20:29 +0000)
here are some instruction on how to install it.
http://code.google.com/p/django-rosetta/

there are also some changes to the admin files because they did not play nice with makemessages.

git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@86 0cfe37f9-358a-4d5e-be75-b63607b5c754

15 files changed:
forum/settings/basic.py
forum/settings/email.py
forum/settings/extkeys.py
forum/settings/minrep.py
forum/settings/repgain.py
forum/settings/upload.py
forum/settings/voting.py
forum/urls.py
locale/en/LC_MESSAGES/django.mo
locale/en/LC_MESSAGES/django.po
locale/es/LC_MESSAGES/django.mo
locale/es/LC_MESSAGES/django.po
locale/zh_CN/LC_MESSAGES/django.mo
locale/zh_CN/LC_MESSAGES/django.po
settings.py

index 0148452abf215155b47ec70897a4893d481bb7cd..69fdd6c4318e3ec855919c1457c5a598fb650a29 100644 (file)
@@ -10,58 +10,40 @@ BASIC_SET = SettingSet('basic', _('Basic Settings'), _("The basic settings for y
 \r
 APP_LOGO = Setting('APP_LOGO', '/m/default/media/images/logo.png', BASIC_SET, dict(\r
 label = _("Application logo"),\r
-help_text = _("""\r
-Your site main logo.\r
-"""),\r
+help_text = _("Your site main logo."),\r
 widget=ImageFormWidget))\r
 \r
 APP_FAVICON = Setting('APP_FAVICON', '/m/default/media/images/favicon.ico', BASIC_SET, dict(\r
 label = _("Favicon"),\r
-help_text = _("""\r
-Your site favicon.\r
-"""),\r
+help_text = _("Your site favicon."),\r
 widget=ImageFormWidget))\r
 \r
 APP_TITLE = Setting('APP_TITLE', 'OSQA: Open Source Q&A Forum', BASIC_SET, dict(\r
 label = _("Application title"),\r
-help_text = _("""\r
-The title of your application that will show in the browsers title bar\r
-""")))\r
+help_text = _("The title of your application that will show in the browsers title bar")))\r
 \r
 APP_SHORT_NAME = Setting('APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(\r
 label = _("Application short name"),\r
-help_text = """\r
-The short name for your application that will show up in many places.\r
-"""))\r
+help_text = "The short name for your application that will show up in many places."))\r
 \r
 APP_KEYWORDS = Setting('APP_KEYWORDS', 'OSQA,CNPROG,forum,community', BASIC_SET, dict(\r
 label = _("Application keywords"),\r
-help_text = _("""\r
-The meta keywords that will be available through the HTML meta tags.\r
-""")))\r
+help_text = _("The meta keywords that will be available through the HTML meta tags.")))\r
 \r
 APP_DESCRIPTION = Setting('APP_DESCRIPTION', 'Ask and answer questions.', BASIC_SET, dict(\r
 label = _("Application description"),\r
-help_text = _("""\r
-The description of your application\r
-"""),\r
+help_text = _("The description of your application"),\r
 widget=Textarea))\r
 \r
 APP_INTRO = Setting('APP_INTRO', '<p>Ask and answer questions, make the world better!</p>', BASIC_SET, dict(\r
 label = _("Application intro"),\r
-help_text = _("""\r
-The introductory page that is visible in the sidebar for anonymous users.\r
-"""),\r
+help_text = _("The introductory page that is visible in the sidebar for anonymous users."),\r
 widget=Textarea))\r
 \r
 APP_COPYRIGHT = Setting('APP_COPYRIGHT', 'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(\r
 label = _("Copyright notice"),\r
-help_text = _("""\r
-The copyright notice visible at the footer of your page.\r
-""")))\r
+help_text = _("The copyright notice visible at the footer of your page.")))\r
 \r
 COMMENT_MAX_LENGTH = Setting('COMMENT_MAX_LENGTH', 600, BASIC_SET, dict(\r
 label = _("Maximum length of comment"),\r
-help_text = _("""\r
-The maximum length a user can enter for a comment.\r
-""")))
\ No newline at end of file
+help_text = _("The maximum length a user can enter for a comment.")))
\ No newline at end of file
index 7a0725bb24bedcf2a69f81f083ad08c579d6ef9a..d95a164c625fe15dd18326289635cf5626140799 100644 (file)
@@ -6,50 +6,36 @@ EMAIL_SET = SettingSet('email', _('Email Settings'), _("Email server and other e
 \r
 EMAIL_HOST = Setting('EMAIL_HOST', '', EMAIL_SET, dict(\r
 label = _("Email Server"),\r
-help_text = _("""\r
-The SMTP server through which your application will be sending emails.\r
-"""),\r
+help_text = _("The SMTP server through which your application will be sending emails."),\r
 required=False))\r
 \r
 EMAIL_PORT = Setting('EMAIL_PORT', 25, EMAIL_SET, dict(\r
 label = _("Email Port"),\r
-help_text = _("""\r
-The port on which your SMTP server is listening to. Usually this is 25, but can be something else.\r
-"""),\r
+help_text = _("The port on which your SMTP server is listening to. Usually this is 25, but can be something else."),\r
 required=False))\r
 \r
 EMAIL_HOST_USER = Setting('EMAIL_HOST_USER', '', EMAIL_SET, dict(\r
 label = _("Email User"),\r
-help_text = _("""\r
-The username for your SMTP connection.\r
-"""),\r
+help_text = _("The username for your SMTP connection."),\r
 required=False))\r
 \r
 EMAIL_HOST_PASSWORD = Setting('EMAIL_HOST_PASSWORD', '', EMAIL_SET, dict(\r
 label = _("Email Password"),\r
-help_text = _("""\r
-The password for your SMTP connection.\r
-"""),\r
+help_text = _("The password for your SMTP connection."),\r
 required=False,\r
 widget=PasswordInput))\r
 \r
 EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
 label = _("Use TLS"),\r
-help_text = _("""\r
-Does your SMTP server uses TLS for authentication.\r
-"""),\r
+help_text = _("Does your SMTP server usFes TLS for authentication."),\r
 required=False))\r
 \r
 DEFAULT_FROM_EMAIL = Setting('DEFAULT_FROM_EMAIL', '', EMAIL_SET, dict(\r
 label = _("Site 'from' email address"),\r
-help_text = _("""\r
-The address that will show up on the 'from' field on emails sent by your website.\r
-"""),\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
-help_text = _("""\r
-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.\r
-"""),\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 easilly set up a filter on theyr email clients."),\r
 required=False))\r
index b57147220d00b242bdb438942e385a185aaf86d6..50fa5ff06882a4911bc8d167adf5bc1b5d44ba12 100644 (file)
@@ -5,14 +5,10 @@ EXT_KEYS_SET = SettingSet('extkeys', _('External Keys'), _("Keys for various ext
 \r
 GOOGLE_SITEMAP_CODE = Setting('GOOGLE_SITEMAP_CODE', '', EXT_KEYS_SET, dict(\r
 label = _("Google sitemap code"),\r
-help_text = """\r
-This is the code you get when you register your site at <a href="https://www.google.com/webmasters/tools/">Google webmaster central</a>.\r
-""",\r
+help_text = _("This is the code you get when you register your site at <a href='https://www.google.com/webmasters/tools/'>Google webmaster central</a>."),\r
 required=False))\r
 \r
 GOOGLE_ANALYTICS_KEY = Setting('GOOGLE_ANALYTICS_KEY', '', EXT_KEYS_SET, dict(\r
 label = _("Google analytics key"),\r
-help_text = """\r
-Your Google analytics key. You can get one at the <a href="http://www.google.com/analytics/">Google analytics official website</a>\r
-""",\r
+help_text = _("Your Google analytics key. You can get one at the <a href='http://www.google.com/analytics/'>Google analytics official website</a>"),\r
 required=False))
\ No newline at end of file
index b392ee9dfcf07424c2f1e327c72fea2fc9ff8430..7170a0355528a50218ae2fac65565af5c05c87cd 100644 (file)
@@ -5,87 +5,59 @@ MIN_REP_SET = SettingSet('minrep', _('Minimum reputation config'), _("Configure
 \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 = _("""\r
-The minimum reputation an user must have to be allowed to vote up.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to vote up.")))\r
 \r
 REP_TO_VOTE_DOWN = Setting('REP_TO_VOTE_DOWN', 100, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to vote down"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to vote down.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to vote down.")))\r
 \r
 REP_TO_FLAG = Setting('REP_TO_FLAG', 15, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to flag a post"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to flag a post.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to flag a post.")))\r
 \r
 REP_TO_COMMENT = Setting('REP_TO_COMMENT', 50, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to comment"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to comment a post.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to comment a post.")))\r
 \r
 REP_TO_LIKE_COMMENT = Setting('REP_TO_LIKE_COMMENT', 15, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to like a comment"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to "like" a comment.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to \"like\" a comment.")))\r
 \r
 REP_TO_UPLOAD = Setting('REP_TO_UPLOAD', 60, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to upload"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to upload a file.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to upload a file.")))\r
 \r
 REP_TO_CLOSE_OWN = Setting('REP_TO_CLOSE_OWN', 250, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to close own question"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to close his own question.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to close his own question.")))\r
 \r
 REP_TO_REOPEN_OWN = Setting('REP_TO_REOPEN_OWN', 500, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to reopen own question"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to reopen his own question.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to reopen his own question.")))\r
 \r
 REP_TO_RETAG = Setting('REP_TO_RETAG', 500, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to retag others questions"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to retag others questions.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to retag others questions.")))\r
 \r
 REP_TO_EDIT_WIKI = Setting('REP_TO_EDIT_WIKI', 750, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to edit wiki posts"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to edit community wiki posts.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to edit community wiki posts.")))\r
 \r
 REP_TO_EDIT_OTHERS = Setting('REP_TO_EDIT_OTHERS', 2000, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to edit others posts"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to edit others posts.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to edit others posts.")))\r
 \r
 REP_TO_CLOSE_OTHERS = Setting('REP_TO_CLOSE_OTHERS', 3000, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to close others posts"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to close others posts.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to close others posts.")))\r
 \r
 REP_TO_DELETE_COMMENTS = Setting('REP_TO_DELETE_COMMENTS', 2000, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to delete comments"),\r
-help_text = _("""\r
-The minimum reputation an user must have to be allowed to delete comments.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to be allowed to delete comments.")))\r
 \r
 REP_TO_VIEW_FLAGS = Setting('REP_TO_VIEW_FLAGS', 2000, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to view offensive flags"),\r
-help_text = _("""\r
-The minimum reputation an user must have to view offensive flags.\r
-""")))\r
+help_text = _("The minimum reputation an user must have to view offensive flags.")))\r
 \r
 #REP_TO_DISABLE_NOFOLLOW = Setting('REP_TO_DISABLE_NOFOLLOW', 2000, MIN_REP_SET, dict(\r
 #label = _("Minimum reputation to disable nofollow"),\r
index 4f5ba9ddc7b11637d48e97a985a4954c180d2b75..f78120d010ad8f6bd4824502e7a6e0ccd4e59dd0 100644 (file)
@@ -5,90 +5,60 @@ REP_GAIN_SET = SettingSet('repgain', _('Reputation gains and losses config'), _(
 \r
 INITIAL_REP = Setting('INITIAL_REP', 1, REP_GAIN_SET, dict(\r
 label = _("Initial reputation"),\r
-help_text = _("""\r
-The initial reputation an user gets when he first signs in.\r
-""")))\r
+help_text = _("The initial reputation an user gets when he first signs in.")))\r
 \r
 MAX_REP_BY_UPVOTE_DAY = Setting('MAX_REP_BY_UPVOTE_DAY', 200, REP_GAIN_SET, dict(\r
 label = "Max rep by up votes / day",\r
-help_text = _("""\r
-Maximum reputation a user can gain in one day for being upvoted.\r
-""")))\r
+help_text = _("Maximum reputation a user can gain in one day for being upvoted.")))\r
 \r
 REP_GAIN_BY_UPVOTED = Setting('REP_GAIN_BY_UPVOTED', 10, REP_GAIN_SET, dict(\r
 label = _("Rep gain by upvoted"),\r
-help_text = _("""\r
-Reputation a user gains for having one of his posts up voted.\r
-""")))\r
+help_text = _("Reputation a user gains for having one of his posts up voted.")))\r
 \r
 REP_LOST_BY_UPVOTE_CANCELED = Setting('REP_LOST_BY_UPVOTE_CANCELED', 10, REP_GAIN_SET, dict(\r
 label = _("Rep lost bu upvote canceled"),\r
-help_text = _("""\r
-Reputation a user loses for having one of the upvotes on his posts canceled.\r
-""")))\r
+help_text = _("Reputation a user loses for having one of the upvotes on his posts canceled.")))\r
 \r
 REP_LOST_BY_DOWNVOTED = Setting('REP_LOST_BY_DOWNVOTED', 2, REP_GAIN_SET, dict(\r
 label = _("Rep lost by downvoted"),\r
-help_text = _("""\r
-Reputation a user loses for having one of his posts down voted.\r
-""")))\r
+help_text = _("Reputation a user loses for having one of his posts down voted.")))\r
 \r
 REP_LOST_BY_DOWNVOTING = Setting('REP_LOST_BY_DOWNVOTING', 1, REP_GAIN_SET, dict(\r
 label = _("Rep lost by downvoting"),\r
-help_text = _("""\r
-Reputation a user loses for down voting a post.\r
-""")))\r
+help_text = _("Reputation a user loses for down voting a post.")))\r
 \r
 REP_GAIN_BY_DOWNVOTE_CANCELED = Setting('REP_GAIN_BY_DOWNVOTE_CANCELED', 2, REP_GAIN_SET, dict(\r
 label = _("Rep gain by downvote canceled"),\r
-help_text = _("""\r
-Reputation a user gains for having one of the downvotes on his posts canceled.\r
-""")))\r
+help_text = _("Reputation a user gains for having one of the downvotes on his posts canceled.")))\r
 \r
 REP_GAIN_BY_CANCELING_DOWNVOTE = Setting('REP_GAIN_BY_CANCELING_DOWNVOTE', 1, REP_GAIN_SET, dict(\r
 label = _("Rep gain by canceling downvote"),\r
-help_text = _("""\r
-Reputation a user gains for canceling a downvote.\r
-""")))\r
+help_text = _("Reputation a user gains for canceling a downvote.")))\r
 \r
 REP_GAIN_BY_ACCEPTED = Setting('REP_GAIN_BY_ACCEPTED', 15, REP_GAIN_SET, dict(\r
 label = _("Rep gain by accepted answer"),\r
-help_text = _("""\r
-Reputation a user gains for having one of his answers accepted.\r
-""")))\r
+help_text = _("Reputation a user gains for having one of his answers accepted.")))\r
 \r
 REP_LOST_BY_ACCEPTED_CANCELED = Setting('REP_LOST_BY_ACCEPTED_CANCELED', 15, REP_GAIN_SET, dict(\r
 label = _("Rep lost by accepted canceled"),\r
-help_text = _("""\r
-Reputation a user loses for having one of his accepted answers canceled.\r
-""")))\r
+help_text = _("Reputation a user loses for having one of his accepted answers canceled.")))\r
 \r
 REP_GAIN_BY_ACCEPTING = Setting('REP_GAIN_BY_ACCEPTING', 2, REP_GAIN_SET, dict(\r
 label = _("Rep gain by accepting answer"),\r
-help_text = _("""\r
-Reputation a user gains for accepting an answer to one of his questions.\r
-""")))\r
+help_text = _("Reputation a user gains for accepting an answer to one of his questions.")))\r
 \r
 REP_LOST_BY_CANCELING_ACCEPTED = Setting('REP_LOST_BY_CANCELING_ACCEPTED', 2, REP_GAIN_SET, dict(\r
 label = _("Rep lost by canceling accepted"),\r
-help_text = _("""\r
-Reputation a user loses by canceling an accepted answer.\r
-""")))\r
+help_text = _("Reputation a user loses by canceling an accepted answer.")))\r
 \r
 REP_LOST_BY_FLAGGED = Setting('REP_LOST_BY_FLAGGED', 2, REP_GAIN_SET, dict(\r
 label = _("Rep lost by post flagged"),\r
-help_text = _("""\r
-Reputation a user loses by having one of his posts flagged.\r
-""")))\r
+help_text = _("Reputation a user loses by having one of his posts flagged.")))\r
 \r
 REP_LOST_BY_FLAGGED_3_TIMES = Setting('REP_LOST_BY_FLAGGED_3_TIMES', 30, REP_GAIN_SET, dict(\r
 label = _("Rep lost by post flagged and hidden"),\r
-help_text = _("""\r
-Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to hide the post.\r
-""")))\r
+help_text = _("Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to hide the post.")))\r
 \r
 REP_LOST_BY_FLAGGED_5_TIMES = Setting('REP_LOST_BY_FLAGGED_5_TIMES', 100, REP_GAIN_SET, dict(\r
 label = _("Rep lost by post flagged and deleted"),\r
-help_text = _("""\r
-Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to delete the post.\r
-""")))
\ No newline at end of file
+help_text = _("Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to delete the post.")))
\ No newline at end of file
index 95a3ca1497f021f0daacde256dd22eaa4a56e900..6e66e0076df8304cfd3d0ce6d9827c7954d3b9c3 100644 (file)
@@ -2,24 +2,16 @@ import os.path
 from base import Setting, SettingSet\r
 from django.utils.translation import ugettext_lazy as _\r
 \r
-UPLOAD_SET = SettingSet('paths', _('File upload settings'), _("""\r
-File uploads related settings.\r
-"""), 600)\r
+UPLOAD_SET = SettingSet('paths', _('File upload settings'), _("File uploads related settings."), 600)\r
 \r
 UPFILES_FOLDER = Setting('UPFILES_FOLDER', os.path.join(os.path.dirname(os.path.dirname(__file__)),'upfiles'), UPLOAD_SET, dict(\r
 label = _("Uploaded files folder"),\r
-help_text = _("""\r
-The filesystem path where uploaded files will be stored. Please note that this folder must exist.\r
-""")))\r
+help_text = _("The filesystem path where uploaded files will be stored. Please note that this folder must exist.")))\r
 \r
 UPFILES_ALIAS = Setting('UPFILES_ALIAS', '/upfiles/', UPLOAD_SET, dict(\r
 label = _("Uploaded files alias"),\r
-help_text = _("""\r
-The url alias for uploaded files. Notice that if you change this setting, you'll need to restart your site.\r
-""")))\r
+help_text = _("The url alias for uploaded files. Notice that if you change this setting, you'll need to restart your site.")))\r
 \r
 ALLOW_MAX_FILE_SIZE = Setting('ALLOW_MAX_FILE_SIZE', 2.5, UPLOAD_SET, dict(\r
 label = _("Max file size"),\r
-help_text = _("""\r
-The maximum allowed file size for uploads in mb.\r
-""")))
\ No newline at end of file
+help_text = _("The maximum allowed file size for uploads in mb.")))
\ No newline at end of file
index 8a2854c5df3c4c2a445ef75e5ed92a47702aa832..7c43ea3995366d8816b56a45b77dc64c6bb58896 100644 (file)
@@ -5,36 +5,24 @@ VOTE_RULES_SET = SettingSet('voting', _('Voting rules'), _("Configure the voting
 \r
 MAX_VOTES_PER_DAY = Setting('MAX_VOTES_PER_DAY', 30, VOTE_RULES_SET, dict(\r
 label = _("Maximum votes per day"),\r
-help_text = _("""\r
-The maximum number of votes an user can cast per day.\r
-""")))\r
+help_text = _("The maximum number of votes an user can cast per day.")))\r
 \r
 START_WARN_VOTES_LEFT = Setting('START_WARN_VOTES_LEFT', 10, VOTE_RULES_SET, dict(\r
 label = _("Start warning about votes left"),\r
-help_text = _("""\r
-From how many votes left should an user start to be warned about it.\r
-""")))\r
+help_text = _("From how many votes left should an user start to be warned about it.")))\r
 \r
 MAX_FLAGS_PER_DAY = Setting('MAX_FLAGS_PER_DAY', 5, VOTE_RULES_SET, dict(\r
 label = _("Maximum flags per day"),\r
-help_text = _("""\r
-The maximum number of times an can flag a post per day.\r
-""")))\r
+help_text = _("The maximum number of times an can flag a post per day.")))\r
 \r
 FLAG_COUNT_TO_HIDE_POST = Setting('FLAG_COUNT_TO_HIDE_POST', 3, VOTE_RULES_SET, dict(\r
 label = _("Flag count to hide post"),\r
-help_text = _("""\r
-How many times a post needs to be flagged to be hidden from the main page.\r
-""")))\r
+help_text = _("How many times a post needs to be flagged to be hidden from the main page.")))\r
 \r
 FLAG_COUNT_TO_DELETE_POST = Setting('FLAG_COUNT_TO_DELETE_POST', 5, VOTE_RULES_SET, dict(\r
 label = _("Flag count to delete post"),\r
-help_text = _("""\r
-How many times a post needs to be flagged to be deleted.\r
-""")))\r
+help_text = _("How many times a post needs to be flagged to be deleted.")))\r
 \r
 DENY_UNVOTE_DAYS = Setting('DENY_UNVOTE_DAYS', 1, VOTE_RULES_SET, dict(\r
 label = _("Days to cancel a vote"),\r
-help_text = _("""\r
-How many days an user can cancel a vote after he originaly casted it.\r
-""")))
\ No newline at end of file
+help_text = _("How many days an user can cancel a vote after he originaly casted it.")))
\ No newline at end of file
index e6a0eb8aa71b2646049def91c3c7819501348689..8bf1fb47ea8875369459f21f8eeaf90067f29f02 100644 (file)
@@ -1,6 +1,7 @@
 import startup
 
 import os.path
+from django.conf import settings
 from django.conf.urls.defaults import *
 from django.contrib import admin
 from forum import views as app
@@ -138,3 +139,7 @@ urlpatterns += patterns('',
     url(r'^feeds/rss/$', RssLastestQuestionsFeed, name="latest_questions_feed"),
 )
 
+if 'rosetta' in settings.INSTALLED_APPS:
+    urlpatterns += patterns('',
+        url(r'^rosetta/', include('rosetta.urls')),
+    )
\ No newline at end of file
index 385fe3c85dfe612acf7a4fb71f03edd37c3bdb06..369782d4397a63a361bc39309453504748568013 100644 (file)
Binary files a/locale/en/LC_MESSAGES/django.mo and b/locale/en/LC_MESSAGES/django.mo differ
index e8cf9ba3280aba913d39051c09c93157a8e81aaa..ef15ba63215db04b5fea6982121bd1190c62cba0 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-01 19:51-0500\n"
+"POT-Creation-Date: 2010-04-28 16:01-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,22 +16,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: forum/auth.py:484
-msgid "Your question and all of it's answers have been deleted"
-msgstr ""
-
-#: forum/auth.py:486
-msgid "Your question has been deleted"
-msgstr ""
-
-#: forum/auth.py:489
-msgid "The question and all of it's answers have been deleted"
-msgstr ""
-
-#: forum/auth.py:491
-msgid "The question has been deleted"
-msgstr ""
-
 #: forum/const.py:8
 msgid "duplicate question"
 msgstr ""
@@ -56,124 +40,137 @@ msgstr ""
 msgid "problem is not reproducible or outdated"
 msgstr ""
 
-#: forum/const.py:15
+#: forum/const.py:14
 msgid "question contains offensive inappropriate, or malicious remarks"
 msgstr ""
 
-#: forum/const.py:16
+#: forum/const.py:15
 msgid "spam or advertising"
 msgstr ""
 
-#: forum/const.py:57
+#: forum/const.py:71 forum/skins/default/templates/osqaadmin/index.html:21
 msgid "question"
 msgstr ""
 
-#: forum/const.py:58 forum/skins/default/templates/book.html:110
+#: forum/const.py:72 forum/skins/default/templates/book.html:110
+#: forum/skins/default/templates/osqaadmin/index.html:26
 msgid "answer"
 msgstr ""
 
-#: forum/const.py:59
+#: forum/const.py:73
 msgid "commented question"
 msgstr ""
 
-#: forum/const.py:60
+#: forum/const.py:74
 msgid "commented answer"
 msgstr ""
 
-#: forum/const.py:61
+#: forum/const.py:75
 msgid "edited question"
 msgstr ""
 
-#: forum/const.py:62
+#: forum/const.py:76
 msgid "edited answer"
 msgstr ""
 
-#: forum/const.py:63
+#: forum/const.py:77
 msgid "received award"
 msgstr "received badge"
 
-#: forum/const.py:64
+#: forum/const.py:78
 msgid "marked best answer"
 msgstr ""
 
-#: forum/const.py:65
+#: forum/const.py:79
 msgid "upvoted"
 msgstr ""
 
-#: forum/const.py:66
+#: forum/const.py:80
 msgid "downvoted"
 msgstr ""
 
-#: forum/const.py:67
-msgid "canceled vote"
+#: forum/const.py:81
+msgid "upvote canceled"
+msgstr ""
+
+#: forum/const.py:82
+msgid "downvote canceled"
 msgstr ""
 
-#: forum/const.py:68
+#: forum/const.py:83
 msgid "deleted question"
 msgstr ""
 
-#: forum/const.py:69
+#: forum/const.py:84
 msgid "deleted answer"
 msgstr ""
 
-#: forum/const.py:70
+#: forum/const.py:85
 msgid "marked offensive"
 msgstr ""
 
-#: forum/const.py:71
+#: forum/const.py:86
 msgid "updated tags"
 msgstr ""
 
-#: forum/const.py:72
+#: forum/const.py:87
 msgid "selected favorite"
 msgstr ""
 
-#: forum/const.py:73
+#: forum/const.py:88
 msgid "completed user profile"
 msgstr ""
 
-#: forum/const.py:74
+#: forum/const.py:89
 msgid "email update sent to user"
 msgstr ""
 
-#: forum/const.py:78
+#: forum/const.py:93
 msgid "question_answered"
 msgstr "answer"
 
-#: forum/const.py:79
+#: forum/const.py:94
 msgid "question_commented"
 msgstr "question comment"
 
-#: forum/const.py:80
+#: forum/const.py:95
 msgid "answer_commented"
 msgstr "answer comment"
 
-#: forum/const.py:81
+#: forum/const.py:96
 msgid "answer_accepted"
 msgstr "answer accepted"
 
-#: forum/const.py:85
+#: forum/const.py:100
 msgid "[closed]"
 msgstr ""
 
-#: forum/const.py:86
+#: forum/const.py:101
 msgid "[deleted]"
 msgstr ""
 
-#: forum/const.py:87 forum/views/readers.py:564 forum/views/readers.py:583
+#: forum/const.py:102
 msgid "initial version"
 msgstr ""
 
-#: forum/const.py:88
+#: forum/const.py:103
 msgid "retagged"
 msgstr ""
 
-#: forum/const.py:92
-msgid "exclude ignored tags"
+#: forum/const.py:111
+msgid "Instantly"
+msgstr ""
+
+#: forum/const.py:112
+msgid "Daily"
+msgstr ""
+
+#: forum/const.py:113
+msgid "Weekly"
 msgstr ""
 
-#: forum/const.py:92
-msgid "allow only selected tags"
+#: forum/const.py:114
+msgid "No notifications"
 msgstr ""
 
 #: forum/feed.py:18
@@ -184,422 +181,465 @@ msgstr ""
 msgid "latest questions"
 msgstr ""
 
-#: forum/forms.py:22 forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/forms.py:21 forum/skins/default/templates/answer_edit_tips.html:35
 #: forum/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:32
 #: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
 msgid "title"
 msgstr ""
 
-#: forum/forms.py:23
+#: forum/forms.py:22
 msgid "please enter a descriptive title for your question"
 msgstr ""
 
-#: forum/forms.py:28
+#: forum/forms.py:27
 msgid "title must be > 10 characters"
 msgstr ""
 
-#: forum/forms.py:37
+#: forum/forms.py:36
 msgid "content"
 msgstr ""
 
-#: forum/forms.py:43
+#: forum/forms.py:42
 msgid "question content must be > 10 characters"
 msgstr ""
 
-#: forum/forms.py:53 forum/skins/default/templates/header.html:28
+#: forum/forms.py:52 forum/skins/default/templates/header.html:31
 #: forum/skins/default/templates/header.html:56
 msgid "tags"
 msgstr ""
 
-#: forum/forms.py:55
+#: forum/forms.py:54
 msgid ""
 "Tags are short keywords, with no spaces within. Up to five tags can be used."
 msgstr ""
 
-#: forum/forms.py:62 forum/skins/default/templates/question_retag.html:39
+#: forum/forms.py:61 forum/skins/default/templates/question_retag.html:43
 msgid "tags are required"
 msgstr ""
 
-#: forum/forms.py:68
+#: forum/forms.py:67
 msgid "please use 5 tags or less"
 msgstr ""
 
-#: forum/forms.py:71
+#: forum/forms.py:72
 msgid "tags must be shorter than 20 characters"
 msgstr ""
 
-#: forum/forms.py:75
+#: forum/forms.py:74
 msgid ""
 "please use following characters in tags: letters 'a-z', numbers, and "
 "characters '.-_#'"
 msgstr ""
 
-#: forum/forms.py:85
+#: forum/forms.py:84
 #: forum/skins/default/templates/post_contributor_info.html:7
 #: forum/skins/default/templates/question_summary_list_roll.html:26
 #: forum/skins/default/templates/question_summary_list_roll.html:38
-#: forum/skins/default/templates/questions.html:92
-#: forum/skins/default/templates/questions.html:104
 msgid "community wiki"
 msgstr ""
 
-#: forum/forms.py:86
+#: forum/forms.py:85
 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.py:102
+#: forum/forms.py:101
 msgid "update summary:"
 msgstr ""
 
-#: forum/forms.py:103
+#: forum/forms.py:102
 msgid ""
 "enter a brief summary of your revision (e.g. fixed spelling, grammar, "
 "improved style, this field is optional)"
 msgstr ""
 
-#: forum/forms.py:106
+#: forum/forms.py:105
 msgid "Automatically accept user's contributions for the email updates"
 msgstr ""
 
-#: forum/forms.py:122
+#: forum/forms.py:118
 msgid "Your name:"
 msgstr ""
 
-#: forum/forms.py:123
+#: forum/forms.py:119
 msgid "Email (not shared with anyone):"
 msgstr ""
 
-#: forum/forms.py:124
+#: forum/forms.py:120
 msgid "Your message:"
 msgstr ""
 
-#: forum/forms.py:206
+#: forum/forms.py:202
 msgid "this email does not have to be linked to gravatar"
 msgstr ""
 
-#: forum/forms.py:208
+#: forum/forms.py:204
 msgid "Screen name"
 msgstr ""
 
-#: forum/forms.py:209
+#: forum/forms.py:205
 msgid "Real name"
 msgstr ""
 
-#: forum/forms.py:210
+#: forum/forms.py:206
 msgid "Website"
 msgstr ""
 
-#: forum/forms.py:211
+#: forum/forms.py:207
 msgid "Location"
 msgstr ""
 
-#: forum/forms.py:212
+#: forum/forms.py:208
 msgid "Date of birth"
 msgstr ""
 
-#: forum/forms.py:212
+#: forum/forms.py:208
 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
 msgstr ""
 
-#: forum/forms.py:213 forum/skins/default/templates/account_settings.html:21
-#: forum/skins/default/templates/authopenid/settings.html:21
+#: forum/forms.py:209 forum/skins/default/templates/account_settings.html:21
 msgid "Profile"
 msgstr ""
 
-#: forum/forms.py:244 forum/forms.py:245
+#: forum/forms.py:240 forum/forms.py:241
 msgid "this email has already been registered, please use another one"
 msgstr ""
 
-#: forum/forms.py:251
-msgid "Choose email tag filter"
-msgstr ""
-
-#: forum/forms.py:269
-msgid "Current password"
-msgstr ""
-
-#: forum/forms.py:280
-msgid ""
-"Old password is incorrect.                     Please enter the correct "
-"password."
-msgstr ""
-
-#: forum/forms.py:285 forum/forms.py:286
-msgid "weekly"
-msgstr ""
-
-#: forum/forms.py:285 forum/forms.py:286
-msgid "no email"
-msgstr ""
-
-#: forum/forms.py:286
-msgid "daily"
+#: forum/subscriptions.py:41
+#, python-format
+msgid "New question on %(app_name)s"
 msgstr ""
 
-#: forum/forms.py:301
-msgid "Asked by me"
-msgstr ""
+#: forum/subscriptions.py:73
+#, fuzzy, python-format
+msgid "New answer to '%(question_title)s'"
+msgstr "Post Your Answer"
 
-#: forum/forms.py:304
-msgid "Answered by me"
+#: forum/subscriptions.py:112
+#, python-format
+msgid "New comment on %(question_title)s"
 msgstr ""
 
-#: forum/forms.py:307
-msgid "Individually selected"
+#: forum/subscriptions.py:136
+#, python-format
+msgid "An answer to '%(question_title)s' was accepted"
 msgstr ""
 
-#: forum/forms.py:310
-msgid "Entire forum (tag filtered)"
+#: forum/subscriptions.py:156
+#, python-format
+msgid "%(username)s is a new member on %(app_name)s"
 msgstr ""
 
-#: forum/urls.py:28
+#: forum/urls.py:44
 msgid "upfiles/"
 msgstr ""
 
-#: forum/urls.py:33
+#: forum/urls.py:49
 msgid "about/"
 msgstr ""
 
-#: forum/urls.py:34
+#: forum/urls.py:50
 msgid "faq/"
 msgstr ""
 
-#: forum/urls.py:35
+#: forum/urls.py:51
 msgid "privacy/"
 msgstr ""
 
-#: forum/urls.py:36
+#: forum/urls.py:52
 msgid "logout/"
 msgstr ""
 
-#: forum/urls.py:37 forum/urls.py:38 forum/urls.py:39 forum/urls.py:56
+#: forum/urls.py:53 forum/urls.py:54
 msgid "answers/"
 msgstr ""
 
-#: forum/urls.py:37 forum/urls.py:49 forum/urls.py:52 forum/urls.py:56
-msgid "comments/"
-msgstr ""
-
-#: forum/urls.py:38 forum/urls.py:43 forum/urls.py:78
-#: forum/skins/default/templates/user_info.html:45
+#: forum/urls.py:53 forum/urls.py:58 forum/urls.py:98
+#: forum/skins/default/templates/users/info.html:44
 msgid "edit/"
 msgstr ""
 
-#: forum/urls.py:39 forum/urls.py:48
+#: forum/urls.py:54 forum/urls.py:74
 msgid "revisions/"
 msgstr ""
 
-#: forum/urls.py:40 forum/urls.py:41 forum/urls.py:42 forum/urls.py:43
-#: forum/urls.py:44 forum/urls.py:45 forum/urls.py:46 forum/urls.py:47
-#: forum/urls.py:48 forum/urls.py:49 forum/urls.py:52
+#: forum/urls.py:55 forum/urls.py:56 forum/urls.py:57 forum/urls.py:58
+#: forum/urls.py:59 forum/urls.py:60 forum/urls.py:61 forum/urls.py:74
 msgid "questions/"
 msgstr ""
 
-#: forum/urls.py:41 forum_modules/books/urls.py:8
+#: forum/urls.py:56 forum_modules/books/urls.py:8
 msgid "ask/"
 msgstr ""
 
-#: forum/urls.py:42
+#: forum/urls.py:57
 msgid "unanswered/"
 msgstr ""
 
-#: forum/urls.py:44
+#: forum/urls.py:59
 msgid "close/"
 msgstr ""
 
-#: forum/urls.py:45
+#: forum/urls.py:60
 msgid "reopen/"
 msgstr ""
 
-#: forum/urls.py:46
+#: forum/urls.py:61
 msgid "answer/"
 msgstr ""
 
-#: forum/urls.py:47
+#: forum/urls.py:63
 msgid "vote/"
 msgstr ""
 
-#: forum/urls.py:50
-msgid "command/"
+#: forum/urls.py:64
+#, fuzzy
+msgid "like_comment/"
+msgstr "answer comment"
+
+#: forum/urls.py:65
+#, fuzzy
+msgid "comment/"
+msgstr "post a comment"
+
+#: forum/urls.py:66
+#, fuzzy
+msgid "delete_comment/"
+msgstr "post a comment"
+
+#: forum/urls.py:67
+msgid "accept_answer/"
+msgstr ""
+
+#: forum/urls.py:68
+msgid "mark_favorite/"
+msgstr ""
+
+#: forum/urls.py:69
+msgid "flag/"
 msgstr ""
 
-#: forum/urls.py:52 forum/urls.py:56
+#: forum/urls.py:70
 msgid "delete/"
 msgstr ""
 
-#: forum/urls.py:60 forum/views/readers.py:435
+#: forum/urls.py:71
+msgid "subscribe/"
+msgstr ""
+
+#: forum/urls.py:72
+msgid "matching_tags/"
+msgstr ""
+
+#: forum/urls.py:75
+msgid "command/"
+msgstr ""
+
+#: forum/urls.py:78
 msgid "question/"
 msgstr ""
 
-#: forum/urls.py:61 forum/urls.py:62
+#: forum/urls.py:79 forum/urls.py:80
 msgid "tags/"
 msgstr ""
 
-#: forum/urls.py:64 forum/urls.py:68
+#: forum/urls.py:82 forum/urls.py:86
 msgid "mark-tag/"
 msgstr ""
 
-#: forum/urls.py:64
+#: forum/urls.py:82
 msgid "interesting/"
 msgstr ""
 
-#: forum/urls.py:68
+#: forum/urls.py:86
 msgid "ignored/"
 msgstr ""
 
-#: forum/urls.py:72
+#: forum/urls.py:90
 msgid "unmark-tag/"
 msgstr ""
 
-#: forum/urls.py:76 forum/urls.py:78 forum/urls.py:79
+#: forum/urls.py:96 forum/urls.py:98 forum/urls.py:100 forum/urls.py:101
+#: forum/urls.py:102 forum/urls.py:103 forum/urls.py:104 forum/urls.py:105
+#: forum/models/user.py:124
 msgid "users/"
 msgstr ""
 
-#: forum/urls.py:77
+#: forum/urls.py:97
 msgid "moderate-user/"
 msgstr ""
 
-#: forum/urls.py:80 forum/urls.py:81
+#: forum/urls.py:100
+msgid "subscriptions/"
+msgstr ""
+
+#: forum/urls.py:101
+msgid "favorites/"
+msgstr ""
+
+#: forum/urls.py:102
+#, fuzzy
+msgid "reputation/"
+msgstr "karma"
+
+#: forum/urls.py:103
+msgid "votes/"
+msgstr ""
+
+#: forum/urls.py:104
+msgid "recent/"
+msgstr ""
+
+#: forum/urls.py:107 forum/urls.py:108
 msgid "badges/"
 msgstr ""
 
-#: forum/urls.py:82
+#: forum/urls.py:109
 msgid "messages/"
 msgstr ""
 
-#: forum/urls.py:82
+#: forum/urls.py:109
 msgid "markread/"
 msgstr ""
 
-#: forum/urls.py:84
+#: forum/urls.py:111
 msgid "nimda/"
 msgstr ""
 
-#: forum/urls.py:86
+#: forum/urls.py:113
 msgid "upload/"
 msgstr ""
 
-#: forum/urls.py:87
+#: forum/urls.py:114
 msgid "search/"
 msgstr ""
 
-#: forum/urls.py:88
+#: forum/urls.py:115
 msgid "feedback/"
 msgstr ""
 
-#: forum/urls.py:93 forum/urls.py:94 forum/urls.py:95 forum/urls.py:96
-#: forum/urls.py:97 forum/urls.py:98 forum/urls.py:100 forum/urls.py:102
+#: forum/urls.py:119 forum/urls.py:120 forum/urls.py:121 forum/urls.py:122
+#: forum/urls.py:123 forum/urls.py:124 forum/urls.py:125 forum/urls.py:126
+#: forum/urls.py:127 forum/urls.py:128 forum/urls.py:129 forum/urls.py:130
 #: forum_modules/localauth/urls.py:7
 msgid "account/"
 msgstr ""
 
-#: forum/urls.py:93 forum/urls.py:95 forum/urls.py:96
+#: forum/urls.py:119 forum/urls.py:121 forum/urls.py:122
 msgid "signin/"
 msgstr ""
 
-#: forum/urls.py:94
+#: forum/urls.py:120
 msgid "signout/"
 msgstr ""
 
-#: forum/urls.py:97
+#: forum/urls.py:123
 msgid "done/"
 msgstr ""
 
-#: forum/urls.py:98 forum_modules/localauth/urls.py:7
+#: forum/urls.py:124 forum_modules/localauth/urls.py:7
 msgid "register/"
 msgstr ""
 
-#: forum/urls.py:100
-msgid "password/"
+#: forum/urls.py:125
+msgid "validate/"
 msgstr ""
 
-#: forum/authentication/forms.py:17
-msgid "okay, let's try!"
+#: forum/urls.py:126 forum/urls.py:127
+msgid "tempsignin/"
 msgstr ""
 
-#: forum/authentication/forms.py:18
-msgid "no OSQA community email please, thanks"
+#: forum/urls.py:128
+msgid "authsettings/"
+msgstr ""
+
+#: forum/urls.py:129 forum/urls.py:130
+msgid "providers/"
+msgstr ""
+
+#: forum/urls.py:129
+msgid "remove/"
+msgstr ""
+
+#: forum/urls.py:130
+msgid "add/"
+msgstr ""
+
+#: forum/urls.py:133 forum/urls.py:134 forum/urls.py:135 forum/urls.py:136
+#: forum/urls.py:137 forum_modules/sximporter/urls.py:8
+msgid "admin/"
+msgstr ""
+
+#: forum/urls.py:134
+msgid "denormalize/"
+msgstr ""
+
+#: forum/urls.py:135
+msgid "go_bootstrap/"
+msgstr ""
+
+#: forum/urls.py:136
+msgid "go_defaults/"
 msgstr ""
 
 #: forum/authentication/forms.py:21
-msgid "please choose one of the options above"
+#, fuzzy
+msgid "Your account email"
 msgstr ""
+"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+"anyone, must be valid)"
 
-#: forum/management/commands/send_email_alerts.py:156
-msgid "email update message subject"
-msgstr "news from Q&A forum"
+#: forum/authentication/forms.py:23
+msgid "You cannot leave this field blank"
+msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:158
-#, python-format
-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>"
+#: forum/authentication/forms.py:24 forum/utils/forms.py:107
+msgid "please enter a valid email address"
+msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:169
-msgid "new question"
+#: forum/authentication/forms.py:32
+msgid "Sorry, but this email is not on our database."
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:179
-#, python-format
-msgid "There is also one question which was recently "
-msgid_plural ""
-"There are also %(num)d more questions which were recently updated "
-msgstr[0] ""
-msgstr[1] ""
+#: forum/authentication/forms.py:40
+msgid "okay, let's try!"
+msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:184
-msgid ""
-"Perhaps you could look up previously sent forum reminders in your mailbox."
+#: forum/authentication/forms.py:41
+msgid "no OSQA community email please, thanks"
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:188
-#, python-format
-msgid ""
-"go to %(link)s to change frequency of email updates or %(email)s "
-"administrator"
+#: forum/authentication/forms.py:44
+msgid "please choose one of the options above"
 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>"
 
-#: forum/middleware/anon_user.py:34
-#, python-format
-msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
+#: forum/authentication/forms.py:51
+msgid "Current password"
 msgstr ""
 
-#: forum/models/question.py:247
-#, python-format
-msgid "%(author)s modified the question"
+#: forum/authentication/forms.py:62
+msgid ""
+"Old password is incorrect.                     Please enter the correct "
+"password."
 msgstr ""
 
-#: forum/models/question.py:251
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
+#: forum/management/commands/send_email_alerts.py:56
+msgid "Daily digest"
 msgstr ""
 
-#: forum/models/question.py:256
+#: forum/middleware/anon_user.py:34
 #, python-format
-msgid "%(people)s commented the question"
+msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
 msgstr ""
 
-#: forum/models/question.py:261
-#, python-format
-msgid "%(people)s commented answers"
+#: forum/models/question.py:30
+msgid "[closed] "
 msgstr ""
 
-#: forum/models/question.py:263
-#, python-format
-msgid "%(people)s commented an answer"
+#: forum/models/question.py:33
+msgid "[deleted] "
 msgstr ""
 
 #: forum/models/repute.py:13 forum/skins/default/templates/badges.html:53
@@ -614,1935 +654,2729 @@ msgstr ""
 msgid "bronze"
 msgstr ""
 
-#: forum/models/tag.py:79
+#: forum/models/tag.py:28
 msgid "interesting"
 msgstr ""
 
-#: forum/models/tag.py:79
+#: forum/models/tag.py:28
 msgid "ignored"
 msgstr ""
 
-#: forum/models/user.py:33
-msgid "Entire forum"
+#: forum/models/user.py:255
+#: forum/skins/default/templates/post_contributor_info.html:19
+msgid "asked"
 msgstr ""
 
-#: forum/models/user.py:34
-msgid "Questions that I asked"
+#: forum/models/user.py:257
+#: forum/skins/default/templates/post_contributor_info.html:22
+msgid "answered"
 msgstr ""
 
-#: forum/models/user.py:35
-msgid "Questions that I answered"
+#: forum/models/user.py:259
+msgid "marked an answer"
 msgstr ""
 
-#: forum/models/user.py:36
-msgid "Individually selected questions"
-msgstr ""
+#: forum/models/user.py:261
+#, fuzzy
+msgid "edited a question"
+msgstr "Post Your Answer"
 
-#: forum/models/user.py:39
-msgid "Weekly"
-msgstr ""
+#: forum/models/user.py:263
+#, fuzzy
+msgid "commented a question"
+msgstr "list of all questions"
 
-#: forum/models/user.py:40
-msgid "Daily"
+#: forum/models/user.py:265
+#, fuzzy
+msgid "commented an answer"
+msgstr "oldest"
+
+#: forum/models/user.py:267
+#, fuzzy
+msgid "edited an answer"
+msgstr "oldest"
+
+#: forum/models/user.py:269
+#, fuzzy
+msgid "received badge"
+msgstr "received badge"
+
+#: forum/settings/__init__.py:20
+msgid "Badges config"
 msgstr ""
 
-#: forum/models/user.py:41
-msgid "No email"
+#: forum/settings/__init__.py:20
+msgid "Configure badges on your OSQA site."
 msgstr ""
 
-#: forum/skins/default/templates/404.html:24
-msgid "Sorry, could not find the page you requested."
+#: forum/settings/basic.py:9
+msgid "Basic Settings"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:26
-msgid "This might have happened for the following reasons:"
+#: forum/settings/basic.py:9
+msgid "The basic settings for your application"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:28
-msgid "this question or answer has been deleted;"
+#: forum/settings/basic.py:12
+msgid "Application logo"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:29
-msgid "url has error - please check it;"
+#: 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/skins/default/templates/404.html:30
-msgid ""
-"the page you tried to visit is protected or you don't have sufficient "
-"points, see"
+#: forum/settings/basic.py:17
+msgid "Favicon"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:31
-msgid "if you believe this error 404 should not have occured, please"
+#: forum/settings/basic.py:18
+msgid "Your site favicon."
 msgstr ""
 
-#: forum/skins/default/templates/404.html:32
-msgid "report this problem"
+#: forum/settings/basic.py:22
+msgid "Application title"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:41
-#: forum/skins/default/templates/500.html:27
-msgid "back to previous page"
+#: forum/settings/basic.py:23
+msgid "The title of your application that will show in the browsers title bar"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:42
-msgid "see all questions"
+#: forum/settings/basic.py:26
+msgid "Application short name"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:43
-msgid "see all tags"
+#: forum/settings/basic.py:30
+msgid "Application keywords"
 msgstr ""
 
-#: forum/skins/default/templates/500.html:22
-msgid "sorry, system error"
+#: forum/settings/basic.py:31
+msgid "The meta keywords that will be available through the HTML meta tags."
 msgstr ""
 
-#: forum/skins/default/templates/500.html:24
-msgid "system error log is recorded, error will be fixed as soon as possible"
+#: 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/skins/default/templates/500.html:25
-msgid "please report the error to the site administrators if you wish"
+#: forum/settings/basic.py:35
+msgid "The description of your application"
 msgstr ""
 
-#: forum/skins/default/templates/500.html:28
-msgid "see latest questions"
+#: forum/settings/basic.py:39
+msgid "Application intro"
 msgstr ""
 
-#: forum/skins/default/templates/500.html:29
-msgid "see tags"
+#: forum/settings/basic.py:40
+msgid ""
+"The introductory page that is visible in the sidebar for anonymous users."
 msgstr ""
 
-#: forum/skins/default/templates/about.html:6
-#: forum/skins/default/templates/about.html:11
-msgid "About"
+#: forum/settings/basic.py:44
+msgid "Copyright notice"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:4
-#: forum/skins/default/templates/authopenid/settings.html:4
-msgid "Account functions"
+#: forum/settings/basic.py:45
+msgid "The copyright notice visible at the footer of your page."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:29
-#: forum/skins/default/templates/changepw.html:5
-#: forum/skins/default/templates/changepw.html:14
-#: forum/skins/default/templates/authopenid/changepw.html:5
-#: forum/skins/default/templates/authopenid/changepw.html:14
-#: forum/skins/default/templates/authopenid/settings.html:29
-msgid "Change password"
+#: forum/settings/basic.py:48
+msgid "Maximum length of comment"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:30
-#: forum/skins/default/templates/authopenid/settings.html:30
-msgid "Give your  account a new password."
+#: forum/settings/basic.py:49
+msgid "The maximum length a user can enter for a comment."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:32
-#: forum/skins/default/templates/authopenid/settings.html:31
-msgid "Change email "
+#: forum/settings/email.py:5
+msgid "Email Settings"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:33
-#: forum/skins/default/templates/authopenid/settings.html:32
-msgid "Add or update the email address associated with your account."
+#: forum/settings/email.py:5
+msgid "Email server and other email related settings."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:35
-#: forum/skins/default/templates/authopenid/changeopenid.html:4
-#: forum/skins/default/templates/authopenid/changeopenid.html:30
-#: forum/skins/default/templates/authopenid/settings.html:34
-msgid "Change OpenID"
+#: forum/settings/email.py:8
+msgid "Email Server"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:36
-#: forum/skins/default/templates/authopenid/settings.html:35
-msgid "Change openid associated to your account"
+#: forum/settings/email.py:9
+msgid "The SMTP server through which your application will be sending emails."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:39
-#: forum/skins/default/templates/authopenid/delete.html:4
-#: forum/skins/default/templates/authopenid/settings.html:38
-msgid "Delete account"
+#: forum/settings/email.py:13
+msgid "Email Port"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:40
-#: forum/skins/default/templates/authopenid/settings.html:39
-msgid "Erase your username and all your data from website"
+#: 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/skins/default/templates/answer_edit.html:5
-#: forum/skins/default/templates/answer_edit.html:48
-msgid "Edit answer"
+#: forum/settings/email.py:18
+msgid "Email User"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:25
-#: forum/skins/default/templates/answer_edit.html:28
-#: forum/skins/default/templates/ask.html:26
-#: forum/skins/default/templates/ask.html:29
-#: forum/skins/default/templates/question.html:45
-#: forum/skins/default/templates/question.html:48
-#: forum/skins/default/templates/question_edit.html:25
-#: forum/skins/default/templates/question_edit.html:28
-msgid "hide preview"
+#: forum/settings/email.py:19
+msgid "The username for your SMTP connection."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:28
-#: forum/skins/default/templates/ask.html:29
-#: forum/skins/default/templates/question.html:48
-#: forum/skins/default/templates/question_edit.html:28
-msgid "show preview"
+#: forum/settings/email.py:23
+msgid "Email Password"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:48
-#: forum/skins/default/templates/question_edit.html:66
-#: forum/skins/default/templates/question_retag.html:53
-#: forum/skins/default/templates/revisions_answer.html:38
-#: forum/skins/default/templates/revisions_question.html:38
-msgid "back"
+#: forum/settings/email.py:24
+msgid "The password for your SMTP connection."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:53
-#: forum/skins/default/templates/question_edit.html:71
-#: forum/skins/default/templates/revisions_answer.html:52
-#: forum/skins/default/templates/revisions_question.html:52
-msgid "revision"
+#: forum/settings/email.py:29
+msgid "Use TLS"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:56
-#: forum/skins/default/templates/question_edit.html:75
-msgid "select revision"
+#: forum/settings/email.py:30
+msgid "Does your SMTP server usFes TLS for authentication."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:63
-#: forum/skins/default/templates/ask.html:97
-#: forum/skins/default/templates/question.html:432
-#: forum/skins/default/templates/question_edit.html:92
-msgid "Toggle the real time Markdown editor preview"
+#: 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/skins/default/templates/answer_edit.html:63
-#: forum/skins/default/templates/ask.html:97
-#: forum/skins/default/templates/question.html:433
-#: forum/skins/default/templates/question_edit.html:92
-msgid "toggle preview"
+#: 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/skins/default/templates/answer_edit.html:72
-#: forum/skins/default/templates/question_edit.html:118
-#: forum/skins/default/templates/question_retag.html:74
-msgid "Save edit"
+#: forum/settings/extkeys.py:4
+msgid "External Keys"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:73
-#: forum/skins/default/templates/close.html:29
-#: forum/skins/default/templates/feedback.html:50
-#: forum/skins/default/templates/question_edit.html:119
-#: forum/skins/default/templates/question_retag.html:75
-#: forum/skins/default/templates/reopen.html:30
-#: forum/skins/default/templates/user_edit.html:87
-#: forum/skins/default/templates/authopenid/changeemail.html:40
-msgid "Cancel"
+#: forum/settings/extkeys.py:4
+msgid ""
+"Keys for various external providers that your application may optionally use."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:4
-msgid "answer tips"
-msgstr "Tips"
+#: forum/settings/extkeys.py:7
+msgid "Google sitemap code"
+msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:7
-msgid "please make your answer relevant to this community"
+#: 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/skins/default/templates/answer_edit_tips.html:10
-msgid "try to give an answer, rather than engage into a discussion"
+#: forum/settings/extkeys.py:12
+msgid "Google analytics key"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:13
-msgid "please try to provide details"
+#: 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/skins/default/templates/answer_edit_tips.html:16
-#: forum/skins/default/templates/question_edit_tips.html:13
-msgid "be clear and concise"
+#: forum/settings/forms.py:40
+#, 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/skins/default/templates/answer_edit_tips.html:20
-#: forum/skins/default/templates/question_edit_tips.html:17
-msgid "see frequently asked questions"
+#: forum/settings/minrep.py:7
+msgid "Minimum reputation to vote up"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:26
-#: forum/skins/default/templates/question_edit_tips.html:23
-msgid "Markdown tips"
-msgstr "Markdown basics"
+#: forum/settings/minrep.py:8
+msgid "The minimum reputation an user must have to be allowed to vote up."
+msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:29
-#: forum/skins/default/templates/question_edit_tips.html:26
-msgid "*italic* or __italic__"
+#: 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/skins/default/templates/answer_edit_tips.html:32
-#: forum/skins/default/templates/question_edit_tips.html:29
-msgid "**bold** or __bold__"
+#: forum/settings/minrep.py:15
+msgid "Minimum reputation to flag a post"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:35
-#: forum/skins/default/templates/question_edit_tips.html:32
-msgid "link"
+#: forum/settings/minrep.py:16
+msgid "The minimum reputation an user must have to be allowed to flag a post."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:35
-#: forum/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:32
-#: forum/skins/default/templates/question_edit_tips.html:37
-msgid "text"
+#: 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/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:37
-msgid "image"
+#: 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/skins/default/templates/answer_edit_tips.html:43
-#: forum/skins/default/templates/question_edit_tips.html:41
-msgid "numbered list:"
+#: forum/settings/minrep.py:27
+msgid "Minimum reputation to upload"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:48
-#: forum/skins/default/templates/question_edit_tips.html:46
-msgid "basic HTML tags are also supported"
+#: forum/settings/minrep.py:28
+msgid ""
+"The minimum reputation an user must have to be allowed to upload a file."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:52
-#: forum/skins/default/templates/question_edit_tips.html:50
-msgid "learn more about Markdown"
+#: forum/settings/minrep.py:31
+msgid "Minimum reputation to close own question"
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:5
-#: forum/skins/default/templates/ask.html:61
-msgid "Ask a question"
+#: forum/settings/minrep.py:32
+msgid ""
+"The minimum reputation an user must have to be allowed to close his own "
+"question."
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:68
-msgid "login to post question info"
+#: forum/settings/minrep.py:35
+msgid "Minimum reputation to reopen own question"
 msgstr ""
-"<span class=\"strong big\">You are welcome to start submitting your question "
-"anonymously</span>. When you submit the post, you will be redirected to the "
-"login/signup page. Your question will be saved in the current session and "
-"will be published after you log in. Login/signup process is very simple. "
-"Login takes about 30 seconds, initial signup takes a minute or less."
 
-#: forum/skins/default/templates/ask.html:74
-#, python-format
+#: forum/settings/minrep.py:36
 msgid ""
-"must have valid %(email)s to post, \n"
-"                            see %(email_validation_faq_url)s\n"
-"                            "
+"The minimum reputation an user must have to be allowed to reopen his own "
+"question."
 msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
-"yet been validated.</span> To post messages you must verify your email, "
-"please see <a href='%(email_validation_faq_url)s'>more details here</a>."
-"<br>You can submit your question now and validate email after that. Your "
-"question will saved as pending meanwhile. "
 
-#: forum/skins/default/templates/ask.html:112
-msgid "(required)"
+#: forum/settings/minrep.py:39
+msgid "Minimum reputation to retag others questions"
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:119
-msgid "Login/signup to post your question"
-msgstr "Login/Signup to Post"
-
-#: forum/skins/default/templates/ask.html:121
-msgid "Ask your question"
-msgstr "Ask Your Question"
+#: forum/settings/minrep.py:40
+msgid ""
+"The minimum reputation an user must have to be allowed to retag others "
+"questions."
+msgstr ""
 
-#: forum/skins/default/templates/badge.html:6
-#: forum/skins/default/templates/badge.html:17
-msgid "Badge"
+#: forum/settings/minrep.py:43
+msgid "Minimum reputation to edit wiki posts"
 msgstr ""
 
-#: forum/skins/default/templates/badge.html:26
-msgid "The users have been awarded with badges:"
+#: forum/settings/minrep.py:44
+msgid ""
+"The minimum reputation an user must have to be allowed to edit community "
+"wiki posts."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:6
-msgid "Badges summary"
+#: forum/settings/minrep.py:47
+msgid "Minimum reputation to edit others posts"
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:17
-msgid "Badges"
+#: forum/settings/minrep.py:48
+msgid ""
+"The minimum reputation an user must have to be allowed to edit others posts."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:21
-msgid "Community gives you awards for your questions, answers and votes."
+#: forum/settings/minrep.py:51
+msgid "Minimum reputation to close others posts"
 msgstr ""
-"If your questions and answers are highly voted, your contribution to this "
-"Q&amp;A community will be recognized with the variety of badges."
 
-#: forum/skins/default/templates/badges.html:22
-#, python-format
+#: forum/settings/minrep.py:52
 msgid ""
-"Below is the list of available badges and number \n"
-"    of times each type of badge has been awarded. Give us feedback at %"
-"(feedback_faq_url)s.\n"
-"    "
+"The minimum reputation an user must have to be allowed to close others posts."
 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:50
-msgid "Community badges"
-msgstr "Badge levels"
+#: forum/settings/minrep.py:55
+#, fuzzy
+msgid "Minimum reputation to delete comments"
+msgstr "user karma"
 
-#: forum/skins/default/templates/badges.html:56
-msgid "gold badge description"
+#: forum/settings/minrep.py:56
+msgid ""
+"The minimum reputation an user must have to be allowed to delete comments."
 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:64
-msgid "silver badge description"
+#: forum/settings/minrep.py:59
+msgid "Minimum reputation to view offensive flags"
 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:67
-msgid "bronze badge: often given as a special honor"
+#: forum/settings/minrep.py:60
+msgid "The minimum reputation an user must have to view offensive flags."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:71
-msgid "bronze badge description"
+#: forum/settings/repgain.py:4
+msgid "Reputation gains and losses config"
 msgstr ""
-"If you are an active participant in this community, you will be recognized "
-"with this badge."
 
-#: forum/skins/default/templates/book.html:7
-msgid "reading channel"
+#: forum/settings/repgain.py:4
+msgid ""
+"Configure the reputation points a user may gain or lose upon certain actions."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:26
-msgid "[author]"
-msgstr ""
+#: forum/settings/repgain.py:7
+#, fuzzy
+msgid "Initial reputation"
+msgstr "karma"
 
-#: forum/skins/default/templates/book.html:30
-msgid "[publisher]"
+#: forum/settings/repgain.py:8
+msgid "The initial reputation an user gets when he first signs in."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:34
-msgid "[publication date]"
+#: forum/settings/repgain.py:12
+msgid "Maximum reputation a user can gain in one day for being upvoted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:38
-msgid "[price]"
+#: forum/settings/repgain.py:15
+msgid "Rep gain by upvoted"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:39
-msgid "currency unit"
+#: forum/settings/repgain.py:16
+msgid "Reputation a user gains for having one of his posts up voted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:42
-msgid "[pages]"
+#: forum/settings/repgain.py:19
+msgid "Rep lost bu upvote canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:43
-msgid "pages abbreviation"
+#: forum/settings/repgain.py:20
+msgid ""
+"Reputation a user loses for having one of the upvotes on his posts canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:46
-msgid "[tags]"
+#: forum/settings/repgain.py:23
+msgid "Rep lost by downvoted"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:56
-msgid "author blog"
+#: forum/settings/repgain.py:24
+msgid "Reputation a user loses for having one of his posts down voted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:62
-msgid "book directory"
+#: forum/settings/repgain.py:27
+msgid "Rep lost by downvoting"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:66
-msgid "buy online"
+#: forum/settings/repgain.py:28
+msgid "Reputation a user loses for down voting a post."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:79
-msgid "reader questions"
+#: forum/settings/repgain.py:31
+msgid "Rep gain by downvote canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:82
-msgid "ask the author"
+#: forum/settings/repgain.py:32
+msgid ""
+"Reputation a user gains for having one of the downvotes on his posts "
+"canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:88
-#: forum/skins/default/templates/book.html:93
-#: forum/skins/default/templates/users_questions.html:18
-msgid "this question was selected as favorite"
+#: forum/settings/repgain.py:35
+msgid "Rep gain by canceling downvote"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:88
-#: forum/skins/default/templates/book.html:93
-#: forum/skins/default/templates/users_questions.html:11
-#: forum/skins/default/templates/users_questions.html:18
-msgid "number of times"
+#: forum/settings/repgain.py:36
+msgid "Reputation a user gains for canceling a downvote."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:105
-#: forum/skins/default/templates/index.html:40
-#: forum/skins/default/templates/index_.html:40
-#: forum/skins/default/templates/question_summary_list_roll.html:14
-#: forum/skins/default/templates/questions.html:80
-#: forum/skins/default/templates/users_questions.html:32
-msgid "votes"
+#: forum/settings/repgain.py:39
+msgid "Rep gain by accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:108
-msgid "the answer has been accepted to be correct"
+#: forum/settings/repgain.py:40
+msgid "Reputation a user gains for having one of his answers accepted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:115
-#: forum/skins/default/templates/index.html:48
-#: forum/skins/default/templates/index_.html:48
-#: forum/skins/default/templates/question_summary_list_roll.html:15
-#: forum/skins/default/templates/questions.html:81
-#: forum/skins/default/templates/users_questions.html:40
-msgid "views"
+#: forum/settings/repgain.py:43
+msgid "Rep lost by accepted canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:125
-#: forum/skins/default/templates/index.html:63
-#: forum/skins/default/templates/index_.html:63
-#: forum/skins/default/templates/question.html:478
-#: forum/skins/default/templates/question_summary_list_roll.html:52
-#: forum/skins/default/templates/questions.html:136
-#: forum/skins/default/templates/tags.html:49
-#: forum/skins/default/templates/users_questions.html:52
-msgid "using tags"
+#: forum/settings/repgain.py:44
+msgid ""
+"Reputation a user loses for having one of his accepted answers canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:147
-msgid "subscribe to book RSS feed"
+#: forum/settings/repgain.py:47
+msgid "Rep gain by accepting answer"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:147
-#: forum/skins/default/templates/index.html:114
-#: forum/skins/default/templates/index_.html:114
-msgid "subscribe to the questions feed"
+#: forum/settings/repgain.py:48
+msgid ""
+"Reputation a user gains for accepting an answer to one of his questions."
 msgstr ""
 
-#: forum/skins/default/templates/changepw.html:7
-#: forum/skins/default/templates/authopenid/changepw.html:7
-msgid "Account: change password"
-msgstr "Change your password"
-
-#: forum/skins/default/templates/changepw.html:8
-#: forum/skins/default/templates/authopenid/changepw.html:8
-msgid "This is where you can change your password. Make sure you remember it!"
+#: forum/settings/repgain.py:51
+msgid "Rep lost by canceling accepted"
 msgstr ""
-"<span class='strong'>To change your password</span> please fill out and "
-"submit this form"
 
-#: forum/skins/default/templates/close.html:6
-#: forum/skins/default/templates/close.html:16
-msgid "Close question"
+#: forum/settings/repgain.py:52
+msgid "Reputation a user loses by canceling an accepted answer."
 msgstr ""
 
-#: forum/skins/default/templates/close.html:19
-msgid "Close the question"
+#: forum/settings/repgain.py:55
+msgid "Rep lost by post flagged"
 msgstr ""
 
-#: forum/skins/default/templates/close.html:25
-msgid "Reasons"
+#: forum/settings/repgain.py:56
+msgid "Reputation a user loses by having one of his posts flagged."
 msgstr ""
 
-#: forum/skins/default/templates/close.html:28
-msgid "OK to close"
+#: forum/settings/repgain.py:59
+msgid "Rep lost by post flagged and hidden"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:11
-msgid "Frequently Asked Questions "
+#: forum/settings/repgain.py:60
+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/skins/default/templates/faq.html:16
-msgid "What kinds of questions can I ask here?"
+#: forum/settings/repgain.py:63
+msgid "Rep lost by post flagged and deleted"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:17
+#: forum/settings/repgain.py:64
 msgid ""
-"Most importanly - questions should be <strong>relevant</strong> to this "
-"community."
+"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/skins/default/templates/faq.html:18
-msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+#: forum/settings/upload.py:5
+msgid "File upload settings"
 msgstr ""
-"Before you ask - please make sure to search for a similar question. You can "
-"search questions by their title or tags."
 
-#: forum/skins/default/templates/faq.html:21
-msgid "What questions should I avoid asking?"
-msgstr "What kinds of questions should be avoided?"
+#: forum/settings/upload.py:5
+msgid "File uploads related settings."
+msgstr ""
 
-#: forum/skins/default/templates/faq.html:22
+#: forum/settings/upload.py:8
+msgid "Uploaded files folder"
+msgstr ""
+
+#: forum/settings/upload.py:9
 msgid ""
-"Please avoid asking questions that are not relevant to this community, too "
-"subjective and argumentative."
+"The filesystem path where uploaded files will be stored. Please note that "
+"this folder must exist."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:27
-msgid "What should I avoid in my answers?"
+#: forum/settings/upload.py:12
+msgid "Uploaded files alias"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:28
+#: forum/settings/upload.py:13
 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."
+"The url alias for uploaded files. Notice that if you change this setting, "
+"you'll need to restart your site."
 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."
 
-#: forum/skins/default/templates/faq.html:32
-msgid "Who moderates this community?"
+#: forum/settings/upload.py:16
+msgid "Max file size"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:33
-msgid "The short answer is: <strong>you</strong>."
+#: forum/settings/upload.py:17
+msgid "The maximum allowed file size for uploads in mb."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:34
-msgid "This website is moderated by the users."
+#: forum/settings/voting.py:4
+msgid "Voting rules"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:35
-msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+#: forum/settings/voting.py:4
+msgid "Configure the voting rules on your site."
 msgstr ""
-"Karma system allows users to earn rights to perform a variety of moderation "
-"tasks"
 
-#: forum/skins/default/templates/faq.html:40
-msgid "How does reputation system work?"
-msgstr "How does karma system work?"
-
-#: forum/skins/default/templates/faq.html:41
-msgid "Rep system summary"
+#: forum/settings/voting.py:7
+msgid "Maximum votes per day"
 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."
 
-#: forum/skins/default/templates/faq.html:42
-msgid ""
-"For example, if you ask an interesting question or give a helpful answer, "
-"your input will be upvoted. On the other hand if the answer is misleading - "
-"it will be downvoted. Each vote in favor will generate <strong>10</strong> "
-"points, each vote against will subtract <strong>2</strong> points. There is "
-"a limit of <strong>200</strong> points that can be accumulated per question "
-"or answer. The table below explains reputation point requirements for each "
-"type of moderation task."
+#: forum/settings/voting.py:8
+msgid "The maximum number of votes an user can cast per day."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:53
-#: forum/skins/default/templates/user_votes.html:15
-msgid "upvote"
+#: forum/settings/voting.py:11
+msgid "Start warning about votes left"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:57
-msgid "use tags"
+#: forum/settings/voting.py:12
+msgid "From how many votes left should an user start to be warned about it."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:62
-msgid "add comments"
+#: forum/settings/voting.py:15
+msgid "Maximum flags per day"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:66
-#: forum/skins/default/templates/user_votes.html:17
-msgid "downvote"
+#: forum/settings/voting.py:16
+msgid "The maximum number of times an can flag a post per day."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:69
-msgid "open and close own questions"
+#: forum/settings/voting.py:19
+msgid "Flag count to hide post"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:73
-msgid "retag questions"
+#: forum/settings/voting.py:20
+msgid ""
+"How many times a post needs to be flagged to be hidden from the main page."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:78
-msgid "edit community wiki questions"
+#: forum/settings/voting.py:23
+msgid "Flag count to delete post"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:83
-msgid "edit any answer"
+#: forum/settings/voting.py:24
+msgid "How many times a post needs to be flagged to be deleted."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:87
-msgid "open any closed question"
+#: forum/settings/voting.py:27
+msgid "Days to cancel a vote"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:91
-msgid "delete any comment"
+#: 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/faq.html:95
-msgid "delete any questions and answers and perform other moderation tasks"
+#: forum/skins/default/templates/404.html:24
+msgid "Sorry, could not find the page you requested."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:103
-msgid "how to validate email title"
-msgstr "How to validate email and why?"
-
-#: forum/skins/default/templates/faq.html:105
-#, python-format
-msgid ""
-"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+#: forum/skins/default/templates/404.html:26
+msgid "This might have happened for the following reasons:"
 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>"
-
-#: forum/skins/default/templates/faq.html:110
-msgid "what is gravatar"
-msgstr "What is gravatar?"
 
-#: forum/skins/default/templates/faq.html:111
-msgid "gravatar faq info"
+#: forum/skins/default/templates/404.html:28
+msgid "this question or answer has been deleted;"
 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/skins/default/templates/faq.html:114
-msgid "To register, do I need to create new password?"
+#: forum/skins/default/templates/404.html:29
+msgid "url has error - please check it;"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:115
+#: forum/skins/default/templates/404.html:30
 msgid ""
-"No, you don't have to. You can login through any service that supports "
-"OpenID, e.g. Google, Yahoo, AOL, etc."
+"the page you tried to visit is protected or you don't have sufficient "
+"points, see"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:116
-msgid "Login now!"
+#: forum/skins/default/templates/404.html:31
+msgid "if you believe this error 404 should not have occured, please"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:121
-msgid "Why other people can edit my questions/answers?"
+#: forum/skins/default/templates/404.html:32
+msgid "report this problem"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:122
-msgid "Goal of this site is..."
+#: forum/skins/default/templates/404.html:41
+#: forum/skins/default/templates/500.html:27
+msgid "back to previous page"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:122
-msgid ""
-"So questions and answers can be edited like wiki pages by experienced users "
-"of this site and this improves the overall quality of the knowledge base "
-"content."
+#: forum/skins/default/templates/404.html:42
+msgid "see all questions"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:123
-msgid "If this approach is not for you, we respect your choice."
+#: forum/skins/default/templates/404.html:43
+msgid "see all tags"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:127
-msgid "Still have questions?"
+#: forum/skins/default/templates/500.html:22
+msgid "sorry, system error"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:128
-#, python-format
-msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+#: forum/skins/default/templates/500.html:24
+msgid "system error log is recorded, error will be fixed as soon as possible"
 msgstr ""
-"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
-"community better!"
 
-#: forum/skins/default/templates/faq.html:130
-#: forum/skins/default/templates/header.html:27
-#: forum/skins/default/templates/header.html:55
-msgid "questions"
+#: forum/skins/default/templates/500.html:25
+msgid "please report the error to the site administrators if you wish"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:130
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-msgid "."
+#: forum/skins/default/templates/500.html:28
+msgid "see latest questions"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:6
-msgid "Feedback"
+#: forum/skins/default/templates/500.html:29
+msgid "see tags"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:11
-msgid "Give us your feedback!"
+#: forum/skins/default/templates/_question_list.html:12
+#: forum/skins/default/templates/book.html:105
+#: forum/skins/default/templates/question_summary_list_roll.html:14
+#: forum/skins/default/templates/question_list/item.html:10
+#: forum/views/commands.py:82
+msgid "votes"
 msgstr ""
 
-#: forum/skins/default/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"
-"            "
+#: forum/skins/default/templates/_question_list.html:14
+msgid "this answer has been accepted to be correct"
 msgstr ""
 
-#: forum/skins/default/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"
-"            "
+#: forum/skins/default/templates/_question_list.html:16
+#: forum/skins/default/templates/question_summary_list_roll.html:13
+#: forum/skins/default/templates/question_list/item.html:14
+msgid "answers"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:41
-msgid "(this field is required)"
+#: forum/skins/default/templates/_question_list.html:20
+#: forum/skins/default/templates/book.html:115
+#: forum/skins/default/templates/question_summary_list_roll.html:15
+#: forum/skins/default/templates/question_list/item.html:18
+msgid "views"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:49
-msgid "Send Feedback"
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "see questions tagged"
 msgstr ""
 
-#: forum/skins/default/templates/feedback_email.txt:3
-#, python-format
-msgid ""
-"\n"
-"Hello, this is a %(site_title)s forum feedback message\n"
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/book.html:125
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "using tags"
 msgstr ""
 
-#: forum/skins/default/templates/feedback_email.txt:9
-msgid "Sender is"
+#: forum/skins/default/templates/about.html:5
+#: forum/skins/default/templates/about.html:9
+msgid "About"
 msgstr ""
 
-#: forum/skins/default/templates/feedback_email.txt:11
-#: forum/skins/default/templates/feedback_email.txt:14
-msgid "email"
+#: forum/skins/default/templates/account_settings.html:4
+msgid "Account functions"
 msgstr ""
 
-#: forum/skins/default/templates/feedback_email.txt:13
-msgid "anonymous"
+#: forum/skins/default/templates/account_settings.html:29
+#: forum/skins/default/templates/auth/auth_settings.html:31
+msgid "Change password"
 msgstr ""
 
-#: forum/skins/default/templates/feedback_email.txt:19
-msgid "Message body:"
+#: forum/skins/default/templates/account_settings.html:30
+msgid "Give your  account a new password."
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:8
-#: forum/skins/default/templates/header.html:13
-#: forum/skins/default/templates/index.html:77
-#: forum/skins/default/templates/index_.html:77
-msgid "about"
+#: forum/skins/default/templates/account_settings.html:32
+msgid "Change email "
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:9
-#: forum/skins/default/templates/header.html:14
-#: forum/skins/default/templates/index.html:78
-#: forum/skins/default/templates/index_.html:78
-#: forum/skins/default/templates/question_edit_tips.html:17
-msgid "faq"
+#: forum/skins/default/templates/account_settings.html:33
+msgid "Add or update the email address associated with your account."
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:10
-msgid "privacy policy"
+#: forum/skins/default/templates/account_settings.html:35
+msgid "Change OpenID"
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:19
-msgid "give feedback"
+#: forum/skins/default/templates/account_settings.html:36
+msgid "Change openid associated to your account"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:9
-msgid "logout"
+#: forum/skins/default/templates/account_settings.html:39
+msgid "Delete account"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:11
-msgid "login"
+#: forum/skins/default/templates/account_settings.html:40
+msgid "Erase your username and all your data from website"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:21
-msgid "back to home page"
+#: forum/skins/default/templates/answer_edit.html:5
+#: forum/skins/default/templates/answer_edit.html:39
+msgid "Edit answer"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:29
-#: forum/skins/default/templates/header.html:57
-msgid "users"
+#: forum/skins/default/templates/answer_edit.html:18
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:19
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:19
+#: forum/skins/default/templates/question_edit.html:22
+msgid "hide preview"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:31
-msgid "books"
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:22
+msgid "show preview"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:33
-#: forum/templatetags/extra_tags.py:165 forum/templatetags/extra_tags.py:194
-msgid "badges"
+#: forum/skins/default/templates/answer_edit.html:39
+#: forum/skins/default/templates/question_edit.html:63
+#: forum/skins/default/templates/question_retag.html:56
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "back"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:34
-msgid "unanswered questions"
-msgstr "unanswered"
-
-#: forum/skins/default/templates/header.html:36
-msgid "ask a question"
+#: forum/skins/default/templates/answer_edit.html:44
+#: forum/skins/default/templates/question_edit.html:68
+#: forum/skins/default/templates/revisions_answer.html:50
+#: forum/skins/default/templates/revisions_question.html:49
+msgid "revision"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:51
-msgid "search"
+#: forum/skins/default/templates/answer_edit.html:47
+#: forum/skins/default/templates/question_edit.html:72
+msgid "select revision"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:8
-#: forum/skins/default/templates/index_.html:8
-msgid "Home"
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:184
+#: forum/skins/default/templates/question_edit.html:89
+msgid "Toggle the real time Markdown editor preview"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:25
-#: forum/skins/default/templates/index_.html:25
-#: forum/skins/default/templates/questions.html:8
-msgid "Questions"
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:185
+#: forum/skins/default/templates/question_edit.html:89
+msgid "toggle preview"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:27
-#: forum/skins/default/templates/index_.html:27
-msgid "last updated questions"
+#: forum/skins/default/templates/answer_edit.html:63
+#: forum/skins/default/templates/question_edit.html:115
+#: forum/skins/default/templates/question_retag.html:77
+msgid "Save edit"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:27
-#: forum/skins/default/templates/index_.html:27
-#: forum/skins/default/templates/questions.html:47
-msgid "newest"
+#: forum/skins/default/templates/answer_edit.html:64
+#: forum/skins/default/templates/close.html:29
+#: forum/skins/default/templates/feedback.html:50
+#: forum/skins/default/templates/question_edit.html:116
+#: forum/skins/default/templates/question_retag.html:78
+#: forum/skins/default/templates/reopen.html:30
+#: forum/skins/default/templates/users/edit.html:87
+msgid "Cancel"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:28
-#: forum/skins/default/templates/index_.html:28
-#: forum/skins/default/templates/questions.html:49
-msgid "hottest questions"
-msgstr ""
+#: forum/skins/default/templates/answer_edit_tips.html:4
+msgid "answer tips"
+msgstr "Tips"
 
-#: forum/skins/default/templates/index.html:28
-#: forum/skins/default/templates/index_.html:28
-#: forum/skins/default/templates/questions.html:49
-msgid "hottest"
+#: forum/skins/default/templates/answer_edit_tips.html:7
+msgid "please make your answer relevant to this community"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:29
-#: forum/skins/default/templates/index_.html:29
-#: forum/skins/default/templates/questions.html:50
-msgid "most voted questions"
+#: forum/skins/default/templates/answer_edit_tips.html:10
+msgid "try to give an answer, rather than engage into a discussion"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:29
-#: forum/skins/default/templates/index_.html:29
-#: forum/skins/default/templates/questions.html:50
-msgid "most voted"
+#: forum/skins/default/templates/answer_edit_tips.html:13
+msgid "please try to provide details"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:30
-#: forum/skins/default/templates/index_.html:30
-msgid "all questions"
+#: forum/skins/default/templates/answer_edit_tips.html:16
+#: forum/skins/default/templates/question_edit_tips.html:18
+msgid "be clear and concise"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:42
-#: forum/skins/default/templates/index_.html:42
-#: forum/skins/default/templates/users_questions.html:34
-msgid "this answer has been accepted to be correct"
+#: forum/skins/default/templates/answer_edit_tips.html:20
+#: forum/skins/default/templates/question_edit_tips.html:22
+msgid "see frequently asked questions"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:44
-#: forum/skins/default/templates/index_.html:44
-#: forum/skins/default/templates/question_summary_list_roll.html:13
-#: forum/skins/default/templates/questions.html:79
-#: forum/skins/default/templates/users_questions.html:36
-msgid "answers"
-msgstr ""
+#: forum/skins/default/templates/answer_edit_tips.html:26
+#: forum/skins/default/templates/question_edit_tips.html:28
+msgid "Markdown tips"
+msgstr "Markdown basics"
 
-#: forum/skins/default/templates/index.html:63
-#: forum/skins/default/templates/index_.html:63
-#: forum/skins/default/templates/question.html:478
-#: forum/skins/default/templates/question_summary_list_roll.html:52
-#: forum/skins/default/templates/questions.html:136
-#: forum/skins/default/templates/tags.html:49
-#: forum/skins/default/templates/users_questions.html:52
-msgid "see questions tagged"
+#: forum/skins/default/templates/answer_edit_tips.html:29
+#: forum/skins/default/templates/question_edit_tips.html:31
+msgid "*italic* or __italic__"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:74
-#: forum/skins/default/templates/index_.html:74
-msgid "welcome to website"
-msgstr "Welcome to Q&amp;A forum"
-
-#: forum/skins/default/templates/index.html:85
-#: forum/skins/default/templates/index_.html:85
-msgid "Recent tags"
+#: forum/skins/default/templates/answer_edit_tips.html:32
+#: forum/skins/default/templates/question_edit_tips.html:34
+msgid "**bold** or __bold__"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:90
-#: forum/skins/default/templates/index_.html:90
-#: forum/skins/default/templates/question.html:133
-#, python-format
-msgid "see questions tagged '%(tagname)s'"
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/question_edit_tips.html:37
+msgid "link"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:93
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:93
-#: forum/skins/default/templates/index_.html:121
-msgid "popular tags"
-msgstr "tags"
-
-#: forum/skins/default/templates/index.html:98
-#: forum/skins/default/templates/index_.html:98
-msgid "Recent awards"
-msgstr "Recent badges"
-
-#: forum/skins/default/templates/index.html:104
-msgid "given to"
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
+msgid "text"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:109
-#: forum/skins/default/templates/index_.html:109
-msgid "all awards"
-msgstr "all badges"
-
-#: forum/skins/default/templates/index.html:114
-#: forum/skins/default/templates/index_.html:114
-msgid "subscribe to last 30 questions by RSS"
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:42
+msgid "image"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-msgid "Still looking for more? See"
+#: forum/skins/default/templates/answer_edit_tips.html:43
+#: forum/skins/default/templates/question_edit_tips.html:46
+msgid "numbered list:"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-msgid "complete list of questions"
-msgstr "list of all questions"
-
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-#: forum/skins/default/templates/auth/signup.html:28
-#: forum/skins/default/templates/authopenid/signup.html:28
-msgid "or"
+#: forum/skins/default/templates/answer_edit_tips.html:48
+#: forum/skins/default/templates/question_edit_tips.html:51
+msgid "basic HTML tags are also supported"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-msgid "Please help us answer"
+#: forum/skins/default/templates/answer_edit_tips.html:52
+#: forum/skins/default/templates/question_edit_tips.html:55
+msgid "learn more about Markdown"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:121
-#: forum/skins/default/templates/index_.html:121
-msgid "list of unanswered questions"
-msgstr "unanswered questions"
+#: forum/skins/default/templates/ask.html:5
+#: forum/skins/default/templates/ask.html:57
+msgid "Ask a question"
+msgstr ""
 
-#: forum/skins/default/templates/logout.html:6
-#: forum/skins/default/templates/logout.html:16
-msgid "Logout"
+#: forum/skins/default/templates/ask.html:64
+msgid "login to post question info"
 msgstr ""
+"<span class=\"strong big\">You are welcome to start submitting your question "
+"anonymously</span>. When you submit the post, you will be redirected to the "
+"login/signup page. Your question will be saved in the current session and "
+"will be published after you log in. Login/signup process is very simple. "
+"Login takes about 30 seconds, initial signup takes a minute or less."
 
-#: forum/skins/default/templates/logout.html:19
+#: forum/skins/default/templates/ask.html:70
+#, python-format
 msgid ""
-"As a registered user you can login with your OpenID, log out of the site or "
-"permanently remove your account."
+"must have valid %(email)s to post, \n"
+"                            see %(email_validation_faq_url)s\n"
+"                            "
 msgstr ""
-"Clicking <strong>Logout</strong> will log you out from the forumbut 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
-msgid "Logout now"
-msgstr "Logout Now"
+"<span class='strong big'>Looks like your email address, %(email)s has not "
+"yet been validated.</span> To post messages you must verify your email, "
+"please see <a href='%(email_validation_faq_url)s'>more details here</a>."
+"<br>You can submit your question now and validate email after that. Your "
+"question will saved as pending meanwhile. "
 
-#: forum/skins/default/templates/notarobot.html:3
-msgid "Please prove that you are a Human Being"
+#: forum/skins/default/templates/ask.html:108
+msgid "(required)"
 msgstr ""
 
-#: forum/skins/default/templates/notarobot.html:10
-msgid "I am a Human Being"
-msgstr ""
+#: forum/skins/default/templates/ask.html:115
+msgid "Login/signup to post your question"
+msgstr "Login/Signup to Post"
 
-#: forum/skins/default/templates/pagesize.html:6
-msgid "posts per page"
-msgstr ""
+#: forum/skins/default/templates/ask.html:117
+msgid "Ask your question"
+msgstr "Ask Your Question"
 
-#: forum/skins/default/templates/paginator.html:6
-#: forum/skins/default/templates/paginator.html:7
-msgid "previous"
+#: forum/skins/default/templates/badge.html:6
+#: forum/skins/default/templates/badge.html:17
+msgid "Badge"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:19
-msgid "current page"
+#: forum/skins/default/templates/badge.html:26
+msgid "The users have been awarded with badges:"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:22
-#: forum/skins/default/templates/paginator.html:29
-msgid "page number "
+#: forum/skins/default/templates/badges.html:6
+msgid "Badges summary"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:22
-#: forum/skins/default/templates/paginator.html:29
-msgid "number - make blank in english"
+#: forum/skins/default/templates/badges.html:17
+msgid "Badges"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:33
-msgid "next page"
+#: forum/skins/default/templates/badges.html:21
+msgid "Community gives you awards for your questions, answers and votes."
 msgstr ""
+"If your questions and answers are highly voted, your contribution to this "
+"Q&amp;A community will be recognized with the variety of badges."
 
-#: forum/skins/default/templates/post_contributor_info.html:9
+#: forum/skins/default/templates/badges.html:22
 #, python-format
 msgid ""
-"\n"
-"                one revision\n"
-"            "
-msgid_plural ""
-"\n"
-"                %(rev_count)s revisions\n"
-"            "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/post_contributor_info.html:19
-msgid "asked"
+"Below is the list of available badges and number \n"
+"    of times each type of badge has been awarded. Give us feedback at %"
+"(feedback_faq_url)s.\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/post_contributor_info.html:22
-msgid "answered"
+#: forum/skins/default/templates/badges.html:50
+msgid "Community badges"
+msgstr "Badge levels"
+
+#: forum/skins/default/templates/badges.html:56
+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/post_contributor_info.html:24
-msgid "posted"
+#: forum/skins/default/templates/badges.html:64
+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/post_contributor_info.html:45
-msgid "updated"
+#: forum/skins/default/templates/badges.html:67
+msgid "bronze badge: often given as a special honor"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:6
-#: forum/skins/default/templates/privacy.html:11
-msgid "Privacy policy"
+#: forum/skins/default/templates/badges.html:71
+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/privacy.html:15
-msgid "general message about privacy"
+#: forum/skins/default/templates/book.html:7
+msgid "reading channel"
 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
-msgid "Site Visitors"
+#: forum/skins/default/templates/book.html:26
+msgid "[author]"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:20
-msgid "what technical information is collected about visitors"
+#: forum/skins/default/templates/book.html:30
+msgid "[publisher]"
 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
-msgid "Personal Information"
+#: forum/skins/default/templates/book.html:34
+msgid "[publication date]"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:25
-msgid "details on personal information policies"
+#: forum/skins/default/templates/book.html:38
+msgid "[price]"
 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
-msgid "Other Services"
+#: forum/skins/default/templates/book.html:39
+msgid "currency unit"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:30
-msgid "details on sharing data with third parties"
+#: forum/skins/default/templates/book.html:42
+msgid "[pages]"
 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
-msgid "cookie policy details"
+#: forum/skins/default/templates/book.html:43
+msgid "pages abbreviation"
 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
-msgid "Policy Changes"
+#: forum/skins/default/templates/book.html:46
+msgid "[tags]"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:38
-msgid "how privacy policies can be changed"
+#: forum/skins/default/templates/book.html:56
+msgid "author blog"
 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:77
-#: forum/skins/default/templates/question.html:78
-#: forum/skins/default/templates/question.html:94
-#: forum/skins/default/templates/question.html:96
-msgid "i like this post (click again to cancel)"
+#: forum/skins/default/templates/book.html:62
+msgid "book directory"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:80
-#: forum/skins/default/templates/question.html:98
-#: forum/skins/default/templates/question.html:255
-msgid "current number of votes"
+#: forum/skins/default/templates/book.html:66
+msgid "buy online"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:89
-#: forum/skins/default/templates/question.html:90
-#: forum/skins/default/templates/question.html:103
-#: forum/skins/default/templates/question.html:104
-msgid "i dont like this post (click again to cancel)"
+#: forum/skins/default/templates/book.html:79
+msgid "reader questions"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:108
-#: forum/skins/default/templates/question.html:109
-msgid "mark this question as favorite (click again to cancel)"
+#: forum/skins/default/templates/book.html:82
+msgid "ask the author"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:115
-#: forum/skins/default/templates/question.html:116
-msgid "remove favorite mark from this question (click again to restore mark)"
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "this question was selected as favorite"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:138
-#: forum/skins/default/templates/question.html:292
-#: forum/skins/default/templates/revisions_answer.html:58
-#: forum/skins/default/templates/revisions_question.html:58
-msgid "edit"
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "number of times"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:143
-msgid "reopen"
+#: forum/skins/default/templates/book.html:108
+msgid "the answer has been accepted to be correct"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:147
-msgid "close"
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to book RSS feed"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:153
-#: forum/skins/default/templates/question.html:297
-msgid ""
-"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to the questions feed"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:154
-#: forum/skins/default/templates/question.html:298
-msgid "flag offensive"
+#: forum/skins/default/templates/close.html:6
+#: forum/skins/default/templates/close.html:16
+msgid "Close question"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:162
-#: forum/skins/default/templates/question.html:309
-msgid "delete"
+#: forum/skins/default/templates/close.html:19
+msgid "Close the question"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:180
-#: forum/skins/default/templates/question.html:329
-msgid "delete this comment"
+#: forum/skins/default/templates/close.html:25
+msgid "Reasons"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:191
-#: forum/skins/default/templates/question.html:340
-msgid "add comment"
-msgstr "post a comment"
+#: forum/skins/default/templates/close.html:28
+msgid "OK to close"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:195
-#, python-format
+#: forum/skins/default/templates/email_base.html:31
+msgid "home"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:11
+msgid "Frequently Asked Questions "
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:16
+msgid "What kinds of questions can I ask here?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:17
 msgid ""
-"\n"
-"                                            see <strong>one</strong> more \n"
-"                                            "
-msgid_plural ""
-"\n"
-"                                            see <strong>%(counter)s</strong> "
-"more\n"
-"                                            "
-msgstr[0] ""
-msgstr[1] ""
+"Most importantly - questions should be <strong>relevant</strong> to this "
+"community."
+msgstr ""
 
-#: forum/skins/default/templates/question.html:201
-#, python-format
+#: forum/skins/default/templates/faq.html:18
 msgid ""
-"\n"
-"                                            see <strong>one</strong> more "
-"comment\n"
-"                                            "
-msgid_plural ""
-"\n"
-"                                            see <strong>%(counter)s</strong> "
-"more comments\n"
-"                                            "
-msgstr[0] ""
-msgstr[1] ""
+"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."
 
-#: forum/skins/default/templates/question.html:217
-#, python-format
+#: forum/skins/default/templates/faq.html:21
+msgid "What questions should I avoid asking?"
+msgstr "What kinds of questions should be avoided?"
+
+#: forum/skins/default/templates/faq.html:22
 msgid ""
-"The question has been closed for the following reason \"%(close_reason)s\" by"
+"Please avoid asking questions that are not relevant to this community, too "
+"subjective and argumentative."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:219
-#, python-format
-msgid "close date %(closed_at)s"
+#: forum/skins/default/templates/faq.html:27
+msgid "What should I avoid in my answers?"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:227
-#, python-format
+#: forum/skins/default/templates/faq.html:28
 msgid ""
-"\n"
-"                    One Answer:\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    %(counter)s Answers:\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
+"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."
 
-#: forum/skins/default/templates/question.html:235
-msgid "oldest answers will be shown first"
+#: forum/skins/default/templates/faq.html:32
+msgid "Who moderates this community?"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:235
-msgid "oldest answers"
-msgstr "oldest"
+#: forum/skins/default/templates/faq.html:33
+msgid "The short answer is: <strong>you</strong>."
+msgstr ""
 
-#: forum/skins/default/templates/question.html:237
-msgid "newest answers will be shown first"
+#: forum/skins/default/templates/faq.html:34
+msgid "This website is moderated by the users."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:237
-msgid "newest answers"
-msgstr "newest"
+#: forum/skins/default/templates/faq.html:35
+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"
 
-#: forum/skins/default/templates/question.html:239
-msgid "most voted answers will be shown first"
+#: forum/skins/default/templates/faq.html:40
+msgid "How does reputation system work?"
+msgstr "How does karma system work?"
+
+#: forum/skins/default/templates/faq.html:41
+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."
 
-#: forum/skins/default/templates/question.html:239
-msgid "popular answers"
-msgstr "most voted"
+#: forum/skins/default/templates/faq.html:42
+msgid ""
+"For example, if you ask an interesting question or give a helpful answer, "
+"your input will be upvoted. On the other hand if the answer is misleading - "
+"it will be downvoted. Each vote in favor will generate <strong>10</strong> "
+"points, each vote against will subtract <strong>2</strong> points. There is "
+"a limit of <strong>200</strong> points that can be accumulated per question "
+"or answer. The table below explains reputation point requirements for each "
+"type of moderation task."
+msgstr ""
 
-#: forum/skins/default/templates/question.html:253
-#: forum/skins/default/templates/question.html:254
-msgid "i like this answer (click again to cancel)"
+#: forum/skins/default/templates/faq.html:53
+#: forum/skins/default/templates/users/votes.html:15
+#: forum/views/commands.py:77
+msgid "upvote"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:260
-#: forum/skins/default/templates/question.html:261
-msgid "i dont like this answer (click again to cancel)"
+#: forum/skins/default/templates/faq.html:57
+msgid "use tags"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:266
-#: forum/skins/default/templates/question.html:267
-msgid "mark this answer as favorite (click again to undo)"
+#: forum/skins/default/templates/faq.html:62
+msgid "add comments"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:272
-#: forum/skins/default/templates/question.html:273
-msgid "the author of the question has selected this answer as correct"
+#: forum/skins/default/templates/faq.html:66
+#: forum/skins/default/templates/users/votes.html:17
+#: forum/views/commands.py:77
+msgid "downvote"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:286
-msgid "answer permanent link"
+#: forum/skins/default/templates/faq.html:69
+msgid "open and close own questions"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:287
-msgid "permanent link"
-msgstr "link"
+#: forum/skins/default/templates/faq.html:73
+msgid "retag questions"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:78
+msgid "edit community wiki questions"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:83
+msgid "edit any answer"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:87
+msgid "open any closed question"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:91
+msgid "delete any comment"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:309
-msgid "undelete"
+#: forum/skins/default/templates/faq.html:95
+msgid "delete any questions and answers and perform other moderation tasks"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:344
+#: forum/skins/default/templates/faq.html:103
+msgid "how to validate email title"
+msgstr "How to validate email and why?"
+
+#: forum/skins/default/templates/faq.html:105
 #, python-format
 msgid ""
-"\n"
-"                                                        see <strong>one</"
-"strong> more \n"
-"                                                        "
-msgid_plural ""
-"\n"
-"                                                        see <strong>%"
-"(counter)s</strong> more\n"
-"                                                        "
-msgstr[0] ""
-msgstr[1] ""
+"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>"
+
+#: forum/skins/default/templates/faq.html:110
+msgid "what is gravatar"
+msgstr "What is gravatar?"
 
-#: forum/skins/default/templates/question.html:350
+#: forum/skins/default/templates/faq.html:111
+msgid "gravatar faq info"
+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/skins/default/templates/faq.html:114
+msgid "To register, do I need to create new password?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:115
+msgid ""
+"No, you don't have to. You can login through any service that supports "
+"OpenID, e.g. Google, Yahoo, AOL, etc."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:116
+msgid "Login now!"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:121
+msgid "Why other people can edit my questions/answers?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:122
+msgid "Goal of this site is..."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:122
+msgid ""
+"So questions and answers can be edited like wiki pages by experienced users "
+"of this site and this improves the overall quality of the knowledge base "
+"content."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:123
+msgid "If this approach is not for you, we respect your choice."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:127
+msgid "Still have questions?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:128
 #, python-format
 msgid ""
-"\n"
-"                                                        see <strong>one</"
-"strong> more comment\n"
-"                                                        "
-msgid_plural ""
-"\n"
-"                                                        see <strong>%"
-"(counter)s</strong> more comments\n"
-"                                                        "
-msgstr[0] ""
-msgstr[1] ""
+"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!"
+
+#: forum/skins/default/templates/faq.html:130
+#: forum/skins/default/templates/header.html:30
+#: forum/skins/default/templates/header.html:55 forum/views/readers.py:76
+msgid "questions"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:376
-#: forum/skins/default/templates/question.html:379
-msgid "Notify me once a day when there are any new answers"
+#: forum/skins/default/templates/faq.html:130
+msgid "."
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:6
+msgid "Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:11
+msgid "Give us your feedback!"
+msgstr ""
+
+#: forum/skins/default/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
+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
+msgid "(this field is required)"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:49
+msgid "Send Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:7
+#: forum/skins/default/templates/header.html:16
+#: forum/skins/default/templates/index.html:12
+msgid "about"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:8
+#: forum/skins/default/templates/header.html:17
+#: forum/skins/default/templates/index.html:13
+#: forum/skins/default/templates/question_edit_tips.html:22
+msgid "faq"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:9
+msgid "privacy policy"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:18
+msgid "give feedback"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:9
+msgid "administration"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:12
+msgid "logout"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:14
+msgid "login"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:24
+msgid "back to home page"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:32
+#: forum/skins/default/templates/header.html:57
+msgid "users"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:33
+#: forum/skins/default/templates/users/signature.html:9
+#: forum/skins/default/templates/users/signature.html:15
+#: forum/skins/default/templates/users/signature.html:21
+#: forum/templatetags/extra_tags.py:167 forum/templatetags/extra_tags.py:196
+msgid "badges"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:34
+msgid "unanswered questions"
+msgstr "unanswered"
+
+#: forum/skins/default/templates/header.html:36
+msgid "ask a question"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:51
+msgid "search"
+msgstr ""
+
+#: forum/skins/default/templates/index.html:9
+#, fuzzy
+msgid "welcome to "
+msgstr "Welcome to Q&amp;A forum"
+
+#: forum/skins/default/templates/logout.html:6
+#: forum/skins/default/templates/logout.html:16
+msgid "Logout"
+msgstr ""
+
+#: forum/skins/default/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 forumbut 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
+msgid "Logout now"
+msgstr "Logout Now"
+
+#: forum/skins/default/templates/notarobot.html:3
+msgid "Please prove that you are a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/notarobot.html:10
+msgid "I am a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/pagesize.html:6
+msgid "posts per page"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:6
+#: forum/skins/default/templates/paginator.html:7
+msgid "previous"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:19
+msgid "current page"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "page number "
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "number - make blank in english"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:33
+msgid "next page"
+msgstr ""
+
+#: forum/skins/default/templates/post_contributor_info.html:9
+#, python-format
+msgid ""
+"\n"
+"                one revision\n"
+"            "
+msgid_plural ""
+"\n"
+"                %(rev_count)s revisions\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/post_contributor_info.html:24
+msgid "posted"
+msgstr ""
+
+#: forum/skins/default/templates/post_contributor_info.html:45
+msgid "updated"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:6
+#: forum/skins/default/templates/privacy.html:11
+msgid "Privacy policy"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "Site Visitors"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "Personal Information"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "Other Services"
+msgstr ""
+
+#: forum/skins/default/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
+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
+msgid "Policy Changes"
+msgstr ""
+
+#: forum/skins/default/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:70
+#: forum/skins/default/templates/sidebar/recent_tags.html:9
+#, python-format
+msgid "see questions tagged '%(tagname)s'"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:87
+#, python-format
+msgid ""
+"The question has been closed for the following reason \"%(close_reason)s\" by"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:89
+#, python-format
+msgid "close date %(closed_at)s"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:97
+#, python-format
+msgid ""
+"\n"
+"                    One Answer:\n"
+"                    "
+msgid_plural ""
+"\n"
+"                    %(counter)s Answers:\n"
+"                    "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers"
+msgstr "oldest"
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers"
+msgstr "newest"
+
+#: forum/skins/default/templates/question.html:109
+msgid "most voted answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:109
+msgid "popular answers"
+msgstr "most voted"
+
+#: forum/skins/default/templates/question.html:157
+msgid "Your answer"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:159
+msgid "Be the first one to answer this question!"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:165
+msgid "you can answer anonymously and then login"
+msgstr ""
+"<span class='strong big'>Please start posting your answer anonymously</span> "
+"- your answer will be saved within the current session and published after "
+"you log in or create a new account. Please try to give a <strong>substantial "
+"answer</strong>, for discussions, <strong>please use comments</strong> and "
+"<strong>please do remember to vote</strong> (after you log in)!"
+
+#: forum/skins/default/templates/question.html:169
+msgid "answer your own question only to give an answer"
+msgstr ""
+"<span class='big strong'>You are welcome to answer your own question</span>, "
+"but please make sure to give an <strong>answer</strong>. Remember that you "
+"can always <strong>revise your original question</strong>. Please "
+"<strong>use comments for discussions</strong>  and <strong>please don't "
+"forget to vote :)</strong> for the answers that you liked (or perhaps did "
+"not like)! "
+
+#: forum/skins/default/templates/question.html:171
+msgid "please only give an answer, no discussions"
+msgstr ""
+"<span class='big strong'>Please try to give a substantial answer</span>. If "
+"you wanted to comment on the question or answer, just <strong>use the "
+"commenting tool</strong>. Please remember that you can always <strong>revise "
+"your answers</strong> - no need to answer the same question twice. Also, "
+"please <strong>don't forget to vote</strong> - it really helps to select the "
+"best questions and answers!"
+
+#: forum/skins/default/templates/question.html:207
+msgid "Login/Signup to Post Your Answer"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:210
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:212
+msgid "Answer the question"
+msgstr "Post Your Answer"
+
+#: forum/skins/default/templates/question.html:229
+msgid "Question tags"
+msgstr "Tags"
+
+#: forum/skins/default/templates/question.html:239
+msgid "question asked"
+msgstr "Asked"
+
+#: forum/skins/default/templates/question.html:242
+msgid "question was seen"
+msgstr "Seen"
+
+#: forum/skins/default/templates/question.html:242
+msgid "times"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:245
+msgid "last updated"
+msgstr "Last updated"
+
+#: forum/skins/default/templates/question.html:250
+msgid "Related questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_edit.html:5
+#: forum/skins/default/templates/question_edit.html:63
+msgid "Edit question"
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:4
+msgid "question tips"
+msgstr "Tips"
+
+#: forum/skins/default/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
+msgid "please try provide enough details"
+msgstr "provide enough details"
+
+#: forum/skins/default/templates/question_retag.html:5
+#: forum/skins/default/templates/question_retag.html:56
+msgid "Change tags"
+msgstr ""
+
+#: forum/skins/default/templates/question_retag.html:44
+msgid "up to 5 tags, less than 20 characters each"
+msgstr ""
+
+#: forum/skins/default/templates/question_retag.html:86
+msgid "Why use and modify tags?"
+msgstr ""
+
+#: forum/skins/default/templates/question_retag.html:89
+msgid "tags help us keep Questions organized"
+msgstr ""
+
+#: forum/skins/default/templates/question_retag.html:97
+msgid "tag editors receive special awards from the community"
+msgstr ""
+
+#: forum/skins/default/templates/questions.html:7
+msgid "Questions"
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:6
+#: forum/skins/default/templates/reopen.html:16
+msgid "Reopen question"
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:19
+msgid "Open the previously closed question"
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "The question was closed for the following reason "
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "reason - leave blank in english"
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "on "
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "date closed"
+msgstr ""
+
+#: forum/skins/default/templates/reopen.html:29
+msgid "Reopen this question"
+msgstr ""
+
+#: forum/skins/default/templates/revisions_answer.html:7
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:7
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "Revision history"
+msgstr ""
+
+#: forum/skins/default/templates/revisions_answer.html:48
+#: forum/skins/default/templates/revisions_question.html:47
+msgid "click to hide/show revision"
+msgstr ""
+
+#: forum/skins/default/templates/revisions_answer.html:56
+#: forum/templatetags/node_tags.py:62
+msgid "edit"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:3
+msgid "Subscription"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:8
+msgid "You were automatically subscribed to this question."
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:10
+msgid "You are subscribed to this question."
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:13
+msgid "You are not subscribed to this question."
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:18
+#: forum/views/commands.py:323
+msgid "unsubscribe me"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:20
+#: forum/views/commands.py:323
+msgid "subscribe me"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:24
+#, python-format
+msgid ""
+"\n"
+"            (you can adjust your notification settings on your <a href=\"%"
+"(profile_url)s?sort=email_subscriptions\">profile</a>)\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:29
+#, fuzzy
+msgid "Once you sign in you will be able to subscribe for any updates here"
+msgstr ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+
+#: forum/skins/default/templates/tag_selector.html:4
+#: forum/skins/default/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
+#, python-format
+msgid "see questions tagged '%(tag_name)s'"
+msgstr ""
+
+#: forum/skins/default/templates/tag_selector.html:14
+#: forum/skins/default/templates/question_list/tag_selector.html:16
+#, python-format
+msgid "remove '%(tag_name)s' from the list of interesting tags"
+msgstr ""
+
+#: 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
+msgid "Add"
+msgstr ""
+
+#: forum/skins/default/templates/tag_selector.html:21
+#: forum/skins/default/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
+#, python-format
+msgid "remove '%(tag_name)s' from the list of ignored tags"
+msgstr ""
+
+#: forum/skins/default/templates/tag_selector.html:40
+#: forum/skins/default/templates/question_list/tag_selector.html:42
+msgid "keep ignored questions hidden"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:6
+#: forum/skins/default/templates/tags.html:30
+msgid "Tag list"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:32
+msgid "sorted alphabetically"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:32
+msgid "by name"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:33
+msgid "sorted by frequency of tag use"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:33
+msgid "by popularity"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:39
+msgid "All tags matching query"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:39
+msgid "all tags - make this empty in english"
+msgstr ""
+
+#: forum/skins/default/templates/tags.html:42
+msgid "Nothing found"
+msgstr ""
+
+#: forum/skins/default/templates/auth/auth_settings.html:5
+#: forum/skins/default/templates/auth/auth_settings.html:7
+msgid "Authentication settings"
+msgstr ""
+
+#: forum/skins/default/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:12
+msgid "remove"
+msgstr ""
+
+#: forum/skins/default/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:19
+msgid "Add new provider"
+msgstr ""
+
+#: forum/skins/default/templates/auth/auth_settings.html:21
+msgid "This is where you can change your password. Make sure you remember it!"
+msgstr ""
+"<span class='strong'>To change your password</span> please fill out and "
+"submit this form"
+
+#: forum/skins/default/templates/auth/auth_settings.html:24
+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:31
+#, fuzzy
+msgid "Create password"
+msgstr "Password <i>(please retype)</i>"
+
+#: forum/skins/default/templates/auth/complete.html:5
+msgid "Connect your OpenID with this site"
+msgstr "New user signup"
+
+#: forum/skins/default/templates/auth/complete.html:8
+msgid "Connect your OpenID with your account on this site"
+msgstr "New user signup"
+
+#: forum/skins/default/templates/auth/complete.html:12
+msgid "You are here for the first time with "
+msgstr ""
+
+#: forum/skins/default/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
+msgid "This account already exists, please use another."
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:30
+msgid "Sorry, looks like we have some errors:"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:47
+msgid "Screen name label"
+msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#: forum/skins/default/templates/auth/complete.html:54
+msgid "Email address label"
+msgstr ""
+"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
+"anyone, must be valid</i>)"
+
+#: forum/skins/default/templates/auth/complete.html:60
+#: forum/skins/default/templates/auth/signup.html:18
+msgid "receive updates motivational blurb"
+msgstr ""
+"<strong>Receive forum updates by email</strong> - this will help our "
+"community grow and become more useful.<br/>By default <span "
+"class='orange'>Q&amp;A</span> forum sends up to <strong>one email digest per "
+"week</strong>  - only when there is anything new.<br/>If you like, please "
+"adjust this now or any time later from your user account."
+
+#: forum/skins/default/templates/auth/complete.html:64
+#: forum/skins/default/templates/auth/signup.html:22
+msgid "please select one of the options above"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:67
+msgid "Tag filter tool will be your right panel, once you log in."
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:68
+msgid "create account"
+msgstr "Signup"
+
+#: forum/skins/default/templates/auth/complete.html:77
+msgid "Existing account"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:78
+msgid "user name"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:79
+msgid "password"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:86
+msgid "Register"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:87
+msgid "Forgot your password?"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:6
+#: forum/skins/default/templates/auth/temp_login_email.html:6
+msgid "Greetings from the Q&A forum"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:8
+msgid "To make use of the Forum, please follow the link below:"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:12
+msgid "Following the link above will help us verify your email address."
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:14
+#: forum/skins/default/templates/auth/temp_login_email.html:14
+msgid ""
+"If you beleive that this message was sent in mistake -\n"
+"    no further action is needed. Just ingore this email, we apologize\n"
+"    for any inconvenience"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:18
+#: forum/skins/default/templates/auth/temp_login_email.html:18
+#: forum/skins/default/templates/notifications/answeraccepted.html:15
+#: forum/skins/default/templates/notifications/newanswer.html:25
+#: forum/skins/default/templates/notifications/newcomment.html:32
+#: forum/skins/default/templates/notifications/newmember.html:15
+#: forum/skins/default/templates/notifications/newquestion.html:25
+#, fuzzy
+msgid ""
+"Sincerely,<br />\n"
+"    Forum Administrator"
+msgstr ""
+"Sincerely,\n"
+"Q&A Forum Administrator"
+
+#: forum/skins/default/templates/auth/signin.html:6
+msgid "Login"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:24
+msgid "User login"
+msgstr "User login"
+
+#: forum/skins/default/templates/auth/signin.html:36
+#: forum/skins/default/templates/auth/signin.html:86
+#: forum/skins/default/templates/auth/signin.html:92
+msgid "Or..."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:39
+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>"
+
+#: forum/skins/default/templates/auth/signin.html:44
+msgid "Validate my email after I login."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:94
+msgid "Click"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:94
+msgid "if you're having troubles signing in."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:98
+msgid "Enter your "
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:154
+msgid "Why use OpenID?"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:157
+msgid "with openid it is easier"
+msgstr "With the OpenID you don't need to create new username and password."
+
+#: forum/skins/default/templates/auth/signin.html:160
+msgid "reuse openid"
+msgstr "You can safely re-use the same login for all OpenID-enabled websites."
+
+#: forum/skins/default/templates/auth/signin.html:163
+msgid "openid is widely adopted"
+msgstr ""
+"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
+"enabled."
+
+#: forum/skins/default/templates/auth/signin.html:166
+msgid "openid is supported open standard"
+msgstr "OpenID is based on an open standard, supported by many organizations."
+
+#: forum/skins/default/templates/auth/signin.html:171
+msgid "Find out more"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:172
+msgid "Get OpenID"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signup.html:4
+msgid "Signup"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signup.html:8
+msgid "Create login name and password"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signup.html:10
+msgid "Traditional signup info"
 msgstr ""
-"<strong>Notify me</strong> once a day by email when there are any new "
-"answers or updates"
+"<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."
 
-#: forum/skins/default/templates/question.html:382
-msgid "Notify me weekly when there are any new answers"
+#: forum/skins/default/templates/auth/signup.html:31
+msgid "Create Account"
 msgstr ""
-"<strong>Notify me</strong> weekly when there are any new answers or updates"
 
-#: forum/skins/default/templates/question.html:387
-#, python-format
-msgid ""
-"\n"
-"                You can always adjust frequency of email updates from your %"
-"(profile_url)s\n"
-"                "
+#: forum/skins/default/templates/auth/signup.html:32
+msgid "or"
 msgstr ""
-"\n"
-"(note: you can always <a href='%(profile_url)s?"
-"sort=email_subscriptions'>adjust frequency</a> of email updates)"
 
-#: forum/skins/default/templates/question.html:394
-msgid "once you sign in you will be able to subscribe for any updates here"
+#: forum/skins/default/templates/auth/signup.html:33
+msgid "return to login page"
 msgstr ""
-"<span class='strong'>Here</span> (once you log in) you will be able to sign "
-"up for the periodic email updates about this question."
 
-#: forum/skins/default/templates/question.html:405
-msgid "Your answer"
+#: forum/skins/default/templates/auth/temp_login_email.html:8
+msgid "You're seeing this because someone requested a temporary login link"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:407
-msgid "Be the first one to answer this question!"
+#: forum/skins/default/templates/auth/temp_login_email.html:12
+msgid "Following the link above will give you access to your account."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:413
-msgid "you can answer anonymously and then login"
+#: forum/skins/default/templates/auth/temp_login_request.html:5
+msgid "Request temporary login key"
 msgstr ""
-"<span class='strong big'>Please start posting your answer anonymously</span> "
-"- your answer will be saved within the current session and published after "
-"you log in or create a new account. Please try to give a <strong>substantial "
-"answer</strong>, for discussions, <strong>please use comments</strong> and "
-"<strong>please do remember to vote</strong> (after you log in)!"
 
-#: forum/skins/default/templates/question.html:417
-msgid "answer your own question only to give an answer"
+#: forum/skins/default/templates/auth/temp_login_request.html:7
+msgid "Account: request temporary login key"
 msgstr ""
-"<span class='big strong'>You are welcome to answer your own question</span>, "
-"but please make sure to give an <strong>answer</strong>. Remember that you "
-"can always <strong>revise your original question</strong>. Please "
-"<strong>use comments for discussions</strong>  and <strong>please don't "
-"forget to vote :)</strong> for the answers that you liked (or perhaps did "
-"not like)! "
 
-#: forum/skins/default/templates/question.html:419
-msgid "please only give an answer, no discussions"
+#: forum/skins/default/templates/auth/temp_login_request.html:8
+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 ""
-"<span class='big strong'>Please try to give a substantial answer</span>. If "
-"you wanted to comment on the question or answer, just <strong>use the "
-"commenting tool</strong>. Please remember that you can always <strong>revise "
-"your answers</strong> - no need to answer the same question twice. Also, "
-"please <strong>don't forget to vote</strong> - it really helps to select the "
-"best questions and answers!"
 
-#: forum/skins/default/templates/question.html:455
-msgid "Login/Signup to Post Your Answer"
+#: forum/skins/default/templates/auth/temp_login_request.html:25
+#, fuzzy
+msgid "Send link"
+msgstr "link"
+
+#: forum/skins/default/templates/node/accept_button.html:5
+#, python-format
+msgid "%(who)s has selected this answer as the correct answer"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:458
-msgid "Answer Your Own Question"
+#: forum/skins/default/templates/node/accept_button.html:5
+msgid "mark this answer as the accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:460
-msgid "Answer the question"
-msgstr "Post Your Answer"
+#: forum/skins/default/templates/node/comments.html:22
+msgid "I like this comment (click again to cancel)"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:473
-msgid "Question tags"
-msgstr "Tags"
+#: forum/skins/default/templates/node/comments.html:26
+#, fuzzy
+msgid "Edit comment"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/question.html:483
-msgid "question asked"
-msgstr "Asked"
+#: forum/skins/default/templates/node/comments.html:30
+#, fuzzy
+msgid "Delete comment"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/question.html:486
-msgid "question was seen"
-msgstr "Seen"
+#: forum/skins/default/templates/node/comments.html:42
+#, python-format
+msgid "showing %(showing)s of %(total)s"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:486
-msgid "times"
+#: forum/skins/default/templates/node/comments.html:44
+msgid "show all"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:489
-msgid "last updated"
-msgstr "Last updated"
+#: forum/skins/default/templates/node/comments.html:47
+#, fuzzy
+msgid "add new comment"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/question.html:494
-msgid "Related questions"
+#: forum/skins/default/templates/node/comments.html:55
+#, fuzzy
+msgid " add comment"
+msgstr "post a comment"
+
+#: forum/skins/default/templates/node/comments.html:58
+#, python-format
+msgid ""
+"\n"
+"                have <span class=\"comments-char-left-count\">%(max_length)"
+"s</span> characters left\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/question_edit.html:5
-#: forum/skins/default/templates/question_edit.html:66
-msgid "Edit question"
+#: forum/skins/default/templates/node/comments.html:71
+#, fuzzy
+msgid "just now"
+msgstr "Logout Now"
+
+#: forum/skins/default/templates/node/favorite_mark.html:3
+msgid "mark/unmark this question as favorite (click again to cancel)"
 msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:4
-msgid "question tips"
-msgstr "Tips"
+#: forum/skins/default/templates/node/vote_buttons.html:3
+msgid "I like this post (click again to cancel)"
+msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:7
-msgid "please ask a relevant question"
-msgstr "ask a question relevant to the CNPROG community"
+#: forum/skins/default/templates/node/vote_buttons.html:7
+msgid "current number of votes"
+msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:10
-msgid "please try provide enough details"
-msgstr "provide enough details"
+#: forum/skins/default/templates/node/vote_buttons.html:10
+msgid "I dont like this post (click again to cancel)"
+msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:4
-#: forum/skins/default/templates/question_retag.html:53
-msgid "Change tags"
+#: forum/skins/default/templates/notifications/answeraccepted.html:6
+#: forum/skins/default/templates/notifications/digest.html:7
+#: forum/skins/default/templates/notifications/newanswer.html:6
+#: forum/skins/default/templates/notifications/newcomment.html:6
+#: forum/skins/default/templates/notifications/newmember.html:6
+#: forum/skins/default/templates/notifications/newquestion.html:6
+msgid "Hello"
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:40
-msgid "up to 5 tags, less than 20 characters each"
+#: forum/skins/default/templates/notifications/answeraccepted.html:9
+#, python-format
+msgid ""
+"\n"
+"        Just to let you know that %(accepter)s has just accepted %"
+"(answer_author)s's answer on his question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a>:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:83
-msgid "Why use and modify tags?"
+#: forum/skins/default/templates/notifications/digest.html:9
+#, python-format
+msgid ""
+"\n"
+"    This is the %(digest_type)s activity digest for %(app_title)s\n"
+"    "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:86
-msgid "tags help us keep Questions organized"
+#: forum/skins/default/templates/notifications/digest.html:15
+#, python-format
+msgid ""
+"\n"
+"            %(nusers_count)s new user%(nusers_count_pluralize)s joined the %"
+"(app_title)s community:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:94
-msgid "tag editors receive special awards from the community"
+#: forum/skins/default/templates/notifications/digest.html:28
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s of your subscriptions have updates:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:29
-msgid "Found by tags"
-msgstr "Tagged questions"
+#: forum/skins/default/templates/notifications/digest.html:35
+#, fuzzy
+msgid "On question "
+msgstr "Tips"
 
-#: forum/skins/default/templates/questions.html:33
-msgid "Search results"
+#: forum/skins/default/templates/notifications/digest.html:37
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                    %(answer_count)s new answer%(answer_count_pluralize)s\n"
+"                "
 msgstr ""
+"\n"
+"(one comment)"
 
-#: forum/skins/default/templates/questions.html:35
-msgid "Found by title"
+#: forum/skins/default/templates/notifications/digest.html:42
+#, fuzzy, python-format
+msgid ""
+"\n"
+"                    %(comment_count)s new comment%(comment_count_pluralize)"
+"s\n"
+"                "
 msgstr ""
+"\n"
+"(one comment)"
 
-#: forum/skins/default/templates/questions.html:39
-msgid "Unanswered questions"
+#: forum/skins/default/templates/notifications/digest.html:46
+msgid "on your own post(s)"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:41
-msgid "All questions"
+#: forum/skins/default/templates/notifications/digest.html:50
+#, fuzzy
+msgid "an answer was accepted"
+msgstr "answer accepted"
+
+#: forum/skins/default/templates/notifications/digest.html:59
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s new question%(question_count_pluralize)s\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:47
-msgid "most recently asked questions"
+#: forum/skins/default/templates/notifications/digest.html:63
+msgid "matching your interesting tags"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:48
-msgid "most recently updated questions"
+#: forum/skins/default/templates/notifications/digest.html:65
+msgid "posted :"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:48
-msgid "active"
+#: forum/skins/default/templates/notifications/digest.html:71
+#, fuzzy, python-format
+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>"
 
-#: forum/skins/default/templates/questions.html:111
-#: forum/skins/default/templates/questions.html:125
-msgid "Posted:"
+#: forum/skins/default/templates/notifications/feedback.html:7
+#, python-format
+msgid ""
+"\n"
+"    Hello, this is a %(site_title)s forum feedback message\n"
+"    "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:114
-#: forum/skins/default/templates/questions.html:119
-msgid "Updated:"
+#: forum/skins/default/templates/notifications/feedback.html:13
+msgid "Sender"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:144
-msgid "Did not find anything?"
+#: forum/skins/default/templates/notifications/feedback.html:15
+#: forum/skins/default/templates/notifications/feedback.html:18
+#: forum/skins/default/templates/users/info.html:93
+msgid "email"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:147
-msgid "Did not find what you were looking for?"
+#: forum/skins/default/templates/notifications/feedback.html:17
+msgid "anonymous"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:149
-msgid "Please, post your question!"
+#: forum/skins/default/templates/notifications/feedback.html:25
+msgid "Message body:"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:163
+#: forum/skins/default/templates/notifications/newanswer.html:9
 #, python-format
 msgid ""
 "\n"
-"            have total %(q_num)s questions tagged %(tagname)s\n"
-"            "
-msgid_plural ""
+"        %(author_name)s has just posted a new answer on %(app_title)s to the "
+"question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s\"</a>:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newanswer.html:20
+#: forum/skins/default/templates/notifications/newcomment.html:28
+#: forum/skins/default/templates/notifications/newquestion.html:20
+msgid ""
 "\n"
-"            have total %(q_num)s questions tagged %(tagname)s\n"
-"            "
-msgstr[0] ""
+"        Don't forget to come over and cast your vote.\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:9
+#, fuzzy, python-format
+msgid ""
+"\n"
+"            %(author_name)s has just posted a comment on\n"
+"        "
+msgstr ""
 "\n"
 "<div class=\"questions-count\">%(q_num)s</div><p>question tagged</p><p><span "
 "class=\"tag\">%(tagname)s</span></p>"
-msgstr[1] ""
-"\n"
-"<div class=\"questions-count\">%(q_num)s</div><p>questions tagged</p><div "
-"class=\"tags\"><span class=\"tag\">%(tagname)s</span></div>"
 
-#: forum/skins/default/templates/questions.html:171
+#: forum/skins/default/templates/notifications/newcomment.html:14
 #, python-format
 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>"
+"                the answer posted by <a href=\"%(app_url)s%(poster_url)s\">%"
+"(poster_name)s</a> to\n"
+"            "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:177
+#: forum/skins/default/templates/notifications/newcomment.html:19
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s questions containing %(searchtitle)"
-"s\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    have total %(q_num)s questions containing %(searchtitle)"
-"s\n"
-"                    "
-msgstr[0] ""
-"\n"
-"<div class=\"questions-count\">%(q_num)s</div><p>question with title "
-"containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></"
-"p>"
-msgstr[1] ""
-"\n"
-"<div class=\"questions-count\">%(q_num)s</div><p>questions with title "
-"containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></"
-"p>"
+"             the question  <a href=\"%(app_url)s%(question_url)s\">%"
+"(question_title)s</a>\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:185
+#: forum/skins/default/templates/notifications/newmember.html:9
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s unanswered questions\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    have total %(q_num)s unanswered 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>"
+"        %(newmember_name)s has just joined %(app_title)s. You can visit %"
+"(newmember_name)s's profile using the following link: <br />\n"
+"        <a href=\"%(app_url)s%(newmember_url)s\">%(newmember_name)s profile</"
+"a>\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:191
+#: forum/skins/default/templates/notifications/newquestion.html:9
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s question\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    have total %(q_num)s questions\n"
-"                    "
-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>"
+"        %(author_name)s has just posted a new question on %(app_title)s, "
+"with title\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a> and "
+"tagged <em>%(question_tags)s</em>:\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:201
-msgid "latest questions info"
-msgstr "<strong>Newest</strong> questions are shown first."
+#: forum/skins/default/templates/osqaadmin/base.html:13
+msgid "OSQA administration area"
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:205
-msgid "Questions are sorted by the <strong>time of last update</strong>."
+#: forum/skins/default/templates/osqaadmin/base.html:26
+msgid "Administration menu"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:206
-msgid "Most recently answered ones are shown first."
-msgstr "<strong>Most recently answered</strong> questions are shown first."
+#: forum/skins/default/templates/osqaadmin/index.html:7
+msgid "Dashboard"
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:210
-msgid "Questions sorted by <strong>number of responses</strong>."
-msgstr "Questions sorted by the <strong>number of answers</strong>."
+#: forum/skins/default/templates/osqaadmin/index.html:10
+msgid "Welcome to the OSQA administration area."
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:211
-msgid "Most answered questions are shown first."
-msgstr " "
+#: forum/skins/default/templates/osqaadmin/index.html:17
+msgid "Site statistics"
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:215
-msgid "Questions are sorted by the <strong>number of votes</strong>."
+#: forum/skins/default/templates/osqaadmin/index.html:21
+#: forum/skins/default/templates/osqaadmin/index.html:26
+msgid "in the last 24 hours"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:216
-msgid "Most voted questions are shown first."
+#: forum/skins/default/templates/osqaadmin/index.html:31
+msgid "user"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:224
-msgid "Related tags"
-msgstr "Tags"
+#: forum/skins/default/templates/osqaadmin/index.html:31
+msgid "joined in the last 24 hours"
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:227
-#: forum/skins/default/templates/tag_selector.html:10
-#: forum/skins/default/templates/tag_selector.html:27
-#, python-format
-msgid "see questions tagged '%(tag_name)s'"
+#: forum/skins/default/templates/osqaadmin/index.html:37
+msgid "Site status"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:6
-#: forum/skins/default/templates/reopen.html:16
-msgid "Reopen question"
+#: forum/skins/default/templates/osqaadmin/index.html:42
+msgid ""
+"Your site is running in bootstrap mode, click the button bellow to revert to "
+"defaults."
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:19
-msgid "Open the previously closed question"
+#: forum/skins/default/templates/osqaadmin/index.html:45
+msgid ""
+"Your site is running in standard mode, click the button bellow to run in "
+"bootstrap mode."
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "The question was closed for the following reason "
+#: forum/skins/default/templates/osqaadmin/index.html:47
+msgid ""
+"Your site is running with some customized settings, click the buttons bellow "
+"to run with defaults or in bootstrap mode"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "reason - leave blank in english"
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "Are you sure you want to revert to the defaults?"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "on "
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "revert to defaults"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "date closed"
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "Are you sure you want to run bootstrap mode?"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:29
-msgid "Reopen this question"
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "go bootstrap"
 msgstr ""
 
-#: forum/skins/default/templates/revisions_answer.html:7
-#: forum/skins/default/templates/revisions_answer.html:38
-#: forum/skins/default/templates/revisions_question.html:8
-#: forum/skins/default/templates/revisions_question.html:38
-msgid "Revision history"
+#: forum/skins/default/templates/osqaadmin/index.html:59
+msgid "Recalculate scores and reputation"
 msgstr ""
 
-#: forum/skins/default/templates/revisions_answer.html:50
-#: forum/skins/default/templates/revisions_question.html:50
-msgid "click to hide/show revision"
+#: forum/skins/default/templates/osqaadmin/index.html:60
+msgid "This is a heavy operation, are you sure?"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:4
-msgid "Interesting tags"
+#: forum/skins/default/templates/osqaadmin/index.html:60
+msgid "Recalculate"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:14
-#, python-format
-msgid "remove '%(tag_name)s' from the list of interesting tags"
+#: forum/skins/default/templates/osqaadmin/index.html:65
+msgid "Recent activity"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/item.html:12
+msgid "this question has an accepted answer"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/related_tags.html:6
+msgid "Related tags"
+msgstr "Tags"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+msgid "most recently updated questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+msgid "active"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:20
-#: forum/skins/default/templates/tag_selector.html:37
-msgid "Add"
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "most recently asked questions"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:21
-msgid "Ignored tags"
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "newest"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:31
-#, python-format
-msgid "remove '%(tag_name)s' from the list of ignored tags"
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest questions"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:40
-msgid "keep ingored questions hidden"
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:6
-#: forum/skins/default/templates/tags.html:30
-msgid "Tag list"
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:32
-msgid "sorted alphabetically"
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:32
-msgid "by name"
-msgstr ""
+#: forum/skins/default/templates/question_list/title.html:5
+msgid "Found by tags"
+msgstr "Tagged questions"
 
-#: forum/skins/default/templates/tags.html:33
-msgid "sorted by frequency of tag use"
+#: forum/skins/default/templates/question_list/title.html:9
+msgid "Search results"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:33
-msgid "by popularity"
+#: forum/skins/default/templates/question_list/title.html:11
+msgid "Found by title"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:39
-msgid "All tags matching query"
+#: forum/skins/default/templates/question_list/title.html:15
+msgid "Unanswered questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:39
-msgid "all tags - make this empty in english"
+#: forum/skins/default/templates/question_list/title.html:17
+#: forum/skins/default/templates/users/subscriptions.html:74
+msgid "All questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:42
-msgid "Nothing found"
+#: forum/skins/default/templates/sidebar/recent_awards.html:4
+msgid "Recent awards"
+msgstr "Recent badges"
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:15
+msgid "all awards"
+msgstr "all badges"
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:4
+msgid "Recent tags"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:6
+#: forum/skins/default/templates/sidebar/recent_tags.html:12
+msgid "popular tags"
+msgstr "tags"
+
+#: forum/skins/default/templates/users/edit.html:6
 msgid "Edit user profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:19
+#: forum/skins/default/templates/users/edit.html:19
 msgid "edit profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:31
+#: forum/skins/default/templates/users/edit.html:31
 msgid "image associated with your email address"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:31
+#: forum/skins/default/templates/users/edit.html:31
 #, python-format
 msgid "avatar, see %(gravatar_faq_url)s"
 msgstr "<a href='%(gravatar_faq_url)s'>gravatar</a>"
 
-#: forum/skins/default/templates/user_edit.html:36
-#: forum/skins/default/templates/user_info.html:60
+#: forum/skins/default/templates/users/edit.html:36
+#: forum/skins/default/templates/users/info.html:52
 msgid "Registered user"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:43
+#: forum/skins/default/templates/users/edit.html:43
 msgid "Screen Name"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:86
-#: forum/skins/default/templates/user_email_subscriptions.html:20
+#: forum/skins/default/templates/users/edit.html:86
+#: forum/skins/default/templates/users/subscriptions.html:116
 msgid "Update"
 msgstr ""
 
-#: forum/skins/default/templates/user_email_subscriptions.html:8
-msgid "Email subscription settings"
-msgstr ""
-
-#: forum/skins/default/templates/user_email_subscriptions.html:9
-msgid "email subscription settings info"
-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/user_email_subscriptions.html:21
-msgid "Stop sending email"
-msgstr "Stop Email"
-
-#: forum/skins/default/templates/user_info.html:22
-#: forum/skins/default/templates/users.html:26 forum/views/users.py:916
+#: forum/skins/default/templates/users/info.html:22
+#: forum/skins/default/templates/users/signature.html:6
+#: forum/skins/default/templates/users/users.html:26
 msgid "reputation"
 msgstr "karma"
 
-#: forum/skins/default/templates/user_info.html:32
+#: forum/skins/default/templates/users/info.html:32
 msgid "Moderate this user"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:45
+#: forum/skins/default/templates/users/info.html:44
 msgid "update profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:64
+#: forum/skins/default/templates/users/info.html:56
 msgid "real name"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:69
+#: forum/skins/default/templates/users/info.html:61
 msgid "member for"
 msgstr "member since"
 
-#: forum/skins/default/templates/user_info.html:74
+#: forum/skins/default/templates/users/info.html:66
 msgid "last seen"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:80
+#: forum/skins/default/templates/users/info.html:72
 msgid "user website"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:86
+#: forum/skins/default/templates/users/info.html:78
 msgid "location"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:93
+#: forum/skins/default/templates/users/info.html:86
 msgid "age"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:94
+#: forum/skins/default/templates/users/info.html:87
 msgid "age unit"
 msgstr "years old"
 
-#: forum/skins/default/templates/user_info.html:100
+#: forum/skins/default/templates/users/info.html:100
 msgid "todays unused votes"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:101
+#: forum/skins/default/templates/users/info.html:101
 msgid "votes left"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:12
+#: forum/skins/default/templates/users/stats.html:13
 #, python-format
 msgid ""
 "\n"
@@ -2555,7 +3389,7 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:23
+#: forum/skins/default/templates/users/stats.html:29
 #, python-format
 msgid ""
 "\n"
@@ -2568,33 +3402,16 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:36
+#: forum/skins/default/templates/users/stats.html:42
 #, python-format
 msgid "the answer has been voted for %(vote_count)s times"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:36
+#: forum/skins/default/templates/users/stats.html:42
 msgid "this answer has been selected as correct"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:46
-#, python-format
-msgid ""
-"\n"
-"                    (one comment)\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    the answer has been commented %(comment_count)s times\n"
-"                    "
-msgstr[0] ""
-"\n"
-"(one comment)"
-msgstr[1] ""
-"\n"
-"(%(comment_count)s comments)"
-
-#: forum/skins/default/templates/user_stats.html:61
+#: forum/skins/default/templates/users/stats.html:58
 #, python-format
 msgid ""
 "\n"
@@ -2607,23 +3424,23 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:72
+#: forum/skins/default/templates/users/stats.html:69
 msgid "thumb up"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:73
+#: forum/skins/default/templates/users/stats.html:70
 msgid "user has voted up this many times"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:77
+#: forum/skins/default/templates/users/stats.html:74
 msgid "thumb down"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:78
+#: forum/skins/default/templates/users/stats.html:75
 msgid "user voted down this many times"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:87
+#: forum/skins/default/templates/users/stats.html:84
 #, python-format
 msgid ""
 "\n"
@@ -2636,13 +3453,13 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:100
+#: forum/skins/default/templates/users/stats.html:97
 #, python-format
 msgid ""
 "see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:115
+#: forum/skins/default/templates/users/stats.html:112
 #, python-format
 msgid ""
 "\n"
@@ -2655,936 +3472,1098 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_tabs.html:7
-msgid "User profile"
+#: forum/skins/default/templates/users/subscriptions.html:8
+#, 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/user_tabs.html:7 forum/views/users.py:890
-msgid "overview"
+#: forum/skins/default/templates/users/subscriptions.html:10
+msgid ""
+"\n"
+"        Here you can decide which types of notifications you wish to "
+"receive, and it's frequency.<br />\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:9 forum/views/users.py:898
-msgid "recent activity"
+#: forum/skins/default/templates/users/subscriptions.html:14
+msgid ""
+"\n"
+"        Currently you have notifications enabled. You can always stop all "
+"notifications without loosing your settings and restart them afterwards.<br /"
+">\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:18
+msgid ""
+"\n"
+"        Currently you have notifications disabled. You can enable them "
+"clicking on the <strong>Start notifications</strong> button bellow.<br />\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:28
+msgid "Notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:32
+msgid "A new member joins"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:36
+#, fuzzy
+msgid "A new question is posted"
+msgstr "Tips"
+
+#: forum/skins/default/templates/users/subscriptions.html:40
+msgid "A new question matching my interesting tags is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:44
+msgid "There's an update on one of my subscriptions"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:52
+msgid "Auto subscribe me to:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:57
+#, fuzzy
+msgid "Questions I ask"
+msgstr "Tags"
+
+#: forum/skins/default/templates/users/subscriptions.html:60
+#, fuzzy
+msgid "Questions I answer"
+msgstr "answer"
+
+#: forum/skins/default/templates/users/subscriptions.html:63
+#, fuzzy
+msgid "Questions I comment"
+msgstr "question comment"
+
+#: forum/skins/default/templates/users/subscriptions.html:68
+#, fuzzy
+msgid "Questions I view"
+msgstr "Tags"
+
+#: forum/skins/default/templates/users/subscriptions.html:71
+msgid "All questions matching my interesting tags"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:82
+msgid "On my subscriptions, notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:87
+#, fuzzy
+msgid "An answer is posted"
+msgstr "Tips"
+
+#: forum/skins/default/templates/users/subscriptions.html:90
+msgid "A comment on one of my posts is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:95
+msgid "A comment is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:98
+#, fuzzy
+msgid "An answer is accepted"
+msgstr "answer accepted"
+
+#: forum/skins/default/templates/users/subscriptions.html:106
+msgid "More:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:111
+msgid ""
+"Notify me when someone replys to one of my comments on any post using the "
+"<pre>@username</pre> notation"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:118
+msgid "Stop notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:120
+msgid "Start notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "User profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:12 forum/views/users.py:908
-msgid "comments and answers to others questions"
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "overview"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:13 forum/views/users.py:907
-msgid "responses"
+#: forum/skins/default/templates/users/tabs.html:9
+msgid "recent activity"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:16
+#: forum/skins/default/templates/users/tabs.html:11
 msgid "graph of user reputation"
 msgstr "Graph of user karma"
 
-#: forum/skins/default/templates/user_tabs.html:17
+#: forum/skins/default/templates/users/tabs.html:12
 msgid "reputation history"
 msgstr "karma history"
 
-#: forum/skins/default/templates/user_tabs.html:20 forum/views/users.py:934
+#: forum/skins/default/templates/users/tabs.html:15 forum/views/users.py:196
 msgid "user vote record"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:20 forum/views/users.py:933
+#: forum/skins/default/templates/users/tabs.html:15
 msgid "casted votes"
 msgstr "votes"
 
-#: forum/skins/default/templates/user_tabs.html:23
+#: forum/skins/default/templates/users/tabs.html:18
 msgid "questions that user selected as his/her favorite"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:24
+#: forum/skins/default/templates/users/tabs.html:19
 msgid "favorites"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:27 forum/views/users.py:943
+#: forum/skins/default/templates/users/tabs.html:22
 msgid "email subscription settings"
 msgstr ""
 
-#: forum/skins/default/templates/user_tabs.html:28 forum/views/users.py:942
-msgid "email subscriptions"
+#: forum/skins/default/templates/users/tabs.html:23
+msgid "subscriptions"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:6
-#: forum/skins/default/templates/users.html:24
+#: forum/skins/default/templates/users/users.html:6
+#: forum/skins/default/templates/users/users.html:24
 msgid "Users"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:27
-msgid "recent"
+#: forum/skins/default/templates/users/users.html:27
+msgid "recent"
+msgstr ""
+
+#: forum/skins/default/templates/users/users.html:28
+msgid "oldest"
+msgstr ""
+
+#: forum/skins/default/templates/users/users.html:29
+msgid "by username"
+msgstr ""
+
+#: forum/skins/default/templates/users/users.html:35
+#, python-format
+msgid "users matching query %(suser)s:"
+msgstr ""
+
+#: forum/skins/default/templates/users/users.html:39
+msgid "Nothing found."
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:168 forum/templatetags/extra_tags.py:195
+msgid "reputation points"
+msgstr "karma"
+
+#: forum/templatetags/extra_tags.py:248
+msgid "2 days ago"
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:250
+msgid "yesterday"
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:252
+#, python-format
+msgid "%(hr)d hour ago"
+msgid_plural "%(hr)d hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/extra_tags.py:254
+#, python-format
+msgid "%(min)d min ago"
+msgid_plural "%(min)d mins ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/node_tags.py:58
+msgid "permanent link"
+msgstr "link"
+
+#: forum/templatetags/node_tags.py:58
+msgid "answer permanent link"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:64
+msgid "retag"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:68
+msgid "reopen"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:70
+msgid "close"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:73 forum/views/commands.py:124
+#: forum/views/commands.py:136
+msgid "flag"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:79
+msgid ""
+"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:82
+msgid "delete"
+msgstr ""
+
+#: forum/templatetags/question_list_tags.py:57
+#, fuzzy
+msgid "<strong>Newest</strong> questions are shown first. "
+msgstr " "
+
+#: forum/templatetags/question_list_tags.py:58
+msgid "Questions are sorted by the <strong>time of last update</strong>."
+msgstr ""
+
+#: forum/templatetags/question_list_tags.py:59
+msgid "Questions sorted by <strong>number of responses</strong>."
+msgstr "Questions sorted by the <strong>number of answers</strong>."
+
+#: forum/templatetags/question_list_tags.py:60
+msgid "Questions are sorted by the <strong>number of votes</strong>."
+msgstr ""
+
+#: forum/templatetags/user_tags.py:58 forum/views/readers.py:293
+#, python-format
+msgid "Revision n. %(rev_number)d"
+msgstr ""
+
+#: forum/utils/forms.py:32
+msgid "this field is required"
+msgstr ""
+
+#: forum/utils/forms.py:47
+msgid "choose a username"
+msgstr "Choose screen name"
+
+#: forum/utils/forms.py:52
+msgid "user name is required"
+msgstr ""
+
+#: forum/utils/forms.py:53
+msgid "sorry, this name is taken, please choose another"
+msgstr ""
+
+#: forum/utils/forms.py:54
+msgid "sorry, this name is not allowed, please choose another"
+msgstr ""
+
+#: forum/utils/forms.py:55
+msgid "sorry, there is no user with this name"
+msgstr ""
+
+#: forum/utils/forms.py:56
+msgid "sorry, we have a serious error - user name is taken by several users"
+msgstr ""
+
+#: forum/utils/forms.py:57
+msgid "user name can only consist of letters, empty space and underscore"
+msgstr ""
+
+#: forum/utils/forms.py:105
+msgid "your email address"
+msgstr "Your email <i>(never shared)</i>"
+
+#: forum/utils/forms.py:106
+msgid "email address is required"
+msgstr ""
+
+#: forum/utils/forms.py:108
+msgid "this email is already used by someone else, please choose another"
+msgstr ""
+
+#: forum/utils/forms.py:133
+msgid "choose password"
+msgstr "Password"
+
+#: forum/utils/forms.py:134
+msgid "password is required"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:28
-msgid "oldest"
+#: forum/utils/forms.py:137
+msgid "retype password"
+msgstr "Password <i>(please retype)</i>"
+
+#: forum/utils/forms.py:138
+msgid "please, retype your password"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:29
-msgid "by username"
+#: forum/utils/forms.py:139
+msgid "sorry, entered passwords did not match, please try again"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:35
+#: forum/views/admin.py:47
 #, python-format
-msgid "users matching query %(suser)s:"
+msgid "'%s' settings saved succesfully"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:39
-msgid "Nothing found."
+#: forum/views/admin.py:141
+msgid "Bootstrap mode enabled"
 msgstr ""
 
-#: forum/skins/default/templates/users_questions.html:11
-msgid "this questions was selected as favorite"
+#: forum/views/admin.py:155
+msgid "All values reverted to defaults"
 msgstr ""
 
-#: forum/skins/default/templates/users_questions.html:12
-msgid "thumb-up on"
+#: forum/views/admin.py:171
+msgid "All values recalculated"
 msgstr ""
 
-#: forum/skins/default/templates/users_questions.html:19
-msgid "thumb-up off"
+#: forum/views/auth.py:103 forum/views/auth.py:112
+msgid ""
+"Sorry, these login credentials belong to anoother user. Plese terminate your "
+"current session and try again."
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:5
-#: forum/skins/default/templates/authopenid/complete.html:19
-msgid "Connect your OpenID with this site"
-msgstr "New user signup"
+#: forum/views/auth.py:105
+msgid "You are already logged in with that user."
+msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:8
-#: forum/skins/default/templates/authopenid/complete.html:22
-msgid "Connect your OpenID with your account on this site"
-msgstr "New user signup"
+#: forum/views/auth.py:110
+msgid "These login credentials are already associated with your account."
+msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:12
-msgid "You are here for the first time with "
+#: forum/views/auth.py:116
+msgid "The new credentials are now associated with your account"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:13
+#: forum/views/auth.py:157
 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. "
+"Oops, something went wrong in the middle of this process. Please try again."
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:15
-#: forum/skins/default/templates/authopenid/complete.html:42
-msgid "This account already exists, please use another."
+#: forum/views/auth.py:219
+msgid "Temporary login link"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:30
-#: forum/skins/default/templates/authopenid/complete.html:57
-msgid "Sorry, looks like we have some errors:"
+#: forum/views/auth.py:224
+msgid "An email has been sent with your temporary login key"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:47
-#: forum/skins/default/templates/authopenid/complete.html:82
-msgid "Screen name label"
-msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-
-#: forum/skins/default/templates/auth/complete.html:54
-#: forum/skins/default/templates/authopenid/complete.html:89
-msgid "Email address label"
+#: forum/views/auth.py:239
+msgid ""
+"You are logged in with a temporary access key, please take the time to fix "
+"your issue with authentication."
 msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
 
-#: forum/skins/default/templates/auth/complete.html:60
-#: forum/skins/default/templates/auth/signup.html:18
-#: forum/skins/default/templates/authopenid/complete.html:95
-#: forum/skins/default/templates/authopenid/signup.html:18
-msgid "receive updates motivational blurb"
+#: forum/views/auth.py:245
+msgid "Email Validation"
 msgstr ""
-"<strong>Receive forum updates by email</strong> - this will help our "
-"community grow and become more useful.<br/>By default <span "
-"class='orange'>Q&amp;A</span> forum sends up to <strong>one email digest per "
-"week</strong>  - only when there is anything new.<br/>If you like, please "
-"adjust this now or any time later from your user account."
 
-#: forum/skins/default/templates/auth/complete.html:64
-#: forum/skins/default/templates/auth/signup.html:22
-#: forum/skins/default/templates/authopenid/complete.html:99
-#: forum/skins/default/templates/authopenid/signup.html:22
-msgid "please select one of the options above"
+#: forum/views/auth.py:256
+msgid "Thank you, your email is now validated."
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:67
-#: forum/skins/default/templates/authopenid/complete.html:102
-msgid "Tag filter tool will be your right panel, once you log in."
+#: forum/views/auth.py:280
+msgid "Your password was changed"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:68
-#: forum/skins/default/templates/authopenid/complete.html:103
-msgid "create account"
-msgstr "Signup"
+#: forum/views/auth.py:282
+#, fuzzy
+msgid "New password set"
+msgstr "Recover password"
 
-#: forum/skins/default/templates/auth/complete.html:77
-#: forum/skins/default/templates/authopenid/complete.html:112
-msgid "Existing account"
+#: forum/views/auth.py:315
+#, python-format
+msgid "You removed the association with %s"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:78
-#: forum/skins/default/templates/authopenid/complete.html:113
-msgid "user name"
+#: forum/views/auth.py:353
+#, python-format
+msgid "Welcome back %s, you are now logged in"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:79
-#: forum/skins/default/templates/authopenid/complete.html:114
-msgid "password"
+#: forum/views/commands.py:20
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough reputation points to %(action)s."
+"<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:86
-#: forum/skins/default/templates/authopenid/complete.html:121
-msgid "Register"
+#: forum/views/commands.py:29
+#, python-format
+msgid ""
+"\n"
+"            Sorry but you cannot %(action)s your own post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:87
-#: forum/skins/default/templates/authopenid/complete.html:122
-#: forum/skins/default/templates/authopenid/signin.html:151
-msgid "Forgot your password?"
+#: forum/views/commands.py:38
+#, python-format
+msgid ""
+"\n"
+"            Sorry but anonymous users cannot %(action)s.<br />\n"
+"            Please login or create an account <a href'%(signin_url)s'>here</"
+"a>.\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:22
-#: forum/skins/default/templates/authopenid/signin.html:5
-#: forum/skins/default/templates/authopenid/signin.html:21
-msgid "User login"
-msgstr "User login"
-
-#: forum/skins/default/templates/auth/signin.html:29
-#: forum/skins/default/templates/authopenid/signin.html:42
-msgid "Click to sign in through any of these services."
+#: forum/views/commands.py:47
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough %(action)s left for today..<br /"
+">\n"
+"            The limit is %(limit)s per day..<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
 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>"
 
-#: forum/skins/default/templates/auth/signin.html:34
+#: forum/views/commands.py:57
+#, python-format
 msgid ""
-"Take the opurtunity to validate my email next to the external provider I "
-"choose."
+"\n"
+"            Sorry, but you cannot %(action)s twice the same post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:84
-msgid "Enter your "
-msgstr ""
+#: forum/views/commands.py:71 forum/views/commands.py:74
+#: forum/views/commands.py:111
+msgid "vote"
+msgid_plural "votes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/signin.html:140
-#: forum/skins/default/templates/authopenid/signin.html:160
-msgid "Why use OpenID?"
+#: forum/views/commands.py:89
+#, python-format
+msgid ""
+"Sorry but you cannot cancel a vote after %(ndays)d %(tdays)s from the "
+"original vote"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:143
-#: forum/skins/default/templates/authopenid/signin.html:163
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: forum/skins/default/templates/auth/signin.html:146
-#: forum/skins/default/templates/authopenid/signin.html:166
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
+#: forum/views/commands.py:90
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/signin.html:149
-#: forum/skins/default/templates/authopenid/signin.html:169
-msgid "openid is widely adopted"
+#: forum/views/commands.py:110
+#, python-format
+msgid "You have %(nvotes)s %(tvotes)s left today."
 msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: forum/skins/default/templates/auth/signin.html:152
-#: forum/skins/default/templates/authopenid/signin.html:172
-msgid "openid is supported open standard"
-msgstr "OpenID is based on an open standard, supported by many organizations."
 
-#: forum/skins/default/templates/auth/signin.html:157
-#: forum/skins/default/templates/authopenid/signin.html:177
-msgid "Find out more"
+#: forum/views/commands.py:121 forum/views/commands.py:127
+msgid "flag posts"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:158
-#: forum/skins/default/templates/authopenid/signin.html:178
-msgid "Get OpenID"
+#: forum/views/commands.py:132
+msgid "flags"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:4
-#: forum/skins/default/templates/authopenid/signup.html:4
-msgid "Signup"
-msgstr ""
+#: forum/views/commands.py:149 forum/views/commands.py:155
+#, fuzzy
+msgid "like comments"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/auth/signup.html:8
-#: forum/skins/default/templates/authopenid/signup.html:8
-msgid "Create login name and password"
+#: forum/views/commands.py:152
+msgid "like"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:10
-#: forum/skins/default/templates/authopenid/signup.html:10
-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."
+#: forum/views/commands.py:179 forum/views/commands.py:182
+#, fuzzy
+msgid "delete comments"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/auth/signup.html:25
-#: forum/skins/default/templates/authopenid/signup.html:25
-msgid ""
-"Please read and type in the two words below to help us prevent automated "
-"account creation."
+#: forum/views/commands.py:197
+msgid "mark a question as favorite"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:27
-#: forum/skins/default/templates/authopenid/signup.html:27
-msgid "Create Account"
-msgstr ""
+#: forum/views/commands.py:221 forum/views/commands.py:233
+#, fuzzy
+msgid "comment"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/auth/signup.html:29
-msgid "return to login page"
+#: forum/views/commands.py:224 forum/views/commands.py:351
+msgid "Invalid request"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:3
-#: forum/skins/default/templates/authopenid/changeemail.html:9
-#: forum/skins/default/templates/authopenid/changeemail.html:38
-msgid "Change email"
-msgstr "Change Email"
-
-#: forum/skins/default/templates/authopenid/changeemail.html:11
-msgid "Save your email address"
-msgstr ""
+#: forum/views/commands.py:230
+#, fuzzy
+msgid "edit comments"
+msgstr "post a comment"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:16
-#, python-format
-msgid "change %(email)s info"
+#: forum/views/commands.py:240
+msgid "Comment is empty"
 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>"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:18
-#, python-format
-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."
+#: forum/views/commands.py:265
+#, fuzzy
+msgid "accept answers"
+msgstr "oldest"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:31
-msgid "Your new Email"
+#: forum/views/commands.py:271
+msgid "Sorry but only the question author can accept an answer"
 msgstr ""
-"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
-"anyone, must be valid)"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:31
-msgid "Your Email"
+#: forum/views/commands.py:295 forum/views/commands.py:298
+msgid "delete posts"
 msgstr ""
-"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:38
-msgid "Save Email"
+#: forum/views/meta.py:43
+#, python-format
+msgid "Feedback message from %(site_name)s"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:49
-msgid "Validate email"
+#: forum/views/meta.py:46
+msgid "Thanks for the feedback!"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:52
-#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+#: forum/views/meta.py:53
+msgid "We look forward to hearing your feedback! Please, give it next time :)"
 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>."
 
-#: forum/skins/default/templates/authopenid/changeemail.html:57
-msgid "Email not changed"
+#: forum/views/readers.py:64
+msgid "Open questions without an accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:60
+#: forum/views/readers.py:73
 #, python-format
-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."
-
-#: forum/skins/default/templates/authopenid/changeemail.html:65
-msgid "Email changed"
+msgid "Questions tagged <span class=\"tag\">%(tag)s</span>"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:68
+#: forum/views/readers.py:131
 #, python-format
-msgid "your current %(email)s can be used for this"
+msgid "questions matching '%(keywords)s'"
 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."
 
-#: forum/skins/default/templates/authopenid/changeemail.html:73
-msgid "Email verified"
+#: forum/views/users.py:152
+msgid "user profile"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeemail.html:76
-msgid "thanks for verifying email"
+#: forum/views/users.py:152
+msgid "user profile overview"
 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."
-
-#: forum/skins/default/templates/authopenid/changeemail.html:81
-msgid "email key not sent"
-msgstr "Validation email not sent"
 
-#: forum/skins/default/templates/authopenid/changeemail.html:84
-#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+#: forum/views/users.py:186
+msgid "recent user activity"
 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."
 
-#: forum/skins/default/templates/authopenid/changeopenid.html:8
-msgid "Account: change OpenID URL"
+#: forum/views/users.py:186
+msgid "profile - recent activity"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeopenid.html:12
-msgid ""
-"This is where you can change your OpenID URL. Make sure you remember it!"
+#: forum/views/users.py:196
+msgid "profile - votes"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/changeopenid.html:14
-#: forum/skins/default/templates/authopenid/delete.html:14
-#: forum/skins/default/templates/authopenid/delete.html:24
-msgid "Please correct errors below:"
-msgstr ""
+#: forum/views/users.py:203
+msgid "user reputation in the community"
+msgstr "user karma"
 
-#: forum/skins/default/templates/authopenid/changeopenid.html:29
-msgid "OpenID URL:"
-msgstr ""
+#: forum/views/users.py:203
+msgid "profile - user reputation"
+msgstr "Profile - User's Karma"
 
-#: forum/skins/default/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#: forum/views/users.py:214
+msgid "favorite questions"
 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>"
 
-#: forum/skins/default/templates/authopenid/complete.html:31
-#, python-format
-msgid ""
-"%(username)s already exists, choose another name for \n"
-"                            %(provider)s. Email is required too, see %"
-"(gravatar_faq_url)s\n"
-"                        "
+#: forum/views/users.py:214
+msgid "profile - favorite questions"
 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>"
 
-#: forum/skins/default/templates/authopenid/complete.html:35
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#: forum/views/users.py:220
+#, fuzzy
+msgid "subscription settings"
 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>"
+"<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/authopenid/complete.html:38
-#, python-format
-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>"
+#: forum/views/users.py:220
+#, fuzzy
+msgid "profile - subscriptions"
+msgstr "Profile - User's Karma"
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:2
-msgid "Thank you for registering at our Q&A forum!"
+#: forum/views/users.py:230
+msgid "Notifications are now enabled"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:4
-msgid "Your account details are:"
+#: forum/views/users.py:232
+msgid "Notifications are now disabled"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:6
-msgid "Username:"
+#: forum/views/users.py:239
+#, 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/writers.py:68
+msgid "uploading images is limited to users with >60 reputation points"
+msgstr "sorry, file uploading requires karma >60"
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:7
-#: forum/skins/default/templates/authopenid/delete.html:19
-msgid "Password:"
+#: forum/views/writers.py:70
+msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:9
-msgid "Please sign in here:"
+#: forum/views/writers.py:72
+#, python-format
+msgid "maximum upload file size is %sM"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/confirm_email.txt:12
-#: forum/skins/default/templates/authopenid/email_validation.txt:14
-#: forum/skins/default/templates/authopenid/sendpw_email.txt:8
+#: forum/views/writers.py:74
+#, python-format
 msgid ""
-"Sincerely,\n"
-"Forum Administrator"
+"Error uploading file. Please contact the site administrator. Thank you. %s"
 msgstr ""
-"Sincerely,\n"
-"Q&A Forum Administrator"
 
-#: forum/skins/default/templates/authopenid/delete.html:8
-msgid "Account: delete account"
+#: forum/views/writers.py:85
+msgid "Initial revision"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/delete.html:12
-msgid ""
-"Note: After deleting your account, anyone will be able to register this "
-"username."
+#: forum/views/writers.py:143
+msgid "Retag"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/delete.html:16
-msgid "Check confirm box, if you want delete your account."
+#: forum_modules/books/urls.py:7 forum_modules/books/urls.py:8
+#: forum_modules/books/urls.py:9
+msgid "books/"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/delete.html:31
-msgid "I am sure I want to delete my account."
+#: forum_modules/default_badges/badges.py:17
+#: forum_modules/default_badges/badges.py:24
+#: forum_modules/default_badges/badges.py:31
+#, python-format
+msgid "Asked a question with %s views"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/delete.html:32
-msgid "Password/OpenID URL"
-msgstr ""
+#: forum_modules/default_badges/badges.py:39
+#: forum_modules/default_badges/badges.py:53
+#: forum_modules/default_badges/badges.py:67
+#, fuzzy, python-format
+msgid "Answer voted up %s times"
+msgstr "Post Your Answer"
 
-#: forum/skins/default/templates/authopenid/delete.html:32
-msgid "(required for your security)"
+#: forum_modules/default_badges/badges.py:46
+#: forum_modules/default_badges/badges.py:60
+#: forum_modules/default_badges/badges.py:74
+#, python-format
+msgid "Question voted up %s times"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/delete.html:34
-msgid "Delete account permanently"
+#: forum_modules/default_badges/badges.py:82
+#: forum_modules/default_badges/badges.py:89
+#, python-format
+msgid "Question favorited by %s users"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/email_validation.txt:2
-msgid "Greetings from the Q&A forum"
+#: forum_modules/default_badges/badges.py:97
+#, python-format
+msgid "Deleted own post with score of %s or higher"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/email_validation.txt:4
-msgid "To make use of the Forum, please follow the link below:"
+#: forum_modules/default_badges/badges.py:108
+#, python-format
+msgid "Deleted own post with score of %s or lower"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/email_validation.txt:8
-msgid "Following the link above will help us verify your email address."
+#: forum_modules/default_badges/badges.py:120
+msgid "First flagged post"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/email_validation.txt:10
-msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
-"for any inconvenience"
+#: forum_modules/default_badges/badges.py:127
+msgid "First down vote"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/external_legacy_login_info.html:4
-#: forum/skins/default/templates/authopenid/external_legacy_login_info.html:7
-msgid "Traditional login information"
+#: forum_modules/default_badges/badges.py:134
+msgid "First retag"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/external_legacy_login_info.html:12
-#, python-format
-msgid ""
-"how to login with password through external login website or use %"
-"(feedback_url)s"
+#: forum_modules/default_badges/badges.py:141
+msgid "First up vote"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/sendpw.html:4
-#: forum/skins/default/templates/authopenid/sendpw.html:7
-msgid "Send new password"
-msgstr "Recover password"
-
-#: forum/skins/default/templates/authopenid/sendpw.html:10
-msgid "password recovery information"
+#: forum_modules/default_badges/badges.py:148
+msgid "First edit"
 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"
 
-#: forum/skins/default/templates/authopenid/sendpw.html:21
-msgid "Reset password"
-msgstr "Send me a new password"
-
-#: forum/skins/default/templates/authopenid/sendpw.html:22
-msgid "return to login"
+#: forum_modules/default_badges/badges.py:155
+msgid "First accepted answer on your own question"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/sendpw_email.txt:2
-#, python-format
-msgid ""
-"Someone has requested to reset your password on %(site_url)s.\n"
-"If it were not you, it is safe to ignore this email."
+#: forum_modules/default_badges/badges.py:162
+msgid "Completed all user profile fields"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/sendpw_email.txt:5
-#, python-format
-msgid ""
-"email explanation how to use new %(password)s for %(username)s\n"
-"with the %(key_link)s"
+#: forum_modules/default_badges/badges.py:169
+msgid "First rollback"
 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"
 
-#: forum/skins/default/templates/authopenid/signin.html:28
+#: forum_modules/default_badges/badges.py:177
 #, python-format
-msgid ""
-"\n"
-"                Your answer to %(title)s %(summary)s will be posted once you "
-"log in\n"
-"                "
+msgid "Voted %s times"
 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>"
 
-#: forum/skins/default/templates/authopenid/signin.html:35
+#: forum_modules/default_badges/badges.py:184
 #, python-format
-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>"
-
-#: forum/skins/default/templates/authopenid/signin.html:128
-msgid "Enter your <span id=\"enter_your_what\">Provider user name</span>"
+msgid "Left %s comments"
 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>"
 
-#: forum/skins/default/templates/authopenid/signin.html:135
-msgid ""
-"Enter your <a class=\"openid_logo\" href=\"http://openid.net\">OpenID</a> "
-"web address"
+#: forum_modules/default_badges/badges.py:192
+#, fuzzy, python-format
+msgid "Answered your own question with at least %s up votes"
 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>"
+"<span class='big strong'>You are welcome to answer your own question</span>, "
+"but please make sure to give an <strong>answer</strong>. Remember that you "
+"can always <strong>revise your original question</strong>. Please "
+"<strong>use comments for discussions</strong>  and <strong>please don't "
+"forget to vote :)</strong> for the answers that you liked (or perhaps did "
+"not like)! "
 
-#: forum/skins/default/templates/authopenid/signin.html:137
-#: forum/skins/default/templates/authopenid/signin.html:149
-msgid "Login"
+#: forum_modules/default_badges/badges.py:205
+msgid "Strunk & White"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/signin.html:140
-msgid "Enter your login name and password"
+#: forum_modules/default_badges/badges.py:206
+#, python-format
+msgid "Edited %s entries"
 msgstr ""
-"<span class='big strong'>Enter your CNPROG login and password</span><br/"
-"><span class='grey'>(or select your OpenID provider above)</span>"
 
-#: forum/skins/default/templates/authopenid/signin.html:144
-msgid "Login name"
+#: forum_modules/default_badges/badges.py:217
+msgid "Asked first question with at least one up vote"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/signin.html:146
-msgid "Password"
+#: forum_modules/default_badges/badges.py:228
+msgid "Answered first question with at least one up vote"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/signin.html:150
-msgid "Create account"
+#: forum_modules/default_badges/badges.py:260
+#, python-format
+msgid "First answer was accepted with at least %s up votes"
 msgstr ""
 
-#: forum/skins/default/templates/authopenid/signup.html:29
-msgid "return to OpenID login"
+#: forum_modules/default_badges/badges.py:271
+#, python-format
+msgid "Accepted answer and voted up %s times"
 msgstr ""
 
-#: forum/skins/default/templates/fbconnect/xd_receiver.html:5
+#: forum_modules/default_badges/badges.py:282
 #, python-format
-msgid "Connect to %(APP_SHORT_NAME)s with Facebook!"
+msgid ""
+"Answered a question more than %(dif_days)s days later with at least %"
+"(up_votes)s votes"
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:166 forum/templatetags/extra_tags.py:193
-msgid "reputation points"
-msgstr "karma"
-
-#: forum/templatetags/extra_tags.py:253
-msgid "2 days ago"
+#: forum_modules/default_badges/badges.py:295
+#, python-format
+msgid "Created a tag used by %s questions"
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:255
-msgid "yesterday"
+#: forum_modules/default_badges/settings.py:6
+msgid "Popular Question views"
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:257
-#, python-format
-msgid "%(hr)d hour ago"
-msgid_plural "%(hr)d hours ago"
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/templatetags/extra_tags.py:259
-#, python-format
-msgid "%(min)d min ago"
-msgid_plural "%(min)d mins ago"
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/utils/forms.py:27
-msgid "this field is required"
+#: 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/utils/forms.py:42
-msgid "choose a username"
-msgstr "Choose screen name"
-
-#: forum/utils/forms.py:47
-msgid "user name is required"
+#: forum_modules/default_badges/settings.py:12
+msgid "Notable Question views"
 msgstr ""
 
-#: forum/utils/forms.py:48
-msgid "sorry, this name is taken, please choose another"
+#: 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/utils/forms.py:49
-msgid "sorry, this name is not allowed, please choose another"
+#: forum_modules/default_badges/settings.py:18
+msgid "Famous Question views"
 msgstr ""
 
-#: forum/utils/forms.py:50
-msgid "sorry, there is no user with this name"
+#: 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/utils/forms.py:51
-msgid "sorry, we have a serious error - user name is taken by several users"
+#: forum_modules/default_badges/settings.py:24
+msgid "Nice Answer up votes"
 msgstr ""
 
-#: forum/utils/forms.py:52
-msgid "user name can only consist of letters, empty space and underscore"
+#: 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/utils/forms.py:100
-msgid "your email address"
-msgstr "Your email <i>(never shared)</i>"
+#: forum_modules/default_badges/settings.py:30
+#, fuzzy
+msgid "Nice Question up votes"
+msgstr "Tags"
 
-#: forum/utils/forms.py:101
-msgid "email address is required"
+#: 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/utils/forms.py:102
-msgid "please enter a valid email address"
+#: forum_modules/default_badges/settings.py:36
+msgid "Good Answer up votes"
 msgstr ""
 
-#: forum/utils/forms.py:103
-msgid "this email is already used by someone else, please choose another"
+#: 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/utils/forms.py:128
-msgid "choose password"
-msgstr "Password"
+#: forum_modules/default_badges/settings.py:42
+#, fuzzy
+msgid "Good Question up votes"
+msgstr "Tags"
 
-#: forum/utils/forms.py:129
-msgid "password is required"
+#: 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/utils/forms.py:132
-msgid "retype password"
-msgstr "Password <i>(please retype)</i>"
-
-#: forum/utils/forms.py:133
-msgid "please, retype your password"
+#: forum_modules/default_badges/settings.py:48
+msgid "Great Answer up votes"
 msgstr ""
 
-#: forum/utils/forms.py:134
-msgid "sorry, entered passwords did not match, please try again"
+#: 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/views/auth.py:94 forum/views/auth.py:103
+#: forum_modules/default_badges/settings.py:54
+#, fuzzy
+msgid "Great Question up votes"
+msgstr "Tags"
+
+#: forum_modules/default_badges/settings.py:55
 msgid ""
-"Sorry, these login credentials belong to anoother user. Plese terminate your "
-"current session and try again."
+"\n"
+"Number of up votes required to award a Great Question badge to the question "
+"author\n"
 msgstr ""
 
-#: forum/views/auth.py:96
-msgid "You are already logged in with that user."
+#: forum_modules/default_badges/settings.py:60
+msgid "Favorite Question favorite count"
 msgstr ""
 
-#: forum/views/auth.py:101
-msgid "These login credentials are already associated with your account."
+#: 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/views/auth.py:107
-msgid "These new credentials are now associated with your account."
+#: forum_modules/default_badges/settings.py:66
+msgid "Stellar Question favorite count"
 msgstr ""
 
-#: forum/views/commands.py:217
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: 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 ""
-"Your subscription is saved, but email address %(email)s needs to be "
-"validated, please see <a href='%(details_url)s'>more details here</a>"
 
-#: forum/views/commands.py:225
-msgid "email update frequency has been set to daily"
+#: forum_modules/default_badges/settings.py:72
+msgid "Disciplined minimum score"
 msgstr ""
 
-#: forum/views/meta.py:34
-msgid "Q&A forum feedback"
+#: 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/views/meta.py:35
-msgid "Thanks for the feedback!"
+#: forum_modules/default_badges/settings.py:78
+msgid "Peer Pressure maximum score"
 msgstr ""
 
-#: forum/views/meta.py:43
-msgid "We look forward to hearing your feedback! Please, give it next time :)"
+#: 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/views/users.py:851 forum/views/users.py:855
-msgid "changes saved"
+#: forum_modules/default_badges/settings.py:84
+msgid "Civic Duty votes"
 msgstr ""
 
-#: forum/views/users.py:861
-msgid "email updates canceled"
+#: 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/views/users.py:891
-msgid "user profile"
+#: forum_modules/default_badges/settings.py:90
+msgid "Pundit number of comments"
 msgstr ""
 
-#: forum/views/users.py:892
-msgid "user profile overview"
+#: 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/views/users.py:899
-msgid "recent user activity"
+#: forum_modules/default_badges/settings.py:96
+msgid "Self Learner up votes"
 msgstr ""
 
-#: forum/views/users.py:900
-msgid "profile - recent activity"
+#: 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/views/users.py:909
-msgid "profile - responses"
+#: forum_modules/default_badges/settings.py:102
+msgid "Strunk and White updates"
 msgstr ""
 
-#: forum/views/users.py:917
-msgid "user reputation in the community"
-msgstr "user karma"
-
-#: forum/views/users.py:918
-msgid "profile - user reputation"
-msgstr "Profile - User's Karma"
-
-#: forum/views/users.py:924
-msgid "favorite questions"
+#: 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/views/users.py:925
-msgid "users favorite questions"
+#: forum_modules/default_badges/settings.py:108
+msgid "Enlightened up votes"
 msgstr ""
 
-#: forum/views/users.py:926
-msgid "profile - favorite questions"
+#: 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/views/users.py:935
-msgid "profile - votes"
+#: forum_modules/default_badges/settings.py:114
+msgid "Guru up votes"
 msgstr ""
 
-#: forum/views/users.py:944
-msgid "profile - email subscriptions"
+#: 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/views/users.py:977
-msgid "Password changed."
+#: forum_modules/default_badges/settings.py:120
+msgid "Necromancer up votes"
 msgstr ""
 
-#: forum/views/writers.py:74
-msgid "uploading images is limited to users with >60 reputation points"
-msgstr "sorry, file uploading requires karma >60"
-
-#: forum/views/writers.py:76
-msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
+#: 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/views/writers.py:78
-#, python-format
-msgid "maximum upload file size is %sK"
+#: forum_modules/default_badges/settings.py:126
+msgid "Necromancer difference in days"
 msgstr ""
 
-#: forum/views/writers.py:80
-#, python-format
+#: forum_modules/default_badges/settings.py:127
 msgid ""
-"Error uploading file. Please contact the site administrator. Thank you. %s"
+"\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/books/urls.py:7 forum_modules/books/urls.py:8
-#: forum_modules/books/urls.py:9
-msgid "books/"
+#: forum_modules/default_badges/settings.py:132
+msgid "Taxonomist usage count"
 msgstr ""
 
-#: forum_modules/facebookauth/authentication.py:29
-msgid "Sorry, your Facebook session has expired, please try again"
+#: 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/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:33
+#: forum_modules/facebookauth/authentication.py:35
 msgid ""
 "The authentication with Facebook connect failed, cannot find authentication "
 "tokens"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:59
+#: forum_modules/localauth/forms.py:75
 msgid "Please enter valid username and password (both are case-sensitive)."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:62
+#: forum_modules/localauth/forms.py:79
 msgid "This account is inactive."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:64
+#: forum_modules/localauth/forms.py:81
 msgid "Login failed."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:66
+#: forum_modules/localauth/forms.py:85
+msgid "This user is not a valid user"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:88
 msgid "Please enter username and password"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:68
+#: forum_modules/localauth/forms.py:90
 msgid "Please enter your password"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:70
+#: forum_modules/localauth/forms.py:92
 msgid "Please enter user name"
 msgstr ""
 
@@ -3592,6 +4571,10 @@ msgstr ""
 msgid "local/"
 msgstr ""
 
+#: forum_modules/localauth/views.py:33
+msgid "A validation email has been sent to your email address. "
+msgstr ""
+
 #: forum_modules/oauthauth/consumer.py:33
 msgid "Error, the oauth token is not on the server"
 msgstr ""
@@ -3624,12 +4607,336 @@ msgstr ""
 msgid "Enter your OpenId Url"
 msgstr ""
 
+#: forum_modules/project_badges/badges.py:9
+#, 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:39
+#, python-format
+msgid "Unknown user %(number)d"
+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 ""
+
+#~ 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 "please ask a relevant question"
+#~ msgstr "ask a question relevant to the CNPROG community"
+
+#~ 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 ""
+#~ "\n"
+#~ "                    have total %(q_num)s questions containing %"
+#~ "(searchtitle)s\n"
+#~ "                    "
+#~ msgid_plural ""
+#~ "\n"
+#~ "                    have total %(q_num)s questions containing %"
+#~ "(searchtitle)s\n"
+#~ "                    "
+#~ msgstr[0] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>question with title "
+#~ "containing <strong><span class=\"darkred\">%(searchtitle)s</span></"
+#~ "strong></p>"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "<div class=\"questions-count\">%(q_num)s</div><p>questions with title "
+#~ "containing <strong><span class=\"darkred\">%(searchtitle)s</span></"
+#~ "strong></p>"
+
+#~ msgid ""
+#~ "\n"
+#~ "                    have total %(q_num)s unanswered questions\n"
+#~ "                    "
+#~ msgid_plural ""
+#~ "\n"
+#~ "                    have total %(q_num)s unanswered 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>"
+
+#~ msgid "latest questions info"
+#~ msgstr "<strong>Newest</strong> questions are shown first."
+
+#~ msgid "Most recently answered ones are shown first."
+#~ msgstr "<strong>Most recently answered</strong> questions are shown first."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Stop Email"
+
+#~ 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 "Your Email"
+#~ msgstr ""
+#~ "<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
+
+#~ 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 "Enter your login 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>"
+
+#~ 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 "Welcome email subject line"
-#~ msgstr "Welcome to the Q&A forum"
-
 #~ msgid "your email needs to be validated see %(details_url)s"
 #~ msgstr ""
 #~ "Your email needs to be validated. Please see details <a "
index 2b514069645cc8d6aca3f4a0c060dd0dd21e95f9..fbf01b6115cba69b175aa23701a4db016b3400aa 100644 (file)
Binary files a/locale/es/LC_MESSAGES/django.mo and b/locale/es/LC_MESSAGES/django.mo differ
index dcce1a7b71c178f7199ae9f04c5e12ee9e112d0f..c0391e2a5173434de8a759093a7128755d3b1ed6 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-23 10:41-0400\n"
+"POT-Creation-Date: 2010-04-28 16:01-0400\n"
 "PO-Revision-Date: 2010-02-09 14:11-0600\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,22 +16,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: forum/auth.py:438
-msgid "Your question and all of it's answers have been deleted"
-msgstr ""
-
-#: forum/auth.py:440
-msgid "Your question has been deleted"
-msgstr ""
-
-#: forum/auth.py:443
-msgid "The question and all of it's answers have been deleted"
-msgstr ""
-
-#: forum/auth.py:445
-msgid "The question has been deleted"
-msgstr ""
-
 #: forum/const.py:8
 msgid "duplicate question"
 msgstr ""
@@ -56,124 +40,137 @@ msgstr ""
 msgid "problem is not reproducible or outdated"
 msgstr ""
 
-#: forum/const.py:15
+#: forum/const.py:14
 msgid "question contains offensive inappropriate, or malicious remarks"
 msgstr ""
 
-#: forum/const.py:16
+#: forum/const.py:15
 msgid "spam or advertising"
 msgstr ""
 
-#: forum/const.py:57
+#: forum/const.py:71 forum/skins/default/templates/osqaadmin/index.html:21
 msgid "question"
 msgstr ""
 
-#: forum/const.py:58 forum/skins/default/templates/book.html:110
+#: forum/const.py:72 forum/skins/default/templates/book.html:110
+#: forum/skins/default/templates/osqaadmin/index.html:26
 msgid "answer"
 msgstr ""
 
-#: forum/const.py:59
+#: forum/const.py:73
 msgid "commented question"
 msgstr ""
 
-#: forum/const.py:60
+#: forum/const.py:74
 msgid "commented answer"
 msgstr ""
 
-#: forum/const.py:61
+#: forum/const.py:75
 msgid "edited question"
 msgstr ""
 
-#: forum/const.py:62
+#: forum/const.py:76
 msgid "edited answer"
 msgstr ""
 
-#: forum/const.py:63
+#: forum/const.py:77
 msgid "received award"
 msgstr ""
 
-#: forum/const.py:64
+#: forum/const.py:78
 msgid "marked best answer"
 msgstr ""
 
-#: forum/const.py:65
+#: forum/const.py:79
 msgid "upvoted"
 msgstr ""
 
-#: forum/const.py:66
+#: forum/const.py:80
 msgid "downvoted"
 msgstr ""
 
-#: forum/const.py:67
-msgid "canceled vote"
+#: forum/const.py:81
+msgid "upvote canceled"
+msgstr ""
+
+#: forum/const.py:82
+msgid "downvote canceled"
 msgstr ""
 
-#: forum/const.py:68
+#: forum/const.py:83
 msgid "deleted question"
 msgstr ""
 
-#: forum/const.py:69
+#: forum/const.py:84
 msgid "deleted answer"
 msgstr ""
 
-#: forum/const.py:70
+#: forum/const.py:85
 msgid "marked offensive"
 msgstr ""
 
-#: forum/const.py:71
+#: forum/const.py:86
 msgid "updated tags"
 msgstr ""
 
-#: forum/const.py:72
+#: forum/const.py:87
 msgid "selected favorite"
 msgstr ""
 
-#: forum/const.py:73
+#: forum/const.py:88
 msgid "completed user profile"
 msgstr ""
 
-#: forum/const.py:74
+#: forum/const.py:89
 msgid "email update sent to user"
 msgstr ""
 
-#: forum/const.py:78
+#: forum/const.py:93
 msgid "question_answered"
 msgstr ""
 
-#: forum/const.py:79
+#: forum/const.py:94
 msgid "question_commented"
 msgstr ""
 
-#: forum/const.py:80
+#: forum/const.py:95
 msgid "answer_commented"
 msgstr ""
 
-#: forum/const.py:81
+#: forum/const.py:96
 msgid "answer_accepted"
 msgstr ""
 
-#: forum/const.py:85
+#: forum/const.py:100
 msgid "[closed]"
 msgstr ""
 
-#: forum/const.py:86
+#: forum/const.py:101
 msgid "[deleted]"
 msgstr ""
 
-#: forum/const.py:87 forum/views/readers.py:565 forum/views/readers.py:584
+#: forum/const.py:102
 msgid "initial version"
 msgstr ""
 
-#: forum/const.py:88
+#: forum/const.py:103
 msgid "retagged"
 msgstr ""
 
-#: forum/const.py:92
-msgid "exclude ignored tags"
+#: forum/const.py:111
+msgid "Instantly"
+msgstr ""
+
+#: forum/const.py:112
+msgid "Daily"
+msgstr ""
+
+#: forum/const.py:113
+msgid "Weekly"
 msgstr ""
 
-#: forum/const.py:92
-msgid "allow only selected tags"
+#: forum/const.py:114
+msgid "No notifications"
 msgstr ""
 
 #: forum/feed.py:18
@@ -186,8 +183,8 @@ msgstr ""
 
 #: forum/forms.py:21 forum/skins/default/templates/answer_edit_tips.html:35
 #: forum/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:32
 #: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
 msgid "title"
 msgstr ""
 
@@ -208,7 +205,7 @@ msgid "question content must be > 10 characters"
 msgstr ""
 
 #: forum/forms.py:52 forum/skins/default/templates/header.html:31
-#: forum/skins/default/templates/header.html:59
+#: forum/skins/default/templates/header.html:56
 msgid "tags"
 msgstr ""
 
@@ -217,7 +214,7 @@ msgid ""
 "Tags are short keywords, with no spaces within. Up to five tags can be used."
 msgstr ""
 
-#: forum/forms.py:61 forum/skins/default/templates/question_retag.html:40
+#: forum/forms.py:61 forum/skins/default/templates/question_retag.html:43
 msgid "tags are required"
 msgstr ""
 
@@ -225,7 +222,7 @@ msgstr ""
 msgid "please use 5 tags or less"
 msgstr ""
 
-#: forum/forms.py:70
+#: forum/forms.py:72
 msgid "tags must be shorter than 20 characters"
 msgstr ""
 
@@ -310,2069 +307,2906 @@ msgstr ""
 msgid "this email has already been registered, please use another one"
 msgstr ""
 
-#: forum/forms.py:247
-msgid "Choose email tag filter"
-msgstr ""
-
-#: forum/forms.py:263 forum/forms.py:264
-msgid "weekly"
-msgstr ""
-
-#: forum/forms.py:263 forum/forms.py:264
-msgid "no email"
-msgstr ""
-
-#: forum/forms.py:264
-msgid "daily"
+#: forum/subscriptions.py:41
+#, python-format
+msgid "New question on %(app_name)s"
 msgstr ""
 
-#: forum/forms.py:279
-msgid "Asked by me"
+#: forum/subscriptions.py:73
+#, python-format
+msgid "New answer to '%(question_title)s'"
 msgstr ""
 
-#: forum/forms.py:282
-msgid "Answered by me"
+#: forum/subscriptions.py:112
+#, python-format
+msgid "New comment on %(question_title)s"
 msgstr ""
 
-#: forum/forms.py:285
-msgid "Individually selected"
+#: forum/subscriptions.py:136
+#, python-format
+msgid "An answer to '%(question_title)s' was accepted"
 msgstr ""
 
-#: forum/forms.py:288
-msgid "Entire forum (tag filtered)"
+#: forum/subscriptions.py:156
+#, python-format
+msgid "%(username)s is a new member on %(app_name)s"
 msgstr ""
 
-#: forum/urls.py:30
+#: forum/urls.py:44
 msgid "upfiles/"
 msgstr ""
 
-#: forum/urls.py:35
+#: forum/urls.py:49
 msgid "about/"
 msgstr ""
 
-#: forum/urls.py:36
+#: forum/urls.py:50
 msgid "faq/"
 msgstr ""
 
-#: forum/urls.py:37
+#: forum/urls.py:51
 msgid "privacy/"
 msgstr ""
 
-#: forum/urls.py:38
+#: forum/urls.py:52
 msgid "logout/"
 msgstr ""
 
-#: forum/urls.py:39 forum/urls.py:40 forum/urls.py:41 forum/urls.py:58
+#: forum/urls.py:53 forum/urls.py:54
 msgid "answers/"
 msgstr ""
 
-#: forum/urls.py:39 forum/urls.py:51 forum/urls.py:54 forum/urls.py:58
-msgid "comments/"
-msgstr ""
-
-#: forum/urls.py:40 forum/urls.py:45 forum/urls.py:80
-#: forum/skins/default/templates/user_info.html:45
+#: forum/urls.py:53 forum/urls.py:58 forum/urls.py:98
+#: forum/skins/default/templates/users/info.html:44
 msgid "edit/"
 msgstr ""
 
-#: forum/urls.py:41 forum/urls.py:50
+#: forum/urls.py:54 forum/urls.py:74
 msgid "revisions/"
 msgstr ""
 
-#: forum/urls.py:42 forum/urls.py:43 forum/urls.py:44 forum/urls.py:45
-#: forum/urls.py:46 forum/urls.py:47 forum/urls.py:48 forum/urls.py:49
-#: forum/urls.py:50 forum/urls.py:51 forum/urls.py:54
+#: forum/urls.py:55 forum/urls.py:56 forum/urls.py:57 forum/urls.py:58
+#: forum/urls.py:59 forum/urls.py:60 forum/urls.py:61 forum/urls.py:74
 msgid "questions/"
 msgstr ""
 
-#: forum/urls.py:43 forum_modules/books/urls.py:8
+#: forum/urls.py:56 forum_modules/books/urls.py:8
 msgid "ask/"
 msgstr ""
 
-#: forum/urls.py:44
+#: forum/urls.py:57
 msgid "unanswered/"
 msgstr ""
 
-#: forum/urls.py:46
+#: forum/urls.py:59
 msgid "close/"
 msgstr ""
 
-#: forum/urls.py:47
+#: forum/urls.py:60
 msgid "reopen/"
 msgstr ""
 
-#: forum/urls.py:48
+#: forum/urls.py:61
 msgid "answer/"
 msgstr ""
 
-#: forum/urls.py:49
+#: forum/urls.py:63
 msgid "vote/"
 msgstr ""
 
-#: forum/urls.py:52
-msgid "command/"
+#: forum/urls.py:64
+msgid "like_comment/"
+msgstr ""
+
+#: forum/urls.py:65
+msgid "comment/"
+msgstr ""
+
+#: forum/urls.py:66
+msgid "delete_comment/"
+msgstr ""
+
+#: forum/urls.py:67
+msgid "accept_answer/"
+msgstr ""
+
+#: forum/urls.py:68
+msgid "mark_favorite/"
+msgstr ""
+
+#: forum/urls.py:69
+msgid "flag/"
 msgstr ""
 
-#: forum/urls.py:54 forum/urls.py:58
+#: forum/urls.py:70
 msgid "delete/"
 msgstr ""
 
-#: forum/urls.py:62 forum/views/readers.py:436
+#: forum/urls.py:71
+msgid "subscribe/"
+msgstr ""
+
+#: forum/urls.py:72
+msgid "matching_tags/"
+msgstr ""
+
+#: forum/urls.py:75
+msgid "command/"
+msgstr ""
+
+#: forum/urls.py:78
 msgid "question/"
 msgstr ""
 
-#: forum/urls.py:63 forum/urls.py:64
+#: forum/urls.py:79 forum/urls.py:80
 msgid "tags/"
 msgstr ""
 
-#: forum/urls.py:66 forum/urls.py:70
+#: forum/urls.py:82 forum/urls.py:86
 msgid "mark-tag/"
 msgstr ""
 
-#: forum/urls.py:66
+#: forum/urls.py:82
 msgid "interesting/"
 msgstr ""
 
-#: forum/urls.py:70
+#: forum/urls.py:86
 msgid "ignored/"
 msgstr ""
 
-#: forum/urls.py:74
+#: forum/urls.py:90
 msgid "unmark-tag/"
 msgstr ""
 
-#: forum/urls.py:78 forum/urls.py:80 forum/urls.py:81
+#: forum/urls.py:96 forum/urls.py:98 forum/urls.py:100 forum/urls.py:101
+#: forum/urls.py:102 forum/urls.py:103 forum/urls.py:104 forum/urls.py:105
+#: forum/models/user.py:124
 msgid "users/"
 msgstr ""
 
-#: forum/urls.py:79
+#: forum/urls.py:97
 msgid "moderate-user/"
 msgstr ""
 
-#: forum/urls.py:82 forum/urls.py:83
+#: forum/urls.py:100
+msgid "subscriptions/"
+msgstr ""
+
+#: forum/urls.py:101
+msgid "favorites/"
+msgstr ""
+
+#: forum/urls.py:102
+msgid "reputation/"
+msgstr ""
+
+#: forum/urls.py:103
+msgid "votes/"
+msgstr ""
+
+#: forum/urls.py:104
+msgid "recent/"
+msgstr ""
+
+#: forum/urls.py:107 forum/urls.py:108
 msgid "badges/"
 msgstr ""
 
-#: forum/urls.py:84
+#: forum/urls.py:109
 msgid "messages/"
 msgstr ""
 
-#: forum/urls.py:84
+#: forum/urls.py:109
 msgid "markread/"
 msgstr ""
 
-#: forum/urls.py:86
+#: forum/urls.py:111
 msgid "nimda/"
 msgstr ""
 
-#: forum/urls.py:88
+#: forum/urls.py:113
 msgid "upload/"
 msgstr ""
 
-#: forum/urls.py:89
+#: forum/urls.py:114
 msgid "search/"
 msgstr ""
 
-#: forum/urls.py:90
+#: forum/urls.py:115
 msgid "feedback/"
 msgstr ""
 
-#: forum/urls.py:95 forum/urls.py:96 forum/urls.py:97 forum/urls.py:98
-#: forum/urls.py:99 forum/urls.py:100 forum/urls.py:101 forum/urls.py:102
-#: forum/urls.py:103 forum/urls.py:104 forum/urls.py:105 forum/urls.py:106
+#: forum/urls.py:119 forum/urls.py:120 forum/urls.py:121 forum/urls.py:122
+#: forum/urls.py:123 forum/urls.py:124 forum/urls.py:125 forum/urls.py:126
+#: forum/urls.py:127 forum/urls.py:128 forum/urls.py:129 forum/urls.py:130
 #: forum_modules/localauth/urls.py:7
 msgid "account/"
 msgstr ""
 
-#: forum/urls.py:95 forum/urls.py:97 forum/urls.py:98
+#: forum/urls.py:119 forum/urls.py:121 forum/urls.py:122
 msgid "signin/"
 msgstr ""
 
-#: forum/urls.py:96
+#: forum/urls.py:120
 msgid "signout/"
 msgstr ""
 
-#: forum/urls.py:99
+#: forum/urls.py:123
 msgid "done/"
 msgstr ""
 
-#: forum/urls.py:100 forum_modules/localauth/urls.py:7
+#: forum/urls.py:124 forum_modules/localauth/urls.py:7
 msgid "register/"
 msgstr ""
 
-#: forum/urls.py:101
+#: forum/urls.py:125
 msgid "validate/"
 msgstr ""
 
-#: forum/urls.py:102 forum/urls.py:103
+#: forum/urls.py:126 forum/urls.py:127
 msgid "tempsignin/"
 msgstr ""
 
-#: forum/urls.py:104
+#: forum/urls.py:128
 msgid "authsettings/"
 msgstr ""
 
-#: forum/urls.py:105 forum/urls.py:106
+#: forum/urls.py:129 forum/urls.py:130
 msgid "providers/"
 msgstr ""
 
-#: forum/urls.py:105
+#: forum/urls.py:129
 msgid "remove/"
 msgstr ""
 
-#: forum/urls.py:106
+#: forum/urls.py:130
 msgid "add/"
 msgstr ""
 
-#: forum/urls.py:112 forum/urls.py:113
+#: forum/urls.py:133 forum/urls.py:134 forum/urls.py:135 forum/urls.py:136
+#: forum/urls.py:137 forum_modules/sximporter/urls.py:8
 msgid "admin/"
 msgstr ""
 
-#: forum/authentication/forms.py:22
+#: forum/urls.py:134
+msgid "denormalize/"
+msgstr ""
+
+#: forum/urls.py:135
+msgid "go_bootstrap/"
+msgstr ""
+
+#: forum/urls.py:136
+msgid "go_defaults/"
+msgstr ""
+
+#: forum/authentication/forms.py:21
 msgid "Your account email"
 msgstr ""
 
-#: forum/authentication/forms.py:24
+#: forum/authentication/forms.py:23
 msgid "You cannot leave this field blank"
 msgstr ""
 
-#: forum/authentication/forms.py:25 forum/utils/forms.py:102
+#: forum/authentication/forms.py:24 forum/utils/forms.py:107
 msgid "please enter a valid email address"
 msgstr ""
 
-#: forum/authentication/forms.py:33
+#: forum/authentication/forms.py:32
 msgid "Sorry, but this email is not on our database."
 msgstr ""
 
-#: forum/authentication/forms.py:41
+#: forum/authentication/forms.py:40
 msgid "okay, let's try!"
 msgstr ""
 
-#: forum/authentication/forms.py:42
+#: forum/authentication/forms.py:41
 msgid "no OSQA community email please, thanks"
 msgstr ""
 
-#: forum/authentication/forms.py:45
+#: forum/authentication/forms.py:44
 msgid "please choose one of the options above"
 msgstr ""
 
-#: forum/authentication/forms.py:60
+#: forum/authentication/forms.py:51
 msgid "Current password"
 msgstr ""
 
-#: forum/authentication/forms.py:71
+#: forum/authentication/forms.py:62
 msgid ""
 "Old password is incorrect.                     Please enter the correct "
 "password."
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:236
-msgid "email update message subject"
+#: forum/management/commands/send_email_alerts.py:56
+msgid "Daily digest"
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:238
+#: forum/middleware/anon_user.py:34
 #, python-format
-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] ""
-msgstr[1] ""
+msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
+msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:255
-msgid "new question"
+#: forum/models/question.py:30
+msgid "[closed] "
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:272
-msgid ""
-"Please visit the forum and see what's new! Could you spread the word about "
-"it - can somebody you know help answering those questions or benefit from "
-"posting one?"
+#: forum/models/question.py:33
+msgid "[deleted] "
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:284
-msgid ""
-"Your most frequent subscription setting is 'daily' on selected questions. If "
-"you are receiving more than one email per dayplease tell about this issue to "
-"the forum administrator."
+#: forum/models/repute.py:13 forum/skins/default/templates/badges.html:53
+msgid "gold"
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:290
-msgid ""
-"Your most frequent subscription setting is 'weekly' if you are receiving "
-"this email more than once a week please report this issue to the forum "
-"administrator."
+#: forum/models/repute.py:14 forum/skins/default/templates/badges.html:61
+msgid "silver"
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:296
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
+#: forum/models/repute.py:15 forum/skins/default/templates/badges.html:68
+msgid "bronze"
 msgstr ""
 
-#: forum/management/commands/send_email_alerts.py:311
-#, python-format
-msgid ""
-"go to %(link)s to change frequency of email updates or %(email)s "
-"administrator"
+#: forum/models/tag.py:28
+msgid "interesting"
 msgstr ""
 
-#: forum/middleware/anon_user.py:34
-#, python-format
-msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
+#: forum/models/tag.py:28
+msgid "ignored"
 msgstr ""
 
-#: forum/models/question.py:257
-#, python-format
-msgid "%(author)s modified the question"
+#: forum/models/user.py:255
+#: forum/skins/default/templates/post_contributor_info.html:19
+msgid "asked"
 msgstr ""
 
-#: forum/models/question.py:261
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
+#: forum/models/user.py:257
+#: forum/skins/default/templates/post_contributor_info.html:22
+msgid "answered"
 msgstr ""
 
-#: forum/models/question.py:266
-#, python-format
-msgid "%(people)s commented the question"
+#: forum/models/user.py:259
+msgid "marked an answer"
 msgstr ""
 
-#: forum/models/question.py:271
-#, python-format
-msgid "%(people)s commented answers"
+#: forum/models/user.py:261
+msgid "edited a question"
 msgstr ""
 
-#: forum/models/question.py:273
-#, python-format
-msgid "%(people)s commented an answer"
+#: forum/models/user.py:263
+msgid "commented a question"
 msgstr ""
 
-#: forum/models/repute.py:13 forum/skins/default/templates/badges.html:53
-msgid "gold"
+#: forum/models/user.py:265
+msgid "commented an answer"
 msgstr ""
 
-#: forum/models/repute.py:14 forum/skins/default/templates/badges.html:61
-msgid "silver"
+#: forum/models/user.py:267
+msgid "edited an answer"
 msgstr ""
 
-#: forum/models/repute.py:15 forum/skins/default/templates/badges.html:68
-msgid "bronze"
+#: forum/models/user.py:269
+msgid "received badge"
 msgstr ""
 
-#: forum/models/tag.py:81
-msgid "interesting"
+#: forum/settings/__init__.py:20
+msgid "Badges config"
 msgstr ""
 
-#: forum/models/tag.py:81
-msgid "ignored"
+#: forum/settings/__init__.py:20
+msgid "Configure badges on your OSQA site."
 msgstr ""
 
-#: forum/models/user.py:45
-msgid "Entire forum"
+#: forum/settings/basic.py:9
+msgid "Basic Settings"
 msgstr ""
 
-#: forum/models/user.py:46
-msgid "Questions that I asked"
+#: forum/settings/basic.py:9
+msgid "The basic settings for your application"
 msgstr ""
 
-#: forum/models/user.py:47
-msgid "Questions that I answered"
+#: forum/settings/basic.py:12
+msgid "Application logo"
 msgstr ""
 
-#: forum/models/user.py:48
-msgid "Individually selected questions"
+#: forum/settings/basic.py:13
+msgid "Your site main logo."
 msgstr ""
 
-#: forum/models/user.py:51
-msgid "Weekly"
+#: forum/settings/basic.py:17
+msgid "Favicon"
 msgstr ""
 
-#: forum/models/user.py:52
-msgid "Daily"
+#: forum/settings/basic.py:18
+msgid "Your site favicon."
 msgstr ""
 
-#: forum/models/user.py:53
-msgid "No email"
+#: forum/settings/basic.py:22
+msgid "Application title"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:24
-msgid "Sorry, could not find the page you requested."
+#: forum/settings/basic.py:23
+msgid "The title of your application that will show in the browsers title bar"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:26
-msgid "This might have happened for the following reasons:"
+#: forum/settings/basic.py:26
+msgid "Application short name"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:28
-msgid "this question or answer has been deleted;"
+#: forum/settings/basic.py:30
+msgid "Application keywords"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:29
-msgid "url has error - please check it;"
+#: forum/settings/basic.py:31
+msgid "The meta keywords that will be available through the HTML meta tags."
 msgstr ""
 
-#: forum/skins/default/templates/404.html:30
-msgid ""
-"the page you tried to visit is protected or you don't have sufficient "
-"points, see"
+#: forum/settings/basic.py:34
+msgid "Application description"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:31
-msgid "if you believe this error 404 should not have occured, please"
+#: forum/settings/basic.py:35
+msgid "The description of your application"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:32
-msgid "report this problem"
+#: forum/settings/basic.py:39
+msgid "Application intro"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:41
-#: forum/skins/default/templates/500.html:27
-msgid "back to previous page"
+#: forum/settings/basic.py:40
+msgid ""
+"The introductory page that is visible in the sidebar for anonymous users."
 msgstr ""
 
-#: forum/skins/default/templates/404.html:42
-msgid "see all questions"
+#: forum/settings/basic.py:44
+msgid "Copyright notice"
 msgstr ""
 
-#: forum/skins/default/templates/404.html:43
-msgid "see all tags"
+#: forum/settings/basic.py:45
+msgid "The copyright notice visible at the footer of your page."
 msgstr ""
 
-#: forum/skins/default/templates/500.html:22
-msgid "sorry, system error"
+#: forum/settings/basic.py:48
+msgid "Maximum length of comment"
 msgstr ""
 
-#: forum/skins/default/templates/500.html:24
-msgid "system error log is recorded, error will be fixed as soon as possible"
+#: forum/settings/basic.py:49
+msgid "The maximum length a user can enter for a comment."
 msgstr ""
 
-#: forum/skins/default/templates/500.html:25
-msgid "please report the error to the site administrators if you wish"
+#: forum/settings/email.py:5
+msgid "Email Settings"
 msgstr ""
 
-#: forum/skins/default/templates/500.html:28
-msgid "see latest questions"
+#: forum/settings/email.py:5
+msgid "Email server and other email related settings."
 msgstr ""
 
-#: forum/skins/default/templates/500.html:29
-msgid "see tags"
+#: forum/settings/email.py:8
+msgid "Email Server"
 msgstr ""
 
-#: forum/skins/default/templates/about.html:4
-#: forum/skins/default/templates/about.html:8
-msgid "About"
+#: forum/settings/email.py:9
+msgid "The SMTP server through which your application will be sending emails."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:4
-msgid "Account functions"
+#: forum/settings/email.py:13
+msgid "Email Port"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:29
-#: forum/skins/default/templates/auth/auth_settings.html:31
-msgid "Change password"
+#: 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/skins/default/templates/account_settings.html:30
-msgid "Give your  account a new password."
+#: forum/settings/email.py:18
+msgid "Email User"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:32
-msgid "Change email "
+#: forum/settings/email.py:19
+msgid "The username for your SMTP connection."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:33
-msgid "Add or update the email address associated with your account."
+#: forum/settings/email.py:23
+msgid "Email Password"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:35
-msgid "Change OpenID"
+#: forum/settings/email.py:24
+msgid "The password for your SMTP connection."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:36
-msgid "Change openid associated to your account"
+#: forum/settings/email.py:29
+msgid "Use TLS"
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:39
-msgid "Delete account"
+#: forum/settings/email.py:30
+msgid "Does your SMTP server usFes TLS for authentication."
 msgstr ""
 
-#: forum/skins/default/templates/account_settings.html:40
-msgid "Erase your username and all your data from website"
+#: forum/settings/email.py:34
+msgid "Site 'from' email address"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:5
-#: forum/skins/default/templates/answer_edit.html:48
-msgid "Edit answer"
+#: forum/settings/email.py:35
+msgid ""
+"The address that will show up on the 'from' field on emails sent by your "
+"website."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:25
-#: forum/skins/default/templates/answer_edit.html:28
-#: forum/skins/default/templates/ask.html:26
-#: forum/skins/default/templates/ask.html:29
-#: forum/skins/default/templates/question.html:46
-#: forum/skins/default/templates/question.html:49
-#: forum/skins/default/templates/question_edit.html:25
-#: forum/skins/default/templates/question_edit.html:28
-msgid "hide preview"
+#: forum/settings/email.py:39
+msgid "Email subject prefix"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:28
-#: forum/skins/default/templates/ask.html:29
-#: forum/skins/default/templates/question.html:49
-#: forum/skins/default/templates/question_edit.html:28
-msgid "show preview"
+#: 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/skins/default/templates/answer_edit.html:48
-#: forum/skins/default/templates/question_edit.html:66
-#: forum/skins/default/templates/question_retag.html:54
-#: forum/skins/default/templates/revisions_answer.html:38
-#: forum/skins/default/templates/revisions_question.html:38
-msgid "back"
+#: forum/settings/extkeys.py:4
+msgid "External Keys"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:53
-#: forum/skins/default/templates/question_edit.html:71
-#: forum/skins/default/templates/revisions_answer.html:52
-#: forum/skins/default/templates/revisions_question.html:52
-msgid "revision"
+#: forum/settings/extkeys.py:4
+msgid ""
+"Keys for various external providers that your application may optionally use."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:56
-#: forum/skins/default/templates/question_edit.html:75
-msgid "select revision"
+#: forum/settings/extkeys.py:7
+msgid "Google sitemap code"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:63
-#: forum/skins/default/templates/ask.html:97
-#: forum/skins/default/templates/question.html:433
-#: forum/skins/default/templates/question_edit.html:92
-msgid "Toggle the real time Markdown editor preview"
+#: 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/skins/default/templates/answer_edit.html:63
-#: forum/skins/default/templates/ask.html:97
-#: forum/skins/default/templates/question.html:434
-#: forum/skins/default/templates/question_edit.html:92
-msgid "toggle preview"
+#: forum/settings/extkeys.py:12
+msgid "Google analytics key"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit.html:72
-#: forum/skins/default/templates/question_edit.html:118
-#: forum/skins/default/templates/question_retag.html:75
-msgid "Save edit"
+#: 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/skins/default/templates/answer_edit.html:73
-#: forum/skins/default/templates/close.html:29
-#: forum/skins/default/templates/feedback.html:50
-#: forum/skins/default/templates/question_edit.html:119
-#: forum/skins/default/templates/question_retag.html:76
-#: forum/skins/default/templates/reopen.html:30
-#: forum/skins/default/templates/user_edit.html:87
-msgid "Cancel"
+#: forum/settings/forms.py:40
+msgid "Change this:"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:4
-msgid "answer tips"
+#: forum/settings/minrep.py:4
+msgid "Minimum reputation config"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:7
-msgid "please make your answer relevant to this community"
+#: forum/settings/minrep.py:4
+msgid ""
+"Configure the minimum reputation required to perform certain actions on your "
+"site."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:10
-msgid "try to give an answer, rather than engage into a discussion"
+#: forum/settings/minrep.py:7
+msgid "Minimum reputation to vote up"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:13
-msgid "please try to provide details"
+#: forum/settings/minrep.py:8
+msgid "The minimum reputation an user must have to be allowed to vote up."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:16
-#: forum/skins/default/templates/question_edit_tips.html:13
-msgid "be clear and concise"
+#: forum/settings/minrep.py:11
+msgid "Minimum reputation to vote down"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:20
-#: forum/skins/default/templates/question_edit_tips.html:17
-msgid "see frequently asked questions"
+#: forum/settings/minrep.py:12
+msgid "The minimum reputation an user must have to be allowed to vote down."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:26
-#: forum/skins/default/templates/question_edit_tips.html:23
-msgid "Markdown tips"
+#: forum/settings/minrep.py:15
+msgid "Minimum reputation to flag a post"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:29
-#: forum/skins/default/templates/question_edit_tips.html:26
-msgid "*italic* or __italic__"
+#: forum/settings/minrep.py:16
+msgid "The minimum reputation an user must have to be allowed to flag a post."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:32
-#: forum/skins/default/templates/question_edit_tips.html:29
-msgid "**bold** or __bold__"
+#: forum/settings/minrep.py:19
+msgid "Minimum reputation to comment"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:35
-#: forum/skins/default/templates/question_edit_tips.html:32
-msgid "link"
+#: forum/settings/minrep.py:20
+msgid ""
+"The minimum reputation an user must have to be allowed to comment a post."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:35
-#: forum/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:32
-#: forum/skins/default/templates/question_edit_tips.html:37
-msgid "text"
+#: forum/settings/minrep.py:23
+msgid "Minimum reputation to like a comment"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:39
-#: forum/skins/default/templates/question_edit_tips.html:37
-msgid "image"
+#: forum/settings/minrep.py:24
+msgid ""
+"The minimum reputation an user must have to be allowed to \"like\" a comment."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:43
-#: forum/skins/default/templates/question_edit_tips.html:41
-msgid "numbered list:"
+#: forum/settings/minrep.py:27
+msgid "Minimum reputation to upload"
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:48
-#: forum/skins/default/templates/question_edit_tips.html:46
-msgid "basic HTML tags are also supported"
+#: forum/settings/minrep.py:28
+msgid ""
+"The minimum reputation an user must have to be allowed to upload a file."
 msgstr ""
 
-#: forum/skins/default/templates/answer_edit_tips.html:52
-#: forum/skins/default/templates/question_edit_tips.html:50
-msgid "learn more about Markdown"
+#: forum/settings/minrep.py:31
+msgid "Minimum reputation to close own question"
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:5
-#: forum/skins/default/templates/ask.html:61
-msgid "Ask a question"
+#: forum/settings/minrep.py:32
+msgid ""
+"The minimum reputation an user must have to be allowed to close his own "
+"question."
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:68
-msgid "login to post question info"
+#: forum/settings/minrep.py:35
+msgid "Minimum reputation to reopen own question"
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:74
-#, python-format
+#: forum/settings/minrep.py:36
 msgid ""
-"must have valid %(email)s to post, \n"
-"                            see %(email_validation_faq_url)s\n"
-"                            "
-msgstr ""
-
-#: forum/skins/default/templates/ask.html:112
-msgid "(required)"
+"The minimum reputation an user must have to be allowed to reopen his own "
+"question."
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:119
-msgid "Login/signup to post your question"
+#: forum/settings/minrep.py:39
+msgid "Minimum reputation to retag others questions"
 msgstr ""
 
-#: forum/skins/default/templates/ask.html:121
-msgid "Ask your question"
+#: forum/settings/minrep.py:40
+msgid ""
+"The minimum reputation an user must have to be allowed to retag others "
+"questions."
 msgstr ""
 
-#: forum/skins/default/templates/badge.html:6
-#: forum/skins/default/templates/badge.html:17
-msgid "Badge"
+#: forum/settings/minrep.py:43
+msgid "Minimum reputation to edit wiki posts"
 msgstr ""
 
-#: forum/skins/default/templates/badge.html:26
-msgid "The users have been awarded with badges:"
+#: forum/settings/minrep.py:44
+msgid ""
+"The minimum reputation an user must have to be allowed to edit community "
+"wiki posts."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:6
-msgid "Badges summary"
+#: forum/settings/minrep.py:47
+msgid "Minimum reputation to edit others posts"
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:17
-msgid "Badges"
+#: forum/settings/minrep.py:48
+msgid ""
+"The minimum reputation an user must have to be allowed to edit others posts."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:21
-msgid "Community gives you awards for your questions, answers and votes."
+#: forum/settings/minrep.py:51
+msgid "Minimum reputation to close others posts"
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:22
-#, python-format
+#: forum/settings/minrep.py:52
 msgid ""
-"Below is the list of available badges and number \n"
-"    of times each type of badge has been awarded. Give us feedback at %"
-"(feedback_faq_url)s.\n"
-"    "
+"The minimum reputation an user must have to be allowed to close others posts."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:50
-msgid "Community badges"
+#: forum/settings/minrep.py:55
+msgid "Minimum reputation to delete comments"
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:56
-msgid "gold badge description"
+#: forum/settings/minrep.py:56
+msgid ""
+"The minimum reputation an user must have to be allowed to delete comments."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:64
-msgid "silver badge description"
+#: forum/settings/minrep.py:59
+msgid "Minimum reputation to view offensive flags"
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:67
-msgid "bronze badge: often given as a special honor"
+#: forum/settings/minrep.py:60
+msgid "The minimum reputation an user must have to view offensive flags."
 msgstr ""
 
-#: forum/skins/default/templates/badges.html:71
-msgid "bronze badge description"
+#: forum/settings/repgain.py:4
+msgid "Reputation gains and losses config"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:7
-msgid "reading channel"
+#: forum/settings/repgain.py:4
+msgid ""
+"Configure the reputation points a user may gain or lose upon certain actions."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:26
-msgid "[author]"
+#: forum/settings/repgain.py:7
+msgid "Initial reputation"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:30
-msgid "[publisher]"
+#: forum/settings/repgain.py:8
+msgid "The initial reputation an user gets when he first signs in."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:34
-msgid "[publication date]"
+#: forum/settings/repgain.py:12
+msgid "Maximum reputation a user can gain in one day for being upvoted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:38
-msgid "[price]"
+#: forum/settings/repgain.py:15
+msgid "Rep gain by upvoted"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:39
-msgid "currency unit"
+#: forum/settings/repgain.py:16
+msgid "Reputation a user gains for having one of his posts up voted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:42
-msgid "[pages]"
+#: forum/settings/repgain.py:19
+msgid "Rep lost bu upvote canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:43
-msgid "pages abbreviation"
+#: forum/settings/repgain.py:20
+msgid ""
+"Reputation a user loses for having one of the upvotes on his posts canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:46
-msgid "[tags]"
+#: forum/settings/repgain.py:23
+msgid "Rep lost by downvoted"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:56
-msgid "author blog"
+#: forum/settings/repgain.py:24
+msgid "Reputation a user loses for having one of his posts down voted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:62
-msgid "book directory"
+#: forum/settings/repgain.py:27
+msgid "Rep lost by downvoting"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:66
-msgid "buy online"
+#: forum/settings/repgain.py:28
+msgid "Reputation a user loses for down voting a post."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:79
-msgid "reader questions"
+#: forum/settings/repgain.py:31
+msgid "Rep gain by downvote canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:82
-msgid "ask the author"
+#: forum/settings/repgain.py:32
+msgid ""
+"Reputation a user gains for having one of the downvotes on his posts "
+"canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:88
-#: forum/skins/default/templates/book.html:93
-#: forum/skins/default/templates/users_questions.html:18
-msgid "this question was selected as favorite"
+#: forum/settings/repgain.py:35
+msgid "Rep gain by canceling downvote"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:88
-#: forum/skins/default/templates/book.html:93
-#: forum/skins/default/templates/users_questions.html:11
-#: forum/skins/default/templates/users_questions.html:18
-msgid "number of times"
+#: forum/settings/repgain.py:36
+msgid "Reputation a user gains for canceling a downvote."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:105
-#: forum/skins/default/templates/index_.html:40
-#: forum/skins/default/templates/question_list.html:14
-#: forum/skins/default/templates/question_summary_list_roll.html:14
-#: forum/skins/default/templates/users_questions.html:32
-msgid "votes"
+#: forum/settings/repgain.py:39
+msgid "Rep gain by accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:108
-msgid "the answer has been accepted to be correct"
+#: forum/settings/repgain.py:40
+msgid "Reputation a user gains for having one of his answers accepted."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:115
-#: forum/skins/default/templates/index_.html:48
-#: forum/skins/default/templates/question_list.html:22
-#: forum/skins/default/templates/question_summary_list_roll.html:15
-#: forum/skins/default/templates/users_questions.html:40
-msgid "views"
+#: forum/settings/repgain.py:43
+msgid "Rep lost by accepted canceled"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:125
-#: forum/skins/default/templates/index_.html:63
-#: forum/skins/default/templates/question.html:480
-#: forum/skins/default/templates/question_list.html:36
-#: forum/skins/default/templates/question_summary_list_roll.html:52
-#: forum/skins/default/templates/tags.html:49
-#: forum/skins/default/templates/users_questions.html:52
-msgid "using tags"
+#: forum/settings/repgain.py:44
+msgid ""
+"Reputation a user loses for having one of his accepted answers canceled."
 msgstr ""
 
-#: forum/skins/default/templates/book.html:147
-msgid "subscribe to book RSS feed"
+#: forum/settings/repgain.py:47
+msgid "Rep gain by accepting answer"
 msgstr ""
 
-#: forum/skins/default/templates/book.html:147
-#: forum/skins/default/templates/index.html:85
-#: forum/skins/default/templates/index_.html:114
-msgid "subscribe to the questions feed"
+#: forum/settings/repgain.py:48
+msgid ""
+"Reputation a user gains for accepting an answer to one of his questions."
 msgstr ""
 
-#: forum/skins/default/templates/close.html:6
-#: forum/skins/default/templates/close.html:16
-msgid "Close question"
+#: forum/settings/repgain.py:51
+msgid "Rep lost by canceling accepted"
 msgstr ""
 
-#: forum/skins/default/templates/close.html:19
-msgid "Close the question"
+#: forum/settings/repgain.py:52
+msgid "Reputation a user loses by canceling an accepted answer."
 msgstr ""
 
-#: forum/skins/default/templates/close.html:25
-msgid "Reasons"
+#: forum/settings/repgain.py:55
+msgid "Rep lost by post flagged"
 msgstr ""
 
-#: forum/skins/default/templates/close.html:28
-msgid "OK to close"
+#: forum/settings/repgain.py:56
+msgid "Reputation a user loses by having one of his posts flagged."
 msgstr ""
 
-#: forum/skins/default/templates/email_base.html:11
-msgid "home"
+#: forum/settings/repgain.py:59
+msgid "Rep lost by post flagged and hidden"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:11
-msgid "Frequently Asked Questions "
+#: forum/settings/repgain.py:60
+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/skins/default/templates/faq.html:16
-msgid "What kinds of questions can I ask here?"
+#: forum/settings/repgain.py:63
+msgid "Rep lost by post flagged and deleted"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:17
+#: forum/settings/repgain.py:64
 msgid ""
-"Most importanly - questions should be <strong>relevant</strong> to this "
-"community."
+"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/skins/default/templates/faq.html:18
-msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+#: forum/settings/upload.py:5
+msgid "File upload settings"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:21
-msgid "What questions should I avoid asking?"
+#: forum/settings/upload.py:5
+msgid "File uploads related settings."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:22
+#: forum/settings/upload.py:8
+msgid "Uploaded files folder"
+msgstr ""
+
+#: forum/settings/upload.py:9
 msgid ""
-"Please avoid asking questions that are not relevant to this community, too "
-"subjective and argumentative."
+"The filesystem path where uploaded files will be stored. Please note that "
+"this folder must exist."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:27
-msgid "What should I avoid in my answers?"
+#: forum/settings/upload.py:12
+msgid "Uploaded files alias"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:28
+#: forum/settings/upload.py:13
 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."
+"The url alias for uploaded files. Notice that if you change this setting, "
+"you'll need to restart your site."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:32
-msgid "Who moderates this community?"
+#: forum/settings/upload.py:16
+msgid "Max file size"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:33
-msgid "The short answer is: <strong>you</strong>."
+#: forum/settings/upload.py:17
+msgid "The maximum allowed file size for uploads in mb."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:34
-msgid "This website is moderated by the users."
+#: forum/settings/voting.py:4
+msgid "Voting rules"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:35
-msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+#: forum/settings/voting.py:4
+msgid "Configure the voting rules on your site."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:40
-msgid "How does reputation system work?"
+#: forum/settings/voting.py:7
+msgid "Maximum votes per day"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:41
-msgid "Rep system summary"
+#: forum/settings/voting.py:8
+msgid "The maximum number of votes an user can cast per day."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:42
-msgid ""
-"For example, if you ask an interesting question or give a helpful answer, "
-"your input will be upvoted. On the other hand if the answer is misleading - "
-"it will be downvoted. Each vote in favor will generate <strong>10</strong> "
-"points, each vote against will subtract <strong>2</strong> points. There is "
-"a limit of <strong>200</strong> points that can be accumulated per question "
-"or answer. The table below explains reputation point requirements for each "
-"type of moderation task."
+#: forum/settings/voting.py:11
+msgid "Start warning about votes left"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:53
-#: forum/skins/default/templates/user_votes.html:15
-msgid "upvote"
+#: forum/settings/voting.py:12
+msgid "From how many votes left should an user start to be warned about it."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:57
-msgid "use tags"
+#: forum/settings/voting.py:15
+msgid "Maximum flags per day"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:62
-msgid "add comments"
+#: forum/settings/voting.py:16
+msgid "The maximum number of times an can flag a post per day."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:66
-#: forum/skins/default/templates/user_votes.html:17
-msgid "downvote"
+#: forum/settings/voting.py:19
+msgid "Flag count to hide post"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:69
-msgid "open and close own questions"
+#: forum/settings/voting.py:20
+msgid ""
+"How many times a post needs to be flagged to be hidden from the main page."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:73
-msgid "retag questions"
+#: forum/settings/voting.py:23
+msgid "Flag count to delete post"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:78
-msgid "edit community wiki questions"
+#: forum/settings/voting.py:24
+msgid "How many times a post needs to be flagged to be deleted."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:83
-msgid "edit any answer"
+#: forum/settings/voting.py:27
+msgid "Days to cancel a vote"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:87
-msgid "open any closed question"
+#: 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/faq.html:91
-msgid "delete any comment"
+#: forum/skins/default/templates/404.html:24
+msgid "Sorry, could not find the page you requested."
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:95
-msgid "delete any questions and answers and perform other moderation tasks"
+#: forum/skins/default/templates/404.html:26
+msgid "This might have happened for the following reasons:"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:103
-msgid "how to validate email title"
+#: forum/skins/default/templates/404.html:28
+msgid "this question or answer has been deleted;"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:105
-#, python-format
-msgid ""
-"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+#: forum/skins/default/templates/404.html:29
+msgid "url has error - please check it;"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:110
-msgid "what is gravatar"
+#: forum/skins/default/templates/404.html:30
+msgid ""
+"the page you tried to visit is protected or you don't have sufficient "
+"points, see"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:111
-msgid "gravatar faq info"
+#: forum/skins/default/templates/404.html:31
+msgid "if you believe this error 404 should not have occured, please"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:114
-msgid "To register, do I need to create new password?"
+#: forum/skins/default/templates/404.html:32
+msgid "report this problem"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:115
-msgid ""
-"No, you don't have to. You can login through any service that supports "
-"OpenID, e.g. Google, Yahoo, AOL, etc."
+#: forum/skins/default/templates/404.html:41
+#: forum/skins/default/templates/500.html:27
+msgid "back to previous page"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:116
-msgid "Login now!"
+#: forum/skins/default/templates/404.html:42
+msgid "see all questions"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:121
-msgid "Why other people can edit my questions/answers?"
+#: forum/skins/default/templates/404.html:43
+msgid "see all tags"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:122
-msgid "Goal of this site is..."
+#: forum/skins/default/templates/500.html:22
+msgid "sorry, system error"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:122
-msgid ""
-"So questions and answers can be edited like wiki pages by experienced users "
-"of this site and this improves the overall quality of the knowledge base "
-"content."
+#: forum/skins/default/templates/500.html:24
+msgid "system error log is recorded, error will be fixed as soon as possible"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:123
-msgid "If this approach is not for you, we respect your choice."
+#: forum/skins/default/templates/500.html:25
+msgid "please report the error to the site administrators if you wish"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:127
-msgid "Still have questions?"
+#: forum/skins/default/templates/500.html:28
+msgid "see latest questions"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:128
-#, python-format
-msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+#: forum/skins/default/templates/500.html:29
+msgid "see tags"
 msgstr ""
 
-#: forum/skins/default/templates/faq.html:130
-#: forum/skins/default/templates/header.html:30
-#: forum/skins/default/templates/header.html:58
-msgid "questions"
+#: forum/skins/default/templates/_question_list.html:12
+#: forum/skins/default/templates/book.html:105
+#: forum/skins/default/templates/question_summary_list_roll.html:14
+#: forum/skins/default/templates/question_list/item.html:10
+#: forum/views/commands.py:82
+msgid "votes"
+msgstr ""
+
+#: forum/skins/default/templates/_question_list.html:14
+msgid "this answer has been accepted to be correct"
+msgstr ""
+
+#: forum/skins/default/templates/_question_list.html:16
+#: forum/skins/default/templates/question_summary_list_roll.html:13
+#: forum/skins/default/templates/question_list/item.html:14
+msgid "answers"
+msgstr ""
+
+#: forum/skins/default/templates/_question_list.html:20
+#: forum/skins/default/templates/book.html:115
+#: forum/skins/default/templates/question_summary_list_roll.html:15
+#: forum/skins/default/templates/question_list/item.html:18
+msgid "views"
+msgstr ""
+
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "see questions tagged"
+msgstr ""
+
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/book.html:125
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "using tags"
+msgstr ""
+
+#: forum/skins/default/templates/about.html:5
+#: forum/skins/default/templates/about.html:9
+msgid "About"
+msgstr ""
+
+#: forum/skins/default/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:31
+msgid "Change password"
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:30
+msgid "Give your  account a new password."
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:32
+msgid "Change email "
+msgstr ""
+
+#: forum/skins/default/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
+msgid "Change OpenID"
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:36
+msgid "Change openid associated to your account"
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:39
+msgid "Delete account"
+msgstr ""
+
+#: forum/skins/default/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:39
+msgid "Edit answer"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:18
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:19
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:19
+#: forum/skins/default/templates/question_edit.html:22
+msgid "hide preview"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:22
+msgid "show preview"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:39
+#: forum/skins/default/templates/question_edit.html:63
+#: forum/skins/default/templates/question_retag.html:56
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "back"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:44
+#: forum/skins/default/templates/question_edit.html:68
+#: forum/skins/default/templates/revisions_answer.html:50
+#: forum/skins/default/templates/revisions_question.html:49
+msgid "revision"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:47
+#: forum/skins/default/templates/question_edit.html:72
+msgid "select revision"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:184
+#: forum/skins/default/templates/question_edit.html:89
+msgid "Toggle the real time Markdown editor preview"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:185
+#: forum/skins/default/templates/question_edit.html:89
+msgid "toggle preview"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:63
+#: forum/skins/default/templates/question_edit.html:115
+#: forum/skins/default/templates/question_retag.html:77
+msgid "Save edit"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit.html:64
+#: forum/skins/default/templates/close.html:29
+#: forum/skins/default/templates/feedback.html:50
+#: forum/skins/default/templates/question_edit.html:116
+#: forum/skins/default/templates/question_retag.html:78
+#: forum/skins/default/templates/reopen.html:30
+#: forum/skins/default/templates/users/edit.html:87
+msgid "Cancel"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:4
+msgid "answer tips"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "try to give an answer, rather than engage into a discussion"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "be clear and concise"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:20
+#: forum/skins/default/templates/question_edit_tips.html:22
+msgid "see frequently asked questions"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:26
+#: forum/skins/default/templates/question_edit_tips.html:28
+msgid "Markdown tips"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:29
+#: forum/skins/default/templates/question_edit_tips.html:31
+msgid "*italic* or __italic__"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:32
+#: forum/skins/default/templates/question_edit_tips.html:34
+msgid "**bold** or __bold__"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/question_edit_tips.html:37
+msgid "link"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
+msgid "text"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:42
+msgid "image"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:43
+#: forum/skins/default/templates/question_edit_tips.html:46
+msgid "numbered list:"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:48
+#: forum/skins/default/templates/question_edit_tips.html:51
+msgid "basic HTML tags are also supported"
+msgstr ""
+
+#: forum/skins/default/templates/answer_edit_tips.html:52
+#: forum/skins/default/templates/question_edit_tips.html:55
+msgid "learn more about Markdown"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:5
+#: forum/skins/default/templates/ask.html:57
+msgid "Ask a question"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:64
+msgid "login to post question info"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:70
+#, python-format
+msgid ""
+"must have valid %(email)s to post, \n"
+"                            see %(email_validation_faq_url)s\n"
+"                            "
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:108
+msgid "(required)"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:115
+msgid "Login/signup to post your question"
+msgstr ""
+
+#: forum/skins/default/templates/ask.html:117
+msgid "Ask your question"
+msgstr ""
+
+#: forum/skins/default/templates/badge.html:6
+#: forum/skins/default/templates/badge.html:17
+msgid "Badge"
+msgstr ""
+
+#: forum/skins/default/templates/badge.html:26
+msgid "The users have been awarded with badges:"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:6
+msgid "Badges summary"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:17
+msgid "Badges"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:21
+msgid "Community gives you awards for your questions, answers and votes."
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:22
+#, python-format
+msgid ""
+"Below is the list of available badges and number \n"
+"    of times each type of badge has been awarded. Give us feedback at %"
+"(feedback_faq_url)s.\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:50
+msgid "Community badges"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:56
+msgid "gold badge description"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:64
+msgid "silver badge description"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:67
+msgid "bronze badge: often given as a special honor"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:71
+msgid "bronze badge description"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:7
+msgid "reading channel"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:26
+msgid "[author]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:30
+msgid "[publisher]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:34
+msgid "[publication date]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:38
+msgid "[price]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:39
+msgid "currency unit"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:42
+msgid "[pages]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:43
+msgid "pages abbreviation"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:46
+msgid "[tags]"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:56
+msgid "author blog"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:62
+msgid "book directory"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:66
+msgid "buy online"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:79
+msgid "reader questions"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:82
+msgid "ask the author"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "this question was selected as favorite"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "number of times"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:108
+msgid "the answer has been accepted to be correct"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to book RSS feed"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to the questions feed"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:6
+#: forum/skins/default/templates/close.html:16
+msgid "Close question"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:19
+msgid "Close the question"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:25
+msgid "Reasons"
+msgstr ""
+
+#: forum/skins/default/templates/close.html:28
+msgid "OK to close"
+msgstr ""
+
+#: forum/skins/default/templates/email_base.html:31
+msgid "home"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:11
+msgid "Frequently Asked Questions "
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:16
+msgid "What kinds of questions can I ask here?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:17
+msgid ""
+"Most importantly - questions should be <strong>relevant</strong> to this "
+"community."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:18
+msgid ""
+"Before asking the question - please make sure to use search to see whether "
+"your question has alredy been answered."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:21
+msgid "What questions should I avoid asking?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:22
+msgid ""
+"Please avoid asking questions that are not relevant to this community, too "
+"subjective and argumentative."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:27
+msgid "What should I avoid in my answers?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:28
+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 ""
+
+#: forum/skins/default/templates/faq.html:32
+msgid "Who moderates this community?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:33
+msgid "The short answer is: <strong>you</strong>."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:34
+msgid "This website is moderated by the users."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:35
+msgid ""
+"The reputation system allows users earn the authorization to perform a "
+"variety of moderation tasks."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:40
+msgid "How does reputation system work?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:41
+msgid "Rep system summary"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:42
+msgid ""
+"For example, if you ask an interesting question or give a helpful answer, "
+"your input will be upvoted. On the other hand if the answer is misleading - "
+"it will be downvoted. Each vote in favor will generate <strong>10</strong> "
+"points, each vote against will subtract <strong>2</strong> points. There is "
+"a limit of <strong>200</strong> points that can be accumulated per question "
+"or answer. The table below explains reputation point requirements for each "
+"type of moderation task."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:53
+#: forum/skins/default/templates/users/votes.html:15
+#: forum/views/commands.py:77
+msgid "upvote"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:57
+msgid "use tags"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:62
+msgid "add comments"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:66
+#: forum/skins/default/templates/users/votes.html:17
+#: forum/views/commands.py:77
+msgid "downvote"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:69
+msgid "open and close own questions"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:73
+msgid "retag questions"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:78
+msgid "edit community wiki questions"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:83
+msgid "edit any answer"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:87
+msgid "open any closed question"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:91
+msgid "delete any comment"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:95
+msgid "delete any questions and answers and perform other moderation tasks"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:103
+msgid "how to validate email title"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:105
+#, python-format
+msgid ""
+"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:110
+msgid "what is gravatar"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:111
+msgid "gravatar faq info"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:114
+msgid "To register, do I need to create new password?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:115
+msgid ""
+"No, you don't have to. You can login through any service that supports "
+"OpenID, e.g. Google, Yahoo, AOL, etc."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:116
+msgid "Login now!"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:121
+msgid "Why other people can edit my questions/answers?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:122
+msgid "Goal of this site is..."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:122
+msgid ""
+"So questions and answers can be edited like wiki pages by experienced users "
+"of this site and this improves the overall quality of the knowledge base "
+"content."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:123
+msgid "If this approach is not for you, we respect your choice."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:127
+msgid "Still have questions?"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:128
+#, python-format
+msgid ""
+"Please ask your question at %(ask_question_url)s, help make our community "
+"better!"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:130
+#: forum/skins/default/templates/header.html:30
+#: forum/skins/default/templates/header.html:55 forum/views/readers.py:76
+msgid "questions"
 msgstr ""
 
 #: forum/skins/default/templates/faq.html:130
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
 msgid "."
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:6
-msgid "Feedback"
+#: forum/skins/default/templates/feedback.html:6
+msgid "Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:11
+msgid "Give us your feedback!"
+msgstr ""
+
+#: forum/skins/default/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
+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
+msgid "(this field is required)"
+msgstr ""
+
+#: forum/skins/default/templates/feedback.html:49
+msgid "Send Feedback"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:7
+#: forum/skins/default/templates/header.html:16
+#: forum/skins/default/templates/index.html:12
+msgid "about"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:8
+#: forum/skins/default/templates/header.html:17
+#: forum/skins/default/templates/index.html:13
+#: forum/skins/default/templates/question_edit_tips.html:22
+msgid "faq"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:9
+msgid "privacy policy"
+msgstr ""
+
+#: forum/skins/default/templates/footer.html:18
+msgid "give feedback"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:9
+msgid "administration"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:12
+msgid "logout"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:14
+msgid "login"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:24
+msgid "back to home page"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:32
+#: forum/skins/default/templates/header.html:57
+msgid "users"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:33
+#: forum/skins/default/templates/users/signature.html:9
+#: forum/skins/default/templates/users/signature.html:15
+#: forum/skins/default/templates/users/signature.html:21
+#: forum/templatetags/extra_tags.py:167 forum/templatetags/extra_tags.py:196
+msgid "badges"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:34
+msgid "unanswered questions"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:36
+msgid "ask a question"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:51
+msgid "search"
+msgstr ""
+
+#: forum/skins/default/templates/index.html:9
+msgid "welcome to "
+msgstr ""
+
+#: forum/skins/default/templates/logout.html:6
+#: forum/skins/default/templates/logout.html:16
+msgid "Logout"
+msgstr ""
+
+#: forum/skins/default/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 ""
+
+#: forum/skins/default/templates/logout.html:20
+msgid "Logout now"
+msgstr ""
+
+#: forum/skins/default/templates/notarobot.html:3
+msgid "Please prove that you are a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/notarobot.html:10
+msgid "I am a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/pagesize.html:6
+msgid "posts per page"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:6
+#: forum/skins/default/templates/paginator.html:7
+msgid "previous"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:19
+msgid "current page"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "page number "
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "number - make blank in english"
+msgstr ""
+
+#: forum/skins/default/templates/paginator.html:33
+msgid "next page"
+msgstr ""
+
+#: forum/skins/default/templates/post_contributor_info.html:9
+#, python-format
+msgid ""
+"\n"
+"                one revision\n"
+"            "
+msgid_plural ""
+"\n"
+"                %(rev_count)s revisions\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/post_contributor_info.html:24
+msgid "posted"
+msgstr ""
+
+#: forum/skins/default/templates/post_contributor_info.html:45
+msgid "updated"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:6
+#: forum/skins/default/templates/privacy.html:11
+msgid "Privacy policy"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:15
+msgid "general message about privacy"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:18
+msgid "Site Visitors"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:20
+msgid "what technical information is collected about visitors"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:23
+msgid "Personal Information"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:25
+msgid "details on personal information policies"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:28
+msgid "Other Services"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:30
+msgid "details on sharing data with third parties"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:35
+msgid "cookie policy details"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:37
+msgid "Policy Changes"
+msgstr ""
+
+#: forum/skins/default/templates/privacy.html:38
+msgid "how privacy policies can be changed"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:70
+#: forum/skins/default/templates/sidebar/recent_tags.html:9
+#, python-format
+msgid "see questions tagged '%(tagname)s'"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:87
+#, python-format
+msgid ""
+"The question has been closed for the following reason \"%(close_reason)s\" by"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:89
+#, python-format
+msgid "close date %(closed_at)s"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:97
+#, python-format
+msgid ""
+"\n"
+"                    One Answer:\n"
+"                    "
+msgid_plural ""
+"\n"
+"                    %(counter)s Answers:\n"
+"                    "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:109
+msgid "most voted answers will be shown first"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:109
+msgid "popular answers"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:157
+msgid "Your answer"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:159
+msgid "Be the first one to answer this question!"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:165
+msgid "you can answer anonymously and then login"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:11
-msgid "Give us your feedback!"
+#: forum/skins/default/templates/question.html:169
+msgid "answer your own question only to give an answer"
 msgstr ""
 
-#: forum/skins/default/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"
-"            "
+#: forum/skins/default/templates/question.html:171
+msgid "please only give an answer, no discussions"
 msgstr ""
 
-#: forum/skins/default/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"
-"            "
+#: forum/skins/default/templates/question.html:207
+msgid "Login/Signup to Post Your Answer"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:41
-msgid "(this field is required)"
+#: forum/skins/default/templates/question.html:210
+msgid "Answer Your Own Question"
 msgstr ""
 
-#: forum/skins/default/templates/feedback.html:49
-msgid "Send Feedback"
+#: forum/skins/default/templates/question.html:212
+msgid "Answer the question"
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:8
-#: forum/skins/default/templates/header.html:16
-#: forum/skins/default/templates/index.html:44
-#: forum/skins/default/templates/index_.html:77
-msgid "about"
+#: forum/skins/default/templates/question.html:229
+msgid "Question tags"
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:9
-#: forum/skins/default/templates/header.html:17
-#: forum/skins/default/templates/index.html:45
-#: forum/skins/default/templates/index_.html:78
-#: forum/skins/default/templates/question_edit_tips.html:17
-msgid "faq"
+#: forum/skins/default/templates/question.html:239
+msgid "question asked"
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:10
-msgid "privacy policy"
+#: forum/skins/default/templates/question.html:242
+msgid "question was seen"
 msgstr ""
 
-#: forum/skins/default/templates/footer.html:19
-msgid "give feedback"
+#: forum/skins/default/templates/question.html:242
+msgid "times"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:9
-msgid "administration"
+#: forum/skins/default/templates/question.html:245
+msgid "last updated"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:12
-msgid "logout"
+#: forum/skins/default/templates/question.html:250
+msgid "Related questions"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:14
-msgid "login"
+#: forum/skins/default/templates/question_edit.html:5
+#: forum/skins/default/templates/question_edit.html:63
+msgid "Edit question"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:24
-msgid "back to home page"
+#: forum/skins/default/templates/question_edit_tips.html:4
+msgid "question tips"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:32
-#: forum/skins/default/templates/header.html:60
-msgid "users"
+#: forum/skins/default/templates/question_edit_tips.html:9
+#, python-format
+msgid ""
+"\n"
+"                ask a question relevant to the %(app_title)s community \n"
+"                "
 msgstr ""
 
-#: forum/skins/default/templates/header.html:34
-msgid "books"
+#: forum/skins/default/templates/question_edit_tips.html:15
+msgid "please try provide enough details"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:36
-#: forum/templatetags/extra_tags.py:166 forum/templatetags/extra_tags.py:195
-msgid "badges"
+#: forum/skins/default/templates/question_retag.html:5
+#: forum/skins/default/templates/question_retag.html:56
+msgid "Change tags"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:37
-msgid "unanswered questions"
+#: forum/skins/default/templates/question_retag.html:44
+msgid "up to 5 tags, less than 20 characters each"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:39
-msgid "ask a question"
+#: forum/skins/default/templates/question_retag.html:86
+msgid "Why use and modify tags?"
 msgstr ""
 
-#: forum/skins/default/templates/header.html:54
-msgid "search"
+#: forum/skins/default/templates/question_retag.html:89
+msgid "tags help us keep Questions organized"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:9
-#: forum/skins/default/templates/index_.html:8
-msgid "Home"
+#: forum/skins/default/templates/question_retag.html:97
+msgid "tag editors receive special awards from the community"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:26
-#: forum/skins/default/templates/index_.html:25
-#: forum/skins/default/templates/questions.html:8
+#: forum/skins/default/templates/questions.html:7
 msgid "Questions"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:28
-#: forum/skins/default/templates/index_.html:27
-msgid "last updated questions"
+#: forum/skins/default/templates/reopen.html:6
+#: forum/skins/default/templates/reopen.html:16
+msgid "Reopen question"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:28
-#: forum/skins/default/templates/index_.html:27
-#: forum/skins/default/templates/questions.html:47
-msgid "newest"
+#: forum/skins/default/templates/reopen.html:19
+msgid "Open the previously closed question"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:29
-#: forum/skins/default/templates/index_.html:28
-#: forum/skins/default/templates/questions.html:49
-msgid "hottest questions"
+#: forum/skins/default/templates/reopen.html:22
+msgid "The question was closed for the following reason "
 msgstr ""
 
-#: forum/skins/default/templates/index.html:29
-#: forum/skins/default/templates/index_.html:28
-#: forum/skins/default/templates/questions.html:49
-msgid "hottest"
+#: forum/skins/default/templates/reopen.html:22
+msgid "reason - leave blank in english"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:30
-#: forum/skins/default/templates/index_.html:29
-#: forum/skins/default/templates/questions.html:50
-msgid "most voted questions"
+#: forum/skins/default/templates/reopen.html:22
+msgid "on "
 msgstr ""
 
-#: forum/skins/default/templates/index.html:30
-#: forum/skins/default/templates/index_.html:29
-#: forum/skins/default/templates/questions.html:50
-msgid "most voted"
+#: forum/skins/default/templates/reopen.html:22
+msgid "date closed"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:31
-#: forum/skins/default/templates/index_.html:30
-msgid "all questions"
+#: forum/skins/default/templates/reopen.html:29
+msgid "Reopen this question"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:41
-#: forum/skins/default/templates/index_.html:74
-msgid "welcome to website"
+#: forum/skins/default/templates/revisions_answer.html:7
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:7
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "Revision history"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:52
-#: forum/skins/default/templates/index_.html:85
-msgid "Recent tags"
+#: forum/skins/default/templates/revisions_answer.html:48
+#: forum/skins/default/templates/revisions_question.html:47
+msgid "click to hide/show revision"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:58
-#: forum/skins/default/templates/index_.html:90
-#: forum/skins/default/templates/question.html:134
-#, python-format
-msgid "see questions tagged '%(tagname)s'"
+#: forum/skins/default/templates/revisions_answer.html:56
+#: forum/templatetags/node_tags.py:62
+msgid "edit"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:62
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:93
-#: forum/skins/default/templates/index_.html:121
-msgid "popular tags"
+#: forum/skins/default/templates/subscription_status.html:3
+msgid "Subscription"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:67
-#: forum/skins/default/templates/index_.html:98
-msgid "Recent awards"
+#: forum/skins/default/templates/subscription_status.html:8
+msgid "You were automatically subscribed to this question."
 msgstr ""
 
-#: forum/skins/default/templates/index.html:80
-#: forum/skins/default/templates/index_.html:109
-msgid "all awards"
+#: forum/skins/default/templates/subscription_status.html:10
+msgid "You are subscribed to this question."
 msgstr ""
 
-#: forum/skins/default/templates/index.html:85
-#: forum/skins/default/templates/index_.html:114
-msgid "subscribe to last 30 questions by RSS"
+#: forum/skins/default/templates/subscription_status.html:13
+msgid "You are not subscribed to this question."
 msgstr ""
 
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
-msgid "Still looking for more? See"
+#: forum/skins/default/templates/subscription_status.html:18
+#: forum/views/commands.py:323
+msgid "unsubscribe me"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
-msgid "complete list of questions"
+#: forum/skins/default/templates/subscription_status.html:20
+#: forum/views/commands.py:323
+msgid "subscribe me"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
-#: forum/skins/default/templates/auth/signup.html:32
-msgid "or"
+#: forum/skins/default/templates/subscription_status.html:24
+#, python-format
+msgid ""
+"\n"
+"            (you can adjust your notification settings on your <a href=\"%"
+"(profile_url)s?sort=email_subscriptions\">profile</a>)\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
-msgid "Please help us answer"
+#: forum/skins/default/templates/subscription_status.html:29
+msgid "Once you sign in you will be able to subscribe for any updates here"
 msgstr ""
 
-#: forum/skins/default/templates/index.html:92
-#: forum/skins/default/templates/index_.html:121
-msgid "list of unanswered questions"
+#: forum/skins/default/templates/tag_selector.html:4
+#: forum/skins/default/templates/question_list/tag_selector.html:6
+msgid "Interesting tags"
 msgstr ""
 
-#: forum/skins/default/templates/index_.html:42
-#: forum/skins/default/templates/question_list.html:16
-#: forum/skins/default/templates/users_questions.html:34
-msgid "this answer has been accepted to be correct"
+#: 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
+#, python-format
+msgid "see questions tagged '%(tag_name)s'"
 msgstr ""
 
-#: forum/skins/default/templates/index_.html:44
-#: forum/skins/default/templates/question_list.html:18
-#: forum/skins/default/templates/question_summary_list_roll.html:13
-#: forum/skins/default/templates/users_questions.html:36
-msgid "answers"
+#: forum/skins/default/templates/tag_selector.html:14
+#: forum/skins/default/templates/question_list/tag_selector.html:16
+#, python-format
+msgid "remove '%(tag_name)s' from the list of interesting tags"
 msgstr ""
 
-#: forum/skins/default/templates/index_.html:63
-#: forum/skins/default/templates/question.html:480
-#: forum/skins/default/templates/question_list.html:36
-#: forum/skins/default/templates/question_summary_list_roll.html:52
-#: forum/skins/default/templates/tags.html:49
-#: forum/skins/default/templates/users_questions.html:52
-msgid "see questions tagged"
+#: 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
+msgid "Add"
 msgstr ""
 
-#: forum/skins/default/templates/logout.html:6
-#: forum/skins/default/templates/logout.html:16
-msgid "Logout"
+#: forum/skins/default/templates/tag_selector.html:21
+#: forum/skins/default/templates/question_list/tag_selector.html:23
+msgid "Ignored tags"
 msgstr ""
 
-#: forum/skins/default/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."
+#: forum/skins/default/templates/tag_selector.html:31
+#: forum/skins/default/templates/question_list/tag_selector.html:33
+#, python-format
+msgid "remove '%(tag_name)s' from the list of ignored tags"
 msgstr ""
 
-#: forum/skins/default/templates/logout.html:20
-msgid "Logout now"
+#: forum/skins/default/templates/tag_selector.html:40
+#: forum/skins/default/templates/question_list/tag_selector.html:42
+msgid "keep ignored questions hidden"
 msgstr ""
 
-#: forum/skins/default/templates/notarobot.html:3
-msgid "Please prove that you are a Human Being"
+#: forum/skins/default/templates/tags.html:6
+#: forum/skins/default/templates/tags.html:30
+msgid "Tag list"
 msgstr ""
 
-#: forum/skins/default/templates/notarobot.html:10
-msgid "I am a Human Being"
+#: forum/skins/default/templates/tags.html:32
+msgid "sorted alphabetically"
 msgstr ""
 
-#: forum/skins/default/templates/pagesize.html:6
-msgid "posts per page"
+#: forum/skins/default/templates/tags.html:32
+msgid "by name"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:6
-#: forum/skins/default/templates/paginator.html:7
-msgid "previous"
+#: forum/skins/default/templates/tags.html:33
+msgid "sorted by frequency of tag use"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:19
-msgid "current page"
+#: forum/skins/default/templates/tags.html:33
+msgid "by popularity"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:22
-#: forum/skins/default/templates/paginator.html:29
-msgid "page number "
+#: forum/skins/default/templates/tags.html:39
+msgid "All tags matching query"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:22
-#: forum/skins/default/templates/paginator.html:29
-msgid "number - make blank in english"
+#: forum/skins/default/templates/tags.html:39
+msgid "all tags - make this empty in english"
 msgstr ""
 
-#: forum/skins/default/templates/paginator.html:33
-msgid "next page"
+#: forum/skins/default/templates/tags.html:42
+msgid "Nothing found"
 msgstr ""
 
-#: forum/skins/default/templates/post_contributor_info.html:9
-#, python-format
+#: forum/skins/default/templates/auth/auth_settings.html:5
+#: forum/skins/default/templates/auth/auth_settings.html:7
+msgid "Authentication settings"
+msgstr ""
+
+#: forum/skins/default/templates/auth/auth_settings.html:9
 msgid ""
-"\n"
-"                one revision\n"
-"            "
-msgid_plural ""
-"\n"
-"                %(rev_count)s revisions\n"
-"            "
-msgstr[0] ""
-msgstr[1] ""
+"These are the external authentication providers currently associated with "
+"your account."
+msgstr ""
 
-#: forum/skins/default/templates/post_contributor_info.html:19
-msgid "asked"
+#: forum/skins/default/templates/auth/auth_settings.html:12
+msgid "remove"
 msgstr ""
 
-#: forum/skins/default/templates/post_contributor_info.html:22
-msgid "answered"
+#: forum/skins/default/templates/auth/auth_settings.html:17
+msgid ""
+"You currently have no external authentication provider associated with your "
+"account."
 msgstr ""
 
-#: forum/skins/default/templates/post_contributor_info.html:24
-msgid "posted"
+#: forum/skins/default/templates/auth/auth_settings.html:19
+msgid "Add new provider"
 msgstr ""
 
-#: forum/skins/default/templates/post_contributor_info.html:45
-msgid "updated"
+#: forum/skins/default/templates/auth/auth_settings.html:21
+msgid "This is where you can change your password. Make sure you remember it!"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:6
-#: forum/skins/default/templates/privacy.html:11
-msgid "Privacy policy"
+#: forum/skins/default/templates/auth/auth_settings.html:24
+msgid ""
+"You can set up a password for your account, so you can login using standard "
+"username and password!"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:15
-msgid "general message about privacy"
+#: forum/skins/default/templates/auth/auth_settings.html:31
+msgid "Create password"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:5
+msgid "Connect your OpenID with this site"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:8
+msgid "Connect your OpenID with your account on this site"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:12
+msgid "You are here for the first time with "
+msgstr ""
+
+#: forum/skins/default/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
+msgid "This account already exists, please use another."
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:30
+msgid "Sorry, looks like we have some errors:"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:18
-msgid "Site Visitors"
+#: forum/skins/default/templates/auth/complete.html:47
+msgid "Screen name label"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:20
-msgid "what technical information is collected about visitors"
+#: forum/skins/default/templates/auth/complete.html:54
+msgid "Email address label"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:23
-msgid "Personal Information"
+#: forum/skins/default/templates/auth/complete.html:60
+#: forum/skins/default/templates/auth/signup.html:18
+msgid "receive updates motivational blurb"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:25
-msgid "details on personal information policies"
+#: forum/skins/default/templates/auth/complete.html:64
+#: forum/skins/default/templates/auth/signup.html:22
+msgid "please select one of the options above"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:28
-msgid "Other Services"
+#: forum/skins/default/templates/auth/complete.html:67
+msgid "Tag filter tool will be your right panel, once you log in."
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:30
-msgid "details on sharing data with third parties"
+#: forum/skins/default/templates/auth/complete.html:68
+msgid "create account"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:35
-msgid "cookie policy details"
+#: forum/skins/default/templates/auth/complete.html:77
+msgid "Existing account"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:37
-msgid "Policy Changes"
+#: forum/skins/default/templates/auth/complete.html:78
+msgid "user name"
 msgstr ""
 
-#: forum/skins/default/templates/privacy.html:38
-msgid "how privacy policies can be changed"
+#: forum/skins/default/templates/auth/complete.html:79
+msgid "password"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:78
-#: forum/skins/default/templates/question.html:79
-#: forum/skins/default/templates/question.html:95
-#: forum/skins/default/templates/question.html:97
-msgid "i like this post (click again to cancel)"
+#: forum/skins/default/templates/auth/complete.html:86
+msgid "Register"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:81
-#: forum/skins/default/templates/question.html:99
-#: forum/skins/default/templates/question.html:256
-msgid "current number of votes"
+#: forum/skins/default/templates/auth/complete.html:87
+msgid "Forgot your password?"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:90
-#: forum/skins/default/templates/question.html:91
-#: forum/skins/default/templates/question.html:104
-#: forum/skins/default/templates/question.html:105
-msgid "i dont like this post (click again to cancel)"
+#: forum/skins/default/templates/auth/email_validation.html:6
+#: forum/skins/default/templates/auth/temp_login_email.html:6
+msgid "Greetings from the Q&A forum"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:109
-#: forum/skins/default/templates/question.html:110
-msgid "mark this question as favorite (click again to cancel)"
+#: forum/skins/default/templates/auth/email_validation.html:8
+msgid "To make use of the Forum, please follow the link below:"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:116
-#: forum/skins/default/templates/question.html:117
-msgid "remove favorite mark from this question (click again to restore mark)"
+#: forum/skins/default/templates/auth/email_validation.html:12
+msgid "Following the link above will help us verify your email address."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:139
-#: forum/skins/default/templates/question.html:293
-#: forum/skins/default/templates/revisions_answer.html:58
-#: forum/skins/default/templates/revisions_question.html:58
-msgid "edit"
+#: forum/skins/default/templates/auth/email_validation.html:14
+#: forum/skins/default/templates/auth/temp_login_email.html:14
+msgid ""
+"If you beleive that this message was sent in mistake -\n"
+"    no further action is needed. Just ingore this email, we apologize\n"
+"    for any inconvenience"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:144
-msgid "reopen"
+#: forum/skins/default/templates/auth/email_validation.html:18
+#: forum/skins/default/templates/auth/temp_login_email.html:18
+#: forum/skins/default/templates/notifications/answeraccepted.html:15
+#: forum/skins/default/templates/notifications/newanswer.html:25
+#: forum/skins/default/templates/notifications/newcomment.html:32
+#: forum/skins/default/templates/notifications/newmember.html:15
+#: forum/skins/default/templates/notifications/newquestion.html:25
+msgid ""
+"Sincerely,<br />\n"
+"    Forum Administrator"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:148
-msgid "close"
+#: forum/skins/default/templates/auth/signin.html:6
+msgid "Login"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:154
-#: forum/skins/default/templates/question.html:298
-msgid ""
-"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+#: forum/skins/default/templates/auth/signin.html:24
+msgid "User login"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:155
-#: forum/skins/default/templates/question.html:299
-msgid "flag offensive"
+#: forum/skins/default/templates/auth/signin.html:36
+#: forum/skins/default/templates/auth/signin.html:86
+#: forum/skins/default/templates/auth/signin.html:92
+msgid "Or..."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:163
-#: forum/skins/default/templates/question.html:310
-msgid "delete"
+#: forum/skins/default/templates/auth/signin.html:39
+msgid "Click to sign in through any of these services."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:181
-#: forum/skins/default/templates/question.html:330
-msgid "delete this comment"
+#: forum/skins/default/templates/auth/signin.html:44
+msgid "Validate my email after I login."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:192
-#: forum/skins/default/templates/question.html:341
-msgid "add comment"
+#: forum/skins/default/templates/auth/signin.html:94
+msgid "Click"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:196
-#, python-format
-msgid ""
-"\n"
-"                                            see <strong>one</strong> more \n"
-"                                            "
-msgid_plural ""
-"\n"
-"                                            see <strong>%(counter)s</strong> "
-"more\n"
-"                                            "
-msgstr[0] ""
-msgstr[1] ""
+#: forum/skins/default/templates/auth/signin.html:94
+msgid "if you're having troubles signing in."
+msgstr ""
 
-#: forum/skins/default/templates/question.html:202
-#, python-format
-msgid ""
-"\n"
-"                                            see <strong>one</strong> more "
-"comment\n"
-"                                            "
-msgid_plural ""
-"\n"
-"                                            see <strong>%(counter)s</strong> "
-"more comments\n"
-"                                            "
-msgstr[0] ""
-msgstr[1] ""
+#: forum/skins/default/templates/auth/signin.html:98
+msgid "Enter your "
+msgstr ""
 
-#: forum/skins/default/templates/question.html:218
-#, python-format
-msgid ""
-"The question has been closed for the following reason \"%(close_reason)s\" by"
+#: forum/skins/default/templates/auth/signin.html:154
+msgid "Why use OpenID?"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:220
-#, python-format
-msgid "close date %(closed_at)s"
+#: forum/skins/default/templates/auth/signin.html:157
+msgid "with openid it is easier"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:228
-#, python-format
-msgid ""
-"\n"
-"                    One Answer:\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    %(counter)s Answers:\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
+#: forum/skins/default/templates/auth/signin.html:160
+msgid "reuse openid"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:236
-msgid "oldest answers will be shown first"
+#: forum/skins/default/templates/auth/signin.html:163
+msgid "openid is widely adopted"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:236
-msgid "oldest answers"
+#: forum/skins/default/templates/auth/signin.html:166
+msgid "openid is supported open standard"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:238
-msgid "newest answers will be shown first"
+#: forum/skins/default/templates/auth/signin.html:171
+msgid "Find out more"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:238
-msgid "newest answers"
+#: forum/skins/default/templates/auth/signin.html:172
+msgid "Get OpenID"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:240
-msgid "most voted answers will be shown first"
+#: forum/skins/default/templates/auth/signup.html:4
+msgid "Signup"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:240
-msgid "popular answers"
+#: forum/skins/default/templates/auth/signup.html:8
+msgid "Create login name and password"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:254
-#: forum/skins/default/templates/question.html:255
-msgid "i like this answer (click again to cancel)"
+#: forum/skins/default/templates/auth/signup.html:10
+msgid "Traditional signup info"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:261
-#: forum/skins/default/templates/question.html:262
-msgid "i dont like this answer (click again to cancel)"
+#: forum/skins/default/templates/auth/signup.html:31
+msgid "Create Account"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:267
-#: forum/skins/default/templates/question.html:268
-msgid "mark this answer as favorite (click again to undo)"
+#: forum/skins/default/templates/auth/signup.html:32
+msgid "or"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:273
-#: forum/skins/default/templates/question.html:274
-msgid "the author of the question has selected this answer as correct"
+#: forum/skins/default/templates/auth/signup.html:33
+msgid "return to login page"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:287
-msgid "answer permanent link"
+#: forum/skins/default/templates/auth/temp_login_email.html:8
+msgid "You're seeing this because someone requested a temporary login link"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:288
-msgid "permanent link"
+#: forum/skins/default/templates/auth/temp_login_email.html:12
+msgid "Following the link above will give you access to your account."
 msgstr ""
 
-#: forum/skins/default/templates/question.html:310
-msgid "undelete"
+#: forum/skins/default/templates/auth/temp_login_request.html:5
+msgid "Request temporary login key"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:345
-#, python-format
-msgid ""
-"\n"
-"                                                        see <strong>one</"
-"strong> more \n"
-"                                                        "
-msgid_plural ""
-"\n"
-"                                                        see <strong>%"
-"(counter)s</strong> more\n"
-"                                                        "
-msgstr[0] ""
-msgstr[1] ""
+#: forum/skins/default/templates/auth/temp_login_request.html:7
+msgid "Account: request temporary login key"
+msgstr ""
 
-#: forum/skins/default/templates/question.html:351
-#, python-format
+#: forum/skins/default/templates/auth/temp_login_request.html:8
 msgid ""
 "\n"
-"                                                        see <strong>one</"
-"strong> more comment\n"
-"                                                        "
-msgid_plural ""
-"\n"
-"                                                        see <strong>%"
-"(counter)s</strong> more comments\n"
-"                                                        "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/question.html:377
-#: forum/skins/default/templates/question.html:380
-msgid "Notify me once a day when there are any new answers"
+"    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 ""
 
-#: forum/skins/default/templates/question.html:383
-msgid "Notify me weekly when there are any new answers"
+#: forum/skins/default/templates/auth/temp_login_request.html:25
+msgid "Send link"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:388
+#: forum/skins/default/templates/node/accept_button.html:5
 #, python-format
-msgid ""
-"\n"
-"                You can always adjust frequency of email updates from your %"
-"(profile_url)s\n"
-"                "
+msgid "%(who)s has selected this answer as the correct answer"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:395
-msgid "once you sign in you will be able to subscribe for any updates here"
+#: forum/skins/default/templates/node/accept_button.html:5
+msgid "mark this answer as the accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:406
-msgid "Your answer"
+#: forum/skins/default/templates/node/comments.html:22
+msgid "I like this comment (click again to cancel)"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:408
-msgid "Be the first one to answer this question!"
+#: forum/skins/default/templates/node/comments.html:26
+msgid "Edit comment"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:414
-msgid "you can answer anonymously and then login"
+#: forum/skins/default/templates/node/comments.html:30
+msgid "Delete comment"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:418
-msgid "answer your own question only to give an answer"
+#: forum/skins/default/templates/node/comments.html:42
+#, python-format
+msgid "showing %(showing)s of %(total)s"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:420
-msgid "please only give an answer, no discussions"
+#: forum/skins/default/templates/node/comments.html:44
+msgid "show all"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:456
-msgid "Login/Signup to Post Your Answer"
+#: forum/skins/default/templates/node/comments.html:47
+msgid "add new comment"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:459
-msgid "Answer Your Own Question"
+#: forum/skins/default/templates/node/comments.html:55
+msgid " add comment"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:461
-msgid "Answer the question"
+#: forum/skins/default/templates/node/comments.html:58
+#, python-format
+msgid ""
+"\n"
+"                have <span class=\"comments-char-left-count\">%(max_length)"
+"s</span> characters left\n"
+"            "
 msgstr ""
 
-#: forum/skins/default/templates/question.html:475
-msgid "Question tags"
+#: forum/skins/default/templates/node/comments.html:71
+msgid "just now"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:485
-msgid "question asked"
+#: forum/skins/default/templates/node/favorite_mark.html:3
+msgid "mark/unmark this question as favorite (click again to cancel)"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:488
-msgid "question was seen"
+#: forum/skins/default/templates/node/vote_buttons.html:3
+msgid "I like this post (click again to cancel)"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:488
-msgid "times"
+#: forum/skins/default/templates/node/vote_buttons.html:7
+msgid "current number of votes"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:491
-msgid "last updated"
+#: forum/skins/default/templates/node/vote_buttons.html:10
+msgid "I dont like this post (click again to cancel)"
 msgstr ""
 
-#: forum/skins/default/templates/question.html:497
-msgid "Related questions"
+#: forum/skins/default/templates/notifications/answeraccepted.html:6
+#: forum/skins/default/templates/notifications/digest.html:7
+#: forum/skins/default/templates/notifications/newanswer.html:6
+#: forum/skins/default/templates/notifications/newcomment.html:6
+#: forum/skins/default/templates/notifications/newmember.html:6
+#: forum/skins/default/templates/notifications/newquestion.html:6
+msgid "Hello"
 msgstr ""
 
-#: forum/skins/default/templates/question_edit.html:5
-#: forum/skins/default/templates/question_edit.html:66
-msgid "Edit question"
+#: forum/skins/default/templates/notifications/answeraccepted.html:9
+#, python-format
+msgid ""
+"\n"
+"        Just to let you know that %(accepter)s has just accepted %"
+"(answer_author)s's answer on his question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a>:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:4
-msgid "question tips"
+#: forum/skins/default/templates/notifications/digest.html:9
+#, python-format
+msgid ""
+"\n"
+"    This is the %(digest_type)s activity digest for %(app_title)s\n"
+"    "
 msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:7
-msgid "please ask a relevant question"
+#: forum/skins/default/templates/notifications/digest.html:15
+#, python-format
+msgid ""
+"\n"
+"            %(nusers_count)s new user%(nusers_count_pluralize)s joined the %"
+"(app_title)s community:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/question_edit_tips.html:10
-msgid "please try provide enough details"
+#: forum/skins/default/templates/notifications/digest.html:28
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s of your subscriptions have updates:\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:5
-#: forum/skins/default/templates/question_retag.html:54
-msgid "Change tags"
+#: forum/skins/default/templates/notifications/digest.html:35
+msgid "On question "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:41
-msgid "up to 5 tags, less than 20 characters each"
+#: forum/skins/default/templates/notifications/digest.html:37
+#, python-format
+msgid ""
+"\n"
+"                    %(answer_count)s new answer%(answer_count_pluralize)s\n"
+"                "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:84
-msgid "Why use and modify tags?"
+#: forum/skins/default/templates/notifications/digest.html:42
+#, python-format
+msgid ""
+"\n"
+"                    %(comment_count)s new comment%(comment_count_pluralize)"
+"s\n"
+"                "
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:87
-msgid "tags help us keep Questions organized"
+#: forum/skins/default/templates/notifications/digest.html:46
+msgid "on your own post(s)"
 msgstr ""
 
-#: forum/skins/default/templates/question_retag.html:95
-msgid "tag editors receive special awards from the community"
+#: forum/skins/default/templates/notifications/digest.html:50
+msgid "an answer was accepted"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:29
-msgid "Found by tags"
+#: forum/skins/default/templates/notifications/digest.html:59
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s new question%(question_count_pluralize)s\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:33
-msgid "Search results"
+#: forum/skins/default/templates/notifications/digest.html:63
+msgid "matching your interesting tags"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:35
-msgid "Found by title"
+#: forum/skins/default/templates/notifications/digest.html:65
+msgid "posted :"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:39
-msgid "Unanswered questions"
+#: forum/skins/default/templates/notifications/digest.html:71
+#, python-format
+msgid ""
+"\n"
+"                    Posted by %(author_name)s in %(question_time)s\n"
+"                "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:41
-msgid "All questions"
+#: forum/skins/default/templates/notifications/feedback.html:7
+#, python-format
+msgid ""
+"\n"
+"    Hello, this is a %(site_title)s forum feedback message\n"
+"    "
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:47
-msgid "most recently asked questions"
+#: forum/skins/default/templates/notifications/feedback.html:13
+msgid "Sender"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:48
-msgid "most recently updated questions"
+#: forum/skins/default/templates/notifications/feedback.html:15
+#: forum/skins/default/templates/notifications/feedback.html:18
+#: forum/skins/default/templates/users/info.html:93
+msgid "email"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:48
-msgid "active"
+#: forum/skins/default/templates/notifications/feedback.html:17
+msgid "anonymous"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:25
+msgid "Message body:"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:64
+#: forum/skins/default/templates/notifications/newanswer.html:9
 #, python-format
 msgid ""
 "\n"
-"            have total %(q_num)s questions tagged %(tagname)s\n"
-"            "
-msgid_plural ""
+"        %(author_name)s has just posted a new answer on %(app_title)s to the "
+"question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s\"</a>:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newanswer.html:20
+#: forum/skins/default/templates/notifications/newcomment.html:28
+#: forum/skins/default/templates/notifications/newquestion.html:20
+msgid ""
 "\n"
-"            have total %(q_num)s questions tagged %(tagname)s\n"
-"            "
-msgstr[0] ""
-msgstr[1] ""
+"        Don't forget to come over and cast your vote.\n"
+"    "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:72
+#: forum/skins/default/templates/notifications/newcomment.html:9
 #, python-format
 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] ""
-msgstr[1] ""
+"            %(author_name)s has just posted a comment on\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:78
+#: forum/skins/default/templates/notifications/newcomment.html:14
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s questions containing %(searchtitle)"
-"s\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    have total %(q_num)s questions containing %(searchtitle)"
-"s\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
+"                the answer posted by <a href=\"%(app_url)s%(poster_url)s\">%"
+"(poster_name)s</a> to\n"
+"            "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:86
+#: forum/skins/default/templates/notifications/newcomment.html:19
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s unanswered questions\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    have total %(q_num)s unanswered questions\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
+"             the question  <a href=\"%(app_url)s%(question_url)s\">%"
+"(question_title)s</a>\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:92
+#: forum/skins/default/templates/notifications/newmember.html:9
 #, python-format
 msgid ""
 "\n"
-"                    have total %(q_num)s question\n"
-"                    "
-msgid_plural ""
+"        %(newmember_name)s has just joined %(app_title)s. You can visit %"
+"(newmember_name)s's profile using the following link: <br />\n"
+"        <a href=\"%(app_url)s%(newmember_url)s\">%(newmember_name)s profile</"
+"a>\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newquestion.html:9
+#, python-format
+msgid ""
 "\n"
-"                    have total %(q_num)s questions\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
+"        %(author_name)s has just posted a new question on %(app_title)s, "
+"with title\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a> and "
+"tagged <em>%(question_tags)s</em>:\n"
+"        "
+msgstr ""
 
-#: forum/skins/default/templates/questions.html:102
-msgid "latest questions info"
+#: forum/skins/default/templates/osqaadmin/base.html:13
+msgid "OSQA administration area"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:106
-msgid "Questions are sorted by the <strong>time of last update</strong>."
+#: forum/skins/default/templates/osqaadmin/base.html:26
+msgid "Administration menu"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:107
-msgid "Most recently answered ones are shown first."
+#: forum/skins/default/templates/osqaadmin/index.html:7
+msgid "Dashboard"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:111
-msgid "Questions sorted by <strong>number of responses</strong>."
+#: forum/skins/default/templates/osqaadmin/index.html:10
+msgid "Welcome to the OSQA administration area."
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:112
-msgid "Most answered questions are shown first."
+#: forum/skins/default/templates/osqaadmin/index.html:17
+msgid "Site statistics"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:116
-msgid "Questions are sorted by the <strong>number of votes</strong>."
+#: forum/skins/default/templates/osqaadmin/index.html:21
+#: forum/skins/default/templates/osqaadmin/index.html:26
+msgid "in the last 24 hours"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:117
-msgid "Most voted questions are shown first."
+#: forum/skins/default/templates/osqaadmin/index.html:31
+msgid "user"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:125
-msgid "Related tags"
+#: forum/skins/default/templates/osqaadmin/index.html:31
+msgid "joined in the last 24 hours"
 msgstr ""
 
-#: forum/skins/default/templates/questions.html:128
-#: forum/skins/default/templates/tag_selector.html:10
-#: forum/skins/default/templates/tag_selector.html:27
-#, python-format
-msgid "see questions tagged '%(tag_name)s'"
+#: forum/skins/default/templates/osqaadmin/index.html:37
+msgid "Site status"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:6
-#: forum/skins/default/templates/reopen.html:16
-msgid "Reopen question"
+#: forum/skins/default/templates/osqaadmin/index.html:42
+msgid ""
+"Your site is running in bootstrap mode, click the button bellow to revert to "
+"defaults."
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:19
-msgid "Open the previously closed question"
+#: forum/skins/default/templates/osqaadmin/index.html:45
+msgid ""
+"Your site is running in standard mode, click the button bellow to run in "
+"bootstrap mode."
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "The question was closed for the following reason "
+#: forum/skins/default/templates/osqaadmin/index.html:47
+msgid ""
+"Your site is running with some customized settings, click the buttons bellow "
+"to run with defaults or in bootstrap mode"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "reason - leave blank in english"
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "Are you sure you want to revert to the defaults?"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "on "
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "revert to defaults"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:22
-msgid "date closed"
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "Are you sure you want to run bootstrap mode?"
 msgstr ""
 
-#: forum/skins/default/templates/reopen.html:29
-msgid "Reopen this question"
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "go bootstrap"
 msgstr ""
 
-#: forum/skins/default/templates/revisions_answer.html:7
-#: forum/skins/default/templates/revisions_answer.html:38
-#: forum/skins/default/templates/revisions_question.html:8
-#: forum/skins/default/templates/revisions_question.html:38
-msgid "Revision history"
+#: forum/skins/default/templates/osqaadmin/index.html:59
+msgid "Recalculate scores and reputation"
 msgstr ""
 
-#: forum/skins/default/templates/revisions_answer.html:50
-#: forum/skins/default/templates/revisions_question.html:50
-msgid "click to hide/show revision"
+#: forum/skins/default/templates/osqaadmin/index.html:60
+msgid "This is a heavy operation, are you sure?"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:4
-msgid "Interesting tags"
+#: forum/skins/default/templates/osqaadmin/index.html:60
+msgid "Recalculate"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:14
-#, python-format
-msgid "remove '%(tag_name)s' from the list of interesting tags"
+#: forum/skins/default/templates/osqaadmin/index.html:65
+msgid "Recent activity"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:20
-#: forum/skins/default/templates/tag_selector.html:37
-msgid "Add"
+#: forum/skins/default/templates/question_list/item.html:12
+msgid "this question has an accepted answer"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:21
-msgid "Ignored tags"
+#: forum/skins/default/templates/question_list/related_tags.html:6
+msgid "Related tags"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:31
-#, python-format
-msgid "remove '%(tag_name)s' from the list of ignored tags"
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+msgid "most recently updated questions"
 msgstr ""
 
-#: forum/skins/default/templates/tag_selector.html:40
-msgid "keep ignored questions hidden"
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+msgid "active"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:6
-#: forum/skins/default/templates/tags.html:30
-msgid "Tag list"
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "most recently asked questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:32
-msgid "sorted alphabetically"
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "newest"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:32
-msgid "by name"
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:33
-msgid "sorted by frequency of tag use"
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:33
-msgid "by popularity"
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted questions"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:39
-msgid "All tags matching query"
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:39
-msgid "all tags - make this empty in english"
+#: forum/skins/default/templates/question_list/title.html:5
+msgid "Found by tags"
 msgstr ""
 
-#: forum/skins/default/templates/tags.html:42
-msgid "Nothing found"
+#: forum/skins/default/templates/question_list/title.html:9
+msgid "Search results"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:11
+msgid "Found by title"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:15
+msgid "Unanswered questions"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:17
+#: forum/skins/default/templates/users/subscriptions.html:74
+msgid "All questions"
+msgstr ""
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:4
+msgid "Recent awards"
+msgstr ""
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:15
+msgid "all awards"
+msgstr ""
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:4
+msgid "Recent tags"
+msgstr ""
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:12
+msgid "popular tags"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:6
+#: forum/skins/default/templates/users/edit.html:6
 msgid "Edit user profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:19
+#: forum/skins/default/templates/users/edit.html:19
 msgid "edit profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:31
+#: forum/skins/default/templates/users/edit.html:31
 msgid "image associated with your email address"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:31
+#: forum/skins/default/templates/users/edit.html:31
 #, python-format
 msgid "avatar, see %(gravatar_faq_url)s"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:36
-#: forum/skins/default/templates/user_info.html:56
+#: forum/skins/default/templates/users/edit.html:36
+#: forum/skins/default/templates/users/info.html:52
 msgid "Registered user"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:43
+#: forum/skins/default/templates/users/edit.html:43
 msgid "Screen Name"
 msgstr ""
 
-#: forum/skins/default/templates/user_edit.html:86
-#: forum/skins/default/templates/user_email_subscriptions.html:20
+#: forum/skins/default/templates/users/edit.html:86
+#: forum/skins/default/templates/users/subscriptions.html:116
 msgid "Update"
 msgstr ""
 
-#: forum/skins/default/templates/user_email_subscriptions.html:8
-msgid "Email subscription settings"
-msgstr ""
-
-#: forum/skins/default/templates/user_email_subscriptions.html:9
-msgid "email subscription settings info"
-msgstr ""
-
-#: forum/skins/default/templates/user_email_subscriptions.html:21
-msgid "Stop sending email"
-msgstr ""
-
-#: forum/skins/default/templates/user_info.html:22
-#: forum/skins/default/templates/users.html:26 forum/views/users.py:916
+#: forum/skins/default/templates/users/info.html:22
+#: forum/skins/default/templates/users/signature.html:6
+#: forum/skins/default/templates/users/users.html:26
 msgid "reputation"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:32
+#: forum/skins/default/templates/users/info.html:32
 msgid "Moderate this user"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:45
+#: forum/skins/default/templates/users/info.html:44
 msgid "update profile"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:60
+#: forum/skins/default/templates/users/info.html:56
 msgid "real name"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:65
+#: forum/skins/default/templates/users/info.html:61
 msgid "member for"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:70
+#: forum/skins/default/templates/users/info.html:66
 msgid "last seen"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:76
+#: forum/skins/default/templates/users/info.html:72
 msgid "user website"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:82
+#: forum/skins/default/templates/users/info.html:78
 msgid "location"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:89
+#: forum/skins/default/templates/users/info.html:86
 msgid "age"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:90
+#: forum/skins/default/templates/users/info.html:87
 msgid "age unit"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:96
+#: forum/skins/default/templates/users/info.html:100
 msgid "todays unused votes"
 msgstr ""
 
-#: forum/skins/default/templates/user_info.html:97
+#: forum/skins/default/templates/users/info.html:101
 msgid "votes left"
 msgstr ""
 
-#: forum/skins/default/templates/user_stats.html:12
+#: forum/skins/default/templates/users/stats.html:13
 #, python-format
 msgid ""
 "\n"
@@ -2385,7 +3219,7 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:23
+#: forum/skins/default/templates/users/stats.html:29
 #, python-format
 msgid ""
 "\n"
@@ -2398,791 +3232,821 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: forum/skins/default/templates/user_stats.html:36
-#, python-format
-msgid "the answer has been voted for %(vote_count)s times"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:36
-msgid "this answer has been selected as correct"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:46
-#, python-format
-msgid ""
-"\n"
-"                    (one comment)\n"
-"                    "
-msgid_plural ""
-"\n"
-"                    the answer has been commented %(comment_count)s times\n"
-"                    "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/user_stats.html:61
-#, python-format
-msgid ""
-"\n"
-"                    <span class=\"count\">1</span> Vote\n"
-"                "
-msgid_plural ""
-"\n"
-"                    <span class=\"count\">%(cnt)s</span> Votes\n"
-"                "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/user_stats.html:72
-msgid "thumb up"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:73
-msgid "user has voted up this many times"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:77
-msgid "thumb down"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:78
-msgid "user voted down this many times"
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:87
-#, python-format
-msgid ""
-"\n"
-"                    <span class=\"count\">1</span> Tag\n"
-"                "
-msgid_plural ""
-"\n"
-"                    <span class=\"count\">%(counter)s</span> Tags\n"
-"                "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/user_stats.html:100
-#, python-format
-msgid ""
-"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
-msgstr ""
-
-#: forum/skins/default/templates/user_stats.html:115
-#, python-format
-msgid ""
-"\n"
-"            <span class=\"count\">1</span> Badge\n"
-"            "
-msgid_plural ""
-"\n"
-"            <span class=\"count\">%(counter)s</span> Badges\n"
-"            "
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/skins/default/templates/user_tabs.html:7
-msgid "User profile"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:7 forum/views/users.py:890
-msgid "overview"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:9 forum/views/users.py:898
-msgid "recent activity"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:12 forum/views/users.py:908
-msgid "comments and answers to others questions"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:13 forum/views/users.py:907
-msgid "responses"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:16
-msgid "graph of user reputation"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:17
-msgid "reputation history"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:20 forum/views/users.py:934
-msgid "user vote record"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:20 forum/views/users.py:933
-msgid "casted votes"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:23
-msgid "questions that user selected as his/her favorite"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:24
-msgid "favorites"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:27 forum/views/users.py:943
-msgid "email subscription settings"
-msgstr ""
-
-#: forum/skins/default/templates/user_tabs.html:28 forum/views/users.py:942
-msgid "email subscriptions"
-msgstr ""
-
-#: forum/skins/default/templates/users.html:6
-#: forum/skins/default/templates/users.html:24
-msgid "Users"
-msgstr ""
-
-#: forum/skins/default/templates/users.html:27
-msgid "recent"
-msgstr ""
-
-#: forum/skins/default/templates/users.html:28
-msgid "oldest"
-msgstr ""
-
-#: forum/skins/default/templates/users.html:29
-msgid "by username"
-msgstr ""
-
-#: forum/skins/default/templates/users.html:35
+#: forum/skins/default/templates/users/stats.html:42
 #, python-format
-msgid "users matching query %(suser)s:"
+msgid "the answer has been voted for %(vote_count)s times"
 msgstr ""
 
-#: forum/skins/default/templates/users.html:39
-msgid "Nothing found."
+#: forum/skins/default/templates/users/stats.html:42
+msgid "this answer has been selected as correct"
 msgstr ""
 
-#: forum/skins/default/templates/users_questions.html:11
-msgid "this questions was selected as favorite"
-msgstr ""
+#: forum/skins/default/templates/users/stats.html:58
+#, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">1</span> Vote\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(cnt)s</span> Votes\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/users_questions.html:12
-msgid "thumb-up on"
+#: forum/skins/default/templates/users/stats.html:69
+msgid "thumb up"
 msgstr ""
 
-#: forum/skins/default/templates/users_questions.html:19
-msgid "thumb-up off"
+#: forum/skins/default/templates/users/stats.html:70
+msgid "user has voted up this many times"
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:5
-#: forum/skins/default/templates/auth/auth_settings.html:7
-msgid "Authentication settings"
+#: forum/skins/default/templates/users/stats.html:74
+msgid "thumb down"
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:9
-msgid ""
-"These are the external authentication providers currently associated with "
-"your account."
+#: forum/skins/default/templates/users/stats.html:75
+msgid "user voted down this many times"
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:12
-msgid "remove"
-msgstr ""
+#: forum/skins/default/templates/users/stats.html:84
+#, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">1</span> Tag\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(counter)s</span> Tags\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:17
+#: forum/skins/default/templates/users/stats.html:97
+#, python-format
 msgid ""
-"You currently have no external authentication provider associated with your "
-"account."
+"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:19
-msgid "Add new provider"
-msgstr ""
+#: forum/skins/default/templates/users/stats.html:112
+#, python-format
+msgid ""
+"\n"
+"            <span class=\"count\">1</span> Badge\n"
+"            "
+msgid_plural ""
+"\n"
+"            <span class=\"count\">%(counter)s</span> Badges\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:21
-msgid "This is where you can change your password. Make sure you remember it!"
+#: forum/skins/default/templates/users/subscriptions.html:8
+msgid "Notifications and subscription settings"
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:24
+#: forum/skins/default/templates/users/subscriptions.html:10
 msgid ""
-"You can set up a password for your account, so you can login using standard "
-"username and password!"
+"\n"
+"        Here you can decide which types of notifications you wish to "
+"receive, and it's frequency.<br />\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/auth/auth_settings.html:31
-msgid "Create password"
+#: forum/skins/default/templates/users/subscriptions.html:14
+msgid ""
+"\n"
+"        Currently you have notifications enabled. You can always stop all "
+"notifications without loosing your settings and restart them afterwards.<br /"
+">\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:5
-msgid "Connect your OpenID with this site"
+#: forum/skins/default/templates/users/subscriptions.html:18
+msgid ""
+"\n"
+"        Currently you have notifications disabled. You can enable them "
+"clicking on the <strong>Start notifications</strong> button bellow.<br />\n"
+"        "
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:8
-msgid "Connect your OpenID with your account on this site"
+#: forum/skins/default/templates/users/subscriptions.html:28
+msgid "Notify me when:"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:12
-msgid "You are here for the first time with "
+#: forum/skins/default/templates/users/subscriptions.html:32
+msgid "A new member joins"
 msgstr ""
 
-#: forum/skins/default/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. "
+#: forum/skins/default/templates/users/subscriptions.html:36
+msgid "A new question is posted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:15
-msgid "This account already exists, please use another."
+#: forum/skins/default/templates/users/subscriptions.html:40
+msgid "A new question matching my interesting tags is posted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:30
-msgid "Sorry, looks like we have some errors:"
+#: forum/skins/default/templates/users/subscriptions.html:44
+msgid "There's an update on one of my subscriptions"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:47
-msgid "Screen name label"
+#: forum/skins/default/templates/users/subscriptions.html:52
+msgid "Auto subscribe me to:"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:54
-msgid "Email address label"
+#: forum/skins/default/templates/users/subscriptions.html:57
+msgid "Questions I ask"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:60
-#: forum/skins/default/templates/auth/signup.html:18
-msgid "receive updates motivational blurb"
+#: forum/skins/default/templates/users/subscriptions.html:60
+msgid "Questions I answer"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:64
-#: forum/skins/default/templates/auth/signup.html:22
-msgid "please select one of the options above"
+#: forum/skins/default/templates/users/subscriptions.html:63
+msgid "Questions I comment"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:67
-msgid "Tag filter tool will be your right panel, once you log in."
+#: forum/skins/default/templates/users/subscriptions.html:68
+msgid "Questions I view"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:68
-msgid "create account"
+#: forum/skins/default/templates/users/subscriptions.html:71
+msgid "All questions matching my interesting tags"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:77
-msgid "Existing account"
+#: forum/skins/default/templates/users/subscriptions.html:82
+msgid "On my subscriptions, notify me when:"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:78
-msgid "user name"
+#: forum/skins/default/templates/users/subscriptions.html:87
+msgid "An answer is posted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:79
-msgid "password"
+#: forum/skins/default/templates/users/subscriptions.html:90
+msgid "A comment on one of my posts is posted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:86
-msgid "Register"
+#: forum/skins/default/templates/users/subscriptions.html:95
+msgid "A comment is posted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/complete.html:87
-msgid "Forgot your password?"
+#: forum/skins/default/templates/users/subscriptions.html:98
+msgid "An answer is accepted"
 msgstr ""
 
-#: forum/skins/default/templates/auth/email_validation.html:6
-#: forum/skins/default/templates/auth/temp_login_email.html:6
-msgid "Greetings from the Q&A forum"
+#: forum/skins/default/templates/users/subscriptions.html:106
+msgid "More:"
 msgstr ""
 
-#: forum/skins/default/templates/auth/email_validation.html:8
-msgid "To make use of the Forum, please follow the link below:"
+#: forum/skins/default/templates/users/subscriptions.html:111
+msgid ""
+"Notify me when someone replys to one of my comments on any post using the "
+"<pre>@username</pre> notation"
 msgstr ""
 
-#: forum/skins/default/templates/auth/email_validation.html:12
-msgid "Following the link above will help us verify your email address."
+#: forum/skins/default/templates/users/subscriptions.html:118
+msgid "Stop notifications"
 msgstr ""
 
-#: forum/skins/default/templates/auth/email_validation.html:14
-#: forum/skins/default/templates/auth/temp_login_email.html:14
-msgid ""
-"If you beleive that this message was sent in mistake -\n"
-"    no further action is needed. Just ingore this email, we apologize\n"
-"    for any inconvenience"
+#: forum/skins/default/templates/users/subscriptions.html:120
+msgid "Start notifications"
 msgstr ""
 
-#: forum/skins/default/templates/auth/email_validation.html:18
-#: forum/skins/default/templates/auth/temp_login_email.html:18
-msgid ""
-"Sincerely,<br />\n"
-"    Forum Administrator"
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "User profile"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:22
-msgid "User login"
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "overview"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:34
-#: forum/skins/default/templates/auth/signin.html:84
-#: forum/skins/default/templates/auth/signin.html:90
-msgid "Or..."
+#: forum/skins/default/templates/users/tabs.html:9
+msgid "recent activity"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:37
-msgid "Click to sign in through any of these services."
+#: forum/skins/default/templates/users/tabs.html:11
+msgid "graph of user reputation"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:42
-msgid ""
-"Take the oppurtunity to validate my email next to the external provider I "
-"choose."
+#: forum/skins/default/templates/users/tabs.html:12
+msgid "reputation history"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:92
-msgid "Click"
+#: forum/skins/default/templates/users/tabs.html:15 forum/views/users.py:196
+msgid "user vote record"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:92
-msgid "if you're having troubles signing in."
+#: forum/skins/default/templates/users/tabs.html:15
+msgid "casted votes"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:96
-msgid "Enter your "
+#: forum/skins/default/templates/users/tabs.html:18
+msgid "questions that user selected as his/her favorite"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:152
-msgid "Why use OpenID?"
+#: forum/skins/default/templates/users/tabs.html:19
+msgid "favorites"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:155
-msgid "with openid it is easier"
+#: forum/skins/default/templates/users/tabs.html:22
+msgid "email subscription settings"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:158
-msgid "reuse openid"
+#: forum/skins/default/templates/users/tabs.html:23
+msgid "subscriptions"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:161
-msgid "openid is widely adopted"
+#: forum/skins/default/templates/users/users.html:6
+#: forum/skins/default/templates/users/users.html:24
+msgid "Users"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:164
-msgid "openid is supported open standard"
+#: forum/skins/default/templates/users/users.html:27
+msgid "recent"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:169
-msgid "Find out more"
+#: forum/skins/default/templates/users/users.html:28
+msgid "oldest"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signin.html:170
-msgid "Get OpenID"
+#: forum/skins/default/templates/users/users.html:29
+msgid "by username"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:4
-msgid "Signup"
+#: forum/skins/default/templates/users/users.html:35
+#, python-format
+msgid "users matching query %(suser)s:"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:8
-msgid "Create login name and password"
+#: forum/skins/default/templates/users/users.html:39
+msgid "Nothing found."
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:10
-msgid "Traditional signup info"
+#: forum/templatetags/extra_tags.py:168 forum/templatetags/extra_tags.py:195
+msgid "reputation points"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:31
-msgid "Create Account"
+#: forum/templatetags/extra_tags.py:248
+msgid "2 days ago"
 msgstr ""
 
-#: forum/skins/default/templates/auth/signup.html:33
-msgid "return to login page"
+#: forum/templatetags/extra_tags.py:250
+msgid "yesterday"
 msgstr ""
 
-#: forum/skins/default/templates/auth/temp_login_email.html:8
-msgid "You're seeing this because someone requested a temporary login link"
-msgstr ""
+#: forum/templatetags/extra_tags.py:252
+#, python-format
+msgid "%(hr)d hour ago"
+msgid_plural "%(hr)d hours ago"
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/temp_login_email.html:12
-msgid "Following the link above will give you access to your account."
-msgstr ""
+#: forum/templatetags/extra_tags.py:254
+#, python-format
+msgid "%(min)d min ago"
+msgid_plural "%(min)d mins ago"
+msgstr[0] ""
+msgstr[1] ""
 
-#: forum/skins/default/templates/auth/temp_login_request.html:5
-msgid "Request temporary login key"
+#: forum/templatetags/node_tags.py:58
+msgid "permanent link"
 msgstr ""
 
-#: forum/skins/default/templates/auth/temp_login_request.html:7
-msgid "Account: request temporary login key"
+#: forum/templatetags/node_tags.py:58
+msgid "answer permanent link"
 msgstr ""
 
-#: forum/skins/default/templates/auth/temp_login_request.html:8
-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"
-" "
+#: forum/templatetags/node_tags.py:64
+msgid "retag"
 msgstr ""
 
-#: forum/skins/default/templates/auth/temp_login_request.html:25
-msgid "Send link"
+#: forum/templatetags/node_tags.py:68
+msgid "reopen"
 msgstr ""
 
-#: forum/skins/default/templates/fbconnect/xd_receiver.html:5
-#, python-format
-msgid "Connect to %(APP_SHORT_NAME)s with Facebook!"
+#: forum/templatetags/node_tags.py:70
+msgid "close"
 msgstr ""
 
-#: forum/skins/default/templates/osqaadmin/base.html:12
-msgid "OSQA administration area"
+#: forum/templatetags/node_tags.py:73 forum/views/commands.py:124
+#: forum/views/commands.py:136
+msgid "flag"
 msgstr ""
 
-#: forum/skins/default/templates/osqaadmin/base.html:36
-msgid "Administration menu"
+#: forum/templatetags/node_tags.py:79
+msgid ""
+"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
 msgstr ""
 
-#: forum/skins/default/templates/osqaadmin/index.html:6
-msgid "Basic settings"
+#: forum/templatetags/node_tags.py:82
+msgid "delete"
 msgstr ""
 
-#: forum/skins/default/templates/osqaadmin/index.html:9
-msgid "Welcome to the OSQA administration area."
+#: forum/templatetags/question_list_tags.py:57
+msgid "<strong>Newest</strong> questions are shown first. "
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:167 forum/templatetags/extra_tags.py:194
-msgid "reputation points"
+#: forum/templatetags/question_list_tags.py:58
+msgid "Questions are sorted by the <strong>time of last update</strong>."
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:254
-msgid "2 days ago"
+#: forum/templatetags/question_list_tags.py:59
+msgid "Questions sorted by <strong>number of responses</strong>."
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:256
-msgid "yesterday"
+#: forum/templatetags/question_list_tags.py:60
+msgid "Questions are sorted by the <strong>number of votes</strong>."
 msgstr ""
 
-#: forum/templatetags/extra_tags.py:258
-#, python-format
-msgid "%(hr)d hour ago"
-msgid_plural "%(hr)d hours ago"
-msgstr[0] ""
-msgstr[1] ""
-
-#: forum/templatetags/extra_tags.py:260
+#: forum/templatetags/user_tags.py:58 forum/views/readers.py:293
 #, python-format
-msgid "%(min)d min ago"
-msgid_plural "%(min)d mins ago"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Revision n. %(rev_number)d"
+msgstr ""
 
-#: forum/utils/forms.py:27
+#: forum/utils/forms.py:32
 msgid "this field is required"
 msgstr ""
 
-#: forum/utils/forms.py:42
+#: forum/utils/forms.py:47
 msgid "choose a username"
 msgstr ""
 
-#: forum/utils/forms.py:47
+#: forum/utils/forms.py:52
 msgid "user name is required"
 msgstr ""
 
-#: forum/utils/forms.py:48
+#: forum/utils/forms.py:53
 msgid "sorry, this name is taken, please choose another"
 msgstr ""
 
-#: forum/utils/forms.py:49
+#: forum/utils/forms.py:54
 msgid "sorry, this name is not allowed, please choose another"
 msgstr ""
 
-#: forum/utils/forms.py:50
+#: forum/utils/forms.py:55
 msgid "sorry, there is no user with this name"
 msgstr ""
 
-#: forum/utils/forms.py:51
+#: forum/utils/forms.py:56
 msgid "sorry, we have a serious error - user name is taken by several users"
 msgstr ""
 
-#: forum/utils/forms.py:52
+#: forum/utils/forms.py:57
 msgid "user name can only consist of letters, empty space and underscore"
 msgstr ""
 
-#: forum/utils/forms.py:100
+#: forum/utils/forms.py:105
 msgid "your email address"
 msgstr ""
 
-#: forum/utils/forms.py:101
+#: forum/utils/forms.py:106
 msgid "email address is required"
 msgstr ""
 
-#: forum/utils/forms.py:103
-msgid "this email is already used by someone else, please choose another"
+#: forum/utils/forms.py:108
+msgid "this email is already used by someone else, please choose another"
+msgstr ""
+
+#: forum/utils/forms.py:133
+msgid "choose password"
+msgstr ""
+
+#: forum/utils/forms.py:134
+msgid "password is required"
+msgstr ""
+
+#: forum/utils/forms.py:137
+msgid "retype password"
+msgstr ""
+
+#: forum/utils/forms.py:138
+msgid "please, retype your password"
 msgstr ""
 
-#: forum/utils/forms.py:128
-msgid "choose password"
+#: forum/utils/forms.py:139
+msgid "sorry, entered passwords did not match, please try again"
 msgstr ""
 
-#: forum/utils/forms.py:129
-msgid "password is required"
+#: forum/views/admin.py:47
+#, python-format
+msgid "'%s' settings saved succesfully"
 msgstr ""
 
-#: forum/utils/forms.py:132
-msgid "retype password"
+#: forum/views/admin.py:141
+msgid "Bootstrap mode enabled"
 msgstr ""
 
-#: forum/utils/forms.py:133
-msgid "please, retype your password"
+#: forum/views/admin.py:155
+msgid "All values reverted to defaults"
 msgstr ""
 
-#: forum/utils/forms.py:134
-msgid "sorry, entered passwords did not match, please try again"
+#: forum/views/admin.py:171
+msgid "All values recalculated"
 msgstr ""
 
-#: forum/views/auth.py:104 forum/views/auth.py:113
+#: forum/views/auth.py:103 forum/views/auth.py:112
 msgid ""
 "Sorry, these login credentials belong to anoother user. Plese terminate your "
 "current session and try again."
 msgstr ""
 
-#: forum/views/auth.py:106
+#: forum/views/auth.py:105
 msgid "You are already logged in with that user."
 msgstr ""
 
-#: forum/views/auth.py:111
+#: forum/views/auth.py:110
 msgid "These login credentials are already associated with your account."
 msgstr ""
 
-#: forum/views/auth.py:117
+#: forum/views/auth.py:116
 msgid "The new credentials are now associated with your account"
 msgstr ""
 
-#: forum/views/auth.py:155
+#: forum/views/auth.py:157
 msgid ""
 "Oops, something went wrong in the middle of this process. Please try again."
 msgstr ""
 
-#: forum/views/auth.py:215
+#: forum/views/auth.py:219
 msgid "Temporary login link"
 msgstr ""
 
-#: forum/views/auth.py:220
+#: forum/views/auth.py:224
 msgid "An email has been sent with your temporary login key"
 msgstr ""
 
-#: forum/views/auth.py:235
+#: forum/views/auth.py:239
 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:241
+#: forum/views/auth.py:245
 msgid "Email Validation"
 msgstr ""
 
-#: forum/views/auth.py:252
+#: forum/views/auth.py:256
 msgid "Thank you, your email is now validated."
 msgstr ""
 
-#: forum/views/auth.py:276
+#: forum/views/auth.py:280
 msgid "Your password was changed"
 msgstr ""
 
-#: forum/views/auth.py:278
+#: forum/views/auth.py:282
 msgid "New password set"
 msgstr ""
 
-#: forum/views/auth.py:311
+#: forum/views/auth.py:315
 #, python-format
 msgid "You removed the association with %s"
 msgstr ""
 
-#: forum/views/auth.py:350
+#: forum/views/auth.py:353
 #, python-format
 msgid "Welcome back %s, you are now logged in"
 msgstr ""
 
-#: forum/views/commands.py:218
+#: forum/views/commands.py:20
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough reputation points to %(action)s."
+"<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:29
+#, python-format
+msgid ""
+"\n"
+"            Sorry but you cannot %(action)s your own post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:38
+#, python-format
+msgid ""
+"\n"
+"            Sorry but anonymous users cannot %(action)s.<br />\n"
+"            Please login or create an account <a href'%(signin_url)s'>here</"
+"a>.\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:47
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough %(action)s left for today..<br /"
+">\n"
+"            The limit is %(limit)s per day..<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:57
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you cannot %(action)s twice the same post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:71 forum/views/commands.py:74
+#: forum/views/commands.py:111
+msgid "vote"
+msgid_plural "votes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/views/commands.py:89
+#, python-format
+msgid ""
+"Sorry but you cannot cancel a vote after %(ndays)d %(tdays)s from the "
+"original vote"
+msgstr ""
+
+#: forum/views/commands.py:90
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/views/commands.py:110
 #, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+msgid "You have %(nvotes)s %(tvotes)s left today."
+msgstr ""
+
+#: forum/views/commands.py:121 forum/views/commands.py:127
+msgid "flag posts"
+msgstr ""
+
+#: forum/views/commands.py:132
+msgid "flags"
+msgstr ""
+
+#: forum/views/commands.py:149 forum/views/commands.py:155
+msgid "like comments"
+msgstr ""
+
+#: forum/views/commands.py:152
+msgid "like"
+msgstr ""
+
+#: forum/views/commands.py:179 forum/views/commands.py:182
+msgid "delete comments"
+msgstr ""
+
+#: forum/views/commands.py:197
+msgid "mark a question as favorite"
+msgstr ""
+
+#: forum/views/commands.py:221 forum/views/commands.py:233
+msgid "comment"
+msgstr ""
+
+#: forum/views/commands.py:224 forum/views/commands.py:351
+msgid "Invalid request"
+msgstr ""
+
+#: forum/views/commands.py:230
+msgid "edit comments"
+msgstr ""
+
+#: forum/views/commands.py:240
+msgid "Comment is empty"
+msgstr ""
+
+#: forum/views/commands.py:265
+msgid "accept answers"
+msgstr ""
+
+#: forum/views/commands.py:271
+msgid "Sorry but only the question author can accept an answer"
 msgstr ""
 
-#: forum/views/commands.py:226
-msgid "email update frequency has been set to daily"
+#: forum/views/commands.py:295 forum/views/commands.py:298
+msgid "delete posts"
 msgstr ""
 
-#: forum/views/meta.py:39
-msgid "Q&A forum feedback"
+#: forum/views/meta.py:43
+#, python-format
+msgid "Feedback message from %(site_name)s"
 msgstr ""
 
-#: forum/views/meta.py:40
+#: forum/views/meta.py:46
 msgid "Thanks for the feedback!"
 msgstr ""
 
-#: forum/views/meta.py:48
+#: forum/views/meta.py:53
 msgid "We look forward to hearing your feedback! Please, give it next time :)"
 msgstr ""
 
-#: forum/views/users.py:851 forum/views/users.py:855
-msgid "changes saved"
+#: forum/views/readers.py:64
+msgid "Open questions without an accepted answer"
 msgstr ""
 
-#: forum/views/users.py:861
-msgid "email updates canceled"
+#: forum/views/readers.py:73
+#, python-format
+msgid "Questions tagged <span class=\"tag\">%(tag)s</span>"
+msgstr ""
+
+#: forum/views/readers.py:131
+#, python-format
+msgid "questions matching '%(keywords)s'"
 msgstr ""
 
-#: forum/views/users.py:891
+#: forum/views/users.py:152
 msgid "user profile"
 msgstr ""
 
-#: forum/views/users.py:892
+#: forum/views/users.py:152
 msgid "user profile overview"
 msgstr ""
 
-#: forum/views/users.py:899
+#: forum/views/users.py:186
 msgid "recent user activity"
 msgstr ""
 
-#: forum/views/users.py:900
+#: forum/views/users.py:186
 msgid "profile - recent activity"
 msgstr ""
 
-#: forum/views/users.py:909
-msgid "profile - responses"
+#: forum/views/users.py:196
+msgid "profile - votes"
 msgstr ""
 
-#: forum/views/users.py:917
+#: forum/views/users.py:203
 msgid "user reputation in the community"
 msgstr ""
 
-#: forum/views/users.py:918
+#: forum/views/users.py:203
 msgid "profile - user reputation"
 msgstr ""
 
-#: forum/views/users.py:924
+#: forum/views/users.py:214
 msgid "favorite questions"
 msgstr ""
 
-#: forum/views/users.py:925
-msgid "users favorite questions"
+#: forum/views/users.py:214
+msgid "profile - favorite questions"
 msgstr ""
 
-#: forum/views/users.py:926
-msgid "profile - favorite questions"
+#: forum/views/users.py:220
+msgid "subscription settings"
 msgstr ""
 
-#: forum/views/users.py:935
-msgid "profile - votes"
+#: forum/views/users.py:220
+msgid "profile - subscriptions"
 msgstr ""
 
-#: forum/views/users.py:944
-msgid "profile - email subscriptions"
+#: forum/views/users.py:230
+msgid "Notifications are now enabled"
 msgstr ""
 
-#: forum/views/writers.py:85
+#: forum/views/users.py:232
+msgid "Notifications are now disabled"
+msgstr ""
+
+#: forum/views/users.py:239
+msgid "New subscription settings are now saved"
+msgstr ""
+
+#: forum/views/writers.py:68
+msgid "uploading images is limited to users with >60 reputation points"
+msgstr ""
+
+#: forum/views/writers.py:70
+msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
+msgstr ""
+
+#: forum/views/writers.py:72
+#, python-format
+msgid "maximum upload file size is %sM"
+msgstr ""
+
+#: forum/views/writers.py:74
 #, python-format
 msgid ""
 "Error uploading file. Please contact the site administrator. Thank you. %s"
 msgstr ""
 
+#: forum/views/writers.py:85
+msgid "Initial revision"
+msgstr ""
+
+#: forum/views/writers.py:143
+msgid "Retag"
+msgstr ""
+
 #: forum_modules/books/urls.py:7 forum_modules/books/urls.py:8
 #: forum_modules/books/urls.py:9
 msgid "books/"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:18
-#: forum_modules/default_badges/badges.py:25
-#: forum_modules/default_badges/badges.py:32
+#: forum_modules/default_badges/badges.py:17
+#: forum_modules/default_badges/badges.py:24
+#: forum_modules/default_badges/badges.py:31
 #, python-format
 msgid "Asked a question with %s views"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:40
-#: forum_modules/default_badges/badges.py:54
-#: forum_modules/default_badges/badges.py:68
+#: forum_modules/default_badges/badges.py:39
+#: forum_modules/default_badges/badges.py:53
+#: forum_modules/default_badges/badges.py:67
 #, python-format
 msgid "Answer voted up %s times"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:47
-#: forum_modules/default_badges/badges.py:61
-#: forum_modules/default_badges/badges.py:75
+#: forum_modules/default_badges/badges.py:46
+#: forum_modules/default_badges/badges.py:60
+#: forum_modules/default_badges/badges.py:74
 #, python-format
 msgid "Question voted up %s times"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:83
-#: forum_modules/default_badges/badges.py:90
+#: forum_modules/default_badges/badges.py:82
+#: forum_modules/default_badges/badges.py:89
 #, python-format
 msgid "Question favorited by %s users"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:98
+#: forum_modules/default_badges/badges.py:97
 #, python-format
 msgid "Deleted own post with score of %s or higher"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:109
+#: forum_modules/default_badges/badges.py:108
 #, python-format
 msgid "Deleted own post with score of %s or lower"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:121
+#: forum_modules/default_badges/badges.py:120
 msgid "First flagged post"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:128
+#: forum_modules/default_badges/badges.py:127
 msgid "First down vote"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:135
+#: forum_modules/default_badges/badges.py:134
 msgid "First retag"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:142
+#: forum_modules/default_badges/badges.py:141
 msgid "First up vote"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:149
+#: forum_modules/default_badges/badges.py:148
 msgid "First edit"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:156
+#: forum_modules/default_badges/badges.py:155
 msgid "First accepted answer on your own question"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:163
+#: forum_modules/default_badges/badges.py:162
 msgid "Completed all user profile fields"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:170
+#: forum_modules/default_badges/badges.py:169
 msgid "First rollback"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:178
+#: forum_modules/default_badges/badges.py:177
 #, python-format
 msgid "Voted %s times"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:185
+#: forum_modules/default_badges/badges.py:184
 #, python-format
 msgid "Left %s comments"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:193
+#: forum_modules/default_badges/badges.py:192
 #, python-format
 msgid "Answered your own question with at least %s up votes"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:206
+#: forum_modules/default_badges/badges.py:205
 msgid "Strunk & White"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:207
+#: forum_modules/default_badges/badges.py:206
 #, python-format
 msgid "Edited %s entries"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:218
+#: forum_modules/default_badges/badges.py:217
 msgid "Asked first question with at least one up vote"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:229
+#: forum_modules/default_badges/badges.py:228
 msgid "Answered first question with at least one up vote"
 msgstr ""
 
@@ -3199,15 +4063,255 @@ msgstr ""
 #: forum_modules/default_badges/badges.py:282
 #, python-format
 msgid ""
-"Answered a question more than `%(dif_days)s` days later with at least `%"
-"(up_votes)s` votes"
+"Answered a question more than %(dif_days)s days later with at least %"
+"(up_votes)s votes"
 msgstr ""
 
-#: forum_modules/default_badges/badges.py:298
+#: forum_modules/default_badges/badges.py:295
 #, python-format
 msgid "Created a tag used by %s questions"
 msgstr ""
 
+#: 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
+msgid "Nice Question up votes"
+msgstr ""
+
+#: 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
+msgid "Good Question up votes"
+msgstr ""
+
+#: 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
+msgid "Great Question up votes"
+msgstr ""
+
+#: 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/facebookauth/authentication.py:31
 msgid "Sorry, your Facebook session has expired, please try again"
 msgstr ""
@@ -3223,27 +4327,31 @@ msgid ""
 "tokens"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:74
+#: forum_modules/localauth/forms.py:75
 msgid "Please enter valid username and password (both are case-sensitive)."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:77
+#: forum_modules/localauth/forms.py:79
 msgid "This account is inactive."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:79
+#: forum_modules/localauth/forms.py:81
 msgid "Login failed."
 msgstr ""
 
-#: forum_modules/localauth/forms.py:81
+#: forum_modules/localauth/forms.py:85
+msgid "This user is not a valid user"
+msgstr ""
+
+#: forum_modules/localauth/forms.py:88
 msgid "Please enter username and password"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:83
+#: forum_modules/localauth/forms.py:90
 msgid "Please enter your password"
 msgstr ""
 
-#: forum_modules/localauth/forms.py:85
+#: forum_modules/localauth/forms.py:92
 msgid "Please enter user name"
 msgstr ""
 
@@ -3251,7 +4359,7 @@ msgstr ""
 msgid "local/"
 msgstr ""
 
-#: forum_modules/localauth/views.py:23
+#: forum_modules/localauth/views.py:33
 msgid "A validation email has been sent to your email address. "
 msgstr ""
 
@@ -3295,3 +4403,28 @@ msgstr ""
 #: forum_modules/recaptcha/formfield.py:20
 msgid "Invalid captcha"
 msgstr ""
+
+#: forum_modules/sximporter/importer.py:39
+#, python-format
+msgid "Unknown user %(number)d"
+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 ""
index 5173c858c4186ebeddc76f9d8174d3a67952c0de..de811d46402b6c73f1d4a9d83c32f71be1d323ba 100644 (file)
Binary files a/locale/zh_CN/LC_MESSAGES/django.mo and b/locale/zh_CN/LC_MESSAGES/django.mo differ
index 4d8524b61c315881561326ef3bcebe88e065bfea..1892082d33864bb03aa21ca27bd0e7db90c13612 100644 (file)
@@ -2,216 +2,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-28 15:57+0000\n"
+"POT-Creation-Date: 2010-04-28 16:01-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
-#: settings.py:12
-#, fuzzy
-msgid "account/"
-msgstr "新帐号"
-
-#: settings.py:12 django_authopenid/urls.py:9 django_authopenid/urls.py:11
-msgid "signin/"
-msgstr ""
-
-#: django_authopenid/forms.py:67 django_authopenid/views.py:93
-#, fuzzy
-msgid "i-names are not supported"
-msgstr "基本的HTML标签也是支持的"
-
-#: django_authopenid/forms.py:102 django_authopenid/forms.py:207
-msgid ""
-"Usernames can only contain                     letters, numbers and "
-"underscores"
-msgstr ""
-
-#: django_authopenid/forms.py:109
-msgid ""
-"This username does not exist                     in our database. Please "
-"choose another."
-msgstr ""
-
-#: django_authopenid/forms.py:126 django_authopenid/forms.py:231
-msgid ""
-"Please enter a valid                     username and password. Note that "
-"both fields are                     case-sensitive."
-msgstr ""
-
-#: django_authopenid/forms.py:130 django_authopenid/forms.py:235
-msgid "This account is inactive."
-msgstr ""
-
-# translation and user name validation are language-specific
-#: django_authopenid/forms.py:158
-msgid "invalid user name"
-msgstr "用户名只能包含英文字母、数字和下划线"
-
-#: django_authopenid/forms.py:160
-msgid "sorry, this name can not be used, please try another"
-msgstr "对不起,您不能注册该用户名,请换一个试试"
-
-# minimal length of user name may be language specific
-#: django_authopenid/forms.py:162
-msgid "username too short"
-msgstr "用户名太短,请使用三个或三个以上字符"
-
-#: django_authopenid/forms.py:170 django_authopenid/forms.py:171
-msgid "this name is already in use - please try anoter"
-msgstr "该用户名已被注册,请换一个试试"
-
-#: django_authopenid/forms.py:184
-msgid ""
-"This email is already                 registered in our database. Please "
-"choose another."
-msgstr "该电子邮件已被注册,请选择另一个再试。"
-
-#: django_authopenid/forms.py:214
-msgid ""
-"This username don't exist.                         Please choose another."
-msgstr ""
-
-#: django_authopenid/forms.py:253
-msgid "choose a username"
-msgstr "选择一个用户名"
-
-#: django_authopenid/forms.py:255 templates/authopenid/signup.html:36
-msgid "your email address"
-msgstr "您的电子邮件地址"
-
-#: django_authopenid/forms.py:257 templates/authopenid/signup.html:37
-msgid "choose password"
-msgstr "密码"
-
-#: django_authopenid/forms.py:259 templates/authopenid/signup.html:38
-msgid "retype password"
-msgstr "确认密码"
-
-#: django_authopenid/forms.py:330
-msgid ""
-"Old password is incorrect.                     Please enter the correct "
-"password."
-msgstr ""
-
-#: django_authopenid/forms.py:342
-msgid "new passwords do not match"
-msgstr ""
-
-#: django_authopenid/forms.py:434
-msgid "Incorrect username."
-msgstr "选择一个用户名"
-
-#: django_authopenid/urls.py:10
-msgid "signout/"
-msgstr ""
-
-#: django_authopenid/urls.py:11
-msgid "complete/"
-msgstr ""
-
-#: django_authopenid/urls.py:13
-#, fuzzy
-msgid "register/"
-msgstr "确认"
-
-#: django_authopenid/urls.py:14
-#, fuzzy
-msgid "signup/"
-msgstr "注册帐号"
-
-#: django_authopenid/urls.py:16
-msgid "sendpw/"
-msgstr ""
-
-#: django_authopenid/urls.py:26
-msgid "delete/"
-msgstr "删除"
-
-#: django_authopenid/views.py:99
-#, python-format
-msgid "非法OpenID地址: %s"
-msgstr ""
-
-#: django_authopenid/views.py:366
-msgid "Welcome"
-msgstr ""
-
-#: django_authopenid/views.py:456
-#, fuzzy
-msgid "Password changed."
-msgstr "密码"
-
-#: django_authopenid/views.py:488
-msgid "Email changed."
-msgstr ""
-
-#: django_authopenid/views.py:519 django_authopenid/views.py:671
-#, python-format
-msgid "No OpenID %s found associated in our database"
-msgstr ""
-
-#: django_authopenid/views.py:523 django_authopenid/views.py:678
-#, python-format
-msgid "The OpenID %s isn't associated to current user logged in"
-msgstr ""
-
-#: django_authopenid/views.py:531
-msgid "Email Changed."
-msgstr ""
-
-#: django_authopenid/views.py:606
-msgid "This OpenID is already associated with another account."
-msgstr ""
-
-#: django_authopenid/views.py:611
-#, python-format
-msgid "OpenID %s is now associated with your account."
-msgstr ""
-
-# todo please check this in chinese
-#: django_authopenid/views.py:681
-#, fuzzy
-msgid "Account deleted."
-msgstr "取消"
-
-#: django_authopenid/views.py:721
-#, fuzzy
-msgid "Request for new password"
-msgstr "重设密码"
-
-#: django_authopenid/views.py:734
-#, fuzzy
-msgid "A new password has been sent to your email address."
-msgstr "和您的邮件地址是绑定的"
-
-#: django_authopenid/views.py:764
-#, python-format
-msgid ""
-"Could not change password. Confirmation key '%s'                is not "
-"registered."
-msgstr ""
-
-#: django_authopenid/views.py:773
-msgid ""
-"Can not change password. User don't exist anymore                 in our "
-"database."
-msgstr ""
-
-#: django_authopenid/views.py:782
-#, python-format
-msgid "Password changed for %s. You may now sign in."
-msgstr ""
-
 #: forum/const.py:8
 msgid "duplicate question"
 msgstr "完全重复的问题"
 
 # chinese translation is domain specific
 #: forum/const.py:9
-msgid "question if off-topic or not relevant"
+#, fuzzy
+msgid "question is off-topic or not relevant"
 msgstr "不是编程技术问题"
 
 #: forum/const.py:10
@@ -230,189 +35,223 @@ msgstr "问题已经解决,已得到正确答案"
 msgid "problem is not reproducible or outdated"
 msgstr "已经过时、不可重现的问题"
 
-#: forum/const.py:15
+#: forum/const.py:14
 msgid "question contains offensive inappropriate, or malicious remarks"
 msgstr "恶意言论"
 
-#: forum/const.py:16
+#: forum/const.py:15
 msgid "spam or advertising"
 msgstr "垃圾广告"
 
-#: forum/const.py:56
+#: forum/const.py:71 forum/skins/default/templates/osqaadmin/index.html:21
 msgid "question"
 msgstr "提问"
 
-#: forum/const.py:57 templates/book.html:110
+#: forum/const.py:72 forum/skins/default/templates/book.html:110
+#: forum/skins/default/templates/osqaadmin/index.html:26
 msgid "answer"
 msgstr "回答"
 
-#: forum/const.py:58
+#: forum/const.py:73
 msgid "commented question"
 msgstr "评论问题"
 
-#: forum/const.py:59
+#: forum/const.py:74
 #, fuzzy
 msgid "commented answer"
 msgstr "修改回答"
 
-#: forum/const.py:60
+#: forum/const.py:75
 msgid "edited question"
 msgstr "修改问题"
 
-#: forum/const.py:61
+#: forum/const.py:76
 msgid "edited answer"
 msgstr "修改回答"
 
-#: forum/const.py:62
+#: forum/const.py:77
 msgid "received award"
 msgstr "获奖"
 
-#: forum/const.py:63
+#: forum/const.py:78
 msgid "marked best answer"
 msgstr "标记最佳答案"
 
-#: forum/const.py:64
+#: forum/const.py:79
 msgid "upvoted"
 msgstr "投赞成票"
 
-#: forum/const.py:65
+#: forum/const.py:80
 msgid "downvoted"
 msgstr "投反对票"
 
-#: forum/const.py:66
-msgid "canceled vote"
-msgstr "撤销投票"
+#: forum/const.py:81
+#, fuzzy
+msgid "upvote canceled"
+msgstr "投赞成票"
+
+#: forum/const.py:82
+#, fuzzy
+msgid "downvote canceled"
+msgstr "投反对票"
 
-#: forum/const.py:67
+#: forum/const.py:83
 msgid "deleted question"
 msgstr "删除问题"
 
-#: forum/const.py:68
+#: forum/const.py:84
 msgid "deleted answer"
 msgstr "删除回答"
 
-#: forum/const.py:69
+#: forum/const.py:85
 msgid "marked offensive"
 msgstr "标记垃圾帖"
 
-#: forum/const.py:70
+#: forum/const.py:86
 msgid "updated tags"
 msgstr "更新标签"
 
-#: forum/const.py:71
+#: forum/const.py:87
 msgid "selected favorite"
 msgstr "收藏"
 
-#: forum/const.py:72
+#: forum/const.py:88
 msgid "completed user profile"
 msgstr "完成个人所有资料"
 
-#: forum/const.py:83
+#: forum/const.py:89
+msgid "email update sent to user"
+msgstr ""
+
+#: forum/const.py:93
+#, fuzzy
+msgid "question_answered"
+msgstr "提问时间"
+
+#: forum/const.py:94
+#, fuzzy
+msgid "question_commented"
+msgstr "提问时间"
+
+#: forum/const.py:95
+msgid "answer_commented"
+msgstr ""
+
+#: forum/const.py:96
+msgid "answer_accepted"
+msgstr ""
+
+#: forum/const.py:100
 msgid "[closed]"
 msgstr "[已关闭]"
 
-#: forum/const.py:84
+#: forum/const.py:101
 msgid "[deleted]"
 msgstr "[已删除]"
 
-#: forum/const.py:85
+#: forum/const.py:102
 msgid "initial version"
 msgstr "初始版本"
 
-#: forum/const.py:86
+#: forum/const.py:103
 msgid "retagged"
 msgstr "更新了标签"
 
-#: forum/feed.py:17
-msgid "site title"
-msgstr "CNProg.com"
+#: forum/const.py:111
+msgid "Instantly"
+msgstr ""
+
+#: forum/const.py:112
+msgid "Daily"
+msgstr ""
+
+#: forum/const.py:113
+msgid "Weekly"
+msgstr ""
+
+#: forum/const.py:114
+msgid "No notifications"
+msgstr ""
 
-#: forum/feed.py:17
+#: forum/feed.py:18
 msgid " - "
 msgstr "-"
 
-#: forum/feed.py:17
-msgid "site slogan"
-msgstr "程序员问答社区"
-
-#: forum/feed.py:17
+#: forum/feed.py:18
 msgid "latest questions"
 msgstr "最新问题"
 
-#: forum/feed.py:20
-msgid "meta site content"
-msgstr "中国程序员的编程技术问答社区。我们做专业的、可协作编辑的技术问答社区。"
-
-#: forum/feed.py:22
-msgid "copyright message"
-msgstr "Copyright(c)2009.CNPROG.COM"
-
-#: forum/forms.py:14 templates/question_edit_tips.html:31
-#: templates/question_edit_tips.html:36
+#: forum/forms.py:21 forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
 msgid "title"
 msgstr "标题"
 
-#: forum/forms.py:15
+#: forum/forms.py:22
 msgid "please enter a descriptive title for your question"
 msgstr ""
 "请输入对问题具有描述性质的标题 - “帮忙!紧急求助!”不是建议的提问方式。"
 
-#: forum/forms.py:20
+#: forum/forms.py:27
 msgid "title must be > 10 characters"
 msgstr "标题的长度必须大于10"
 
-#: forum/forms.py:29
+#: forum/forms.py:36
 msgid "content"
 msgstr "内容"
 
-#: forum/forms.py:35
+#: forum/forms.py:42
 msgid "question content must be > 10 characters"
 msgstr "内容至少要10个字符"
 
-#: forum/forms.py:45 templates/header.html:30 templates/header.html.py:61
+#: forum/forms.py:52 forum/skins/default/templates/header.html:31
+#: forum/skins/default/templates/header.html:56
 msgid "tags"
 msgstr "标签"
 
-#: forum/forms.py:46
-msgid "please use space to separate tags (this enables autocomplete feature)"
-msgstr "多个标签请用空格间隔-最多5个标签。(优先使用自动匹配的英文标签。)"
+#: forum/forms.py:54
+msgid ""
+"Tags are short keywords, with no spaces within. Up to five tags can be used."
+msgstr ""
 
-#: forum/forms.py:53
+#: forum/forms.py:61 forum/skins/default/templates/question_retag.html:43
 msgid "tags are required"
 msgstr " 标签不能为空。"
 
-#: forum/forms.py:57
+#: forum/forms.py:67
 msgid "please use 5 tags or less"
 msgstr "最多只能有5个标签"
 
-#: forum/forms.py:60
+#: forum/forms.py:72
 msgid "tags must be shorter than 20 characters"
 msgstr "每个标签的长度不超过20"
 
-#: forum/forms.py:64
+#: forum/forms.py:74
 msgid ""
 "please use following characters in tags: letters 'a-z', numbers, and "
 "characters '.-_#'"
 msgstr "标签请使用英文字母,中文或者数字字符串(. - _ # 也可以)"
 
 # index.html
-#: forum/forms.py:74 templates/index.html:56 templates/question.html:196
-#: templates/question.html.py:377 templates/unanswered.html:48
-#: templates/unanswered.html.py:60
+#: forum/forms.py:84
+#: forum/skins/default/templates/post_contributor_info.html:7
+#: forum/skins/default/templates/question_summary_list_roll.html:26
+#: forum/skins/default/templates/question_summary_list_roll.html:38
 msgid "community wiki"
 msgstr "社区Wiki"
 
-#: forum/forms.py:75
+#: forum/forms.py:85
 msgid ""
 "if you choose community wiki option, the question and answer do not generate "
 "points and name of author will not be shown"
 msgstr "选择社区wiki模式,问答不计算积分,签名也不显示作者信息"
 
-#: forum/forms.py:84
+#: forum/forms.py:101
 msgid "update summary:"
 msgstr "更新概要:"
 
-#: forum/forms.py:85
+#: forum/forms.py:102
 msgid ""
 "enter a brief summary of your revision (e.g. fixed spelling, grammar, "
 "improved style, this field is optional)"
@@ -420,1999 +259,4928 @@ msgstr ""
 "输入本次修改的简单概述(如:修改了别字,修正了语法,改进了样式等。非必填"
 "项。)"
 
-#: forum/forms.py:160
+#: forum/forms.py:105
+msgid "Automatically accept user's contributions for the email updates"
+msgstr ""
+
+#: forum/forms.py:118
+#, fuzzy
+msgid "Your name:"
+msgstr "用户名"
+
+#: forum/forms.py:119
+#, fuzzy
+msgid "Email (not shared with anyone):"
+msgstr "电子邮件(<i>用于头像显示服务</i>)"
+
+#: forum/forms.py:120
+#, fuzzy
+msgid "Your message:"
+msgstr "Copyright(c)2009.CNPROG.COM"
+
+#: forum/forms.py:202
 msgid "this email does not have to be linked to gravatar"
 msgstr "不会公开,用于头像显示服务"
 
-#: forum/forms.py:161
+#: forum/forms.py:204
+#, fuzzy
+msgid "Screen name"
+msgstr "姓名"
+
+#: forum/forms.py:205
 msgid "Real name"
 msgstr "真实姓名"
 
-#: forum/forms.py:162
+#: forum/forms.py:206
 msgid "Website"
 msgstr "个人网站"
 
-#: forum/forms.py:163
+#: forum/forms.py:207
 msgid "Location"
 msgstr "城市"
 
-#: forum/forms.py:164
+#: forum/forms.py:208
 msgid "Date of birth"
 msgstr "生日"
 
-#: forum/forms.py:164
+#: forum/forms.py:208
 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
 msgstr "不会公开,只会显示您的年龄,格式为:YYYY-MM-DD"
 
-#: forum/forms.py:165 templates/authopenid/settings.html:20
+#: forum/forms.py:209 forum/skins/default/templates/account_settings.html:21
 msgid "Profile"
 msgstr "个人简介"
 
-#: forum/forms.py:190 forum/forms.py:191
+#: forum/forms.py:240 forum/forms.py:241
 msgid "this email has already been registered, please use another one"
 msgstr "该电子邮件已被注册,请选择另一个再试。"
 
-#: forum/models.py:316 templates/badges.html:50
-msgid "gold"
-msgstr "金牌"
+# this is how above two are supposed to be
+#: forum/subscriptions.py:41
+#, fuzzy, python-format
+msgid "New question on %(app_name)s"
+msgstr "查看有关'%(tagname)s'的问题"
 
-#: forum/models.py:317 templates/badges.html:58
-msgid "silver"
-msgstr "银牌"
+#: forum/subscriptions.py:73
+#, fuzzy, python-format
+msgid "New answer to '%(question_title)s'"
+msgstr "回答该问题"
 
-#: forum/models.py:318 templates/badges.html:65
-msgid "bronze"
+#: forum/subscriptions.py:112
+#, fuzzy, python-format
+msgid "New comment on %(question_title)s"
+msgstr "评论问题"
+
+#: forum/subscriptions.py:136
+#, python-format
+msgid "An answer to '%(question_title)s' was accepted"
 msgstr ""
 
-#: forum/user.py:17 templates/user_tabs.html:7
-msgid "overview"
-msgstr "概览"
+#: forum/subscriptions.py:156
+#, python-format
+msgid "%(username)s is a new member on %(app_name)s"
+msgstr ""
 
-#: forum/user.py:18
+#: forum/urls.py:44
 #, fuzzy
-msgid "user profile"
-msgstr "用户概览"
+msgid "upfiles/"
+msgstr "个人资料"
 
-#: forum/user.py:19
+# footer.html
+#: forum/urls.py:49
 #, fuzzy
-msgid "user profile overview"
-msgstr "用户概览"
+msgid "about/"
+msgstr "关于本站"
 
-#: forum/user.py:25 templates/user_tabs.html:9
-msgid "recent activity"
-msgstr "最近活动"
+#: forum/urls.py:50
+#, fuzzy
+msgid "faq/"
+msgstr "常见问题"
 
-#: forum/user.py:26
+#: forum/urls.py:51
 #, fuzzy
-msgid "recent user activity"
-msgstr "最近活动"
+msgid "privacy/"
+msgstr "隐私政策"
 
-#: forum/user.py:27
+#: forum/urls.py:52
 #, fuzzy
-msgid "profile - recent activity"
-msgstr "最近活动"
+msgid "logout/"
+msgstr "退出登录"
 
-#: forum/user.py:34 templates/user_tabs.html:13
-msgid "responses"
-msgstr "回应"
+#: forum/urls.py:53 forum/urls.py:54
+#, fuzzy
+msgid "answers/"
+msgstr "回答"
 
-#: forum/user.py:35 templates/user_tabs.html:12
-msgid "comments and answers to others questions"
-msgstr "其他用户的回复和评论"
+#: forum/urls.py:53 forum/urls.py:58 forum/urls.py:98
+#: forum/skins/default/templates/users/info.html:44
+#, fuzzy
+msgid "edit/"
+msgstr "编辑"
 
-#: forum/user.py:36
-msgid "profile - responses"
-msgstr "回应 - 用户资料"
+#: forum/urls.py:54 forum/urls.py:74
+#, fuzzy
+msgid "revisions/"
+msgstr "版本"
 
-#: forum/user.py:43 templates/user_info.html:23 templates/users.html:25
-msgid "reputation"
-msgstr "积分"
+#: forum/urls.py:55 forum/urls.py:56 forum/urls.py:57 forum/urls.py:58
+#: forum/urls.py:59 forum/urls.py:60 forum/urls.py:61 forum/urls.py:74
+#, fuzzy
+msgid "questions/"
+msgstr "问题"
 
-#: forum/user.py:44
-msgid "user reputation in the community"
-msgstr "用户社区积分"
+#: forum/urls.py:56 forum_modules/books/urls.py:8
+#, fuzzy
+msgid "ask/"
+msgstr "提问于"
 
-#: forum/user.py:45
-msgid "profile - user reputation"
-msgstr "积分 - 用户资料"
+#: forum/urls.py:57
+#, fuzzy
+msgid "unanswered/"
+msgstr "回答"
 
-#: forum/user.py:51
+#: forum/urls.py:59
 #, fuzzy
-msgid "favorite questions"
-msgstr "收藏"
+msgid "close/"
+msgstr "关闭"
 
-#: forum/user.py:52
-msgid "users favorite questions"
-msgstr "用户收藏的问题"
+#: forum/urls.py:60
+#, fuzzy
+msgid "reopen/"
+msgstr "打开"
 
-#: forum/user.py:53
-msgid "profile - favorite questions"
-msgstr "收藏 - 用户资料"
+#: forum/urls.py:61
+#, fuzzy
+msgid "answer/"
+msgstr "回答"
 
-#: forum/user.py:60 templates/user_tabs.html:20
-msgid "casted votes"
-msgstr "投票"
+#: forum/urls.py:63
+#, fuzzy
+msgid "vote/"
+msgstr "票"
 
-#: forum/user.py:61 templates/user_tabs.html:20
-msgid "user vote record"
-msgstr "用户所有投票"
+#: forum/urls.py:64
+#, fuzzy
+msgid "like_comment/"
+msgstr "评论"
 
-#: forum/user.py:62
-msgid "profile - votes"
-msgstr "投票 - 用户资料"
+#: forum/urls.py:65
+#, fuzzy
+msgid "comment/"
+msgstr "评论"
 
-#: forum/user.py:69
-msgid "preferences"
-msgstr "设置"
+#: forum/urls.py:66
+#, fuzzy
+msgid "delete_comment/"
+msgstr "删除任何一个评论"
 
-#: forum/user.py:70 templates/user_tabs.html:28
-msgid "user preference settings"
-msgstr "用户参数的设置"
+#: forum/urls.py:67
+#, fuzzy
+msgid "accept_answer/"
+msgstr "回答"
 
-#: forum/user.py:71
-msgid "profile - user preferences"
-msgstr "设置 - 用户资料"
+#: forum/urls.py:68
+#, fuzzy
+msgid "mark_favorite/"
+msgstr "收藏"
 
-#: forum/views.py:1726
-msgid "uploading images is limited to users with >60 reputation points"
-msgstr "上传图片只限于积分+60以上注册用户!"
+#: forum/urls.py:69
+msgid "flag/"
+msgstr ""
 
-# todo take these out of settings
-#: forum/views.py:1728
-msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
-msgstr "只允许上传'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'类型的文件!"
+#: forum/urls.py:70
+msgid "delete/"
+msgstr "删除"
 
-#: forum/views.py:1730
-#, python-format
-msgid "maximum upload file size is %sK"
-msgstr "只允许上传%sK大小的文件!"
+#: forum/urls.py:71
+msgid "subscribe/"
+msgstr ""
 
-#: forum/views.py:1732
-#, fuzzy, python-format
-msgid ""
-"Error uploading file. Please contact the site administrator. Thank you. %s"
-msgstr "在文件上传过程中产生了错误,请联系管理员,谢谢^_^"
+#: forum/urls.py:72
+msgid "matching_tags/"
+msgstr ""
 
-#: forum/templatetags/extra_tags.py:139 forum/templatetags/extra_tags.py:168
-#: templates/header.html:33
-msgid "badges"
-msgstr "奖牌榜"
+#: forum/urls.py:75
+#, fuzzy
+msgid "command/"
+msgstr "评论"
 
-#: forum/templatetags/extra_tags.py:140 forum/templatetags/extra_tags.py:167
+#: forum/urls.py:78
 #, fuzzy
-msgid "reputation points"
-msgstr "积分"
+msgid "question/"
+msgstr "提问"
 
-#: forum/templatetags/extra_tags.py:221
+#: forum/urls.py:79 forum/urls.py:80
 #, fuzzy
-msgid " ago"
-msgstr ""
+msgid "tags/"
+msgstr "标签"
 
-#: templates/404.html:24
-msgid "Sorry, could not find the page you requested."
-msgstr "对不起,没有找到您请求的页面!"
+#: forum/urls.py:82 forum/urls.py:86
+msgid "mark-tag/"
+msgstr ""
 
-#: templates/404.html:26
-msgid "This might have happened for the following reasons:"
-msgstr "有可能是以下原因导致:"
+#: forum/urls.py:82
+msgid "interesting/"
+msgstr ""
 
-#: templates/404.html:28
-msgid "this question or answer has been deleted;"
-msgstr "你正在查看的问题或者回答已经被删除;"
+#: forum/urls.py:86
+msgid "ignored/"
+msgstr ""
 
-#: templates/404.html:29
-msgid "url has error - please check it;"
-msgstr "请求的地址有误 - 请核实原始URL地址;"
+#: forum/urls.py:90
+msgid "unmark-tag/"
+msgstr ""
 
-#: templates/404.html:30
-msgid ""
-"the page you tried to visit is protected or you don't have sufficient "
-"points, see"
-msgstr "访问的页面被保护或你的积分不够,参见"
+#: forum/urls.py:96 forum/urls.py:98 forum/urls.py:100 forum/urls.py:101
+#: forum/urls.py:102 forum/urls.py:103 forum/urls.py:104 forum/urls.py:105
+#: forum/models/user.py:124
+#, fuzzy
+msgid "users/"
+msgstr "用户"
 
-#: templates/404.html:31
-msgid "if you believe this error 404 should not have occured, please"
-msgstr "如果你确信不该出现404错误,请"
+#: forum/urls.py:97
+msgid "moderate-user/"
+msgstr ""
 
-#: templates/404.html:32
-msgid "report this problem"
-msgstr "报告这个问题"
+#: forum/urls.py:100
+#, fuzzy
+msgid "subscriptions/"
+msgstr "问题"
 
-#: templates/404.html:41 templates/500.html:27
-msgid "back to previous page"
-msgstr "返回前页"
+#: forum/urls.py:101
+#, fuzzy
+msgid "favorites/"
+msgstr "收藏"
 
-#: templates/404.html:42
-msgid "see all questions"
-msgstr "查看最新问题"
+#: forum/urls.py:102
+#, fuzzy
+msgid "reputation/"
+msgstr "积分"
 
-#: templates/404.html:43
-msgid "see all tags"
-msgstr "查看标签列表"
+#: forum/urls.py:103
+#, fuzzy
+msgid "votes/"
+msgstr "票"
 
-#: templates/500.html:24
-msgid "system error log is recorded, error will be fixed as soon as possible"
+#: forum/urls.py:104
+#, fuzzy
+msgid "recent/"
+msgstr "最新加入"
+
+#: forum/urls.py:107 forum/urls.py:108
+#, fuzzy
+msgid "badges/"
+msgstr "奖牌榜"
+
+#: forum/urls.py:109
+msgid "messages/"
 msgstr ""
 
-#: templates/500.html:25
-msgid "please report the error to the site administrators if you wish"
+#: forum/urls.py:109
+msgid "markread/"
+msgstr ""
+
+#: forum/urls.py:111
+msgid "nimda/"
+msgstr ""
+
+#: forum/urls.py:113
+msgid "upload/"
 msgstr ""
 
-#: templates/500.html:28
+#: forum/urls.py:114
 #, fuzzy
-msgid "see latest questions"
-msgstr "æ\9c\80æ\96°é\97®é¢\98"
+msgid "search/"
+msgstr "æ\90\9cç´¢"
 
-#: templates/500.html:29
+#: forum/urls.py:115
 #, fuzzy
-msgid "see tags"
-msgstr "标记垃圾帖"
+msgid "feedback/"
+msgstr "问题反馈"
 
-#: templates/answer_edit.html:4 templates/answer_edit.html.py:47
-msgid "Edit answer"
-msgstr "修改回答"
+#: forum/urls.py:119 forum/urls.py:120 forum/urls.py:121 forum/urls.py:122
+#: forum/urls.py:123 forum/urls.py:124 forum/urls.py:125 forum/urls.py:126
+#: forum/urls.py:127 forum/urls.py:128 forum/urls.py:129 forum/urls.py:130
+#: forum_modules/localauth/urls.py:7
+#, fuzzy
+msgid "account/"
+msgstr "新帐号"
 
-#: templates/answer_edit.html:24 templates/answer_edit.html.py:27
-#: templates/ask.html:25 templates/ask.html.py:28 templates/question.html:37
-#: templates/question.html.py:40 templates/question_edit.html:27
-msgid "hide preview"
-msgstr "禁用预览"
+#: forum/urls.py:119 forum/urls.py:121 forum/urls.py:122
+msgid "signin/"
+msgstr ""
 
-#: templates/answer_edit.html:27 templates/ask.html:28
-#: templates/question.html:40 templates/question_edit.html:27
-msgid "show preview"
-msgstr "启用预览"
+#: forum/urls.py:120
+msgid "signout/"
+msgstr ""
 
-#: templates/answer_edit.html:47 templates/question_edit.html:65
-#: templates/revisions_answer.html:36 templates/revisions_question.html:36
-msgid "back"
-msgstr "返回"
+#: forum/urls.py:123
+#, fuzzy
+msgid "done/"
+msgstr "投反对票"
 
-#: templates/answer_edit.html:52 templates/question_edit.html:70
-#: templates/revisions_answer.html:47 templates/revisions_question.html:47
-msgid "revision"
-msgstr "ç\89\88æ\9c¬"
+#: forum/urls.py:124 forum_modules/localauth/urls.py:7
+#, fuzzy
+msgid "register/"
+msgstr "确认"
 
-#: templates/answer_edit.html:55 templates/question_edit.html:74
-msgid "select revision"
-msgstr "选择版本"
+#: forum/urls.py:125
+msgid "validate/"
+msgstr ""
 
-#: templates/answer_edit.html:62 templates/ask.html:81
-#: templates/question.html:447 templates/question_edit.html:91
-msgid "Toggle the real time Markdown editor preview"
-msgstr "打开或者关闭Markdown编辑器的实时预览"
+#: forum/urls.py:126 forum/urls.py:127
+msgid "tempsignin/"
+msgstr ""
 
-#: templates/answer_edit.html:62 templates/ask.html:81
-#: templates/question.html:447 templates/question_edit.html:91
-msgid "toggle preview"
-msgstr "预览开关"
+#: forum/urls.py:128
+#, fuzzy
+msgid "authsettings/"
+msgstr "设置"
 
-# synonym of above in Edit question
-#: templates/answer_edit.html:73 templates/question_edit.html:119
-msgid "Save edit"
-msgstr "现在修改"
+#: forum/urls.py:129 forum/urls.py:130
+msgid "providers/"
+msgstr ""
 
-msgid "Save"
-msgstr "保存"
+#: forum/urls.py:129
+#, fuzzy
+msgid "remove/"
+msgstr "打开"
 
-#: templates/answer_edit.html:74 templates/close.html:29
-#: templates/question_edit.html:120 templates/reopen.html:30
-#: templates/user_edit.html:83
-msgid "Cancel"
-msgstr "取消"
+#: forum/urls.py:130
+msgid "add/"
+msgstr ""
 
-#: templates/ask.html:4 templates/ask.html.py:60
-msgid "Ask a question"
-msgstr "我要提问"
+#: forum/urls.py:133 forum/urls.py:134 forum/urls.py:135 forum/urls.py:136
+#: forum/urls.py:137 forum_modules/sximporter/urls.py:8
+msgid "admin/"
+msgstr ""
 
-#: templates/ask.html:106
-msgid "Use"
-msgstr "使用"
+#: forum/urls.py:134
+msgid "denormalize/"
+msgstr ""
 
-#: templates/ask.html:106
-msgid "learn more about OpenID"
-msgstr "了解更多有关OpenID的信息"
+#: forum/urls.py:135
+msgid "go_bootstrap/"
+msgstr ""
 
-#: templates/ask.html:106 templates/authopenid/signin.html:35
-#: templates/authopenid/signin.html:61
-msgid "Login"
-msgstr "登录"
+#: forum/urls.py:136
+msgid "go_defaults/"
+msgstr ""
 
-#: templates/ask.html:109
+#: forum/authentication/forms.py:21
 #, fuzzy
-msgid "Get your own "
-msgstr "获取您自己的"
-
-#: templates/ask.html:117 templates/authopenid/sendpw.html:27
-msgid "User name"
-msgstr "您的大名"
+msgid "Your account email"
+msgstr "修改电子邮件"
 
-#: templates/ask.html:120
-msgid "Email: (won't be shown to anyone)"
-msgstr "电子邮件:(不会公开显示)"
+#: forum/authentication/forms.py:23
+msgid "You cannot leave this field blank"
+msgstr ""
 
-#: templates/ask.html:127
-msgid "Ask your question"
-msgstr "现在提问"
+#: forum/authentication/forms.py:24 forum/utils/forms.py:107
+msgid "please enter a valid email address"
+msgstr ""
 
-#: templates/badge.html:6 templates/badge.html.py:17
-msgid "Badge"
-msgstr "奖牌"
+#: forum/authentication/forms.py:32
+msgid "Sorry, but this email is not on our database."
+msgstr ""
 
-#: templates/badge.html:26
-msgid "The users have been awarded with badges:"
-msgstr "用户已被授予该奖牌:"
+#: forum/authentication/forms.py:40
+msgid "okay, let's try!"
+msgstr ""
 
-#: templates/badges.html:5
-#, fuzzy
-msgid "Badges summary"
-msgstr "奖牌列表"
+#: forum/authentication/forms.py:41
+msgid "no OSQA community email please, thanks"
+msgstr ""
 
-#: templates/badges.html:16 templates/user_stats.html:113
-msgid "Badges"
-msgstr "枚奖牌"
+#: forum/authentication/forms.py:44
+msgid "please choose one of the options above"
+msgstr ""
 
-#: templates/badges.html:20
+#: forum/authentication/forms.py:51
 #, fuzzy
+msgid "Current password"
+msgstr "确认密码"
+
+#: forum/authentication/forms.py:62
 msgid ""
-"Community gives you awards for your questions, answers and votes. Below is "
-"the list of available badges and number of times each type of badge has been "
-"awarded."
-msgstr "这里列出社区所有的奖牌,以及到目前为此,每个奖牌被授予的用户人数。"
+"Old password is incorrect.                     Please enter the correct "
+"password."
+msgstr ""
 
-#: templates/badges.html:47
-msgid "Community badges"
-msgstr "社区奖牌"
+#: forum/management/commands/send_email_alerts.py:56
+msgid "Daily digest"
+msgstr ""
 
-#: templates/badges.html:53
-msgid "gold badge description"
-"Gold badge is very rare. To obtain it you have to show profound knowledge "
-"and ability in addition to actively participating in the community. Gold "
-"badge is the highest award in this community."
+#: forum/middleware/anon_user.py:34
+#, python-format
+msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
 msgstr ""
-"金牌是十分罕见的。你不仅要参与社区的提问、回答、投票等活动,而且需要有高深的知识和能力才能获"
-"得。"
 
-#: templates/badges.html:61
-msgid "silver badge description"
-"Obtaining silver badge requires significant patience. If you got one, you've "
-"very significantly contributed to this community"
-msgstr "它是不同寻常的荣誉,只要你付出足够的努力就会得到。"
+#: forum/models/question.py:30
+#, fuzzy
+msgid "[closed] "
+msgstr "[已关闭]"
 
-#: templates/badges.html:64
-msgid "bronze badge: often given as a special honor"
-msgstr "铜牌:时常授予之特殊荣誉"
+#: forum/models/question.py:33
+#, fuzzy
+msgid "[deleted] "
+msgstr "[已删除]"
 
-msgid "Connect with Twitter"
-msgstr "同步Twitter消息"
+#: forum/models/repute.py:13 forum/skins/default/templates/badges.html:53
+msgid "gold"
+msgstr "金牌"
+
+#: forum/models/repute.py:14 forum/skins/default/templates/badges.html:61
+msgid "silver"
+msgstr "银牌"
 
-msgid "Twitter account name:"
-msgstr "账号:"
+#: forum/models/repute.py:15 forum/skins/default/templates/badges.html:68
+msgid "bronze"
+msgstr ""
 
-msgid "Twitter password:"
-msgstr "密码:"
+#: forum/models/tag.py:28
+#, fuzzy
+msgid "interesting"
+msgstr "修改问题"
 
-msgid "Send my Questions to Twitter"
-msgstr "发布我的提问到我的Twitter"
+#: forum/models/tag.py:28
+msgid "ignored"
+msgstr ""
 
-msgid "Send my Answers to Twitter"
-msgstr "发布我的回答到我的Twitter"
+#: forum/models/user.py:255
+#: forum/skins/default/templates/post_contributor_info.html:19
+msgid "asked"
+msgstr "提问于"
 
-#: templates/badges.html:68
+#: forum/models/user.py:257
+#: forum/skins/default/templates/post_contributor_info.html:22
 #, fuzzy
-msgid "bronze badge description"
-"If you are active in this community, you will get this medal - still it is a "
-"special honor."
-msgstr "铜牌会在你活跃于社区时产生,它相对容易获得,但也是一种特殊的荣誉。"
-
-# base_content.html
-#: templates/base.html:61 templates/base_content.html:60
-msgid "congratulations, community gave you a badge"
-msgstr "恭喜您,社区给您颁发了奖牌"
+msgid "answered"
+msgstr "回答"
 
-#: templates/base.html:63 templates/base_content.html:62
-msgid "profile"
-msgstr "个人资料"
+#: forum/models/user.py:259
+#, fuzzy
+msgid "marked an answer"
+msgstr "标记最佳答案"
 
-#: templates/base_content.html:61
-msgid "see"
-msgstr "查看"
+#: forum/models/user.py:261
+#, fuzzy
+msgid "edited a question"
+msgstr "修改问题"
 
-# templates/book.html 78
-#: templates/book.html:7
-msgid "reading channel"
-msgstr "读书é¢\91é\81\93"
+#: forum/models/user.py:263
+#, fuzzy
+msgid "commented a question"
+msgstr "è¯\84论é\97®é¢\98"
 
-#: templates/book.html:26
-msgid "[author]"
-msgstr "【作者】"
+#: forum/models/user.py:265
+#, fuzzy
+msgid "commented an answer"
+msgstr "修改回答"
 
-#: templates/book.html:30
-msgid "[publisher]"
-msgstr "【出版社】"
+#: forum/models/user.py:267
+#, fuzzy
+msgid "edited an answer"
+msgstr "编辑任何问题或答案"
 
-#: templates/book.html:34
-msgid "[publication date]"
-msgstr "【出版日期】"
+#: forum/models/user.py:269
+#, fuzzy
+msgid "received badge"
+msgstr "获奖"
 
-#: templates/book.html:38
-msgid "[price]"
-msgstr "【价格】"
+#: forum/settings/__init__.py:20
+#, fuzzy
+msgid "Badges config"
+msgstr "枚奖牌"
 
-#: templates/book.html:39
-msgid "currency unit"
+#: forum/settings/__init__.py:20
+msgid "Configure badges on your OSQA site."
 msgstr ""
 
-#: templates/book.html:42
-msgid "[pages]"
-msgstr "【页数】"
+#: forum/settings/basic.py:9
+#, fuzzy
+msgid "Basic Settings"
+msgstr "设置"
 
-#: templates/book.html:43
-msgid "pages abbreviation"
+#: forum/settings/basic.py:9
+msgid "The basic settings for your application"
 msgstr ""
 
-#: templates/book.html:46
-msgid "[tags]"
-msgstr "【标签】"
+#: forum/settings/basic.py:12
+msgid "Application logo"
+msgstr ""
 
-#: templates/book.html:56
-msgid "author blog"
-msgstr "作者博客"
+#: forum/settings/basic.py:13
+msgid "Your site main logo."
+msgstr ""
 
-#: templates/book.html:62
-msgid "book directory"
-msgstr "书籍目录"
+#: forum/settings/basic.py:17
+msgid "Favicon"
+msgstr ""
 
-#: templates/book.html:66
-msgid "buy online"
-msgstr "网上购买"
+#: forum/settings/basic.py:18
+msgid "Your site favicon."
+msgstr ""
 
-#: templates/book.html:79
-msgid "reader questions"
-msgstr "答读者问"
+#: forum/settings/basic.py:22
+#, fuzzy
+msgid "Application title"
+msgstr "【出版日期】"
 
-#: templates/book.html:82
-msgid "ask the author"
-msgstr "向作者提问"
+#: forum/settings/basic.py:23
+msgid "The title of your application that will show in the browsers title bar"
+msgstr ""
 
-#: templates/book.html:88 templates/book.html.py:93
-#: templates/users_questions.html:17
-msgid "this question was selected as favorite"
-msgstr "这个问题被"
+#: forum/settings/basic.py:26
+#, fuzzy
+msgid "Application short name"
+msgstr "【出版日期】"
 
-#: templates/book.html:88 templates/book.html.py:93
-#: templates/users_questions.html:11 templates/users_questions.html.py:17
-msgid "number of times"
-msgstr "位用户收藏"
+#: forum/settings/basic.py:30
+msgid "Application keywords"
+msgstr ""
 
-#: templates/book.html:105 templates/index.html:47
-#: templates/unanswered.html:37 templates/users_questions.html:30
-msgid "votes"
-msgstr "票"
+#: forum/settings/basic.py:31
+msgid "The meta keywords that will be available through the HTML meta tags."
+msgstr ""
 
-#: templates/book.html:108
-msgid "the answer has been accepted to be correct"
-msgstr "有答案已被接受为正确答案"
+#: forum/settings/basic.py:34
+#, fuzzy
+msgid "Application description"
+msgstr "完全重复的问题"
 
-#: templates/book.html:115 templates/index.html:48
-#: templates/unanswered.html:38 templates/users_questions.html:40
-msgid "views"
-msgstr "浏览"
+#: forum/settings/basic.py:35
+msgid "The description of your application"
+msgstr ""
 
-# book.html line 123 must be empty in english
-#: templates/book.html:125 templates/index.html:68 templates/question.html:112
-#: templates/question.html.py:479 templates/tags.html:46
-#: templates/unanswered.html:75 templates/unanswered.html.py:109
-#: templates/users_questions.html:52
-msgid "using tags"
-msgstr "的问题"
-
-#: templates/book.html:147
-msgid "subscribe to book RSS feed"
-msgstr "RSS订阅该图书最新问题"
+#: forum/settings/basic.py:39
+#, fuzzy
+msgid "Application intro"
+msgstr "【出版日期】"
 
-#: templates/book.html:147 templates/index.html:115
-msgid "subscribe to the questions feed"
-msgstr "订阅最>新问题"
+#: forum/settings/basic.py:40
+msgid ""
+"The introductory page that is visible in the sidebar for anonymous users."
+msgstr ""
 
-# close.html
-#: templates/close.html:6 templates/close.html.py:16
-msgid "Close question"
-msgstr "关闭问题"
+#: forum/settings/basic.py:44
+#, fuzzy
+msgid "Copyright notice"
+msgstr "Copyright(c)2009.CNPROG.COM"
 
-#: templates/close.html:19
-msgid "Close the question"
-msgstr "由于以下原因,你要关闭这个问题"
+#: forum/settings/basic.py:45
+msgid "The copyright notice visible at the footer of your page."
+msgstr ""
 
-#: templates/close.html:25
-msgid "Reasons"
-msgstr "原因"
+#: forum/settings/basic.py:48
+msgid "Maximum length of comment"
+msgstr ""
 
-#: templates/close.html:28
-msgid "OK to close"
-msgstr "确定关闭"
+#: forum/settings/basic.py:49
+msgid "The maximum length a user can enter for a comment."
+msgstr ""
 
-#: templates/footer.html:5
+#: forum/settings/email.py:5
 #, fuzzy
-msgid "About us"
-msgstr "关于本站"
+msgid "Email Settings"
+msgstr "设置"
 
-#: templates/footer.html:6 templates/header.html:13 templates/index.html:83
-msgid "faq"
-msgstr "常见问题"
+#: forum/settings/email.py:5
+msgid "Email server and other email related settings."
+msgstr ""
 
-#: templates/footer.html:8
-#, fuzzy
-msgid "Contact"
-msgstr "联系我们"
+#: forum/settings/email.py:8
+msgid "Email Server"
+msgstr ""
 
-#: templates/footer.html:9
-#, fuzzy
-msgid "Privacy"
-msgstr "隐私政策"
+#: forum/settings/email.py:9
+msgid "The SMTP server through which your application will be sending emails."
+msgstr ""
 
-#: templates/footer.html:10
-#, fuzzy
-msgid "Feedback"
-msgstr "问题反馈"
+#: forum/settings/email.py:13
+msgid "Email Port"
+msgstr ""
 
-#: templates/header.html:8
-msgid "logout"
-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 ""
 
-#: templates/header.html:10 templates/authopenid/signup.html:39
-msgid "login"
-msgstr "登录"
+#: forum/settings/email.py:18
+msgid "Email User"
+msgstr ""
 
-# footer.html
-#: templates/header.html:12 templates/index.html:82
-msgid "about"
-msgstr "关于本站"
+#: forum/settings/email.py:19
+msgid "The username for your SMTP connection."
+msgstr ""
 
-#: templates/header.html:23
-msgid "back to home page"
-msgstr "回到首页"
+#: forum/settings/email.py:23
+#, fuzzy
+msgid "Email Password"
+msgstr "密码"
 
-#: templates/header.html:29 templates/header.html.py:60
-msgid "questions"
-msgstr "问题"
+#: forum/settings/email.py:24
+msgid "The password for your SMTP connection."
+msgstr ""
 
-#: templates/header.html:31 templates/header.html.py:62
-msgid "users"
-msgstr "用户"
+#: forum/settings/email.py:29
+#, fuzzy
+msgid "Use TLS"
+msgstr "使用"
 
-#: templates/header.html:32
-msgid "books"
-msgstr "读书"
+#: forum/settings/email.py:30
+msgid "Does your SMTP server usFes TLS for authentication."
+msgstr ""
 
-#: templates/header.html:34 templates/index.html:120
-msgid "unanswered questions"
-msgstr "没有回答的问题"
+#: forum/settings/email.py:34
+#, fuzzy
+msgid "Site 'from' email address"
+msgstr "您的电子邮件地址"
 
-#: templates/header.html:38
-msgid "my profile"
-msgstr "我的资料"
+#: forum/settings/email.py:35
+msgid ""
+"The address that will show up on the 'from' field on emails sent by your "
+"website."
+msgstr ""
 
-#: templates/header.html:42
-msgid "ask a question"
-msgstr "我要提问"
+#: forum/settings/email.py:39
+msgid "Email subject prefix"
+msgstr ""
 
-#: templates/header.html:57
-msgid "search"
-msgstr "搜索"
+#: 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 ""
 
-#: templates/index.html:6
-msgid "Home"
-msgstr "首页"
+#: forum/settings/extkeys.py:4
+msgid "External Keys"
+msgstr ""
 
-#: templates/index.html:21
-msgid "Questions"
-msgstr "问题列表"
+#: forum/settings/extkeys.py:4
+msgid ""
+"Keys for various external providers that your application may optionally use."
+msgstr ""
 
-#: templates/index.html:23
-msgid "last updated questions"
-msgstr "最新更新的问题"
+#: forum/settings/extkeys.py:7
+msgid "Google sitemap code"
+msgstr ""
 
-#: templates/index.html:23 templates/unanswered.html:20
-msgid "newest"
-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 ""
 
-#: templates/index.html:24
-msgid "hottest questions"
-msgstr "被回复最多的问题"
+#: forum/settings/extkeys.py:12
+msgid "Google analytics key"
+msgstr ""
 
-#: templates/index.html:24
-msgid "hottest"
-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 ""
 
-#: templates/index.html:25
-msgid "most voted questions"
-msgstr "投票次数最多的问题"
+#: forum/settings/forms.py:40
+#, fuzzy
+msgid "Change this:"
+msgstr "修改问题标签"
 
-#: templates/index.html:25
-#"最有价值问题"
-#"最新问题"
-msgid "most voted"
-msgstr "最有价值的问题"
+#: forum/settings/minrep.py:4
+#, fuzzy
+msgid "Minimum reputation config"
+msgstr "积分"
 
-#: templates/index.html:26
-msgid "all questions"
-msgstr "全部问题"
+#: forum/settings/minrep.py:4
+msgid ""
+"Configure the minimum reputation required to perform certain actions on your "
+"site."
+msgstr ""
 
-#: templates/index.html:46 templates/unanswered.html:36
-#: templates/users_questions.html:35
-msgid "answers"
-msgstr "回答"
+#: forum/settings/minrep.py:7
+msgid "Minimum reputation to vote up"
+msgstr ""
 
-# must have extra space after in english
-#: templates/index.html:68 templates/question.html:112
-#: templates/question.html.py:479 templates/tags.html:46
-#: templates/unanswered.html:75 templates/unanswered.html.py:109
-#: templates/users_questions.html:52
-msgid "see questions tagged"
-msgstr "查看有关"
+#: forum/settings/minrep.py:8
+msgid "The minimum reputation an user must have to be allowed to vote up."
+msgstr ""
 
-#: templates/index.html:79
-msgid "welcome to website"
-msgstr "CNProg欢迎您!"
+#: forum/settings/minrep.py:11
+#, fuzzy
+msgid "Minimum reputation to vote down"
+msgstr "用户社区积分"
 
-#: templates/index.html:88
-msgid "Recent tags"
-msgstr "最新标签"
+#: forum/settings/minrep.py:12
+msgid "The minimum reputation an user must have to be allowed to vote down."
+msgstr ""
 
-# this is how above two are supposed to be
-#: templates/index.html:93
-#, fuzzy, python-format
-msgid "see questions tagged '%(tagname)s'"
-msgstr "查看有关'%(tagname)s'的问题"
+#: forum/settings/minrep.py:15
+msgid "Minimum reputation to flag a post"
+msgstr ""
 
-#: templates/index.html:96 templates/index.html.py:120
-msgid "popular tags"
-msgstr "受欢迎的标签"
+#: forum/settings/minrep.py:16
+msgid "The minimum reputation an user must have to be allowed to flag a post."
+msgstr ""
 
-#: templates/index.html:100
-msgid "Recent awards"
-msgstr "最新奖牌"
+#: forum/settings/minrep.py:19
+#, fuzzy
+msgid "Minimum reputation to comment"
+msgstr "用户社区积分"
 
-#: templates/index.html:106
-msgid "given to"
-msgstr "授予"
+#: forum/settings/minrep.py:20
+msgid ""
+"The minimum reputation an user must have to be allowed to comment a post."
+msgstr ""
 
-#: templates/index.html:111
-msgid "all awards"
-msgstr "所有奖牌"
+#: forum/settings/minrep.py:23
+#, fuzzy
+msgid "Minimum reputation to like a comment"
+msgstr "用户社区积分"
 
-#: templates/index.html:115
-msgid "subscribe to last 30 questions by RSS"
-msgstr "RSS订阅最新30个问题"
+#: forum/settings/minrep.py:24
+msgid ""
+"The minimum reputation an user must have to be allowed to \"like\" a comment."
+msgstr ""
 
-#: templates/index.html:120
-msgid "Still looking for more? See"
-msgstr "在寻找更多问题吗?请查阅"
+#: forum/settings/minrep.py:27
+msgid "Minimum reputation to upload"
+msgstr ""
 
-#: templates/index.html:120
-#, fuzzy
-msgid "complete list of quesionts"
-msgstr "全部问题列表"
+#: forum/settings/minrep.py:28
+msgid ""
+"The minimum reputation an user must have to be allowed to upload a file."
+msgstr ""
 
-#: templates/index.html:120
-msgid "or"
-msgstr "或者"
+#: forum/settings/minrep.py:31
+msgid "Minimum reputation to close own question"
+msgstr ""
 
-#: templates/index.html:120
-msgid "."
-msgstr "。"
+#: forum/settings/minrep.py:32
+msgid ""
+"The minimum reputation an user must have to be allowed to close his own "
+"question."
+msgstr ""
 
-#: templates/pagesize.html:5
-msgid "posts per page"
-msgstr "每页显示:"
+#: forum/settings/minrep.py:35
+msgid "Minimum reputation to reopen own question"
+msgstr ""
 
-#: templates/paginator.html:5
-msgid "previous"
-msgstr "上一页"
+#: forum/settings/minrep.py:36
+msgid ""
+"The minimum reputation an user must have to be allowed to reopen his own "
+"question."
+msgstr ""
 
-#: templates/questions.html:22
-msgid "Found by tags"
-msgstr "标签问题"
+#: forum/settings/minrep.py:39
+#, fuzzy
+msgid "Minimum reputation to retag others questions"
+msgstr "其他用户的回复和评论"
 
-#: templates/questions.html:25
-msgid "Active"
-msgstr "活跃问题"
+#: forum/settings/minrep.py:40
+msgid ""
+"The minimum reputation an user must have to be allowed to retag others "
+"questions."
+msgstr ""
 
-#: templates/authopenid/changeemail.html:10
-msgid "Account: change email"
-msgstr "修改电子邮件"
+#: forum/settings/minrep.py:43
+msgid "Minimum reputation to edit wiki posts"
+msgstr ""
 
-#: templates/index.html:120
-msgid "Please help us answer"
-msgstr "请帮助我们回答"
+#: forum/settings/minrep.py:44
+msgid ""
+"The minimum reputation an user must have to be allowed to edit community "
+"wiki posts."
+msgstr ""
 
-#: templates/logout.html:6 templates/logout.html.py:17
-msgid "Logout"
-msgstr "退出登录"
+#: forum/settings/minrep.py:47
+msgid "Minimum reputation to edit others posts"
+msgstr ""
 
-#: templates/logout.html:20
+#: forum/settings/minrep.py:48
 msgid ""
-"As a registered user you can login with your OpenID, log out of the site or "
-"permanently remove your account."
+"The minimum reputation an user must have to be allowed to edit others posts."
 msgstr ""
-"您是系统的<strong class=\"darkred\">注册</strong>用户,可以随时使用OpenID帐号"
-"登录系统或者注销登录。"
 
-#: templates/logout.html:21
-msgid "Logout now"
-msgstr "点击退出登录"
+#: forum/settings/minrep.py:51
+msgid "Minimum reputation to close others posts"
+msgstr ""
 
-#: templates/pagesize.html:5
-#, fuzzy
-msgid "Size per page:"
-msgstr "每页显示"
+#: forum/settings/minrep.py:52
+msgid ""
+"The minimum reputation an user must have to be allowed to close others posts."
+msgstr ""
 
-#: templates/privacy.html:6 templates/privacy.html.py:11
-msgid "Privacy policy"
-msgstr "隐私政策"
+#: forum/settings/minrep.py:55
+#, fuzzy
+msgid "Minimum reputation to delete comments"
+msgstr "用户社区积分"
 
-#: templates/privacy.html:15
-msgid "general message about privacy"
+#: forum/settings/minrep.py:56
+msgid ""
+"The minimum reputation an user must have to be allowed to delete comments."
 msgstr ""
-"CNProg承认用户隐私的重要性。本文件概述在您浏览CNProg过程中所接收和收集的个人"
-"信息的种类,以及CNProg所采取的保护信息的一些措施。CNProg希望这将有助于您在知"
-"情的情况下,就和我们 共享个人信息的问题作出决定。"
 
-#: templates/privacy.html:18
-msgid "Site Visitors"
-msgstr "网站访问者"
+#: forum/settings/minrep.py:59
+msgid "Minimum reputation to view offensive flags"
+msgstr ""
 
-#: templates/privacy.html:20
-msgid "what technical information is collected about visitors"
+#: forum/settings/minrep.py:60
+msgid "The minimum reputation an user must have to view offensive flags."
 msgstr ""
-"当您访问本网站或使用我们的某些在线服务时,服务器会自动记录信息,包括但不限于"
-"URL、IP地址、浏览器的类型、屏幕分辨率、系统类型和使用的语言以及访问日期和时"
-"间。我们的目的是为了向您>提供更好的用户服务,包括可能为您提供定制的在线服务。"
 
-#: templates/privacy.html:23
-msgid "Personal Information"
-msgstr "个人身份信息"
+#: forum/settings/repgain.py:4
+msgid "Reputation gains and losses config"
+msgstr ""
 
-#: templates/privacy.html:25
-msgid "details on personal information policies"
+#: forum/settings/repgain.py:4
+msgid ""
+"Configure the reputation points a user may gain or lose upon certain actions."
 msgstr ""
-"在登录使用CNProg的提问和回答功能时,我们要求使用者提供用户名、密码、电子邮件"
-"等信息。CNProg收集这类关于个人身份的信息只是为了登录系统获得使用功能的目的。"
-"我们不会向任何其他社区用 户、个人或第三方透露您的密码或者电子邮件信息。用户可"
-"以选择性地填写用户资料、个人网站、年龄、城市等信息,我们收集这些内容为了使用"
-"户能够更容易和更满意地使用CNProg提供的网页和服务。"
 
-#: templates/privacy.html:28
-msgid "Other Services"
-msgstr "其他服务"
+#: forum/settings/repgain.py:7
+#, fuzzy
+msgid "Initial reputation"
+msgstr "积分"
 
-#: templates/privacy.html:30
-msgid "details on sharing data with third parties"
+#: forum/settings/repgain.py:8
+msgid "The initial reputation an user gets when he first signs in."
 msgstr ""
-"CNProg可能会收集和统计用户访问本站的概况数据。例如,CNProg可能会检测网站最流"
-"行的部分功能。CNProg可能会公开显示或者提供给第三方使用该数据。但是,CNProg不"
-"会公开您的身份信息。"
 
-#: templates/privacy.html:35
-msgid "cookie policy details"
+#: forum/settings/repgain.py:12
+msgid "Maximum reputation a user can gain in one day for being upvoted."
 msgstr ""
-"访问CNProg时,我们会向您的计算机发送一个或多个专门用于识别您的浏览器的Cookie"
-"(包含一个字符串的小文件)。 使用 Cookie 的目的是通过储存用户偏好、跟踪用户倾"
-"向(例如搜索方法)来提高我们的服务质量。大多数浏览器的初始设置均为接受 "
-"Cookie,但也可以将其重置为拒绝所有 Cookie 或在收到 Cookie 时提示。不过,如果"
-"禁用 Cookie,某些功能和服务可能无法正常运行。"
 
-#: templates/privacy.html:37
-msgid "Policy Changes"
-msgstr "政策更改"
+#: forum/settings/repgain.py:15
+msgid "Rep gain by upvoted"
+msgstr ""
 
-#: templates/privacy.html:38
-#, fuzzy
-msgid "how privacy policies can be changed"
+#: forum/settings/repgain.py:16
+msgid "Reputation a user gains for having one of his posts up voted."
 msgstr ""
-"我们可能在事先通知或不通知的情况下随时更改此'隐私政策',我们建议用户时常查看"
-"CNProg隐私政策的改动,在任何改动生效后您的继续访问和使用本站,我们假设您已同"
-"意了CNProg以上的所有条款。"
 
-#: templates/question.html:66 templates/question.html.py:78
-msgid "i like this post (click again to cancel)"
-msgstr "这篇帖子有价值(再次点击取消操作)"
+#: forum/settings/repgain.py:19
+msgid "Rep lost bu upvote canceled"
+msgstr ""
 
-#: templates/question.html:68 templates/question.html.py:80
-#: templates/question.html:273
-msgid "current number of votes"
-msgstr "当前总票数"
+#: forum/settings/repgain.py:20
+msgid ""
+"Reputation a user loses for having one of the upvotes on his posts canceled."
+msgstr ""
 
-#: templates/question.html:73 templates/question.html.py:84
-msgid "i dont like this post (click again to cancel)"
-msgstr "这篇帖子没有价值(再次点击取消操作)"
+#: forum/settings/repgain.py:23
+#, fuzzy
+msgid "Rep lost by downvoted"
+msgstr "投反对票"
 
-#: templates/question.html:90
-msgid "mark this question as favorite (click again to cancel)"
-msgstr "我要收藏这个问题(再次点击取消操作)"
+#: forum/settings/repgain.py:24
+msgid "Reputation a user loses for having one of his posts down voted."
+msgstr ""
 
-#: templates/question.html:96
-msgid "remove favorite mark from this question (click again to restore mark)"
-msgstr "我要收藏这个问题(再次点击取消操作)"
+#: forum/settings/repgain.py:27
+msgid "Rep lost by downvoting"
+msgstr ""
 
-#: templates/question.html:121 templates/question.html.py:304
-#: templates/revisions_answer.html:53 templates/revisions_question.html:53
-msgid "edit"
-msgstr "编辑"
+#: forum/settings/repgain.py:28
+msgid "Reputation a user loses for down voting a post."
+msgstr ""
 
-#: templates/question.html:125 templates/question.html.py:314
-msgid "delete"
-msgstr "删除"
+#: forum/settings/repgain.py:31
+msgid "Rep gain by downvote canceled"
+msgstr ""
 
-#: templates/question.html:130
-msgid "reopen"
-msgstr "打开"
+#: forum/settings/repgain.py:32
+msgid ""
+"Reputation a user gains for having one of the downvotes on his posts "
+"canceled."
+msgstr ""
 
-#: templates/question.html:135
-msgid "close"
-msgstr "关闭"
+#: forum/settings/repgain.py:35
+msgid "Rep gain by canceling downvote"
+msgstr ""
 
-#: templates/question.html:141 templates/question.html.py:327
+#: forum/settings/repgain.py:36
+msgid "Reputation a user gains for canceling a downvote."
+msgstr ""
+
+#: forum/settings/repgain.py:39
+#, fuzzy
+msgid "Rep gain by accepted answer"
+msgstr "修改回答"
+
+#: forum/settings/repgain.py:40
+msgid "Reputation a user gains for having one of his answers accepted."
+msgstr ""
+
+#: forum/settings/repgain.py:43
+msgid "Rep lost by accepted canceled"
+msgstr ""
+
+#: forum/settings/repgain.py:44
 msgid ""
-"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
-msgstr "检举该帖为垃“水帖”(含广告、人身攻击、恶意言论等)"
+"Reputation a user loses for having one of his accepted answers canceled."
+msgstr ""
 
-#: templates/question.html:142 templates/question.html.py:328
-msgid "flag offensive"
-msgstr "垃圾帖?"
+#: forum/settings/repgain.py:47
+msgid "Rep gain by accepting answer"
+msgstr ""
 
-#: templates/question.html:154 templates/question.html.py:337
-#: templates/revisions_answer.html:65 templates/revisions_question.html:65
-msgid "updated"
-msgstr "更新于"
+#: forum/settings/repgain.py:48
+msgid ""
+"Reputation a user gains for accepting an answer to one of his questions."
+msgstr ""
 
-#: templates/question.html:203 templates/question.html.py:384
-#: templates/revisions_answer.html:63 templates/revisions_question.html:63
-msgid "asked"
-msgstr "提问于"
+#: forum/settings/repgain.py:51
+msgid "Rep lost by canceling accepted"
+msgstr ""
 
-#: templates/question.html:233 templates/question.html.py:411
-msgid "comments"
-msgstr "评论"
+#: forum/settings/repgain.py:52
+msgid "Reputation a user loses by canceling an accepted answer."
+msgstr ""
 
-#: templates/question.html:234 templates/question.html.py:412
-msgid "add comment"
-msgstr "添加评论"
+#: forum/settings/repgain.py:55
+msgid "Rep lost by post flagged"
+msgstr ""
 
-#: templates/question.html:247
-#, fuzzy, python-format
+#: forum/settings/repgain.py:56
+msgid "Reputation a user loses by having one of his posts flagged."
+msgstr ""
+
+#: forum/settings/repgain.py:59
+msgid "Rep lost by post flagged and hidden"
+msgstr ""
+
+#: forum/settings/repgain.py:60
 msgid ""
-"The question has been closed for the following reason \"%(question."
-"get_close_reason_display)s\" by"
-msgstr "问题以“%s”的原因已被"
+"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 ""
 
-#: templates/question.html:249
-#, fuzzy, python-format
-msgid "close date %(question.closed_at)s"
-msgstr "由于以下原因,你要关闭这个问题"
+#: forum/settings/repgain.py:63
+msgid "Rep lost by post flagged and deleted"
+msgstr ""
 
-#: templates/question.html:256 templates/questions.html:44
-#: templates/user_stats.html:28
-msgid "Answers"
-msgstr "个回答"
+#: forum/settings/repgain.py:64
+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 ""
 
-#: templates/question.html:258
-msgid "oldest answers will be shown first"
-msgstr "最先回答显示在最前面"
+#: forum/settings/upload.py:5
+msgid "File upload settings"
+msgstr ""
 
-#: templates/question.html:258
-msgid "oldest answers"
-msgstr "最先回答"
+#: forum/settings/upload.py:5
+msgid "File uploads related settings."
+msgstr ""
 
-#: templates/question.html:259
-msgid "newest answers will be shown first"
-msgstr "最晚回答显示在最前面"
+#: forum/settings/upload.py:8
+msgid "Uploaded files folder"
+msgstr ""
 
-#: templates/question.html:259
-msgid "newest answers"
-msgstr "最近回答"
+#: forum/settings/upload.py:9
+msgid ""
+"The filesystem path where uploaded files will be stored. Please note that "
+"this folder must exist."
+msgstr ""
 
-#: templates/question.html:260
-msgid "most voted answers will be shown first"
-msgstr "投票次数最多的显示在最前面"
+#: forum/settings/upload.py:12
+msgid "Uploaded files alias"
+msgstr ""
 
-#: templates/question.html:260
-msgid "popular answers"
-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 ""
 
-#: templates/question.html:272
-msgid "i like this answer (click again to cancel)"
-msgstr "这篇帖子有价值(再次点击取消操作)"
+#: forum/settings/upload.py:16
+msgid "Max file size"
+msgstr ""
 
-#: templates/question.html:278
-msgid "i dont like this answer (click again to cancel)"
-msgstr "这篇帖子没有价值(再次点击取消操作)"
+#: forum/settings/upload.py:17
+#, fuzzy
+msgid "The maximum allowed file size for uploads in mb."
+msgstr "只允许上传%sK大小的文件!"
 
-#: templates/question.html:284
-msgid "mark this answer as favorite (click again to undo)"
-msgstr "最佳答案(再次点击取消操作)"
+#: forum/settings/voting.py:4
+msgid "Voting rules"
+msgstr ""
 
-#: templates/question.html:289
-msgid "the author of the question has selected this answer as correct"
-msgstr "这个答案已经被提问作者标记为最佳答案"
+#: forum/settings/voting.py:4
+msgid "Configure the voting rules on your site."
+msgstr ""
 
-# todo please check this in chinese
-#: templates/question.html:311
-msgid "undelete"
-msgstr "取消"
+#: forum/settings/voting.py:7
+msgid "Maximum votes per day"
+msgstr ""
 
-#: templates/question.html:321
-msgid "answer permanent link"
-msgstr "该回答的链接地址"
+#: forum/settings/voting.py:8
+msgid "The maximum number of votes an user can cast per day."
+msgstr ""
 
-#: templates/question.html:322
-msgid "permanent link"
-msgstr "永久链接"
+#: forum/settings/voting.py:11
+msgid "Start warning about votes left"
+msgstr ""
 
-#: templates/question.html:436
-msgid "Your answer"
-msgstr "您的回答"
+#: forum/settings/voting.py:12
+msgid "From how many votes left should an user start to be warned about it."
+msgstr ""
 
-#: templates/question.html:460
-msgid "Answer the question"
-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 ""
 
-#: templates/question.html:462
-msgid "Login to answer"
-msgstr "登录并回答该问题"
+#: forum/settings/voting.py:19
+msgid "Flag count to hide post"
+msgstr ""
 
-#: templates/question.html:474
-msgid "Question tags"
-msgstr "您正在浏览的问题含有以下标签"
+#: forum/settings/voting.py:20
+msgid ""
+"How many times a post needs to be flagged to be hidden from the main page."
+msgstr ""
 
-#: templates/question.html:484
+#: forum/settings/voting.py:23
 #, fuzzy
-msgid "question asked"
-msgstr "提问时间"
+msgid "Flag count to delete post"
+msgstr "删除帐号"
 
-#: templates/question.html:484 templates/question.html.py:490
-#: templates/user_info.html:51
-msgid "ago"
-msgstr "前"
+#: forum/settings/voting.py:24
+msgid "How many times a post needs to be flagged to be deleted."
+msgstr ""
 
-#: templates/question.html:487
-msgid "question was seen"
-msgstr "目前浏览数量"
+#: forum/settings/voting.py:27
+#, fuzzy
+msgid "Days to cancel a vote"
+msgstr "撤销投票"
 
-#: templates/question.html:487
-msgid "times"
-msgstr ""
+#: forum/settings/voting.py:28
+msgid "How many days an user can cancel a vote after he originaly casted it."
+msgstr ""
 
-#: templates/question.html:490
-msgid "last updated"
-msgstr "最后更新时间"
+#: forum/skins/default/templates/404.html:24
+msgid "Sorry, could not find the page you requested."
+msgstr "对不起,没有找到您请求的页面!"
+
+#: forum/skins/default/templates/404.html:26
+msgid "This might have happened for the following reasons:"
+msgstr "有可能是以下原因导致:"
+
+#: forum/skins/default/templates/404.html:28
+msgid "this question or answer has been deleted;"
+msgstr "你正在查看的问题或者回答已经被删除;"
+
+#: forum/skins/default/templates/404.html:29
+msgid "url has error - please check it;"
+msgstr "请求的地址有误 - 请核实原始URL地址;"
+
+#: forum/skins/default/templates/404.html:30
+msgid ""
+"the page you tried to visit is protected or you don't have sufficient "
+"points, see"
+msgstr "访问的页面被保护或你的积分不够,参见"
+
+#: forum/skins/default/templates/404.html:31
+msgid "if you believe this error 404 should not have occured, please"
+msgstr "如果你确信不该出现404错误,请"
+
+#: forum/skins/default/templates/404.html:32
+msgid "report this problem"
+msgstr "报告这个问题"
+
+#: forum/skins/default/templates/404.html:41
+#: forum/skins/default/templates/500.html:27
+msgid "back to previous page"
+msgstr "返回前页"
+
+#: forum/skins/default/templates/404.html:42
+msgid "see all questions"
+msgstr "查看最新问题"
+
+#: forum/skins/default/templates/404.html:43
+msgid "see all tags"
+msgstr "查看标签列表"
+
+#: forum/skins/default/templates/500.html:22
+msgid "sorry, system error"
+msgstr ""
+
+#: forum/skins/default/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
+msgid "please report the error to the site administrators if you wish"
+msgstr ""
 
-#: templates/question.html:495
+#: forum/skins/default/templates/500.html:28
 #, fuzzy
-msgid "Related questions"
-msgstr "相似的问题"
+msgid "see latest questions"
+msgstr "最新问题"
 
-# page title
-#: templates/question_edit.html:4 templates/question_edit.html.py:65
-msgid "Edit question"
-msgstr "修改问题"
+#: forum/skins/default/templates/500.html:29
+#, fuzzy
+msgid "see tags"
+msgstr "标记垃圾帖"
 
-#: templates/question_edit_tips.html:4
-msgid "question tips"
-msgstr "受欢迎的提问"
+#: forum/skins/default/templates/_question_list.html:12
+#: forum/skins/default/templates/book.html:105
+#: forum/skins/default/templates/question_summary_list_roll.html:14
+#: forum/skins/default/templates/question_list/item.html:10
+#: forum/views/commands.py:82
+msgid "votes"
+msgstr "票"
 
-#: templates/question_edit_tips.html:7
+#: forum/skins/default/templates/_question_list.html:14
 #, fuzzy
-msgid "please ask a relevant question"
-msgstr "我要提问"
+msgid "this answer has been accepted to be correct"
+msgstr "有答案已被接受为正确答案"
+
+#: forum/skins/default/templates/_question_list.html:16
+#: forum/skins/default/templates/question_summary_list_roll.html:13
+#: forum/skins/default/templates/question_list/item.html:14
+msgid "answers"
+msgstr "回答"
+
+#: forum/skins/default/templates/_question_list.html:20
+#: forum/skins/default/templates/book.html:115
+#: forum/skins/default/templates/question_summary_list_roll.html:15
+#: forum/skins/default/templates/question_list/item.html:18
+msgid "views"
+msgstr "浏览"
+
+# must have extra space after in english
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "see questions tagged"
+msgstr "查看有关"
+
+# book.html line 123 must be empty in english
+#: forum/skins/default/templates/_question_list.html:34
+#: forum/skins/default/templates/book.html:125
+#: forum/skins/default/templates/question.html:234
+#: forum/skins/default/templates/question_summary_list_roll.html:52
+#: forum/skins/default/templates/tags.html:49
+#: forum/skins/default/templates/question_list/item.html:29
+msgid "using tags"
+msgstr "的问题"
 
-#: templates/question_edit_tips.html:10
+# footer.html
+#: forum/skins/default/templates/about.html:5
+#: forum/skins/default/templates/about.html:9
 #, fuzzy
-msgid "please try provide enough details"
+msgid "About"
+msgstr "关于本站"
+
+#: forum/skins/default/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:31
+msgid "Change password"
+msgstr "修改密码"
+
+#: forum/skins/default/templates/account_settings.html:30
+msgid "Give your  account a new password."
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:32
+msgid "Change email "
+msgstr "更换电子邮件"
+
+#: forum/skins/default/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
+msgid "Change OpenID"
+msgstr "更换OpenID地址"
+
+#: forum/skins/default/templates/account_settings.html:36
+msgid "Change openid associated to your account"
+msgstr ""
+
+#: forum/skins/default/templates/account_settings.html:39
+msgid "Delete account"
+msgstr "删除帐号"
+
+#: forum/skins/default/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:39
+msgid "Edit answer"
+msgstr "修改回答"
+
+#: forum/skins/default/templates/answer_edit.html:18
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:19
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:19
+#: forum/skins/default/templates/question_edit.html:22
+msgid "hide preview"
+msgstr "禁用预览"
+
+#: forum/skins/default/templates/answer_edit.html:21
+#: forum/skins/default/templates/ask.html:22
+#: forum/skins/default/templates/question_edit.html:22
+msgid "show preview"
+msgstr "启用预览"
+
+#: forum/skins/default/templates/answer_edit.html:39
+#: forum/skins/default/templates/question_edit.html:63
+#: forum/skins/default/templates/question_retag.html:56
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "back"
+msgstr "返回"
+
+#: forum/skins/default/templates/answer_edit.html:44
+#: forum/skins/default/templates/question_edit.html:68
+#: forum/skins/default/templates/revisions_answer.html:50
+#: forum/skins/default/templates/revisions_question.html:49
+msgid "revision"
+msgstr "版本"
+
+#: forum/skins/default/templates/answer_edit.html:47
+#: forum/skins/default/templates/question_edit.html:72
+msgid "select revision"
+msgstr "选择版本"
+
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:184
+#: forum/skins/default/templates/question_edit.html:89
+msgid "Toggle the real time Markdown editor preview"
+msgstr "打开或者关闭Markdown编辑器的实时预览"
+
+#: forum/skins/default/templates/answer_edit.html:54
+#: forum/skins/default/templates/ask.html:93
+#: forum/skins/default/templates/question.html:185
+#: forum/skins/default/templates/question_edit.html:89
+msgid "toggle preview"
+msgstr "预览开关"
+
+# synonym of above in Edit question
+#: forum/skins/default/templates/answer_edit.html:63
+#: forum/skins/default/templates/question_edit.html:115
+#: forum/skins/default/templates/question_retag.html:77
+msgid "Save edit"
+msgstr "现在修改"
+
+#: forum/skins/default/templates/answer_edit.html:64
+#: forum/skins/default/templates/close.html:29
+#: forum/skins/default/templates/feedback.html:50
+#: forum/skins/default/templates/question_edit.html:116
+#: forum/skins/default/templates/question_retag.html:78
+#: forum/skins/default/templates/reopen.html:30
+#: forum/skins/default/templates/users/edit.html:87
+msgid "Cancel"
+msgstr "取消"
+
+#: forum/skins/default/templates/answer_edit_tips.html:4
+msgid "answer tips"
+msgstr "受欢迎的提问"
+
+#: forum/skins/default/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
+msgid "try to give an answer, rather than engage into a discussion"
+msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
+
+#: forum/skins/default/templates/answer_edit_tips.html:13
+#, fuzzy
+msgid "please try to provide details"
 msgstr "请详细描述您的问题。"
 
-#: templates/question_edit_tips.html:13
+#: forum/skins/default/templates/answer_edit_tips.html:16
+#: forum/skins/default/templates/question_edit_tips.html:18
 msgid "be clear and concise"
 msgstr "我们推荐您使用中文描述问题,这样可以得到更多的答复机会。"
 
-#: templates/question_edit_tips.html:16
+#: forum/skins/default/templates/answer_edit_tips.html:20
+#: forum/skins/default/templates/question_edit_tips.html:22
 msgid "see frequently asked questions"
 msgstr "查看常见问题"
 
-#: templates/question_edit_tips.html:22
+#: forum/skins/default/templates/answer_edit_tips.html:26
+#: forum/skins/default/templates/question_edit_tips.html:28
 msgid "Markdown tips"
 msgstr "Markdown快速参考"
 
-#: templates/question_edit_tips.html:25
+#: forum/skins/default/templates/answer_edit_tips.html:29
+#: forum/skins/default/templates/question_edit_tips.html:31
 #, fuzzy
 msgid "*italic* or __italic__"
 msgstr "*斜体* 或者 _斜体_"
 
-#: templates/question_edit_tips.html:28
+#: forum/skins/default/templates/answer_edit_tips.html:32
+#: forum/skins/default/templates/question_edit_tips.html:34
 msgid "**bold** or __bold__"
 msgstr "**加粗** 或者 __加粗__ "
 
-#: templates/question_edit_tips.html:31
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/question_edit_tips.html:37
 msgid "link"
 msgstr "链接"
 
-#: templates/question_edit_tips.html:31 templates/question_edit_tips.html:36
+#: forum/skins/default/templates/answer_edit_tips.html:35
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:37
+#: forum/skins/default/templates/question_edit_tips.html:42
 msgid "text"
 msgstr "文本"
 
-#: templates/question_edit_tips.html:36
+#: forum/skins/default/templates/answer_edit_tips.html:39
+#: forum/skins/default/templates/question_edit_tips.html:42
 msgid "image"
 msgstr "图片"
 
-#: templates/question_edit_tips.html:40
+#: forum/skins/default/templates/answer_edit_tips.html:43
+#: forum/skins/default/templates/question_edit_tips.html:46
 msgid "numbered list:"
 msgstr "列表:"
 
-#: templates/question_edit_tips.html:45
+#: forum/skins/default/templates/answer_edit_tips.html:48
+#: forum/skins/default/templates/question_edit_tips.html:51
 msgid "basic HTML tags are also supported"
 msgstr "基本的HTML标签也是支持的"
 
-#: templates/question_edit_tips.html:48
+#: forum/skins/default/templates/answer_edit_tips.html:52
+#: forum/skins/default/templates/question_edit_tips.html:55
 msgid "learn more about Markdown"
 msgstr "有关Markdown详细说明"
 
-#: templates/questions.html:22
-msgid "All questions"
-msgstr "所有问题"
+#: forum/skins/default/templates/ask.html:5
+#: forum/skins/default/templates/ask.html:57
+msgid "Ask a question"
+msgstr "我要提问"
 
-#: templates/questions.html:26
+#: forum/skins/default/templates/ask.html:64
 #, fuzzy
-msgid "Questions with most answers"
-msgstr "您正在浏览的问题含有以下标签"
+msgid "login to post question info"
+msgstr "问题按<strong>提问时间</strong>显示排序。新加入的问题将显示在最前面。"
 
-#: templates/questions.html:27
-msgid "Questions with most votes"
+#: forum/skins/default/templates/ask.html:70
+#, python-format
+msgid ""
+"must have valid %(email)s to post, \n"
+"                            see %(email_validation_faq_url)s\n"
+"                            "
 msgstr ""
 
-# index.html
-#: templates/questions.html:57 templates/questions.html.py:69
-msgid "Community wiki"
-msgstr "社区Wiki"
+#: forum/skins/default/templates/ask.html:108
+msgid "(required)"
+msgstr ""
 
-# must have extra space after in english
-#: templates/questions.html:83
-#, fuzzy
-msgid "Browse questions with tag of "
-msgstr "查看有关"
+#: forum/skins/default/templates/ask.html:115
+msgid "Login/signup to post your question"
+msgstr ""
 
-#: templates/questions.html:125 templates/unanswered.html:105
-msgid "Related tags"
-msgstr "相关标签"
+#: forum/skins/default/templates/ask.html:117
+msgid "Ask your question"
+msgstr "现在提问"
+
+#: forum/skins/default/templates/badge.html:6
+#: forum/skins/default/templates/badge.html:17
+msgid "Badge"
+msgstr "奖牌"
+
+#: forum/skins/default/templates/badge.html:26
+msgid "The users have been awarded with badges:"
+msgstr "用户已被授予该奖牌:"
+
+#: forum/skins/default/templates/badges.html:6
+#, fuzzy
+msgid "Badges summary"
+msgstr "奖牌列表"
+
+#: forum/skins/default/templates/badges.html:17
+msgid "Badges"
+msgstr "枚奖牌"
+
+#: forum/skins/default/templates/badges.html:21
+msgid "Community gives you awards for your questions, answers and votes."
+msgstr ""
+"提出问题,给予回答,投出你的票 - CNProg 会针对你在社区的表现,授予你各类奖"
+"牌。"
+
+#: forum/skins/default/templates/badges.html:22
+#, fuzzy, python-format
+msgid ""
+"Below is the list of available badges and number \n"
+"    of times each type of badge has been awarded. Give us feedback at %"
+"(feedback_faq_url)s.\n"
+"    "
+msgstr "这里列出社区所有的奖牌,以及到目前为此,每个奖牌被授予的用户人数。"
+
+#: forum/skins/default/templates/badges.html:50
+msgid "Community badges"
+msgstr "社区奖牌"
+
+#: forum/skins/default/templates/badges.html:56
+msgid "gold badge description"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:64
+msgid "silver badge description"
+msgstr ""
+
+#: forum/skins/default/templates/badges.html:67
+msgid "bronze badge: often given as a special honor"
+msgstr "铜牌:时常授予之特殊荣誉"
+
+#: forum/skins/default/templates/badges.html:71
+#, fuzzy
+msgid "bronze badge description"
+msgstr "答读者问"
+
+# templates/book.html 78
+#: forum/skins/default/templates/book.html:7
+msgid "reading channel"
+msgstr "读书频道"
+
+#: forum/skins/default/templates/book.html:26
+msgid "[author]"
+msgstr "【作者】"
+
+#: forum/skins/default/templates/book.html:30
+msgid "[publisher]"
+msgstr "【出版社】"
+
+#: forum/skins/default/templates/book.html:34
+msgid "[publication date]"
+msgstr "【出版日期】"
+
+#: forum/skins/default/templates/book.html:38
+msgid "[price]"
+msgstr "【价格】"
+
+#: forum/skins/default/templates/book.html:39
+msgid "currency unit"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:42
+msgid "[pages]"
+msgstr "【页数】"
+
+#: forum/skins/default/templates/book.html:43
+msgid "pages abbreviation"
+msgstr ""
+
+#: forum/skins/default/templates/book.html:46
+msgid "[tags]"
+msgstr "【标签】"
+
+#: forum/skins/default/templates/book.html:56
+msgid "author blog"
+msgstr "作者博客"
+
+#: forum/skins/default/templates/book.html:62
+msgid "book directory"
+msgstr "书籍目录"
+
+#: forum/skins/default/templates/book.html:66
+msgid "buy online"
+msgstr "网上购买"
+
+#: forum/skins/default/templates/book.html:79
+msgid "reader questions"
+msgstr "答读者问"
+
+#: forum/skins/default/templates/book.html:82
+msgid "ask the author"
+msgstr "向作者提问"
+
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "this question was selected as favorite"
+msgstr "这个问题被"
+
+#: forum/skins/default/templates/book.html:88
+#: forum/skins/default/templates/book.html:93
+msgid "number of times"
+msgstr "位用户收藏"
+
+#: forum/skins/default/templates/book.html:108
+msgid "the answer has been accepted to be correct"
+msgstr "有答案已被接受为正确答案"
+
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to book RSS feed"
+msgstr "RSS订阅该图书最新问题"
+
+#: forum/skins/default/templates/book.html:147
+msgid "subscribe to the questions feed"
+msgstr "订阅最>新问题"
+
+# close.html
+#: forum/skins/default/templates/close.html:6
+#: forum/skins/default/templates/close.html:16
+msgid "Close question"
+msgstr "关闭问题"
+
+#: forum/skins/default/templates/close.html:19
+msgid "Close the question"
+msgstr "由于以下原因,你要关闭这个问题"
+
+#: forum/skins/default/templates/close.html:25
+msgid "Reasons"
+msgstr "原因"
+
+#: forum/skins/default/templates/close.html:28
+msgid "OK to close"
+msgstr "确定关闭"
+
+#: forum/skins/default/templates/email_base.html:31
+#, fuzzy
+msgid "home"
+msgstr "首页"
+
+#: forum/skins/default/templates/faq.html:11
+msgid "Frequently Asked Questions "
+msgstr "常见问题"
+
+#: forum/skins/default/templates/faq.html:16
+msgid "What kinds of questions can I ask here?"
+msgstr "我可以在这里提问什么样的问题?"
+
+#: forum/skins/default/templates/faq.html:17
+#, fuzzy
+msgid ""
+"Most importantly - questions should be <strong>relevant</strong> to this "
+"community."
+msgstr "毫无疑问,首先必须是<span class=\"yellowbg\">技术编程问题!</span>"
+
+#: forum/skins/default/templates/faq.html:18
+msgid ""
+"Before asking the question - please make sure to use search to see whether "
+"your question has alredy been answered."
+msgstr ""
+"提问之前,充分利用系统的自动查找、标签和搜索,看看是否已经有一样的问题并有了"
+"答案。"
+
+#: forum/skins/default/templates/faq.html:21
+msgid "What questions should I avoid asking?"
+msgstr "什么样的问题我不该在这里提问?"
+
+#: forum/skins/default/templates/faq.html:22
+msgid ""
+"Please avoid asking questions that are not relevant to this community, too "
+"subjective and argumentative."
+msgstr ""
+"<span class=\"yellowbg\">与程序员或技术无关的,引起争吵或太过于主观性等违背社"
+"区宗旨的内容。</span>本站建立是为了帮助大众程序员解决实际技术问题,我们需要实"
+"际的问题!"
+
+#: forum/skins/default/templates/faq.html:27
+msgid "What should I avoid in my answers?"
+msgstr "什么样的回答是不受欢迎的?"
+
+#: forum/skins/default/templates/faq.html:28
+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 ""
+"希望用户提供针对提问的技术回答,可以是进一步了解问题实质,给予参考方案,或完"
+"全解决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,<span "
+"class=\"yellowbg\">我们不>欢迎在回答中出现不是回答问题的内容,包括针对他人回"
+"答的讨论,和其他无意义的浪费网络资源行为</span>。CNProg建议您使用<span class="
+"\"yellowbg\">评论</span>功能来讨论你的意见和想法。"
+
+#: forum/skins/default/templates/faq.html:32
+msgid "Who moderates this community?"
+msgstr "谁是社区的管理员?"
+
+#: forum/skins/default/templates/faq.html:33
+msgid "The short answer is: <strong>you</strong>."
+msgstr "答案是:<span class=\"yellowbg\">每个用户。</span>"
+
+#: forum/skins/default/templates/faq.html:34
+msgid "This website is moderated by the users."
+msgstr "社区没有严格意义上的管理员身份"
+
+#: forum/skins/default/templates/faq.html:35
+msgid ""
+"The reputation system allows users earn the authorization to perform a "
+"variety of moderation tasks."
+msgstr ""
+"通过积分运作,<span class=\"yellowbg\">每个用户都有权限创建标签,进行对所有问"
+"题、回答的投票、编辑、关闭等操作。</span>"
+
+#: forum/skins/default/templates/faq.html:40
+msgid "How does reputation system work?"
+msgstr "什么是社区积分?"
+
+#: forum/skins/default/templates/faq.html:41
+#, fuzzy
+msgid "Rep system summary"
+msgstr "更新概要:"
+
+#: forum/skins/default/templates/faq.html:42
+msgid ""
+"For example, if you ask an interesting question or give a helpful answer, "
+"your input will be upvoted. On the other hand if the answer is misleading - "
+"it will be downvoted. Each vote in favor will generate <strong>10</strong> "
+"points, each vote against will subtract <strong>2</strong> points. There is "
+"a limit of <strong>200</strong> points that can be accumulated per question "
+"or answer. The table below explains reputation point requirements for each "
+"type of moderation task."
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:53
+#: forum/skins/default/templates/users/votes.html:15
+#: forum/views/commands.py:77
+msgid "upvote"
+msgstr "投赞成票"
+
+#: forum/skins/default/templates/faq.html:57
+#, fuzzy
+msgid "use tags"
+msgstr "标记垃圾帖"
+
+# todo - check if it's indeed plural
+#: forum/skins/default/templates/faq.html:62
+msgid "add comments"
+msgstr "添加评论"
+
+#: forum/skins/default/templates/faq.html:66
+#: forum/skins/default/templates/users/votes.html:17
+#: forum/views/commands.py:77
+msgid "downvote"
+msgstr "投反对票"
+
+#: forum/skins/default/templates/faq.html:69
+#, fuzzy
+msgid "open and close own questions"
+msgstr "打开关闭任何人的问题"
+
+#: forum/skins/default/templates/faq.html:73
+msgid "retag questions"
+msgstr "给任何问题整理标签"
+
+#: forum/skins/default/templates/faq.html:78
+msgid "edit community wiki questions"
+msgstr "编辑wiki类问题"
+
+#: forum/skins/default/templates/faq.html:83
+msgid "edit any answer"
+msgstr "编辑任何问题或答案"
+
+#: forum/skins/default/templates/faq.html:87
+#, fuzzy
+msgid "open any closed question"
+msgstr "打开关闭任何人的问题"
+
+#: forum/skins/default/templates/faq.html:91
+msgid "delete any comment"
+msgstr "删除任何一个评论"
+
+#: forum/skins/default/templates/faq.html:95
+msgid "delete any questions and answers and perform other moderation tasks"
+msgstr "删除任何一个问题或答案,及其他管理功能"
+
+#: forum/skins/default/templates/faq.html:103
+msgid "how to validate email title"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:105
+#, python-format
+msgid ""
+"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:110
+msgid "what is gravatar"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:111
+msgid "gravatar faq info"
+msgstr ""
+
+#: forum/skins/default/templates/faq.html:114
+msgid "To register, do I need to create new password?"
+msgstr "我需要注册一个新用户吗?"
+
+#: forum/skins/default/templates/faq.html:115
+msgid ""
+"No, you don't have to. You can login through any service that supports "
+"OpenID, e.g. Google, Yahoo, AOL, etc."
+msgstr ""
+"不需要。社区提供了OpenID的登录支持,你要用Google、Yahoo等任何支持OpenID登录的"
+"帐号就可以使用系统。"
+
+#: forum/skins/default/templates/faq.html:116
+msgid "Login now!"
+msgstr "马上登录"
+
+#: forum/skins/default/templates/faq.html:121
+msgid "Why other people can edit my questions/answers?"
+msgstr "为什么其他人可以修改我的问题/回答?"
+
+#: forum/skins/default/templates/faq.html:122
+msgid "Goal of this site is..."
+msgstr "CNProg 是为了帮助程序员解决更多问题,更加方便的解决问题。"
+
+#: forum/skins/default/templates/faq.html:122
+msgid ""
+"So questions and answers can be edited like wiki pages by experienced users "
+"of this site and this improves the overall quality of the knowledge base "
+"content."
+msgstr ""
+"所以问题和答案都是如Wiki一样可编辑的,我们希望社区能帮助用户沉淀、积累更多有"
+"用的知识和经验。"
+
+#: forum/skins/default/templates/faq.html:123
+msgid "If this approach is not for you, we respect your choice."
+msgstr "如果您不喜欢这种方式,我们尊重你的选择。"
+
+#: forum/skins/default/templates/faq.html:127
+msgid "Still have questions?"
+msgstr "还有其他问题?"
+
+#: forum/skins/default/templates/faq.html:128
+#, fuzzy, python-format
+msgid ""
+"Please ask your question at %(ask_question_url)s, help make our community "
+"better!"
+msgstr "如果您对社区还有其他疑问,请一起来完善我们的"
+
+#: forum/skins/default/templates/faq.html:130
+#: forum/skins/default/templates/header.html:30
+#: forum/skins/default/templates/header.html:55 forum/views/readers.py:76
+msgid "questions"
+msgstr "问题"
+
+#: forum/skins/default/templates/faq.html:130
+msgid "."
+msgstr "。"
+
+#: forum/skins/default/templates/feedback.html:6
+#, fuzzy
+msgid "Feedback"
+msgstr "问题反馈"
+
+#: forum/skins/default/templates/feedback.html:11
+msgid "Give us your feedback!"
+msgstr ""
+
+#: forum/skins/default/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
+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
+#, fuzzy
+msgid "(this field is required)"
+msgstr " 标签不能为空。"
+
+#: forum/skins/default/templates/feedback.html:49
+#, fuzzy
+msgid "Send Feedback"
+msgstr "问题反馈"
+
+# footer.html
+#: forum/skins/default/templates/footer.html:7
+#: forum/skins/default/templates/header.html:16
+#: forum/skins/default/templates/index.html:12
+msgid "about"
+msgstr "关于本站"
+
+#: forum/skins/default/templates/footer.html:8
+#: forum/skins/default/templates/header.html:17
+#: forum/skins/default/templates/index.html:13
+#: forum/skins/default/templates/question_edit_tips.html:22
+msgid "faq"
+msgstr "常见问题"
+
+#: forum/skins/default/templates/footer.html:9
+msgid "privacy policy"
+msgstr "隐私政策"
+
+#: forum/skins/default/templates/footer.html:18
+#, fuzzy
+msgid "give feedback"
+msgstr "问题反馈"
+
+#: forum/skins/default/templates/header.html:9
+msgid "administration"
+msgstr ""
+
+#: forum/skins/default/templates/header.html:12
+msgid "logout"
+msgstr "退出登录"
+
+#: forum/skins/default/templates/header.html:14
+msgid "login"
+msgstr "登录"
+
+#: forum/skins/default/templates/header.html:24
+msgid "back to home page"
+msgstr "回到首页"
+
+#: forum/skins/default/templates/header.html:32
+#: forum/skins/default/templates/header.html:57
+msgid "users"
+msgstr "用户"
+
+#: forum/skins/default/templates/header.html:33
+#: forum/skins/default/templates/users/signature.html:9
+#: forum/skins/default/templates/users/signature.html:15
+#: forum/skins/default/templates/users/signature.html:21
+#: forum/templatetags/extra_tags.py:167 forum/templatetags/extra_tags.py:196
+msgid "badges"
+msgstr "奖牌榜"
+
+#: forum/skins/default/templates/header.html:34
+msgid "unanswered questions"
+msgstr "没有回答的问题"
+
+#: forum/skins/default/templates/header.html:36
+msgid "ask a question"
+msgstr "我要提问"
+
+#: forum/skins/default/templates/header.html:51
+msgid "search"
+msgstr "搜索"
+
+#: forum/skins/default/templates/index.html:9
+#, fuzzy
+msgid "welcome to "
+msgstr "CNProg欢迎您!"
+
+#: forum/skins/default/templates/logout.html:6
+#: forum/skins/default/templates/logout.html:16
+msgid "Logout"
+msgstr "退出登录"
+
+#: forum/skins/default/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 ""
+"您是系统的<strong class=\"darkred\">注册</strong>用户,可以随时使用OpenID帐号"
+"登录系统或者注销登录。"
+
+#: forum/skins/default/templates/logout.html:20
+msgid "Logout now"
+msgstr "点击退出登录"
+
+#: forum/skins/default/templates/notarobot.html:3
+msgid "Please prove that you are a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/notarobot.html:10
+msgid "I am a Human Being"
+msgstr ""
+
+#: forum/skins/default/templates/pagesize.html:6
+msgid "posts per page"
+msgstr "每页显示:"
+
+#: forum/skins/default/templates/paginator.html:6
+#: forum/skins/default/templates/paginator.html:7
+msgid "previous"
+msgstr "上一页"
+
+#: forum/skins/default/templates/paginator.html:19
+msgid "current page"
+msgstr "当前页"
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "page number "
+msgstr "第"
+
+#: forum/skins/default/templates/paginator.html:22
+#: forum/skins/default/templates/paginator.html:29
+msgid "number - make blank in english"
+msgstr "页"
+
+#: forum/skins/default/templates/paginator.html:33
+msgid "next page"
+msgstr "下一页"
+
+#: forum/skins/default/templates/post_contributor_info.html:9
+#, python-format
+msgid ""
+"\n"
+"                one revision\n"
+"            "
+msgid_plural ""
+"\n"
+"                %(rev_count)s revisions\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/post_contributor_info.html:24
+#, fuzzy
+msgid "posted"
+msgstr "投赞成票"
+
+#: forum/skins/default/templates/post_contributor_info.html:45
+msgid "updated"
+msgstr "更新于"
+
+#: forum/skins/default/templates/privacy.html:6
+#: forum/skins/default/templates/privacy.html:11
+msgid "Privacy policy"
+msgstr "隐私政策"
+
+#: forum/skins/default/templates/privacy.html:15
+msgid "general message about privacy"
+msgstr ""
+"CNProg承认用户隐私的重要性。本文件概述在您浏览CNProg过程中所接收和收集的个人"
+"信息的种类,以及CNProg所采取的保护信息的一些措施。CNProg希望这将有助于您在知"
+"情的情况下,就和我们 共享个人信息的问题作出决定。"
+
+#: forum/skins/default/templates/privacy.html:18
+msgid "Site Visitors"
+msgstr "网站访问者"
+
+#: forum/skins/default/templates/privacy.html:20
+msgid "what technical information is collected about visitors"
+msgstr ""
+"当您访问本网站或使用我们的某些在线服务时,服务器会自动记录信息,包括但不限于"
+"URL、IP地址、浏览器的类型、屏幕分辨率、系统类型和使用的语言以及访问日期和时"
+"间。我们的目的是为了向您>提供更好的用户服务,包括可能为您提供定制的在线服务。"
+
+#: forum/skins/default/templates/privacy.html:23
+msgid "Personal Information"
+msgstr "个人身份信息"
+
+#: forum/skins/default/templates/privacy.html:25
+msgid "details on personal information policies"
+msgstr ""
+"在登录使用CNProg的提问和回答功能时,我们要求使用者提供用户名、密码、电子邮件"
+"等信息。CNProg收集这类关于个人身份的信息只是为了登录系统获得使用功能的目的。"
+"我们不会向任何其他社区用 户、个人或第三方透露您的密码或者电子邮件信息。用户可"
+"以选择性地填写用户资料、个人网站、年龄、城市等信息,我们收集这些内容为了使用"
+"户能够更容易和更满意地使用CNProg提供的网页和服务。"
+
+#: forum/skins/default/templates/privacy.html:28
+msgid "Other Services"
+msgstr "其他服务"
+
+#: forum/skins/default/templates/privacy.html:30
+msgid "details on sharing data with third parties"
+msgstr ""
+"CNProg可能会收集和统计用户访问本站的概况数据。例如,CNProg可能会检测网站最流"
+"行的部分功能。CNProg可能会公开显示或者提供给第三方使用该数据。但是,CNProg不"
+"会公开您的身份信息。"
+
+#: forum/skins/default/templates/privacy.html:35
+msgid "cookie policy details"
+msgstr ""
+"访问CNProg时,我们会向您的计算机发送一个或多个专门用于识别您的浏览器的Cookie"
+"(包含一个字符串的小文件)。 使用 Cookie 的目的是通过储存用户偏好、跟踪用户倾"
+"向(例如搜索方法)来提高我们的服务质量。大多数浏览器的初始设置均为接受 "
+"Cookie,但也可以将其重置为拒绝所有 Cookie 或在收到 Cookie 时提示。不过,如果"
+"禁用 Cookie,某些功能和服务可能无法正常运行。"
+
+#: forum/skins/default/templates/privacy.html:37
+msgid "Policy Changes"
+msgstr "政策更改"
+
+#: forum/skins/default/templates/privacy.html:38
+#, fuzzy
+msgid "how privacy policies can be changed"
+msgstr ""
+"我们可能在事先通知或不通知的情况下随时更改此'隐私政策',我们建议用户时常查看"
+"CNProg隐私政策的改动,在任何改动生效后您的继续访问和使用本站,我们假设您已同"
+"意了CNProg以上的所有条款。"
+
+# this is how above two are supposed to be
+#: forum/skins/default/templates/question.html:70
+#: forum/skins/default/templates/sidebar/recent_tags.html:9
+#, fuzzy, python-format
+msgid "see questions tagged '%(tagname)s'"
+msgstr "查看有关'%(tagname)s'的问题"
+
+#: forum/skins/default/templates/question.html:87
+#, fuzzy, python-format
+msgid ""
+"The question has been closed for the following reason \"%(close_reason)s\" by"
+msgstr "问题以“%s”的原因已被"
+
+#: forum/skins/default/templates/question.html:89
+#, fuzzy, python-format
+msgid "close date %(closed_at)s"
+msgstr "由于以下原因,你要关闭这个问题"
+
+#: forum/skins/default/templates/question.html:97
+#, python-format
+msgid ""
+"\n"
+"                    One Answer:\n"
+"                    "
+msgid_plural ""
+"\n"
+"                    %(counter)s Answers:\n"
+"                    "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers will be shown first"
+msgstr "最先回答显示在最前面"
+
+#: forum/skins/default/templates/question.html:105
+msgid "oldest answers"
+msgstr "最先回答"
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers will be shown first"
+msgstr "最晚回答显示在最前面"
+
+#: forum/skins/default/templates/question.html:107
+msgid "newest answers"
+msgstr "最近回答"
+
+#: forum/skins/default/templates/question.html:109
+msgid "most voted answers will be shown first"
+msgstr "投票次数最多的显示在最前面"
+
+#: forum/skins/default/templates/question.html:109
+msgid "popular answers"
+msgstr "投票最多"
+
+#: forum/skins/default/templates/question.html:157
+msgid "Your answer"
+msgstr "您的回答"
+
+#: forum/skins/default/templates/question.html:159
+#, fuzzy
+msgid "Be the first one to answer this question!"
+msgstr "不是一个可以回答的“问题”"
+
+#: forum/skins/default/templates/question.html:165
+msgid "you can answer anonymously and then login"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:169
+msgid "answer your own question only to give an answer"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:171
+#, fuzzy
+msgid "please only give an answer, no discussions"
+msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
+
+#: forum/skins/default/templates/question.html:207
+msgid "Login/Signup to Post Your Answer"
+msgstr ""
+
+#: forum/skins/default/templates/question.html:210
+#, fuzzy
+msgid "Answer Your Own Question"
+msgstr "回答该问题"
+
+#: forum/skins/default/templates/question.html:212
+msgid "Answer the question"
+msgstr "回答该问题"
+
+#: forum/skins/default/templates/question.html:229
+msgid "Question tags"
+msgstr "您正在浏览的问题含有以下标签"
+
+#: forum/skins/default/templates/question.html:239
+#, fuzzy
+msgid "question asked"
+msgstr "提问时间"
+
+#: forum/skins/default/templates/question.html:242
+msgid "question was seen"
+msgstr "目前浏览数量"
+
+#: forum/skins/default/templates/question.html:242
+msgid "times"
+msgstr "次"
+
+#: forum/skins/default/templates/question.html:245
+msgid "last updated"
+msgstr "最后更新时间"
+
+#: forum/skins/default/templates/question.html:250
+#, fuzzy
+msgid "Related questions"
+msgstr "相似的问题"
+
+# page title
+#: forum/skins/default/templates/question_edit.html:5
+#: forum/skins/default/templates/question_edit.html:63
+msgid "Edit question"
+msgstr "修改问题"
+
+#: forum/skins/default/templates/question_edit_tips.html:4
+msgid "question tips"
+msgstr "受欢迎的提问"
+
+#: forum/skins/default/templates/question_edit_tips.html:9
+#, python-format
+msgid ""
+"\n"
+"                ask a question relevant to the %(app_title)s community \n"
+"                "
+msgstr ""
+
+#: forum/skins/default/templates/question_edit_tips.html:15
+#, fuzzy
+msgid "please try provide enough details"
+msgstr "请详细描述您的问题。"
+
+#: forum/skins/default/templates/question_retag.html:5
+#: forum/skins/default/templates/question_retag.html:56
+msgid "Change tags"
+msgstr "修改问题标签"
+
+# todo: remove magic numbers from this file
+#: forum/skins/default/templates/question_retag.html:44
+msgid "up to 5 tags, less than 20 characters each"
+msgstr "最多5个标签,每个标签长度小于20个字符。"
+
+#: forum/skins/default/templates/question_retag.html:86
+msgid "Why use and modify tags?"
+msgstr "为什么我只能修改问题标签?"
+
+#: forum/skins/default/templates/question_retag.html:89
+#, fuzzy
+msgid "tags help us keep Questions organized"
+msgstr "CNProg用标签来分类系统的信息"
+
+#: forum/skins/default/templates/question_retag.html:97
+msgid "tag editors receive special awards from the community"
+msgstr "修改标签的用户将授予特殊的社区奖牌"
+
+#: forum/skins/default/templates/questions.html:7
+msgid "Questions"
+msgstr "问题列表"
+
+#: forum/skins/default/templates/reopen.html:6
+#: forum/skins/default/templates/reopen.html:16
+msgid "Reopen question"
+msgstr "重设问题"
+
+#: forum/skins/default/templates/reopen.html:19
+msgid "Open the previously closed question"
+msgstr "你将打开这个已经被关闭的问题"
+
+#: forum/skins/default/templates/reopen.html:22
+#, fuzzy
+msgid "The question was closed for the following reason "
+msgstr "问题曾以"
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "reason - leave blank in english"
+msgstr "的原因被"
+
+#: forum/skins/default/templates/reopen.html:22
+#, fuzzy
+msgid "on "
+msgstr "于"
+
+#: forum/skins/default/templates/reopen.html:22
+msgid "date closed"
+msgstr "关闭"
+
+#: forum/skins/default/templates/reopen.html:29
+#, fuzzy
+msgid "Reopen this question"
+msgstr "确定打开这个问题"
+
+# revisions_answer.html
+#: forum/skins/default/templates/revisions_answer.html:7
+#: forum/skins/default/templates/revisions_answer.html:36
+#: forum/skins/default/templates/revisions_question.html:7
+#: forum/skins/default/templates/revisions_question.html:35
+msgid "Revision history"
+msgstr "版本历史"
+
+#: forum/skins/default/templates/revisions_answer.html:48
+#: forum/skins/default/templates/revisions_question.html:47
+msgid "click to hide/show revision"
+msgstr ""
+
+#: forum/skins/default/templates/revisions_answer.html:56
+#: forum/templatetags/node_tags.py:62
+msgid "edit"
+msgstr "编辑"
+
+#: forum/skins/default/templates/subscription_status.html:3
+#, fuzzy
+msgid "Subscription"
+msgstr "提问"
+
+#: forum/skins/default/templates/subscription_status.html:8
+msgid "You were automatically subscribed to this question."
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:10
+#, fuzzy
+msgid "You are subscribed to this question."
+msgstr "订阅最>新问题"
+
+#: forum/skins/default/templates/subscription_status.html:13
+#, fuzzy
+msgid "You are not subscribed to this question."
+msgstr "订阅最>新问题"
+
+#: forum/skins/default/templates/subscription_status.html:18
+#: forum/views/commands.py:323
+msgid "unsubscribe me"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:20
+#: forum/views/commands.py:323
+msgid "subscribe me"
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:24
+#, python-format
+msgid ""
+"\n"
+"            (you can adjust your notification settings on your <a href=\"%"
+"(profile_url)s?sort=email_subscriptions\">profile</a>)\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/subscription_status.html:29
+msgid "Once you sign in you will be able to subscribe for any updates here"
+msgstr ""
+
+# book.html line 123 must be empty in english
+#: forum/skins/default/templates/tag_selector.html:4
+#: forum/skins/default/templates/question_list/tag_selector.html:6
+#, fuzzy
+msgid "Interesting tags"
+msgstr "的问题"
+
+# this is how above two are supposed to be
+#: 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
+#, fuzzy, python-format
+msgid "see questions tagged '%(tag_name)s'"
+msgstr "查看有关'%(tagname)s'的问题"
+
+#: forum/skins/default/templates/tag_selector.html:14
+#: forum/skins/default/templates/question_list/tag_selector.html:16
+#, python-format
+msgid "remove '%(tag_name)s' from the list of interesting tags"
+msgstr ""
+
+#: 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
+msgid "Add"
+msgstr ""
+
+#: forum/skins/default/templates/tag_selector.html:21
+#: forum/skins/default/templates/question_list/tag_selector.html:23
+#, fuzzy
+msgid "Ignored tags"
+msgstr "修改问题标签"
+
+#: forum/skins/default/templates/tag_selector.html:31
+#: forum/skins/default/templates/question_list/tag_selector.html:33
+#, python-format
+msgid "remove '%(tag_name)s' from the list of ignored tags"
+msgstr ""
+
+#: forum/skins/default/templates/tag_selector.html:40
+#: forum/skins/default/templates/question_list/tag_selector.html:42
+#, fuzzy
+msgid "keep ignored questions hidden"
+msgstr "打开关闭任何人的问题"
+
+#: forum/skins/default/templates/tags.html:6
+#: forum/skins/default/templates/tags.html:30
+msgid "Tag list"
+msgstr "标签列表"
+
+#: forum/skins/default/templates/tags.html:32
+msgid "sorted alphabetically"
+msgstr "按名称的字母先后顺序排序"
+
+#: forum/skins/default/templates/tags.html:32
+msgid "by name"
+msgstr "按名称排序"
+
+#: forum/skins/default/templates/tags.html:33
+msgid "sorted by frequency of tag use"
+msgstr "按标签被使用的次数排序"
+
+#: forum/skins/default/templates/tags.html:33
+#, fuzzy
+msgid "by popularity"
+msgstr "按流行程度排序"
+
+#: forum/skins/default/templates/tags.html:39
+msgid "All tags matching query"
+msgstr "匹配查询"
+
+#: forum/skins/default/templates/tags.html:39
+msgid "all tags - make this empty in english"
+msgstr "的所有标签"
+
+#: forum/skins/default/templates/tags.html:42
+#, fuzzy
+msgid "Nothing found"
+msgstr "没有找到相关数据。"
+
+#: forum/skins/default/templates/auth/auth_settings.html:5
+#: forum/skins/default/templates/auth/auth_settings.html:7
+msgid "Authentication settings"
+msgstr ""
+
+#: forum/skins/default/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:12
+#, fuzzy
+msgid "remove"
+msgstr "打开"
+
+#: forum/skins/default/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:19
+msgid "Add new provider"
+msgstr ""
+
+#: forum/skins/default/templates/auth/auth_settings.html:21
+msgid "This is where you can change your password. Make sure you remember it!"
+msgstr ""
+
+#: forum/skins/default/templates/auth/auth_settings.html:24
+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:31
+#, fuzzy
+msgid "Create password"
+msgstr "确认密码"
+
+#: forum/skins/default/templates/auth/complete.html:5
+msgid "Connect your OpenID with this site"
+msgstr "绑定OpenID"
+
+#: forum/skins/default/templates/auth/complete.html:8
+msgid "Connect your OpenID with your account on this site"
+msgstr "绑定OpenID帐号"
+
+#: forum/skins/default/templates/auth/complete.html:12
+msgid "You are here for the first time with "
+msgstr ""
+
+#: forum/skins/default/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 ""
+
+# todo: review this message may be confusing user
+#: forum/skins/default/templates/auth/complete.html:15
+msgid "This account already exists, please use another."
+msgstr "输入您的新帐号或者指定已经存在的帐号。"
+
+#: forum/skins/default/templates/auth/complete.html:30
+msgid "Sorry, looks like we have some errors:"
+msgstr "请注意以下错误:"
+
+#: forum/skins/default/templates/auth/complete.html:47
+msgid "Screen name label"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:54
+#, fuzzy
+msgid "Email address label"
+msgstr "您的电子邮件地址"
+
+#: forum/skins/default/templates/auth/complete.html:60
+#: forum/skins/default/templates/auth/signup.html:18
+msgid "receive updates motivational blurb"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:64
+#: forum/skins/default/templates/auth/signup.html:22
+msgid "please select one of the options above"
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:67
+msgid "Tag filter tool will be your right panel, once you log in."
+msgstr ""
+
+#: forum/skins/default/templates/auth/complete.html:68
+msgid "create account"
+msgstr "创建帐号"
+
+#: forum/skins/default/templates/auth/complete.html:77
+msgid "Existing account"
+msgstr "已经存在的用户"
+
+#: forum/skins/default/templates/auth/complete.html:78
+msgid "user name"
+msgstr "用户名"
+
+#: forum/skins/default/templates/auth/complete.html:79
+msgid "password"
+msgstr "密码"
+
+#: forum/skins/default/templates/auth/complete.html:86
+msgid "Register"
+msgstr "确认"
+
+#: forum/skins/default/templates/auth/complete.html:87
+msgid "Forgot your password?"
+msgstr "忘记密码?"
+
+#: forum/skins/default/templates/auth/email_validation.html:6
+#: forum/skins/default/templates/auth/temp_login_email.html:6
+msgid "Greetings from the Q&A forum"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:8
+msgid "To make use of the Forum, please follow the link below:"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:12
+msgid "Following the link above will help us verify your email address."
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:14
+#: forum/skins/default/templates/auth/temp_login_email.html:14
+msgid ""
+"If you beleive that this message was sent in mistake -\n"
+"    no further action is needed. Just ingore this email, we apologize\n"
+"    for any inconvenience"
+msgstr ""
+
+#: forum/skins/default/templates/auth/email_validation.html:18
+#: forum/skins/default/templates/auth/temp_login_email.html:18
+#: forum/skins/default/templates/notifications/answeraccepted.html:15
+#: forum/skins/default/templates/notifications/newanswer.html:25
+#: forum/skins/default/templates/notifications/newcomment.html:32
+#: forum/skins/default/templates/notifications/newmember.html:15
+#: forum/skins/default/templates/notifications/newquestion.html:25
+msgid ""
+"Sincerely,<br />\n"
+"    Forum Administrator"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:6
+msgid "Login"
+msgstr "登录"
+
+#: forum/skins/default/templates/auth/signin.html:24
+msgid "User login"
+msgstr "用户登录"
+
+#: forum/skins/default/templates/auth/signin.html:36
+#: forum/skins/default/templates/auth/signin.html:86
+#: forum/skins/default/templates/auth/signin.html:92
+msgid "Or..."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:39
+msgid "Click to sign in through any of these services."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:44
+msgid "Validate my email after I login."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:94
+#, fuzzy
+msgid "Click"
+msgstr "链接"
+
+#: forum/skins/default/templates/auth/signin.html:94
+msgid "if you're having troubles signing in."
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:98
+msgid "Enter your "
+msgstr ""
+
+#: forum/skins/default/templates/auth/signin.html:154
+msgid "Why use OpenID?"
+msgstr "为什么需要OpenID登录?"
+
+#: forum/skins/default/templates/auth/signin.html:157
+msgid "with openid it is easier"
+msgstr ""
+"构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所有"
+"功能"
+
+#: forum/skins/default/templates/auth/signin.html:160
+msgid "reuse openid"
+msgstr "用同一个帐号可登录互联网所有激活OpenID的网站"
+
+#: forum/skins/default/templates/auth/signin.html:163
+msgid "openid is widely adopted"
+msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点"
+
+#: forum/skins/default/templates/auth/signin.html:166
+msgid "openid is supported open standard"
+msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持"
+
+#: forum/skins/default/templates/auth/signin.html:171
+msgid "Find out more"
+msgstr "查看更多"
+
+#: forum/skins/default/templates/auth/signin.html:172
+msgid "Get OpenID"
+msgstr "获取OpenID"
+
+#: forum/skins/default/templates/auth/signup.html:4
+msgid "Signup"
+msgstr "注册帐号"
+
+#: forum/skins/default/templates/auth/signup.html:8
+#, fuzzy
+msgid "Create login name and password"
+msgstr "使用帐号密码登录"
+
+#: forum/skins/default/templates/auth/signup.html:10
+msgid "Traditional signup info"
+msgstr ""
+
+#: forum/skins/default/templates/auth/signup.html:31
+#, fuzzy
+msgid "Create Account"
+msgstr "创建帐号"
+
+#: forum/skins/default/templates/auth/signup.html:32
+msgid "or"
+msgstr "或者"
+
+#: forum/skins/default/templates/auth/signup.html:33
+#, fuzzy
+msgid "return to login page"
+msgstr "返回登录"
+
+#: forum/skins/default/templates/auth/temp_login_email.html:8
+msgid "You're seeing this because someone requested a temporary login link"
+msgstr ""
+
+#: forum/skins/default/templates/auth/temp_login_email.html:12
+msgid "Following the link above will give you access to your account."
+msgstr ""
+
+#: forum/skins/default/templates/auth/temp_login_request.html:5
+msgid "Request temporary login key"
+msgstr ""
+
+#: forum/skins/default/templates/auth/temp_login_request.html:7
+msgid "Account: request temporary login key"
+msgstr ""
+
+#: forum/skins/default/templates/auth/temp_login_request.html:8
+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 ""
+
+#: forum/skins/default/templates/auth/temp_login_request.html:25
+#, fuzzy
+msgid "Send link"
+msgstr "链接"
+
+#: forum/skins/default/templates/node/accept_button.html:5
+#, fuzzy, python-format
+msgid "%(who)s has selected this answer as the correct answer"
+msgstr "这个答案已经被提问作者标记为最佳答案"
+
+#: forum/skins/default/templates/node/accept_button.html:5
+#, fuzzy
+msgid "mark this answer as the accepted answer"
+msgstr "有答案已被接受为正确答案"
+
+#: forum/skins/default/templates/node/comments.html:22
+#, fuzzy
+msgid "I like this comment (click again to cancel)"
+msgstr "这篇帖子有价值(再次点击取消操作)"
+
+#: forum/skins/default/templates/node/comments.html:26
+#, fuzzy
+msgid "Edit comment"
+msgstr "添加评论"
+
+#: forum/skins/default/templates/node/comments.html:30
+#, fuzzy
+msgid "Delete comment"
+msgstr "删除任何一个评论"
+
+#: forum/skins/default/templates/node/comments.html:42
+#, python-format
+msgid "showing %(showing)s of %(total)s"
+msgstr ""
+
+#: forum/skins/default/templates/node/comments.html:44
+msgid "show all"
+msgstr ""
+
+#: forum/skins/default/templates/node/comments.html:47
+#, fuzzy
+msgid "add new comment"
+msgstr "添加评论"
+
+#: forum/skins/default/templates/node/comments.html:55
+#, fuzzy
+msgid " add comment"
+msgstr "添加评论"
+
+#: forum/skins/default/templates/node/comments.html:58
+#, python-format
+msgid ""
+"\n"
+"                have <span class=\"comments-char-left-count\">%(max_length)"
+"s</span> characters left\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/node/comments.html:71
+#, fuzzy
+msgid "just now"
+msgstr "点击退出登录"
+
+#: forum/skins/default/templates/node/favorite_mark.html:3
+#, fuzzy
+msgid "mark/unmark this question as favorite (click again to cancel)"
+msgstr "我要收藏这个问题(再次点击取消操作)"
+
+#: forum/skins/default/templates/node/vote_buttons.html:3
+#, fuzzy
+msgid "I like this post (click again to cancel)"
+msgstr "这篇帖子有价值(再次点击取消操作)"
+
+#: forum/skins/default/templates/node/vote_buttons.html:7
+msgid "current number of votes"
+msgstr "当前总票数"
+
+#: forum/skins/default/templates/node/vote_buttons.html:10
+#, fuzzy
+msgid "I dont like this post (click again to cancel)"
+msgstr "这篇帖子没有价值(再次点击取消操作)"
+
+#: forum/skins/default/templates/notifications/answeraccepted.html:6
+#: forum/skins/default/templates/notifications/digest.html:7
+#: forum/skins/default/templates/notifications/newanswer.html:6
+#: forum/skins/default/templates/notifications/newcomment.html:6
+#: forum/skins/default/templates/notifications/newmember.html:6
+#: forum/skins/default/templates/notifications/newquestion.html:6
+msgid "Hello"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/answeraccepted.html:9
+#, python-format
+msgid ""
+"\n"
+"        Just to let you know that %(accepter)s has just accepted %"
+"(answer_author)s's answer on his question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a>:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:9
+#, python-format
+msgid ""
+"\n"
+"    This is the %(digest_type)s activity digest for %(app_title)s\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:15
+#, python-format
+msgid ""
+"\n"
+"            %(nusers_count)s new user%(nusers_count_pluralize)s joined the %"
+"(app_title)s community:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:28
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s of your subscriptions have updates:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:35
+#, fuzzy
+msgid "On question "
+msgstr "提问"
+
+#: forum/skins/default/templates/notifications/digest.html:37
+#, python-format
+msgid ""
+"\n"
+"                    %(answer_count)s new answer%(answer_count_pluralize)s\n"
+"                "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:42
+#, python-format
+msgid ""
+"\n"
+"                    %(comment_count)s new comment%(comment_count_pluralize)"
+"s\n"
+"                "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:46
+#, fuzzy
+msgid "on your own post(s)"
+msgstr "获取您自己的"
+
+#: forum/skins/default/templates/notifications/digest.html:50
+#, fuzzy
+msgid "an answer was accepted"
+msgstr "问题已经解决,已得到正确答案"
+
+#: forum/skins/default/templates/notifications/digest.html:59
+#, python-format
+msgid ""
+"\n"
+"            %(question_count)s new question%(question_count_pluralize)s\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:63
+msgid "matching your interesting tags"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/digest.html:65
+#, fuzzy
+msgid "posted :"
+msgstr "投赞成票"
+
+#: forum/skins/default/templates/notifications/digest.html:71
+#, python-format
+msgid ""
+"\n"
+"                    Posted by %(author_name)s in %(question_time)s\n"
+"                "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:7
+#, python-format
+msgid ""
+"\n"
+"    Hello, this is a %(site_title)s forum feedback message\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:13
+msgid "Sender"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:15
+#: forum/skins/default/templates/notifications/feedback.html:18
+#: forum/skins/default/templates/users/info.html:93
+msgid "email"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:17
+msgid "anonymous"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/feedback.html:25
+msgid "Message body:"
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newanswer.html:9
+#, python-format
+msgid ""
+"\n"
+"        %(author_name)s has just posted a new answer on %(app_title)s to the "
+"question\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s\"</a>:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newanswer.html:20
+#: forum/skins/default/templates/notifications/newcomment.html:28
+#: forum/skins/default/templates/notifications/newquestion.html:20
+msgid ""
+"\n"
+"        Don't forget to come over and cast your vote.\n"
+"    "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:9
+#, python-format
+msgid ""
+"\n"
+"            %(author_name)s has just posted a comment on\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:14
+#, python-format
+msgid ""
+"\n"
+"                the answer posted by <a href=\"%(app_url)s%(poster_url)s\">%"
+"(poster_name)s</a> to\n"
+"            "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newcomment.html:19
+#, python-format
+msgid ""
+"\n"
+"             the question  <a href=\"%(app_url)s%(question_url)s\">%"
+"(question_title)s</a>\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newmember.html:9
+#, python-format
+msgid ""
+"\n"
+"        %(newmember_name)s has just joined %(app_title)s. You can visit %"
+"(newmember_name)s's profile using the following link: <br />\n"
+"        <a href=\"%(app_url)s%(newmember_url)s\">%(newmember_name)s profile</"
+"a>\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/notifications/newquestion.html:9
+#, python-format
+msgid ""
+"\n"
+"        %(author_name)s has just posted a new question on %(app_title)s, "
+"with title\n"
+"        <a href=\"%(app_url)s%(question_url)s\">%(question_title)s</a> and "
+"tagged <em>%(question_tags)s</em>:\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/base.html:13
+msgid "OSQA administration area"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/base.html:26
+msgid "Administration menu"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:7
+msgid "Dashboard"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:10
+msgid "Welcome to the OSQA administration area."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:17
+#, fuzzy
+msgid "Site statistics"
+msgstr "网站访问者"
+
+#: forum/skins/default/templates/osqaadmin/index.html:21
+#: forum/skins/default/templates/osqaadmin/index.html:26
+msgid "in the last 24 hours"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:31
+#, fuzzy
+msgid "user"
+msgstr "用户"
+
+#: forum/skins/default/templates/osqaadmin/index.html:31
+msgid "joined in the last 24 hours"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:37
+#, fuzzy
+msgid "Site status"
+msgstr "网站访问者"
+
+#: forum/skins/default/templates/osqaadmin/index.html:42
+msgid ""
+"Your site is running in bootstrap mode, click the button bellow to revert to "
+"defaults."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:45
+msgid ""
+"Your site is running in standard mode, click the button bellow to run in "
+"bootstrap mode."
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:47
+msgid ""
+"Your site is running with some customized settings, click the buttons bellow "
+"to run with defaults or in bootstrap mode"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "Are you sure you want to revert to the defaults?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:51
+msgid "revert to defaults"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "Are you sure you want to run bootstrap mode?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:54
+msgid "go bootstrap"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:59
+msgid "Recalculate scores and reputation"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:60
+msgid "This is a heavy operation, are you sure?"
+msgstr ""
+
+#: forum/skins/default/templates/osqaadmin/index.html:60
+#, fuzzy
+msgid "Recalculate"
+msgstr "真实姓名"
+
+#: forum/skins/default/templates/osqaadmin/index.html:65
+#, fuzzy
+msgid "Recent activity"
+msgstr "最近活动"
+
+#: forum/skins/default/templates/question_list/item.html:12
+#, fuzzy
+msgid "this question has an accepted answer"
+msgstr "这个问题被"
+
+#: forum/skins/default/templates/question_list/related_tags.html:6
+msgid "Related tags"
+msgstr "相关标签"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+msgid "most recently updated questions"
+msgstr "最近被更新的问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:4
+#, fuzzy
+msgid "active"
+msgstr "活跃问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "most recently asked questions"
+msgstr "最新加入系统的问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:5
+msgid "newest"
+msgstr "最新问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest questions"
+msgstr "被回复最多的问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:6
+msgid "hottest"
+msgstr "热门问题"
+
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted questions"
+msgstr "投票次数最多的问题"
+
+# "最有价值问题"
+# "最新问题"
+#: forum/skins/default/templates/question_list/sort_tabs.html:7
+msgid "most voted"
+msgstr "最有价值的问题"
+
+#: forum/skins/default/templates/question_list/title.html:5
+msgid "Found by tags"
+msgstr "标签问题"
 
-#: templates/reopen.html:6 templates/reopen.html.py:16
-msgid "Reopen question"
-msgstr "重设问题"
+#: forum/skins/default/templates/question_list/title.html:9
+msgid "Search results"
+msgstr ""
+
+#: forum/skins/default/templates/question_list/title.html:11
+msgid "Found by title"
+msgstr "查询结果"
+
+#: forum/skins/default/templates/question_list/title.html:15
+msgid "Unanswered questions"
+msgstr "没有回答的问题"
+
+#: forum/skins/default/templates/question_list/title.html:17
+#: forum/skins/default/templates/users/subscriptions.html:74
+msgid "All questions"
+msgstr "所有问题"
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:4
+msgid "Recent awards"
+msgstr "最新奖牌"
+
+#: forum/skins/default/templates/sidebar/recent_awards.html:15
+msgid "all awards"
+msgstr "所有奖牌"
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:4
+msgid "Recent tags"
+msgstr "最新标签"
+
+#: forum/skins/default/templates/sidebar/recent_tags.html:12
+msgid "popular tags"
+msgstr "受欢迎的标签"
+
+#: forum/skins/default/templates/users/edit.html:6
+msgid "Edit user profile"
+msgstr "修改个人资料"
+
+#: forum/skins/default/templates/users/edit.html:19
+msgid "edit profile"
+msgstr "修改资料"
+
+#: forum/skins/default/templates/users/edit.html:31
+msgid "image associated with your email address"
+msgstr "和您的邮件地址是绑定的"
+
+#: forum/skins/default/templates/users/edit.html:31
+#, python-format
+msgid "avatar, see %(gravatar_faq_url)s"
+msgstr ""
+
+#: forum/skins/default/templates/users/edit.html:36
+#: forum/skins/default/templates/users/info.html:52
+msgid "Registered user"
+msgstr "注册用户"
+
+#: forum/skins/default/templates/users/edit.html:43
+#, fuzzy
+msgid "Screen Name"
+msgstr "当前页"
+
+#: forum/skins/default/templates/users/edit.html:86
+#: forum/skins/default/templates/users/subscriptions.html:116
+msgid "Update"
+msgstr "更新"
+
+#: forum/skins/default/templates/users/info.html:22
+#: forum/skins/default/templates/users/signature.html:6
+#: forum/skins/default/templates/users/users.html:26
+msgid "reputation"
+msgstr "积分"
+
+#: forum/skins/default/templates/users/info.html:32
+msgid "Moderate this user"
+msgstr ""
+
+#: forum/skins/default/templates/users/info.html:44
+msgid "update profile"
+msgstr "更新我的资料"
+
+#: forum/skins/default/templates/users/info.html:56
+msgid "real name"
+msgstr "姓名"
+
+#: forum/skins/default/templates/users/info.html:61
+msgid "member for"
+msgstr "已加入"
+
+#: forum/skins/default/templates/users/info.html:66
+msgid "last seen"
+msgstr "上次活动时间"
+
+#: forum/skins/default/templates/users/info.html:72
+msgid "user website"
+msgstr "个人网站"
+
+#: forum/skins/default/templates/users/info.html:78
+msgid "location"
+msgstr "城市"
+
+# user_info.html 
+#: forum/skins/default/templates/users/info.html:86
+msgid "age"
+msgstr "年龄"
+
+#: forum/skins/default/templates/users/info.html:87
+msgid "age unit"
+msgstr "岁"
+
+#: forum/skins/default/templates/users/info.html:100
+msgid "todays unused votes"
+msgstr "今日剩余投票数"
+
+#: forum/skins/default/templates/users/info.html:101
+msgid "votes left"
+msgstr "票"
+
+#: forum/skins/default/templates/users/stats.html:13
+#, python-format
+msgid ""
+"\n"
+"                <span class=\"count\">1</span> Question\n"
+"                "
+msgid_plural ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Questions\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/stats.html:29
+#, python-format
+msgid ""
+"\n"
+"                <span class=\"count\">1</span> Answer\n"
+"                "
+msgid_plural ""
+"\n"
+"                <span class=\"count\">%(counter)s</span> Answers\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/stats.html:42
+#, fuzzy, python-format
+msgid "the answer has been voted for %(vote_count)s times"
+msgstr "该回答总共有%d个投票"
+
+#: forum/skins/default/templates/users/stats.html:42
+msgid "this answer has been selected as correct"
+msgstr "该回答已被设为最佳答案"
+
+#: forum/skins/default/templates/users/stats.html:58
+#, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">1</span> Vote\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(cnt)s</span> Votes\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/stats.html:69
+msgid "thumb up"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:70
+msgid "user has voted up this many times"
+msgstr "该用户投的赞成票总数"
+
+#: forum/skins/default/templates/users/stats.html:74
+msgid "thumb down"
+msgstr ""
+
+#: forum/skins/default/templates/users/stats.html:75
+#, fuzzy
+msgid "user voted down this many times"
+msgstr "用户投的反对票总数"
+
+#: forum/skins/default/templates/users/stats.html:84
+#, python-format
+msgid ""
+"\n"
+"                    <span class=\"count\">1</span> Tag\n"
+"                "
+msgid_plural ""
+"\n"
+"                    <span class=\"count\">%(counter)s</span> Tags\n"
+"                "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/stats.html:97
+#, fuzzy, python-format
+msgid ""
+"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
+msgstr "查看有关'%s'的问题"
+
+#: forum/skins/default/templates/users/stats.html:112
+#, python-format
+msgid ""
+"\n"
+"            <span class=\"count\">1</span> Badge\n"
+"            "
+msgid_plural ""
+"\n"
+"            <span class=\"count\">%(counter)s</span> Badges\n"
+"            "
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/skins/default/templates/users/subscriptions.html:8
+msgid "Notifications and subscription settings"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:10
+msgid ""
+"\n"
+"        Here you can decide which types of notifications you wish to "
+"receive, and it's frequency.<br />\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:14
+msgid ""
+"\n"
+"        Currently you have notifications enabled. You can always stop all "
+"notifications without loosing your settings and restart them afterwards.<br /"
+">\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:18
+msgid ""
+"\n"
+"        Currently you have notifications disabled. You can enable them "
+"clicking on the <strong>Start notifications</strong> button bellow.<br />\n"
+"        "
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:28
+msgid "Notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:32
+msgid "A new member joins"
+msgstr ""
+
+# must have extra space after in english
+#: forum/skins/default/templates/users/subscriptions.html:36
+#, fuzzy
+msgid "A new question is posted"
+msgstr "查看有关"
+
+#: forum/skins/default/templates/users/subscriptions.html:40
+msgid "A new question matching my interesting tags is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:44
+msgid "There's an update on one of my subscriptions"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:52
+msgid "Auto subscribe me to:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:57
+#, fuzzy
+msgid "Questions I ask"
+msgstr "您正在浏览的问题含有以下标签"
+
+#: forum/skins/default/templates/users/subscriptions.html:60
+#, fuzzy
+msgid "Questions I answer"
+msgstr "您正在浏览的问题含有以下标签"
+
+#: forum/skins/default/templates/users/subscriptions.html:63
+#, fuzzy
+msgid "Questions I comment"
+msgstr "问题列表"
+
+#: forum/skins/default/templates/users/subscriptions.html:68
+#, fuzzy
+msgid "Questions I view"
+msgstr "问题列表"
+
+#: forum/skins/default/templates/users/subscriptions.html:71
+msgid "All questions matching my interesting tags"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:82
+msgid "On my subscriptions, notify me when:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:87
+#, fuzzy
+msgid "An answer is posted"
+msgstr "受欢迎的提问"
+
+#: forum/skins/default/templates/users/subscriptions.html:90
+msgid "A comment on one of my posts is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:95
+msgid "A comment is posted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:98
+msgid "An answer is accepted"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:106
+msgid "More:"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:111
+msgid ""
+"Notify me when someone replys to one of my comments on any post using the "
+"<pre>@username</pre> notation"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:118
+msgid "Stop notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/subscriptions.html:120
+msgid "Start notifications"
+msgstr ""
+
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "User profile"
+msgstr "用户概览"
+
+#: forum/skins/default/templates/users/tabs.html:7
+msgid "overview"
+msgstr "概览"
+
+#: forum/skins/default/templates/users/tabs.html:9
+msgid "recent activity"
+msgstr "最近活动"
+
+#: forum/skins/default/templates/users/tabs.html:11
+msgid "graph of user reputation"
+msgstr "用户的社区积分历史"
+
+#: forum/skins/default/templates/users/tabs.html:12
+msgid "reputation history"
+msgstr "积分"
+
+#: forum/skins/default/templates/users/tabs.html:15 forum/views/users.py:196
+msgid "user vote record"
+msgstr "用户所有投票"
+
+#: forum/skins/default/templates/users/tabs.html:15
+msgid "casted votes"
+msgstr "投票"
+
+#: forum/skins/default/templates/users/tabs.html:18
+msgid "questions that user selected as his/her favorite"
+msgstr "用户收藏的问题"
+
+#: forum/skins/default/templates/users/tabs.html:19
+msgid "favorites"
+msgstr "收藏"
+
+#: forum/skins/default/templates/users/tabs.html:22
+msgid "email subscription settings"
+msgstr ""
+
+#: forum/skins/default/templates/users/tabs.html:23
+#, fuzzy
+msgid "subscriptions"
+msgstr "问题"
+
+#: forum/skins/default/templates/users/users.html:6
+#: forum/skins/default/templates/users/users.html:24
+msgid "Users"
+msgstr "用户列表"
+
+#: forum/skins/default/templates/users/users.html:27
+msgid "recent"
+msgstr "最新加入"
+
+#: forum/skins/default/templates/users/users.html:28
+msgid "oldest"
+msgstr "最先加入"
+
+#: forum/skins/default/templates/users/users.html:29
+msgid "by username"
+msgstr "用户名"
+
+#: forum/skins/default/templates/users/users.html:35
+#, fuzzy, python-format
+msgid "users matching query %(suser)s:"
+msgstr ""
+"匹配查询 '<span class=\"darkred\"><strong>%s</strong></span>' 的所有用户名:"
+
+#: forum/skins/default/templates/users/users.html:39
+msgid "Nothing found."
+msgstr "没有找到相关数据。"
 
-#: templates/reopen.html:19
-msgid "Open the previously closed question"
-msgstr "你将打开这个已经被关闭的问题"
+#: forum/templatetags/extra_tags.py:168 forum/templatetags/extra_tags.py:195
+#, fuzzy
+msgid "reputation points"
+msgstr "积分"
 
-#: templates/reopen.html:22
+#: forum/templatetags/extra_tags.py:248
 #, fuzzy
-msgid "The question was closed for the following reason "
-msgstr "问题曾以"
+msgid "2 days ago"
+msgstr "于%s<font class=\"darkred\">关闭</font>"
 
-#: templates/reopen.html:22
-msgid "reason - leave blank in english"
-msgstr "的原因被"
+#: forum/templatetags/extra_tags.py:250
+msgid "yesterday"
+msgstr ""
+
+#: forum/templatetags/extra_tags.py:252
+#, python-format
+msgid "%(hr)d hour ago"
+msgid_plural "%(hr)d hours ago"
+msgstr[0] ""
+msgstr[1] ""
 
-#: templates/reopen.html:22
+#: forum/templatetags/extra_tags.py:254
+#, python-format
+msgid "%(min)d min ago"
+msgid_plural "%(min)d mins ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/templatetags/node_tags.py:58
+msgid "permanent link"
+msgstr "永久链接"
+
+#: forum/templatetags/node_tags.py:58
+msgid "answer permanent link"
+msgstr "该回答的链接地址"
+
+#: forum/templatetags/node_tags.py:64
 #, fuzzy
-msgid "on "
-msgstr ""
+msgid "retag"
+msgstr "更新了标签"
 
-#: templates/reopen.html:22
-msgid "date closed"
+#: forum/templatetags/node_tags.py:68
+msgid "reopen"
+msgstr "打开"
+
+#: forum/templatetags/node_tags.py:70
+msgid "close"
 msgstr "关闭"
 
-#: templates/reopen.html:29
+#: forum/templatetags/node_tags.py:73 forum/views/commands.py:124
+#: forum/views/commands.py:136
+msgid "flag"
+msgstr ""
+
+#: forum/templatetags/node_tags.py:79
+msgid ""
+"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+msgstr "检举该帖为垃“水帖”(含广告、人身攻击、恶意言论等)"
+
+#: forum/templatetags/node_tags.py:82
+msgid "delete"
+msgstr "删除"
+
+#: forum/templatetags/question_list_tags.py:57
 #, fuzzy
-msgid "Reopen this question"
-msgstr "确定打开这个问题"
+msgid "<strong>Newest</strong> questions are shown first. "
+msgstr "回复最多的问题将显示在最前面。"
 
-# revisions_answer.html
-#: templates/revisions_answer.html:7 templates/revisions_answer.html.py:36
-#: templates/revisions_question.html:8 templates/revisions_question.html:36
-msgid "Revision history"
-msgstr "版本历史"
+#: forum/templatetags/question_list_tags.py:58
+msgid "Questions are sorted by the <strong>time of last update</strong>."
+msgstr "问题按<strong>最后更新时间</strong>显示排序。"
 
-#: templates/tags.html:5 templates/tags.html.py:28
-msgid "Tag list"
-msgstr "标签列表"
+#: forum/templatetags/question_list_tags.py:59
+msgid "Questions sorted by <strong>number of responses</strong>."
+msgstr "问题按<strong>回复数量</strong>显示排序。"
 
-#: templates/tags.html:30
-msgid "sorted alphabetically"
-msgstr "按名称的字母先后顺序排序"
+#: forum/templatetags/question_list_tags.py:60
+msgid "Questions are sorted by the <strong>number of votes</strong>."
+msgstr "问题按<strong>投票数量</strong>显示排序。"
 
-#: templates/tags.html:30
-msgid "by name"
-msgstr "按名称排序"
+#: forum/templatetags/user_tags.py:58 forum/views/readers.py:293
+#, python-format
+msgid "Revision n. %(rev_number)d"
+msgstr ""
 
-#: templates/tags.html:31
-msgid "sorted by frequency of tag use"
-msgstr "按标签被使用的次数排序"
+#: forum/utils/forms.py:32
+#, fuzzy
+msgid "this field is required"
+msgstr " 标签不能为空。"
+
+#: forum/utils/forms.py:47
+msgid "choose a username"
+msgstr "选择一个用户名"
 
-#: templates/tags.html:31
+#: forum/utils/forms.py:52
 #, fuzzy
-msgid "by popularity"
-msgstr "按流行程度排序"
+msgid "user name is required"
+msgstr " 标签不能为空。"
 
-#: templates/tags.html:37
-msgid "All tags matching query"
-msgstr "匹配查询"
+#: forum/utils/forms.py:53
+#, fuzzy
+msgid "sorry, this name is taken, please choose another"
+msgstr "对不起,您不能注册该用户名,请换一个试试"
 
-#: templates/tags.html:37
-msgid "all tags - make this empty in english"
-msgstr "的所有标签"
+#: forum/utils/forms.py:54
+#, fuzzy
+msgid "sorry, this name is not allowed, please choose another"
+msgstr "对不起,您不能注册该用户名,请换一个试试"
+
+#: forum/utils/forms.py:55
+msgid "sorry, there is no user with this name"
+msgstr ""
+
+#: forum/utils/forms.py:56
+msgid "sorry, we have a serious error - user name is taken by several users"
+msgstr ""
+
+#: forum/utils/forms.py:57
+msgid "user name can only consist of letters, empty space and underscore"
+msgstr ""
+
+#: forum/utils/forms.py:105
+msgid "your email address"
+msgstr "您的电子邮件地址"
 
-#: templates/tags.html:40
+#: forum/utils/forms.py:106
 #, fuzzy
-msgid "Nothing found"
-msgstr "没有找到相关数据。"
+msgid "email address is required"
+msgstr " 标签不能为空。"
 
-#: templates/unanswered.html:7 templates/unanswered.html.py:18
-msgid "Unanswered questions"
-msgstr "没有回答的问题"
+#: forum/utils/forms.py:108
+#, fuzzy
+msgid "this email is already used by someone else, please choose another"
+msgstr "该电子邮件已被注册,请选择另一个再试。"
 
-#: templates/unanswered.html:20
-msgid "most recently asked questions"
-msgstr "最新加入系统的问题"
+#: forum/utils/forms.py:133
+msgid "choose password"
+msgstr "密码"
+
+#: forum/utils/forms.py:134
+#, fuzzy
+msgid "password is required"
+msgstr " 标签不能为空。"
+
+#: forum/utils/forms.py:137
+msgid "retype password"
+msgstr "确认密码"
+
+#: forum/utils/forms.py:138
+#, fuzzy
+msgid "please, retype your password"
+msgstr "确认密码"
+
+#: forum/utils/forms.py:139
+msgid "sorry, entered passwords did not match, please try again"
+msgstr ""
 
-#: templates/unanswered.html:97
+#: forum/views/admin.py:47
 #, python-format
-msgid "have %(num_q)s unanswered questions"
+msgid "'%s' settings saved succesfully"
 msgstr ""
-"您正在浏览所有<br><div class=\"questions-count\">%(num_q)s</div>个<p>问题按 "
-"<strong>问题创建时间</strong> 排序。最新加入的问题将显示在最前面。</p>"
 
-# in unanswered.html and somewhere else
-#: templates/unanswered.html:99
-msgid "Have a total of"
-msgstr "您正在浏览所有"
+#: forum/views/admin.py:141
+msgid "Bootstrap mode enabled"
+msgstr ""
 
-#: templates/user_edit.html:6
-msgid "Edit user profile"
-msgstr "修改个人资料"
+#: forum/views/admin.py:155
+msgid "All values reverted to defaults"
+msgstr ""
 
-#: templates/user_edit.html:19
-msgid "edit profile"
-msgstr "修改资料"
+#: forum/views/admin.py:171
+msgid "All values recalculated"
+msgstr ""
 
-#: templates/user_edit.html:31
-msgid "image associated with your email address"
+#: forum/views/auth.py:103 forum/views/auth.py:112
+msgid ""
+"Sorry, these login credentials belong to anoother user. Plese terminate your "
+"current session and try again."
+msgstr ""
+
+#: forum/views/auth.py:105
+msgid "You are already logged in with that user."
+msgstr ""
+
+#: forum/views/auth.py:110
+msgid "These login credentials are already associated with your account."
+msgstr ""
+
+#: forum/views/auth.py:116
+msgid "The new credentials are now associated with your account"
+msgstr ""
+
+#: forum/views/auth.py:157
+msgid ""
+"Oops, something went wrong in the middle of this process. Please try again."
+msgstr ""
+
+#: forum/views/auth.py:219
+msgid "Temporary login link"
+msgstr ""
+
+#: forum/views/auth.py:224
+#, fuzzy
+msgid "An email has been sent with your temporary login key"
 msgstr "和您的邮件地址是绑定的"
 
-#: templates/user_edit.html:31
-msgid "avatar"
-msgstr "修改头像"
+#: forum/views/auth.py:239
+msgid ""
+"You are logged in with a temporary access key, please take the time to fix "
+"your issue with authentication."
+msgstr ""
 
-#: templates/user_edit.html:36 templates/user_info.html:31
-msgid "Registered user"
-msgstr "注册用户"
+#: forum/views/auth.py:245
+msgid "Email Validation"
+msgstr ""
+
+#: forum/views/auth.py:256
+msgid "Thank you, your email is now validated."
+msgstr ""
+
+#: forum/views/auth.py:280
+#, fuzzy
+msgid "Your password was changed"
+msgstr "密码"
+
+#: forum/views/auth.py:282
+#, fuzzy
+msgid "New password set"
+msgstr "密码"
+
+#: forum/views/auth.py:315
+#, python-format
+msgid "You removed the association with %s"
+msgstr ""
+
+#: forum/views/auth.py:353
+#, python-format
+msgid "Welcome back %s, you are now logged in"
+msgstr ""
+
+#: forum/views/commands.py:20
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough reputation points to %(action)s."
+"<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:29
+#, python-format
+msgid ""
+"\n"
+"            Sorry but you cannot %(action)s your own post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:38
+#, python-format
+msgid ""
+"\n"
+"            Sorry but anonymous users cannot %(action)s.<br />\n"
+"            Please login or create an account <a href'%(signin_url)s'>here</"
+"a>.\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:47
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you don't have enough %(action)s left for today..<br /"
+">\n"
+"            The limit is %(limit)s per day..<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:57
+#, python-format
+msgid ""
+"\n"
+"            Sorry, but you cannot %(action)s twice the same post.<br />\n"
+"            Please check the <a href'%(faq_url)s'>faq</a>\n"
+"            "
+msgstr ""
+
+#: forum/views/commands.py:71 forum/views/commands.py:74
+#: forum/views/commands.py:111
+#, fuzzy
+msgid "vote"
+msgid_plural "votes"
+msgstr[0] "票"
+msgstr[1] "票"
+
+#: forum/views/commands.py:89
+#, python-format
+msgid ""
+"Sorry but you cannot cancel a vote after %(ndays)d %(tdays)s from the "
+"original vote"
+msgstr ""
+
+#: forum/views/commands.py:90
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forum/views/commands.py:110
+#, python-format
+msgid "You have %(nvotes)s %(tvotes)s left today."
+msgstr ""
+
+#: forum/views/commands.py:121 forum/views/commands.py:127
+msgid "flag posts"
+msgstr ""
+
+#: forum/views/commands.py:132
+#, fuzzy
+msgid "flags"
+msgstr "标签"
+
+#: forum/views/commands.py:149 forum/views/commands.py:155
+#, fuzzy
+msgid "like comments"
+msgstr "评论"
+
+#: forum/views/commands.py:152
+#, fuzzy
+msgid "like"
+msgstr "链接"
+
+#: forum/views/commands.py:179 forum/views/commands.py:182
+#, fuzzy
+msgid "delete comments"
+msgstr "删除任何一个评论"
+
+#: forum/views/commands.py:197
+#, fuzzy
+msgid "mark a question as favorite"
+msgstr "这个问题被"
+
+#: forum/views/commands.py:221 forum/views/commands.py:233
+#, fuzzy
+msgid "comment"
+msgstr "评论"
+
+#: forum/views/commands.py:224 forum/views/commands.py:351
+msgid "Invalid request"
+msgstr ""
+
+# todo - check if it's indeed plural
+#: forum/views/commands.py:230
+#, fuzzy
+msgid "edit comments"
+msgstr "添加评论"
+
+#: forum/views/commands.py:240
+msgid "Comment is empty"
+msgstr ""
+
+#: forum/views/commands.py:265
+#, fuzzy
+msgid "accept answers"
+msgstr "最先回答"
+
+#: forum/views/commands.py:271
+msgid "Sorry but only the question author can accept an answer"
+msgstr ""
+
+#: forum/views/commands.py:295 forum/views/commands.py:298
+#, fuzzy
+msgid "delete posts"
+msgstr "删除"
+
+#: forum/views/meta.py:43
+#, python-format
+msgid "Feedback message from %(site_name)s"
+msgstr ""
+
+#: forum/views/meta.py:46
+msgid "Thanks for the feedback!"
+msgstr ""
+
+#: forum/views/meta.py:53
+msgid "We look forward to hearing your feedback! Please, give it next time :)"
+msgstr ""
+
+#: forum/views/readers.py:64
+#, fuzzy
+msgid "Open questions without an accepted answer"
+msgstr "您正在浏览的问题含有以下标签"
+
+#: forum/views/readers.py:73
+#, python-format
+msgid "Questions tagged <span class=\"tag\">%(tag)s</span>"
+msgstr ""
+
+#: forum/views/readers.py:131
+#, python-format
+msgid "questions matching '%(keywords)s'"
+msgstr ""
+
+#: forum/views/users.py:152
+#, fuzzy
+msgid "user profile"
+msgstr "用户概览"
+
+#: forum/views/users.py:152
+#, fuzzy
+msgid "user profile overview"
+msgstr "用户概览"
+
+#: forum/views/users.py:186
+#, fuzzy
+msgid "recent user activity"
+msgstr "最近活动"
 
-#: templates/user_edit.html:82
-msgid "Update"
-msgstr "更新"
+#: forum/views/users.py:186
+#, fuzzy
+msgid "profile - recent activity"
+msgstr "最近活动"
 
-#: templates/user_info.html:34
-msgid "update profile"
-msgstr "æ\9b´æ\96°æ\88\91ç\9a\84资料"
+#: forum/views/users.py:196
+msgid "profile - votes"
+msgstr "æ\8a\95票 - ç\94¨æ\88·资料"
 
-#: templates/user_info.html:40
-msgid "real name"
-msgstr "姓名"
+#: forum/views/users.py:203
+msgid "user reputation in the community"
+msgstr "用户社区积分"
 
-#: templates/user_info.html:45
-msgid "member for"
-msgstr "已加入"
+#: forum/views/users.py:203
+msgid "profile - user reputation"
+msgstr "积分 - 用户资料"
 
-#: templates/user_info.html:50
-msgid "last seen"
-msgstr "上次活动时间"
+#: forum/views/users.py:214
+#, fuzzy
+msgid "favorite questions"
+msgstr "收藏"
 
-#: templates/user_info.html:56
-msgid "user website"
-msgstr "个人ç½\91ç«\99"
+#: forum/views/users.py:214
+msgid "profile - favorite questions"
+msgstr "æ\94¶è\97\8f - ç\94¨æ\88·èµ\84æ\96\99"
 
-#: templates/user_info.html:62
-msgid "location"
-msgstr "城市"
+#: forum/views/users.py:220
+#, fuzzy
+msgid "subscription settings"
+msgstr "用户参数的设置"
 
-# user_info.html 
-#: templates/user_info.html:69
-msgid "age"
-msgstr "年龄"
+#: forum/views/users.py:220
+#, fuzzy
+msgid "profile - subscriptions"
+msgstr "积分 - 用户资料"
 
-#: templates/user_info.html:70
-msgid "age unit"
-msgstr ""
+#: forum/views/users.py:230
+msgid "Notifications are now enabled"
+msgstr ""
 
-#: templates/user_info.html:75
-msgid "todays unused votes"
-msgstr "今日剩余投票数"
+#: forum/views/users.py:232
+msgid "Notifications are now disabled"
+msgstr ""
 
-#: templates/user_info.html:76
-msgid "votes left"
-msgstr ""
+#: forum/views/users.py:239
+msgid "New subscription settings are now saved"
+msgstr ""
 
-#: templates/user_stats.html:15
-msgid "User questions"
-msgstr "个é\97®é¢\98"
+#: forum/views/writers.py:68
+msgid "uploading images is limited to users with >60 reputation points"
+msgstr "ä¸\8aä¼ å\9b¾ç\89\87å\8fªé\99\90äº\8e积å\88\86+60以ä¸\8a注å\86\8cç\94¨æ\88·!"
 
-#: templates/user_stats.html:37
-#, fuzzy, python-format
-msgid "the answer has been voted for %(vote_count)s times"
-msgstr "该回答总共有%d个投票"
+# todo take these out of settings
+#: forum/views/writers.py:70
+msgid "allowed file types are 'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'"
+msgstr "只允许上传'jpg', 'jpeg', 'gif', 'bmp', 'png', 'tiff'类型的文件!"
 
-#: templates/user_stats.html:37
-msgid "this answer has been selected as correct"
-msgstr "该回答已被设为最佳答案"
+#: forum/views/writers.py:72
+#, fuzzy, python-format
+msgid "maximum upload file size is %sM"
+msgstr "只允许上传%sK大小的文件!"
 
-#: templates/user_stats.html:43
+#: forum/views/writers.py:74
 #, fuzzy, python-format
-msgid "the answer has been commented %(answered_question.comment_count)s times"
-msgstr "该回答有%d条评论"
+msgid ""
+"Error uploading file. Please contact the site administrator. Thank you. %s"
+msgstr "在文件上传过程中产生了错误,请联系管理员,谢谢^_^"
 
-#: templates/user_stats.html:56
-msgid "votes total"
-msgstr "个投票"
+#: forum/views/writers.py:85
+#, fuzzy
+msgid "Initial revision"
+msgstr "初始版本"
 
-#: templates/user_stats.html:65
-msgid "user has voted up this many times"
-msgstr "该用户投的赞成票总数"
+#: forum/views/writers.py:143
+#, fuzzy
+msgid "Retag"
+msgstr "标签"
 
-#: templates/user_stats.html:70
+#: forum_modules/books/urls.py:7 forum_modules/books/urls.py:8
+#: forum_modules/books/urls.py:9
 #, fuzzy
-msgid "user voted down this many times"
-msgstr "用户投的反对票总数"
+msgid "books/"
+msgstr "读书"
 
-#: templates/user_stats.html:84
-msgid "Tags"
-msgstr "个标签"
+#: forum_modules/default_badges/badges.py:17
+#: forum_modules/default_badges/badges.py:24
+#: forum_modules/default_badges/badges.py:31
+#, fuzzy, python-format
+msgid "Asked a question with %s views"
+msgstr "我要提问"
 
-msgid "Tags help us keep Questions organized"
-msgstr "CNProg用标签来分类系统的信息"
+#: forum_modules/default_badges/badges.py:39
+#: forum_modules/default_badges/badges.py:53
+#: forum_modules/default_badges/badges.py:67
+#, fuzzy, python-format
+msgid "Answer voted up %s times"
+msgstr "该用户投的赞成票总数"
 
-#: templates/user_stats.html:94
+#: forum_modules/default_badges/badges.py:46
+#: forum_modules/default_badges/badges.py:60
+#: forum_modules/default_badges/badges.py:74
 #, fuzzy, python-format
-msgid "see other questions tagged '%(tag)s' "
-msgstr "查看有关'%s'的问题"
+msgid "Question voted up %s times"
+msgstr "该用户投的赞成票总数"
 
-#: templates/user_tabs.html:7
-msgid "User profile"
-msgstr "用户概览"
+#: forum_modules/default_badges/badges.py:82
+#: forum_modules/default_badges/badges.py:89
+#, fuzzy, python-format
+msgid "Question favorited by %s users"
+msgstr "您正在浏览的问题含有以下标签"
 
-#: templates/user_tabs.html:16
-msgid "graph of user reputation"
-msgstr "用户的社区积分历史"
+#: forum_modules/default_badges/badges.py:97
+#, python-format
+msgid "Deleted own post with score of %s or higher"
+msgstr ""
 
-#: templates/user_tabs.html:17
-msgid "reputation history"
-msgstr "积分"
+#: forum_modules/default_badges/badges.py:108
+#, python-format
+msgid "Deleted own post with score of %s or lower"
+msgstr ""
 
-#: templates/user_tabs.html:24
-msgid "favorites"
-msgstr "收藏"
+#: forum_modules/default_badges/badges.py:120
+msgid "First flagged post"
+msgstr ""
 
-#: templates/user_tabs.html:29
-msgid "settings"
-msgstr "设置"
+#: forum_modules/default_badges/badges.py:127
+#, fuzzy
+msgid "First down vote"
+msgstr "投反对票"
 
-#: templates/user_votes.html:14
-msgid "upvote"
+#: forum_modules/default_badges/badges.py:134
+msgid "First retag"
+msgstr ""
+
+#: forum_modules/default_badges/badges.py:141
+#, fuzzy
+msgid "First up vote"
 msgstr "投赞成票"
 
-#: templates/user_votes.html:16
-msgid "downvote"
-msgstr "投反对票"
+#: forum_modules/default_badges/badges.py:148
+msgid "First edit"
+msgstr ""
 
-#: templates/users.html:5 templates/users.html.py:23
-msgid "Users"
-msgstr "用户列表"
+#: forum_modules/default_badges/badges.py:155
+#, fuzzy
+msgid "First accepted answer on your own question"
+msgstr "不是一个可以回答的“问题”"
 
-#: templates/users.html:26
-msgid "recent"
-msgstr "最新加入"
+#: forum_modules/default_badges/badges.py:162
+#, fuzzy
+msgid "Completed all user profile fields"
+msgstr "完成个人所有资料"
 
-#: templates/users.html:27
-msgid "oldest"
-msgstr "最先加入"
+#: forum_modules/default_badges/badges.py:169
+msgid "First rollback"
+msgstr ""
 
-#: templates/users.html:28
-msgid "by username"
-msgstr "用户名"
+#: forum_modules/default_badges/badges.py:177
+#, python-format
+msgid "Voted %s times"
+msgstr ""
 
-#: templates/users.html:34
+#: forum_modules/default_badges/badges.py:184
 #, fuzzy, python-format
-msgid "users matching query %(suser)s:"
+msgid "Left %s comments"
+msgstr "评论"
+
+#: forum_modules/default_badges/badges.py:192
+#, python-format
+msgid "Answered your own question with at least %s up votes"
 msgstr ""
-"匹配查询 '<span class=\"darkred\"><strong>%s</strong></span>' 的所有用户名:"
 
-#: templates/users.html:38
-msgid "Nothing found."
-msgstr "没有找到相关数据。"
+#: forum_modules/default_badges/badges.py:205
+msgid "Strunk & White"
+msgstr ""
 
-#: templates/users_questions.html:11
-#, fuzzy
-msgid "this questions was selected as favorite"
-msgstr "这个问题被"
+#: forum_modules/default_badges/badges.py:206
+#, fuzzy, python-format
+msgid "Edited %s entries"
+msgstr "修改回答"
 
-#: templates/users_questions.html:33
-#, fuzzy
-msgid "this answer has been accepted to be correct"
-msgstr "有答案已被接受为正确答案"
+#: forum_modules/default_badges/badges.py:217
+msgid "Asked first question with at least one up vote"
+msgstr ""
 
-#: templates/authopenid/changeemail.html:9
-msgid ""
-"This is where you can change the email address associated with your account. "
-"Please keep this email address up to date so we can send you a password-"
-"reset email if you request one."
+#: forum_modules/default_badges/badges.py:228
+msgid "Answered first question with at least one up vote"
 msgstr ""
 
-#: templates/authopenid/changeemail.html:11
-#: templates/authopenid/changeopenid.html:13
-#: templates/authopenid/changepw.html:18 templates/authopenid/delete.html:14
-#: templates/authopenid/delete.html:24
-msgid "Please correct errors below:"
+#: forum_modules/default_badges/badges.py:260
+#, python-format
+msgid "First answer was accepted with at least %s up votes"
 msgstr ""
 
-#: templates/authopenid/changeemail.html:28
-msgid "Email"
+#: forum_modules/default_badges/badges.py:271
+#, fuzzy, python-format
+msgid "Accepted answer and voted up %s times"
+msgstr "该回答总共有%d个投票"
+
+#: forum_modules/default_badges/badges.py:282
+#, python-format
+msgid ""
+"Answered a question more than %(dif_days)s days later with at least %"
+"(up_votes)s votes"
 msgstr ""
 
-#: templates/authopenid/changeemail.html:29
-#: templates/authopenid/signin.html:60
-msgid "Password"
-msgstr "密码"
+#: forum_modules/default_badges/badges.py:295
+#, fuzzy, python-format
+msgid "Created a tag used by %s questions"
+msgstr "最新问题"
 
-#: templates/authopenid/changeemail.html:31
-msgid "Change email"
-msgstr "更换电子邮件"
+#: 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 ""
 
-#: templates/authopenid/changeopenid.html:7
+#: forum_modules/default_badges/settings.py:12
 #, fuzzy
-msgid "Account: change OpenID URL"
-msgstr "更换OpenID地址"
+msgid "Notable Question views"
+msgstr "全部问题"
 
-#: templates/authopenid/changeopenid.html:11
+#: forum_modules/default_badges/settings.py:13
 msgid ""
-"This is where you can change your OpenID URL. Make sure you remember it!"
+"\n"
+"Number of question views required to award a Notable Question badge to the "
+"question author\n"
 msgstr ""
 
-#: templates/authopenid/changeopenid.html:28
-msgid "OpenID URL:"
-msgstr ""
+#: forum_modules/default_badges/settings.py:18
+#, fuzzy
+msgid "Famous Question views"
+msgstr "问题列表"
 
-#: templates/authopenid/changeopenid.html:29
-msgid "Change OpenID"
-msgstr "更换OpenID地址"
+#: 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 ""
 
-#: templates/authopenid/changepw.html:13
+#: forum_modules/default_badges/settings.py:24
 #, fuzzy
-msgid "Account: change password"
-msgstr "修改密码"
+msgid "Nice Answer up votes"
+msgstr "当前总票数"
 
-#: templates/authopenid/changepw.html:16
-msgid "This is where you can change your password. Make sure you remember it!"
+#: 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 ""
 
-#: templates/authopenid/changepw.html:26
+#: forum_modules/default_badges/settings.py:30
 #, fuzzy
-msgid "Current password"
-msgstr "确认密码"
+msgid "Nice Question up votes"
+msgstr "您正在浏览的问题含有以下标签"
+
+#: 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 ""
 
-#: templates/authopenid/changepw.html:27
+#: forum_modules/default_badges/settings.py:36
 #, fuzzy
-msgid "New password"
-msgstr "密码"
+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 ""
 
-#: templates/authopenid/changepw.html:28
+#: forum_modules/default_badges/settings.py:42
 #, fuzzy
-msgid "New password again"
-msgstr "发送新密码"
+msgid "Good Question up votes"
+msgstr "您正在浏览的问题含有以下标签"
 
-#: templates/authopenid/changepw.html:29 templates/authopenid/settings.html:28
-msgid "Change password"
-msgstr "修改密码"
+#: 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 ""
 
-#: templates/authopenid/complete.html:4
-msgid "Connect your OpenID with this site"
-msgstr "绑定OpenID"
+#: forum_modules/default_badges/settings.py:48
+#, fuzzy
+msgid "Great Answer up votes"
+msgstr "当前总票数"
 
-#: templates/authopenid/complete.html:7
-msgid "Connect your OpenID with your account on this site"
-msgstr "绑定OpenID帐号"
+#: 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 ""
 
-#: templates/authopenid/complete.html:10
+#: forum_modules/default_badges/settings.py:54
 #, fuzzy
-msgid "Your OpenID is accepted. Please complete this to finish registration."
-msgstr "您的OpenID帐号已经验证通过! 请完成最后一步 - 绑定OpenID到您的帐号。"
+msgid "Great Question up votes"
+msgstr "给任何问题整理标签"
 
-# todo: review this message may be confusing user
-#: templates/authopenid/complete.html:11
-msgid "This account already exists, please use another."
-msgstr "输入您的新帐号或者指定已经存在的帐号。"
+#: 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 ""
 
-#: templates/authopenid/complete.html:16 templates/authopenid/complete.html:29
-#: templates/authopenid/signin.html:43
-msgid "Sorry, looks like we have some errors:"
-msgstr "请注意以下错误:"
+#: forum_modules/default_badges/settings.py:60
+#, fuzzy
+msgid "Favorite Question favorite count"
+msgstr "收藏"
 
-#: templates/authopenid/complete.html:45
-msgid "New account"
-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 ""
 
-#: templates/authopenid/complete.html:46
-msgid "User name (<i>will be shown to others, cannot be modified</i>)"
-msgstr "用户名(<i>在社区显示友好名称,不可更改</i>)"
+#: forum_modules/default_badges/settings.py:66
+msgid "Stellar Question favorite count"
+msgstr ""
 
-#: templates/authopenid/complete.html:47
-msgid "Email (<i>not shared with anyone</i>)"
-msgstr "电子邮件(<i>用于头像显示服务</i>)"
+#: 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 ""
 
-#: templates/authopenid/complete.html:48
-msgid "create account"
-msgstr "创建帐号"
+#: forum_modules/default_badges/settings.py:72
+msgid "Disciplined minimum score"
+msgstr ""
 
-#: templates/authopenid/complete.html:56
-msgid "Existing account"
-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 ""
 
-#: templates/authopenid/complete.html:57
-msgid "user name"
-msgstr "用户名"
+#: forum_modules/default_badges/settings.py:78
+msgid "Peer Pressure maximum score"
+msgstr ""
 
-#: templates/authopenid/complete.html:58
-msgid "password"
-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 ""
 
-#: templates/authopenid/complete.html:61
-msgid "Register"
-msgstr "确认"
+#: forum_modules/default_badges/settings.py:84
+msgid "Civic Duty votes"
+msgstr ""
 
-#: templates/authopenid/complete.html:62 templates/authopenid/signin.html:62
-msgid "Forgot your password?"
-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 ""
 
-#: templates/authopenid/delete.html:8
+#: forum_modules/default_badges/settings.py:90
 #, fuzzy
-msgid "Account: delete account"
-msgstr "å\88 é\99¤å¸\90å\8f·"
+msgid "Pundit number of comments"
+msgstr "å½\93å\89\8dæ\80»ç¥¨æ\95°"
 
-#: templates/authopenid/delete.html:12
+#: forum_modules/default_badges/settings.py:91
 msgid ""
-"Note: After deleting your account, anyone will be able to register this "
-"username."
+"\n"
+"Number of comments an user needs to post to be awarded the Pundit badge.\n"
 msgstr ""
 
-#: templates/authopenid/delete.html:16
-msgid "Check confirm box, if you want delete your account."
+#: forum_modules/default_badges/settings.py:96
+msgid "Self Learner up votes"
 msgstr ""
 
-#: templates/authopenid/delete.html:19
-#, fuzzy
-msgid "Password:"
-msgstr "密码"
-
-#: templates/authopenid/delete.html:31
-msgid "I am sure I want to delete my account."
+#: 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 ""
 
-#: templates/authopenid/delete.html:32
-msgid "Password/OpenID URL"
+#: forum_modules/default_badges/settings.py:102
+msgid "Strunk and White updates"
 msgstr ""
 
-#: templates/authopenid/delete.html:32
-msgid "(required for your security)"
+#: 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 ""
 
-#: templates/authopenid/delete.html:34
-#, fuzzy
-msgid "Delete account permanently"
-msgstr "删除帐号"
+#: forum_modules/default_badges/settings.py:108
+msgid "Enlightened up votes"
+msgstr ""
 
-#: templates/authopenid/sendpw.html:3 templates/authopenid/sendpw.html.py:7
-msgid "Send new password"
-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 ""
 
-#: templates/authopenid/sendpw.html:11
-msgid "Lost your password? No problem - here you can reset it."
-msgstr "丢失了您的密码? 你可以在这里重设密码。"
+#: forum_modules/default_badges/settings.py:114
+#, fuzzy
+msgid "Guru up votes"
+msgstr "票数"
 
-#: templates/authopenid/sendpw.html:12
+#: forum_modules/default_badges/settings.py:115
 msgid ""
-"Please enter your username below and new password will be sent to your "
-"registered e-mail"
-msgstr "请输入用户名,新的密码会发送到你注册时候填写的电子邮件。"
-
-#: templates/authopenid/sendpw.html:29
-msgid "Reset password"
-msgstr "重设密码"
+"\n"
+"Number of up votes an accepted answer needs to have for the author to be "
+"awarded the Guru badge.\n"
+msgstr ""
 
-#: templates/authopenid/sendpw.html:29
-msgid "return to login"
-msgstr "返回登录"
+#: forum_modules/default_badges/settings.py:120
+#, fuzzy
+msgid "Necromancer up votes"
+msgstr "撤销投票"
 
-# todo - check translation or see if it's indeed true
-#: templates/authopenid/sendpw.html:32
+#: forum_modules/default_badges/settings.py:121
 msgid ""
-"Note: your new password will be activated only after you click the "
-"activation link in the email message"
-msgstr "注意: 新的密码只有您在激活邮件中的链接后才会被激活。"
+"\n"
+"Number of up votes an answer needs to have for the author to be awarded the "
+"Necromancer badge.\n"
+msgstr ""
 
-#: templates/authopenid/settings.html:29
-msgid "Give your  account a new password."
+#: forum_modules/default_badges/settings.py:126
+msgid "Necromancer difference in days"
 msgstr ""
 
-#: templates/authopenid/settings.html:30
-msgid "Change email "
-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 ""
 
-#: templates/authopenid/settings.html:31
-msgid "Add or update the email address associated with your account."
+#: forum_modules/default_badges/settings.py:132
+msgid "Taxonomist usage count"
 msgstr ""
 
-#: templates/authopenid/settings.html:34
-msgid "Change openid associated to your account"
+#: 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 ""
 
-#: templates/authopenid/settings.html:37
-msgid "Delete account"
-msgstr "删除帐号"
+#: forum_modules/facebookauth/authentication.py:31
+msgid "Sorry, your Facebook session has expired, please try again"
+msgstr ""
 
-#: templates/authopenid/settings.html:38
-msgid "Erase your username and all your data from website"
+#: forum_modules/facebookauth/authentication.py:33
+msgid ""
+"The authentication with Facebook connect failed due to an invalid signature"
 msgstr ""
 
-#: templates/authopenid/signin.html:3 templates/authopenid/signin.html:16
-msgid "User login"
-msgstr "用户登录"
+#: forum_modules/facebookauth/authentication.py:35
+msgid ""
+"The authentication with Facebook connect failed, cannot find authentication "
+"tokens"
+msgstr ""
 
-#: templates/authopenid/signin.html:21
-msgid "we support two login modes"
+#: forum_modules/localauth/forms.py:75
+msgid "Please enter valid username and password (both are case-sensitive)."
 msgstr ""
-"CNProg支持<b>两种</b>登录模式。您可以使用帐号、密码登录,或者使用OpenID登录。"
 
-#: templates/authopenid/signin.html:26 templates/authopenid/signup.html:49
-msgid "Login with your OpenID"
-msgstr "使用OpenID登录"
+#: forum_modules/localauth/forms.py:79
+msgid "This account is inactive."
+msgstr ""
 
-#: templates/authopenid/signin.html:28
-msgid "select openid provider"
-msgstr "1)请选择您的帐号类:"
+#: forum_modules/localauth/forms.py:81
+#, fuzzy
+msgid "Login failed."
+msgstr "用户名"
 
-#: templates/authopenid/signin.html:32
-msgid "verify openid link and login"
-msgstr "2)型并完成正确的OpenID地址(如:替换“{username}”为您的对应帐号):"
+#: forum_modules/localauth/forms.py:85
+msgid "This user is not a valid user"
+msgstr ""
 
-#: templates/authopenid/signin.html:58
-msgid "Use login name and password"
+#: forum_modules/localauth/forms.py:88
+#, fuzzy
+msgid "Please enter username and password"
 msgstr "使用帐号密码登录"
 
-#: templates/authopenid/signin.html:59
-msgid "Login name"
-msgstr "用户名"
-
-#: templates/authopenid/signin.html:63
+#: forum_modules/localauth/forms.py:90
 #, fuzzy
-msgid "Create new acccount"
-msgstr "注册新帐号"
+msgid "Please enter your password"
+msgstr "重设密码"
 
-#: templates/authopenid/signin.html:72
-msgid "Why use OpenID?"
-msgstr "为什么需要OpenID登录?"
+#: forum_modules/localauth/forms.py:92
+#, fuzzy
+msgid "Please enter user name"
+msgstr "请帮助我们回答"
 
-#: templates/authopenid/signin.html:76
-msgid "with openid it is easier"
+#: forum_modules/localauth/urls.py:7
+msgid "local/"
 msgstr ""
-"构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所有"
-"功能"
 
-#: templates/authopenid/signin.html:79
-msgid "reuse openid"
-msgstr "用同一个帐号可登录互联网所有激活OpenID的网站"
+#: forum_modules/localauth/views.py:33
+#, fuzzy
+msgid "A validation email has been sent to your email address. "
+msgstr "和您的邮件地址是绑定的"
 
-#: templates/authopenid/signin.html:82
-msgid "openid is widely adopted"
-msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点"
+#: forum_modules/oauthauth/consumer.py:33
+msgid "Error, the oauth token is not on the server"
+msgstr ""
 
-#: templates/authopenid/signin.html:85
-msgid "openid is supported open standard"
-msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持"
+#: forum_modules/oauthauth/consumer.py:38
+msgid "Something went wrong! Auth tokens do not match"
+msgstr ""
 
-#: templates/authopenid/signin.html:89
-msgid "Find out more"
-msgstr "查看更多"
+#: forum_modules/openidauth/consumer.py:40
+msgid "Sorry, but your input is not a valid OpenId"
+msgstr ""
 
-#: templates/authopenid/signin.html:90
-msgid "Get OpenID"
-msgstr "获取OpenID"
+#: forum_modules/openidauth/consumer.py:92
+msgid "The OpenId authentication request was canceled"
+msgstr ""
 
-#: templates/authopenid/signup.html:2 templates/authopenid/signup.html.py:6
-msgid "Signup"
-msgstr "注册帐号"
+#: forum_modules/openidauth/consumer.py:94
+msgid "The OpenId authentication failed: "
+msgstr ""
 
-#: templates/authopenid/signup.html:10
-msgid ""
-"We support two types of user registration: conventional username/password, "
-"and"
-msgstr "我们支持两种注册方式,你可以使用常规的用户名、密码方式注册,或者"
+#: forum_modules/openidauth/consumer.py:96
+msgid "Setup needed"
+msgstr ""
 
-#: templates/authopenid/signup.html:10
-msgid "the OpenID method"
-msgstr "使用OpenID帐号注册"
+#: forum_modules/openidauth/consumer.py:98
+msgid "The OpenId authentication failed with an unknown status: "
+msgstr ""
 
-#: templates/authopenid/signup.html:15
+#: forum_modules/openidauth/templates/openidurl.html:7
 #, fuzzy
-msgid "Sorry, looks like we have some errors"
-msgstr "请注意以下错误:"
-
-#: templates/authopenid/signup.html:33
-msgid "Conventional registration"
-msgstr "请注意以下错误:"
+msgid "Enter your OpenId Url"
+msgstr "使用OpenID注册"
 
-#: templates/authopenid/signup.html:34
-msgid "choose a user name"
-msgstr "选择一个用户名"
+#: forum_modules/project_badges/badges.py:9
+#, python-format
+msgid "Got %s upvotes in a question tagged with \"bug\""
+msgstr ""
 
-#: templates/authopenid/signup.html:40
-msgid "back to login"
-msgstr "返回登录"
+#: forum_modules/recaptcha/formfield.py:20
+msgid "Invalid captcha"
+msgstr ""
 
-#: templates/authopenid/signup.html:46
-msgid "Register with your OpenID"
-msgstr "使用OpenID注册"
+#: forum_modules/sximporter/importer.py:39
+#, python-format
+msgid "Unknown user %(number)d"
+msgstr ""
 
-msgid "meta site keywords, comma separated"
+#: forum_modules/sximporter/urls.py:8
+msgid "sximporter/"
 msgstr ""
-"技术问答社区,中国程序员,编程技术社区,程序员社区,程序员论坛,程序员"
-"wiki,程序员博客"
 
-msgid "what is this website"
+#: forum_modules/sximporter/templates/page.html:7
+msgid "SX Importer"
 msgstr ""
-"CNProg是一个<strong>面向程序员</strong>的可协作编辑的<strong>开放源代码问"
-"答社区</strong>。"
 
-msgid "what can one do on this website"
+#: forum_modules/sximporter/templates/page.html:10
+msgid "Welcome to Stack Exchange dump importer."
 msgstr ""
-"您可以在这里提问各类<strong>程序技术问题</strong> - 问题不分语言和平台。 "
-"同时也希望您对力所能及的问题,给予您的宝贵答案。"
 
-msgid "Goal of this site is..."
-msgstr "CNProg 是为了帮助程序员解决更多问题,更加方便的解决问题。"
+#: forum_modules/sximporter/templates/page.html:16
+msgid "Your user id in stack exchange"
+msgstr ""
 
-msgid "Community gives you awards for your questions, answers and votes."
+#: forum_modules/sximporter/templates/page.html:20
+msgid "Merge users with same user name and email"
 msgstr ""
-"提出问题,给予回答,投出你的票 - CNProg 会针对你在社区的表现,授予你各类奖"
-"牌。"
 
-msgid "please make your answer relevant to this community"
-msgstr "您的问题与编程相关吗?"
+#, fuzzy
+#~ msgid "i-names are not supported"
+#~ msgstr "基本的HTML标签也是支持的"
 
-msgid "book technical Q&A"
-msgstr "图书相关的技术答疑"
+# translation and user name validation are language-specific
+#~ msgid "invalid user name"
+#~ msgstr "用户名只能包含英文字母、数字和下划线"
 
-msgid "blog"
-msgstr "Blog"
+# minimal length of user name may be language specific
+#~ msgid "username too short"
+#~ msgstr "用户名太短,请使用三个或三个以上字符"
 
-msgid "privacy policy"
-msgstr "隐私政策"
+#~ msgid "this name is already in use - please try anoter"
+#~ msgstr "该用户名已被注册,请换一个试试"
 
-msgid "current revision"
-msgstr "当前版本"
+#~ msgid ""
+#~ "This email is already                 registered in our database. Please "
+#~ "choose another."
+#~ msgstr "该电子邮件已被注册,请选择另一个再试。"
 
-msgid "number of votes"
-msgstr "票数"
+#~ msgid "Incorrect username."
+#~ msgstr "选择一个用户名"
 
-msgid "current page"
-msgstr "当前页"
+#, fuzzy
+#~ msgid "signup/"
+#~ msgstr "注册帐号"
 
-msgid "next page"
-msgstr "下一页"
+# todo please check this in chinese
+#, fuzzy
+#~ msgid "Account deleted."
+#~ msgstr "取消"
 
-msgid "page number "
-msgstr "第"
+#, fuzzy
+#~ msgid "Request for new password"
+#~ msgstr "重设密码"
 
-msgid "number - make blank in english"
-msgstr "页"
+#~ msgid "site title"
+#~ msgstr "CNProg.com"
 
-msgid "Change tags"
-msgstr "修改问题标签"
+#~ msgid "site slogan"
+#~ msgstr "程序员问答社区"
 
-# todo: remove magic numbers from this file
-msgid "up to 5 tags, less than 20 characters each"
-msgstr "最多5个标签,每个标签长度小于20个字符。"
+#~ msgid "meta site content"
+#~ msgstr ""
+#~ "中国程序员的编程技术问答社区。我们做专业的、可协作编辑的技术问答社区。"
 
-msgid "Change now"
-msgstr "现在修改"
+#~ msgid ""
+#~ "please use space to separate tags (this enables autocomplete feature)"
+#~ msgstr "多个标签请用空格间隔-最多5个标签。(优先使用自动匹配的英文标签。)"
 
-msgid "uses tags for the classification of questions"
-msgstr "用标签来分类系统的信息"
+#~ msgid "responses"
+#~ msgstr "回应"
 
-msgid "tag editors receive special awards from the community"
-msgstr "修改标签的用户将授予特殊的社区奖牌"
+#~ msgid "profile - responses"
+#~ msgstr "回应 - 用户资料"
 
-msgid "Why use and modify tags?"
-msgstr "为什么我只能修改问题标签?"
+#~ msgid "users favorite questions"
+#~ msgstr "用户收藏的问题"
 
-msgid "Found by tag"
-msgstr "标签问题"
+#~ msgid "preferences"
+#~ msgstr "设置"
 
-msgid "Found by title"
-msgstr "查询结果"
+#~ msgid "profile - user preferences"
+#~ msgstr "设置 - 用户资料"
 
-msgid "most recently updated questions"
-msgstr "最近被更新的问题"
+#, fuzzy
+#~ msgid " ago"
+#~ msgstr "前"
 
-msgid "latest questions info"
-msgstr ""
-"问题按<strong>提问时间</strong>显示排序。新加入的问题将显示在最前面。"
+#~ msgid "Save"
+#~ msgstr "保存"
 
-msgid ""
-"\n"
-"\t\t\thave total %(q_num)s questions tagged %(tagname)s\n"
-"\t\t\t"
-msgid_plural ""
-"\n"
-"\t\t\thave total %(q_num)s questions tagged %(tagname)s\n"
-"\t\t\t"
-msgstr[0] ""
-"\n"
-"您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标记为<span "
-"class=\"tag\">%(tagname)s</span></p>"
-msgstr[1] ""
-"\n"
-"您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标记为<span "
-"class=\"tag\">%(tagname)s</span></p>"
+#~ msgid "learn more about OpenID"
+#~ msgstr "了解更多有关OpenID的信息"
 
-msgid ""
-"\n"
-"\t\t\thave total %(q_num)s questions containing %(searchtitle)s\n"
-"\t\t\t"
-msgid_plural ""
-"\n"
-"\t\t\thave total %(q_num)s questions containing %(searchtitle)s\n"
-"\t\t\t"
-msgstr[0] ""
-"\n"
-"您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标题含有"
-"<span class=\"tag\">%(searchtitle)s</span></p>"
-msgstr[1] ""
-"\n"
-"您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标题含有"
-"<span class=\"tag\">%(searchtitle)s</span></p>"
+#~ msgid "User name"
+#~ msgstr "您的大名"
 
-msgid "number of questions"
-msgstr "个"
+#~ msgid "Email: (won't be shown to anyone)"
+#~ msgstr "电子邮件:(不会公开显示)"
 
-msgid "number of <strong>unanswered</strong> questions"
-msgstr ""
-"个 <span class=\"darkred\"><strong>没有回答的</strong></span> 问题。"
+#~ msgid ""
+#~ "gold badge descriptionGold badge is very rare. To obtain it you have to "
+#~ "show profound knowledge and ability in addition to actively participating "
+#~ "in the community. Gold badge is the highest award in this community."
+#~ msgstr ""
+#~ "金牌是十分罕见的。你不仅要参与社区的提问、回答、投票等活动,而且需要有高深"
+#~ "的知识和能力才能获得。"
 
-msgid "tagged with"
-msgstr "标记为"
+#~ msgid ""
+#~ "silver badge descriptionObtaining silver badge requires significant "
+#~ "patience. If you got one, you've very significantly contributed to this "
+#~ "community"
+#~ msgstr "它是不同寻常的荣誉,只要你付出足够的努力就会得到。"
 
-msgid "whose title contains"
-msgstr "标题含有"
+#~ msgid "Connect with Twitter"
+#~ msgstr "同步Twitter消息"
 
-msgid "number of questions end of sentence"
-msgstr "的问题。"
+#~ msgid "Twitter account name:"
+#~ msgstr "账号:"
 
-msgid "Questions are sorted by the <strong>time of last update</strong>."
-msgstr "问题按<strong>最后更新时间</strong>显示排序。"
+#~ msgid "Twitter password:"
+#~ msgstr "密码:"
 
-msgid "Most recently answered ones are shown first."
-msgstr "最后被回答或者>更新的问题将显示在最前面。"
+#~ msgid "Send my Questions to Twitter"
+#~ msgstr "发布我的提问到我的Twitter"
 
-msgid "Questions sorted by <strong>number of responses</strong>."
-msgstr "问题按<strong>回复数量</strong>显示排序。"
+#~ msgid "Send my Answers to Twitter"
+#~ msgstr "发布我的回答到我的Twitter"
 
-msgid "Most answered questions are shown first"
-msgstr "回复最多的问题将显示在最前面。"
+#, fuzzy
+#~ msgid ""
+#~ "bronze badge descriptionIf you are active in this community, you will get "
+#~ "this medal - still it is a special honor."
+#~ msgstr "铜牌会在你活跃于社区时产生,它相对容易获得,但也是一种特殊的荣誉。"
 
-msgid "Questions are sorted by the <strong>number of votes</strong>."
-msgstr "问题按<strong>投票数量</strong>显示排序。"
+# base_content.html
+#~ msgid "congratulations, community gave you a badge"
+#~ msgstr "恭喜您,社区给您颁发了奖牌"
 
-msgid "Most voted questions are shown first"
-msgstr "投票最多的问题将显示在最前面。"
+#~ msgid "see"
+#~ msgstr "查看"
 
-msgid "questions that user selected as his/her favorite"
-msgstr "用户收藏的问题"
+#, fuzzy
+#~ msgid "About us"
+#~ msgstr "关于本站"
 
-msgid "Frequently Asked Questions "
-msgstr "常见问题"
+#, fuzzy
+#~ msgid "Contact"
+#~ msgstr "联系我们"
 
-msgid "What kinds of questions can I ask here?"
-msgstr "我可以在这里提问什么样的问题?"
+#~ msgid "my profile"
+#~ msgstr "我的资料"
 
-msgid "What questions should I avoid asking?"
-msgstr "什么样的问题我不该在这里提问?"
+#~ msgid "last updated questions"
+#~ msgstr "最新更新的问题"
 
-msgid ""
-"Most importanly - questions should be <strong>relevant</strong> to this "
-"community."
-msgstr "毫无疑问,首先必须是<span class=\"yellowbg\">技术编程问题!</span>"
+#~ msgid "given to"
+#~ msgstr "授予"
 
-msgid ""
-"Before asking the question - please make sure to use search to see "
-"whether your question has alredy been answered."
-msgstr ""
-"提问之前,充分利用系统的自动查找、标签和搜索,看看是否已经有一样的问题并有"
-"了答案。"
+#~ msgid "subscribe to last 30 questions by RSS"
+#~ msgstr "RSS订阅最新30个问题"
 
-msgid "What should I avoid in my answers?"
-msgstr "什么样的回答是不受欢迎的?"
+#~ msgid "Still looking for more? See"
+#~ msgstr "在寻找更多问题吗?请查阅"
 
-msgid "Who moderates this community?"
-msgstr "谁是社区的管理员?"
+#, fuzzy
+#~ msgid "complete list of quesionts"
+#~ msgstr "全部问题列表"
 
-msgid ""
-"Please avoid asking questions that are not relevant to this community, "
-"too subjective and argumentative."
-msgstr ""
-"<span class=\"yellowbg\">与程序员或技术无关的,引起争吵或太过于主观性等违"
-"背社区宗旨的内容。</span>本站建立是为了帮助大众程序员解决实际技术问题,我"
-"们需要实际的问题!"
+#, fuzzy
+#~ msgid "Size per page:"
+#~ msgstr "每页显示"
 
-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 ""
-"希望用户提供针对提问的技术回答,可以是进一步了解问题实质,给予参考方案,或"
-"完全解决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,<span "
-"class=\"yellowbg\">我们不>欢迎在回答中出现不是回答问题的内容,包括针对他人"
-"回答的讨论,和其他无意义的浪费网络资源行为</span>。CNProg建议您使用<span "
-"class=\"yellowbg\">评论</span>功能来讨论你的意见和想法。"
+#~ msgid ""
+#~ "remove favorite mark from this question (click again to restore mark)"
+#~ msgstr "我要收藏这个问题(再次点击取消操作)"
 
-msgid "The short answer is: <strong>you</strong>."
-msgstr "答案是:<span class=\"yellowbg\">每个用户。</span>"
+#~ msgid "flag offensive"
+#~ msgstr "垃圾帖?"
 
-msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
-msgstr ""
-"通过积分运作,<span class=\"yellowbg\">每个用户都有权限创建标签,进行对所"
-"有问题、回答的投票、编辑、关闭等操作。</span>"
+#~ msgid "Answers"
+#~ msgstr "个回答"
 
-msgid "This website is moderated by the users."
-msgstr "社区没有严格意义上的管理员身份"
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "这篇帖子有价值(再次点击取消操作)"
 
-msgid "How does reputation system work?"
-msgstr "什么是社区积分?"
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "这篇帖子没有价值(再次点击取消操作)"
 
-msgid ""
-"Anyone can ask questions and give answers, points are not necessary for "
-"that."
-msgstr "对于正常使用社区进行提问、回答而言,积分不是必须的。"
+#~ msgid "mark this answer as favorite (click again to undo)"
+#~ msgstr "最佳答案(再次点击取消操作)"
 
-msgid ""
-"As we've said before, users help running this site. Point system helps "
-"select users who can administer this community."
-msgstr ""
-"我们一再声明,CNProg由你来运行和维护。如果你想帮助我们来运作CNProg,你需要"
-"一定的积分等级。"
+# todo please check this in chinese
+#~ msgid "undelete"
+#~ msgstr "取消"
 
-msgid ""
-"Reputation points roughly measure how community trusts you. These points "
-"are given to you directly by other members of the community."
-msgstr ""
-"<span class=\"yellowbg\">积分是一种用来粗略衡量社区对你有多信任的数据。</"
-"span>积分不是有谁来支付或直接给予你的,而是你通过获得其他用户的支持和信"
-"任“赚得”的。"
+#~ msgid "Login to answer"
+#~ msgstr "登录并回答该问题"
 
-msgid ""
-"For example, if you ask an interesting question or give a helpful answer, "
-"your input will be upvoted and you will gain more trust in the community."
-msgstr ""
-"举例来说,如果你提了一个非常有帮助的问题或者做了很有用的回答,你将会被其他"
-"用户投赞成票。"
+#~ msgid "ago"
+#~ msgstr "前"
 
-msgid ""
-"If on the other hand someone gives a misleading answer, the answer will "
-"be voted down and he/she loses some points."
-msgstr ""
-"相反,你提了不受欢迎的问题,或者误导用户的回答,你将可能被其他用户投反对"
-"票。每个赞成"
+#, fuzzy
+#~ msgid "please ask a relevant question"
+#~ msgstr "我要提问"
 
-msgid ""
-"Each vote in favor will generate <strong>10</strong> points, each vote "
-"against will subtract <strong>2</strong> points."
-msgstr ""
-"票会帮你产生<strong>10</strong>个社区积分,每个反对票会相应扣除你"
-"<strong>2</strong>个积分。"
+# index.html
+#~ msgid "Community wiki"
+#~ msgstr "社区Wiki"
 
-msgid ""
-"Through the votes of other people you can accumulate a maximum of "
-"<strong>200</strong> points."
-msgstr ""
-"每天通过别人投赞成票,你最多只能产生<strong>200</strong>个积分,这是上限。"
+# must have extra space after in english
+#, fuzzy
+#~ msgid "Browse questions with tag of "
+#~ msgstr "查看有关"
 
-msgid "After accumulating certain number of points, you can do more:"
-msgstr "当你累计到一定>积分,你可以在社区做更多的事情:"
+#~ msgid "have %(num_q)s unanswered questions"
+#~ msgstr ""
+#~ "您正在浏览所有<br><div class=\"questions-count\">%(num_q)s</div>个<p>问题"
+#~ "按 <strong>问题创建时间</strong> 排序。最新加入的问题将显示在最前面。</p>"
 
-# todo - check if it's indeed plural
-msgid "add comments"
-msgstr "添加评论"
+# in unanswered.html and somewhere else
+#~ msgid "Have a total of"
+#~ msgstr "您正在浏览所有"
 
-msgid "retag questions"
-msgstr "给任何问题整理标签"
+#~ msgid "avatar"
+#~ msgstr "修改头像"
 
-msgid "edit community wiki questions"
-msgstr "编辑wiki类问题"
+#~ msgid "User questions"
+#~ msgstr "个问题"
 
-msgid "edit any answer"
-msgstr "编辑任何问题或答案"
+#, fuzzy
+#~ msgid ""
+#~ "the answer has been commented %(answered_question.comment_count)s times"
+#~ msgstr "该回答有%d条评论"
 
-msgid "reopen any closed questions"
-msgstr "打开关闭任何人的问题"
+#~ msgid "votes total"
+#~ msgstr "个投票"
 
-msgid "delete any comment"
-msgstr "删除任何一个评论"
+#~ msgid "Tags"
+#~ msgstr "个标签"
 
-msgid "delete any questions and answers and perform other moderation tasks"
-msgstr "删除任何一个问题或答案,及其他管理功能"
+#, fuzzy
+#~ msgid "this questions was selected as favorite"
+#~ msgstr "这个问题被"
 
-msgid "To register, do I need to create new password?"
-msgstr "我需要注册一个新用户吗?"
+#~ msgid "Change email"
+#~ msgstr "更换电子邮件"
 
-msgid "Why other people can edit my questions/answers?"
-msgstr "为什么其他人可以修改我的问题/回答?"
+#, fuzzy
+#~ msgid "Account: change OpenID URL"
+#~ msgstr "更换OpenID地址"
 
-msgid "Still have questions?"
-msgstr "还有其他问题?"
+#, fuzzy
+#~ msgid "Account: change password"
+#~ msgstr "修改密码"
 
-msgid "Please ask your question, help make our community better!"
-msgstr "如果您对社区还有其他疑问,请一起来完善我们的"
+#, fuzzy
+#~ msgid "New password again"
+#~ msgstr "发送新密码"
 
-msgid ""
-"No, you don't have to. You can login through any service that supports "
-"OpenID, e.g. Google, Yahoo, AOL, etc."
-msgstr ""
-"不需要。社区提供了OpenID的登录支持,你要用Google、Yahoo等任何支持OpenID登"
-"录的帐号就可以使用系统。"
+#, fuzzy
+#~ msgid ""
+#~ "Your OpenID is accepted. Please complete this to finish registration."
+#~ msgstr "您的OpenID帐号已经验证通过! 请完成最后一步 - 绑定OpenID到您的帐号。"
 
-msgid "Login now!"
-msgstr "马上登录"
+#~ msgid "New account"
+#~ msgstr "新帐号"
 
-msgid ""
-"So questions and answers can be edited like wiki pages by experienced "
-"users of this site and this improves the overall quality of the knowledge "
-"base content."
-msgstr ""
-"所以问题和答案都是如Wiki一样可编辑的,我们希望社区能帮助用户沉淀、积累更多"
-"有用的知识和经验。"
+#~ msgid "User name (<i>will be shown to others, cannot be modified</i>)"
+#~ msgstr "用户名(<i>在社区显示友好名称,不可更改</i>)"
 
-msgid "If this approach is not for you, we respect your choice."
-msgstr "如果您不喜欢这种方式,我们尊重你的选择。"
+#, fuzzy
+#~ msgid "Password:"
+#~ msgstr "密码"
 
-msgid "answer tips"
-msgstr "受欢迎的提问"
+#, fuzzy
+#~ msgid "Delete account permanently"
+#~ msgstr "删除帐号"
 
-msgid "try to give an answer, rather than engage into a discussion"
-msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
+#~ msgid "Send new password"
+#~ msgstr "发送新密码"
 
-msgid "gold badge: the highest honor and is very rare"
-msgstr "金牌:十分罕见之最高荣耀"
+#~ msgid "Lost your password? No problem - here you can reset it."
+#~ msgstr "丢失了您的密码? 你可以在这里重设密码。"
 
-msgid ""
-"silver badge: occasionally awarded for the very high quality contributions"
-msgstr "银牌:偶尔颁发之优质奖章"
+#~ msgid ""
+#~ "Please enter your username below and new password will be sent to your "
+#~ "registered e-mail"
+#~ msgstr "请输入用户名,新的密码会发送到你注册时候填写的电子邮件。"
+
+# todo - check translation or see if it's indeed true
+#~ msgid ""
+#~ "Note: your new password will be activated only after you click the "
+#~ "activation link in the email message"
+#~ msgstr "注意: 新的密码只有您在激活邮件中的链接后才会被激活。"
 
-msgid "Gold badge is very rare."
-msgstr "金牌是十分罕见的。"
+#~ msgid "we support two login modes"
+#~ msgstr ""
+#~ "CNProg支持<b>两种</b>登录模式。您可以使用帐号、密码登录,或者使用OpenID登"
+#~ "录。"
 
-msgid "Gold badge is the highest award in this community."
-msgstr "获得金牌意味着你在某个层次上已经达到了顶峰。"
+#~ msgid "Login with your OpenID"
+#~ msgstr "使用OpenID登录"
 
-msgid "Obtaining silver badge requires significant patience."
-msgstr "银牌需要经过长时间的奋斗才能获得。"
+#~ msgid "select openid provider"
+#~ msgstr "1)请选择您的帐号类:"
 
-msgid "%s ago"
-msgstr "于%s<font class=\"darkred\">关闭</font>"
+#~ msgid "verify openid link and login"
+#~ msgstr "2)型并完成正确的OpenID地址(如:替换“{username}”为您的对应帐号):"
+
+#, fuzzy
+#~ msgid "Create new acccount"
+#~ msgstr "注册新帐号"
+
+#~ msgid ""
+#~ "We support two types of user registration: conventional username/"
+#~ "password, and"
+#~ msgstr "我们支持两种注册方式,你可以使用常规的用户名、密码方式注册,或者"
+
+#~ msgid "the OpenID method"
+#~ msgstr "使用OpenID帐号注册"
+
+#, fuzzy
+#~ msgid "Sorry, looks like we have some errors"
+#~ msgstr "请注意以下错误:"
+
+#~ msgid "Conventional registration"
+#~ msgstr "请注意以下错误:"
+
+#~ msgid "choose a user name"
+#~ msgstr "选择一个用户名"
+
+#~ msgid "back to login"
+#~ msgstr "返回登录"
+
+#~ msgid "meta site keywords, comma separated"
+#~ msgstr ""
+#~ "技术问答社区,中国程序员,编程技术社区,程序员社区,程序员论坛,程序员"
+#~ "wiki,程序员博客"
+
+#~ msgid "what is this website"
+#~ msgstr ""
+#~ "CNProg是一个<strong>面向程序员</strong>的可协作编辑的<strong>开放源代码问"
+#~ "答社区</strong>。"
+
+#~ msgid "what can one do on this website"
+#~ msgstr ""
+#~ "您可以在这里提问各类<strong>程序技术问题</strong> - 问题不分语言和平台。 "
+#~ "同时也希望您对力所能及的问题,给予您的宝贵答案。"
+
+#~ msgid "book technical Q&A"
+#~ msgstr "图书相关的技术答疑"
+
+#~ msgid "blog"
+#~ msgstr "Blog"
+
+#~ msgid "current revision"
+#~ msgstr "当前版本"
+
+#~ msgid "Change now"
+#~ msgstr "现在修改"
+
+#~ msgid "uses tags for the classification of questions"
+#~ msgstr "用标签来分类系统的信息"
+
+#~ msgid "Found by tag"
+#~ msgstr "标签问题"
+
+#~ msgid ""
+#~ "\n"
+#~ "\t\t\thave total %(q_num)s questions tagged %(tagname)s\n"
+#~ "\t\t\t"
+#~ msgid_plural ""
+#~ "\n"
+#~ "\t\t\thave total %(q_num)s questions tagged %(tagname)s\n"
+#~ "\t\t\t"
+#~ msgstr[0] ""
+#~ "\n"
+#~ "您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标记为<span "
+#~ "class=\"tag\">%(tagname)s</span></p>"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标记为<span "
+#~ "class=\"tag\">%(tagname)s</span></p>"
+
+#~ msgid ""
+#~ "\n"
+#~ "\t\t\thave total %(q_num)s questions containing %(searchtitle)s\n"
+#~ "\t\t\t"
+#~ msgid_plural ""
+#~ "\n"
+#~ "\t\t\thave total %(q_num)s questions containing %(searchtitle)s\n"
+#~ "\t\t\t"
+#~ msgstr[0] ""
+#~ "\n"
+#~ "您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标题含有"
+#~ "<span class=\"tag\">%(searchtitle)s</span></p>"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "您正在浏览所有<div class=\"questions-count\">%(q_num)s</div>个标题含有"
+#~ "<span class=\"tag\">%(searchtitle)s</span></p>"
+
+#~ msgid "number of questions"
+#~ msgstr "个"
+
+#~ msgid "number of <strong>unanswered</strong> questions"
+#~ msgstr ""
+#~ "个 <span class=\"darkred\"><strong>没有回答的</strong></span> 问题。"
+
+#~ msgid "tagged with"
+#~ msgstr "标记为"
+
+#~ msgid "whose title contains"
+#~ msgstr "标题含有"
+
+#~ msgid "number of questions end of sentence"
+#~ msgstr "的问题。"
+
+#~ msgid "Most recently answered ones are shown first."
+#~ msgstr "最后被回答或者>更新的问题将显示在最前面。"
+
+#~ msgid "Most voted questions are shown first"
+#~ msgstr "投票最多的问题将显示在最前面。"
+
+#~ msgid ""
+#~ "Anyone can ask questions and give answers, points are not necessary for "
+#~ "that."
+#~ msgstr "对于正常使用社区进行提问、回答而言,积分不是必须的。"
+
+#~ msgid ""
+#~ "As we've said before, users help running this site. Point system helps "
+#~ "select users who can administer this community."
+#~ msgstr ""
+#~ "我们一再声明,CNProg由你来运行和维护。如果你想帮助我们来运作CNProg,你需要"
+#~ "一定的积分等级。"
+
+#~ msgid ""
+#~ "Reputation points roughly measure how community trusts you. These points "
+#~ "are given to you directly by other members of the community."
+#~ msgstr ""
+#~ "<span class=\"yellowbg\">积分是一种用来粗略衡量社区对你有多信任的数据。</"
+#~ "span>积分不是有谁来支付或直接给予你的,而是你通过获得其他用户的支持和信"
+#~ "任“赚得”的。"
+
+#~ msgid ""
+#~ "For example, if you ask an interesting question or give a helpful answer, "
+#~ "your input will be upvoted and you will gain more trust in the community."
+#~ msgstr ""
+#~ "举例来说,如果你提了一个非常有帮助的问题或者做了很有用的回答,你将会被其他"
+#~ "用户投赞成票。"
+
+#~ msgid ""
+#~ "If on the other hand someone gives a misleading answer, the answer will "
+#~ "be voted down and he/she loses some points."
+#~ msgstr ""
+#~ "相反,你提了不受欢迎的问题,或者误导用户的回答,你将可能被其他用户投反对"
+#~ "票。每个赞成"
+
+#~ msgid ""
+#~ "Each vote in favor will generate <strong>10</strong> points, each vote "
+#~ "against will subtract <strong>2</strong> points."
+#~ msgstr ""
+#~ "票会帮你产生<strong>10</strong>个社区积分,每个反对票会相应扣除你"
+#~ "<strong>2</strong>个积分。"
+
+#~ msgid ""
+#~ "Through the votes of other people you can accumulate a maximum of "
+#~ "<strong>200</strong> points."
+#~ msgstr ""
+#~ "每天通过别人投赞成票,你最多只能产生<strong>200</strong>个积分,这是上限。"
+
+#~ msgid "After accumulating certain number of points, you can do more:"
+#~ msgstr "当你累计到一定>积分,你可以在社区做更多的事情:"
+
+#~ msgid "gold badge: the highest honor and is very rare"
+#~ msgstr "金牌:十分罕见之最高荣耀"
+
+#~ msgid ""
+#~ "silver badge: occasionally awarded for the very high quality contributions"
+#~ msgstr "银牌:偶尔颁发之优质奖章"
+
+#~ msgid "Gold badge is very rare."
+#~ msgstr "金牌是十分罕见的。"
+
+#~ msgid "Gold badge is the highest award in this community."
+#~ msgstr "获得金牌意味着你在某个层次上已经达到了顶峰。"
+
+#~ msgid "Obtaining silver badge requires significant patience."
+#~ msgstr "银牌需要经过长时间的奋斗才能获得。"
index 1f88d7b5f1576166658bbff586815c455e0fd3ea..866a05674548bdeaed02e97ba6edae33d77ad5dd 100644 (file)
@@ -13,7 +13,7 @@ TEMPLATE_LOADERS = (
     'django.template.loaders.app_directories.load_template_source',
     'forum.modules.module_templates_loader',
     'forum.skins.load_template_source',
-#     'django.template.loaders.eggs.load_template_source',
+#   'django.template.loaders.eggs.load_template_source',
 )
 
 MIDDLEWARE_CLASSES = [
@@ -85,4 +85,10 @@ try:
 except:
     pass
 
+try:
+    import rosetta
+    INSTALLED_APPS.append('rosetta')
+except:
+    pass
+
 AUTHENTICATION_BACKENDS = ['django.contrib.auth.backends.ModelBackend',]