summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-08-26 01:19:52 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-08-26 01:19:52 -0400
commit4de17e657f73a584092fda9811dd16172be49533 (patch)
tree4940f536f488ee8a4c3e09a79cb5ac292828c411
parent13938b91e0875f38be59074db37af4d1eba57d51 (diff)
parent74e72a4580ecb8e61d717232653bad71017a6ba3 (diff)
downloadaskbot-4de17e657f73a584092fda9811dd16172be49533.tar.gz
askbot-4de17e657f73a584092fda9811dd16172be49533.tar.bz2
askbot-4de17e657f73a584092fda9811dd16172be49533.zip
merged with main branch
-rw-r--r--askbot/conf/reputation_changes.py2
-rw-r--r--askbot/conf/skin_counter_settings.py40
-rw-r--r--askbot/locale/it/LC_MESSAGES/django.mobin0 -> 81953 bytes
-rw-r--r--askbot/locale/it/LC_MESSAGES/django.po4932
-rw-r--r--askbot/management/commands/fix_revisionless_posts.py28
-rw-r--r--askbot/models/__init__.py4
-rw-r--r--askbot/models/answer.py19
-rw-r--r--askbot/models/content.py2
8 files changed, 4989 insertions, 38 deletions
diff --git a/askbot/conf/reputation_changes.py b/askbot/conf/reputation_changes.py
index 46214d57..3ea7c4c0 100644
--- a/askbot/conf/reputation_changes.py
+++ b/askbot/conf/reputation_changes.py
@@ -9,7 +9,7 @@ from django.utils.translation import ugettext as _
REP_CHANGES = ConfigurationGroup(
'REP_CHANGES',
- _('Reputaion loss and gain rules'),
+ _('Reputation loss and gain rules'),
ordering=2
)
diff --git a/askbot/conf/skin_counter_settings.py b/askbot/conf/skin_counter_settings.py
index dab36803..6c6d6a64 100644
--- a/askbot/conf/skin_counter_settings.py
+++ b/askbot/conf/skin_counter_settings.py
@@ -27,7 +27,7 @@ settings.register(
'COLORS_VOTE_COUNTER_EMPTY_BG',
default='white',
description=_('Background color for votes = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -38,7 +38,7 @@ settings.register(
'COLORS_VOTE_COUNTER_EMPTY_FG',
default='gray',
description=_('Foreground color for votes = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -49,7 +49,7 @@ settings.register(
'COLORS_VOTE_COUNTER_MIN_BG',
default='#a3d0ff',
description=_('Background color for votes'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -59,7 +59,7 @@ settings.register(
'COLORS_VOTE_COUNTER_MIN_FG',
default='#4a4a4a',
description=_('Foreground color for votes'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -69,7 +69,7 @@ settings.register(
'COLORS_VOTE_COUNTER_MAX_BG',
default='#a9d0f5',
description=_('Background color for votes = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -82,7 +82,7 @@ settings.register(
settings.COLORS_VOTE_COUNTER_MAX_BG
).DarkerColor(0.7).html,
description=_('Foreground color for votes = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -103,7 +103,7 @@ settings.register(
'COLORS_VIEW_COUNTER_EMPTY_BG',
default='gray',
description=_('Background color for views = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -114,7 +114,7 @@ settings.register(
'COLORS_VIEW_COUNTER_EMPTY_FG',
default='white',
description=_('Foreground color for views = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -125,7 +125,7 @@ settings.register(
'COLORS_VIEW_COUNTER_MIN_BG',
default='#ff8c8c',
description=_('Background color for views'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -135,7 +135,7 @@ settings.register(
'COLORS_VIEW_COUNTER_MIN_FG',
default='#4a4a4a',
description=_('Foreground color for views'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -145,7 +145,7 @@ settings.register(
'COLORS_VIEW_COUNTER_MAX_BG',
default='#FF8000',
description=_('Background color for views = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -158,7 +158,7 @@ settings.register(
settings.COLORS_VIEW_COUNTER_MAX_BG
).DarkerColor(0.7).html,
description=_('Foreground color for views = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -181,7 +181,7 @@ settings.register(
Color.NewFromHtml('white'),0.8
).html,
description=_('Background color for answers = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -192,7 +192,7 @@ settings.register(
'COLORS_ANSWER_COUNTER_EMPTY_FG',
default='yellow',
description=_('Foreground color for answers = 0'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -203,7 +203,7 @@ settings.register(
'COLORS_ANSWER_COUNTER_MIN_BG',
default='#ffed9c',
description=_('Background color for answers'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -213,7 +213,7 @@ settings.register(
'COLORS_ANSWER_COUNTER_MIN_FG',
default='#a4a4a4',
description=_('Foreground color for answers'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -225,7 +225,7 @@ settings.register(
Color.NewFromHtml('white'),0.75
).html,
description=_('Background color for answers = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -236,7 +236,7 @@ settings.register(
'COLORS_ANSWER_COUNTER_MAX_FG',
default='#ffff00',
description=_('Foreground color for answers = MAX'),
- help_text=_('HTML color name of hex value'),
+ help_text=_('HTML color name or hex value'),
hidden=True,
)
)
@@ -249,7 +249,7 @@ settings.register(
Color.NewFromHtml('white'),0.8
).html,
description=_('Background color for accepted'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
@@ -259,6 +259,6 @@ settings.register(
'COLORS_ANSWER_COUNTER_ACCEPTED_FG',
default='#D0F5A9',
description=_('Foreground color for accepted answer'),
- help_text=_('HTML color name of hex value')
+ help_text=_('HTML color name or hex value')
)
)
diff --git a/askbot/locale/it/LC_MESSAGES/django.mo b/askbot/locale/it/LC_MESSAGES/django.mo
new file mode 100644
index 00000000..4527bffe
--- /dev/null
+++ b/askbot/locale/it/LC_MESSAGES/django.mo
Binary files differ
diff --git a/askbot/locale/it/LC_MESSAGES/django.po b/askbot/locale/it/LC_MESSAGES/django.po
new file mode 100644
index 00000000..53a8f831
--- /dev/null
+++ b/askbot/locale/it/LC_MESSAGES/django.po
@@ -0,0 +1,4932 @@
+# Italian translation for CNPROG package.
+# Copyright (C) 2009 Gang Chen, 2010 Askbot
+# This file is distributed under the same license as the CNPROG package.
+# Authors of Italian translation are Dario Ghilardi and Federico Poloni
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-08-23 14:34-0500\n"
+"PO-Revision-Date: 2010-08-24 07:23\n"
+"Last-Translator: <fph@ngi.it>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: feed.py:22
+msgid " - "
+msgstr "-"
+
+#: feed.py:22
+#, fuzzy
+msgid "latest questions"
+msgstr "ultime domande"
+
+#: forms.py:47 skins/default/templates/answer_edit_tips.html:35
+#: skins/default/templates/answer_edit_tips.html:39
+#: skins/default/templates/question_edit_tips.html:32
+#: skins/default/templates/question_edit_tips.html:37
+msgid "title"
+msgstr "titolo"
+
+#: forms.py:48
+msgid "please enter a descriptive title for your question"
+msgstr "per favore inserisci un titolo descrittivo per la tua domanda"
+
+#: forms.py:53
+msgid "title must be > 10 characters"
+msgstr "il titolo deve essere più lungo di 10 caratteri"
+
+#: forms.py:62
+msgid "content"
+msgstr "contenuto"
+
+#: forms.py:68
+msgid "question content must be > 10 characters"
+msgstr "la domanda deve contenere più di 10 caratteri"
+
+#: forms.py:77 skins/default/templates/header.html:74
+msgid "tags"
+msgstr "tags"
+
+#: forms.py:79
+msgid "Tags are short keywords, with no spaces within. Up to five tags can be used."
+msgstr "I tags sono brevi parole, senza spaziature tra una e l'altra. Possono essere inseriti fino a 5 tags."
+
+#: forms.py:86 skins/default/templates/question_retag.html:39
+msgid "tags are required"
+msgstr "i tags sono obbligatori"
+
+#: forms.py:95
+#, python-format
+msgid "please use %(tag_count)d tag or less"
+msgid_plural "please use %(tag_count)d tags or less"
+msgstr[0] "per favore usa un numero uguale o inferiore a %(tag_count)d tag"
+msgstr[1] "per favore usa un numero uguale o inferiore a %(tag_count)d tags"
+
+#: forms.py:104
+#, python-format
+msgid "each tag must be shorter than %(max_chars)d character"
+msgid_plural "each tag must be shorter than %(max_chars)d characters"
+msgstr[0] "ogni tag deve essere più corto di %(max_chars)d carattere"
+msgstr[1] "ogni tag deve essere più corto di %(max_chars)d caratteri"
+
+#: forms.py:112
+msgid "use-these-chars-in-tags"
+msgstr "usa-questi-caratteri-nei-tags"
+
+#: forms.py:122 skins/default/templates/post_contributor_info.html:7
+#: skins/default/templates/question_summary_list_roll.html:26
+#: skins/default/templates/question_summary_list_roll.html:38
+msgid "community wiki"
+msgstr "community wiki"
+
+#: forms.py:123
+msgid "if you choose community wiki option, the question and answer do not generate points and name of author will not be shown"
+msgstr "se scegli l'opzione community wiki, le domanda e le risposte non genereranno punti ed il nome dell'autore non verrà mostrato"
+
+#: forms.py:139
+msgid "update summary:"
+msgstr "aggiorna il sommario:"
+
+#: forms.py:140
+msgid "enter a brief summary of your revision (e.g. fixed spelling, grammar, improved style, this field is optional)"
+msgstr "inserisci una breve descrizione della tua modifica (ad esempio, corretta l'ortografia, migliorato lo stile. Questo campo è opzionale)"
+
+#: forms.py:153
+msgid "Enter number of points to add or subtract"
+msgstr "inserisci un numero di punti da aggiungere o rimuovere"
+
+#: forms.py:167 const/__init__.py:217
+msgid "approved"
+msgstr "approvato"
+
+#: forms.py:168 const/__init__.py:218
+msgid "watched"
+msgstr "osservato"
+
+#: forms.py:169 const/__init__.py:219
+msgid "suspended"
+msgstr "sospeso"
+
+#: forms.py:170 const/__init__.py:220
+msgid "blocked"
+msgstr "bloccato"
+
+#: forms.py:172 const/__init__.py:216
+msgid "moderator"
+msgstr "moderatore"
+
+#: forms.py:192
+msgid "Change status to"
+msgstr "Cambia lo stato a"
+
+#: forms.py:219
+msgid "which one?"
+msgstr "quale?"
+
+#: forms.py:240
+msgid "Cannot change own status"
+msgstr "Non è possibile cambiare il proprio stato"
+
+#: forms.py:246
+msgid "Cannot turn other user to moderator"
+msgstr "Non è possibile rendere moderatore un altro utente"
+
+#: forms.py:253
+msgid "Cannot change status of another moderator"
+msgstr "Non è possibile cambiare lo stato di un altro moderatore"
+
+#: forms.py:259
+#, python-format
+msgid "If you wish to change %(username)s's status, "
+msgstr "Se desideri cambiare lo stato di %(username)s, "
+
+#: forms.py:268
+msgid "Subject line"
+msgstr "Oggetto"
+
+#: forms.py:275
+msgid "Message text"
+msgstr "Messaggio"
+
+#: forms.py:362
+msgid "Your name:"
+msgstr "Il tuo nome:"
+
+#: forms.py:363
+msgid "Email (not shared with anyone):"
+msgstr "Email (non condivisa con altri):"
+
+#: forms.py:364
+msgid "Your message:"
+msgstr "Il tuo messaggio:"
+
+#: forms.py:449
+msgid "this email does not have to be linked to gravatar"
+msgstr "questa email non deve essere linkata al gravatar"
+
+#: forms.py:456
+msgid "Screen name"
+msgstr "Nome utente"
+
+#: forms.py:458
+msgid "Real name"
+msgstr "Nome reale"
+
+#: forms.py:465
+msgid "Website"
+msgstr "Sito web"
+
+#: forms.py:472
+msgid "Location"
+msgstr "Luogo"
+
+#: forms.py:479
+msgid "Date of birth"
+msgstr "Data di nascita"
+
+#: forms.py:480
+msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
+msgstr "non verrà mostrata, utilizzato per calcolare l'età, formato: YYYY-MM-DD"
+
+#: forms.py:486 skins/default/templates/account_settings.html:21
+#: skins/default/templates/authopenid/settings.html:21
+msgid "Profile"
+msgstr "Profilo"
+
+#: forms.py:519 forms.py:520
+msgid "this email has already been registered, please use another one"
+msgstr "questa email è già stata registrata, per favore utilizzane un'altra"
+
+#: forms.py:526
+msgid "Choose email tag filter"
+msgstr "Scegli il tag filtro per l'email"
+
+#: forms.py:565
+msgid "Asked by me"
+msgstr "Chiesto da me"
+
+#: forms.py:568
+msgid "Answered by me"
+msgstr "Risposta fornita da me"
+
+#: forms.py:571
+msgid "Individually selected"
+msgstr "Selezionato individualmente"
+
+#: forms.py:574
+msgid "Entire forum (tag filtered)"
+msgstr "Tutto il forum (tag filtrati)"
+
+#: forms.py:578
+msgid "Comments and posts mentioning me"
+msgstr "Commenti e post che mi citano"
+
+#: forms.py:636
+msgid "okay, let's try!"
+msgstr "okay, proviamo!"
+
+#: forms.py:637
+msgid "no community email please, thanks"
+msgstr "no askbot email please, thanks"
+
+#: forms.py:641
+msgid "please choose one of the options above"
+msgstr "per favore scegli una delle opzioni soprariportate"
+
+#: urls.py:46
+msgid "about/"
+msgstr "about/"
+
+#: urls.py:47 conf/site_settings.py:75
+msgid "faq/"
+msgstr "faq/"
+
+#: urls.py:48
+msgid "privacy/"
+msgstr "privacy/"
+
+#: urls.py:49
+msgid "logout/"
+msgstr "logout/"
+
+#: urls.py:51 urls.py:56 urls.py:61 urls.py:129
+msgid "answers/"
+msgstr "risposte/"
+
+#: urls.py:51 urls.py:111 urls.py:122 urls.py:129
+msgid "comments/"
+msgstr "commenti/"
+
+#: urls.py:56 urls.py:76 urls.py:170 skins/default/templates/user_info.html:33
+msgid "edit/"
+msgstr "modifica/"
+
+#: urls.py:61 urls.py:106
+msgid "revisions/"
+msgstr "revisioni/"
+
+#: urls.py:66 urls.py:71 urls.py:76 urls.py:81 urls.py:86 urls.py:91
+#: urls.py:96 urls.py:101 urls.py:106 urls.py:111 urls.py:122
+msgid "questions/"
+msgstr "domande/"
+
+#: urls.py:71
+msgid "ask/"
+msgstr "chiedi/"
+
+#: urls.py:81
+msgid "retag/"
+msgstr "retag/"
+
+#: urls.py:86
+msgid "close/"
+msgstr "chiudi/"
+
+#: urls.py:91
+msgid "reopen/"
+msgstr "riapri/"
+
+#: urls.py:96
+msgid "answer/"
+msgstr "rispondi/"
+
+#: urls.py:101
+msgid "vote/"
+msgstr "vota/"
+
+#: urls.py:116
+msgid "command/"
+msgstr "comando/"
+
+#: urls.py:122 urls.py:129 deps/django_authopenid/urls.py:45
+msgid "delete/"
+msgstr "cancella/"
+
+#: urls.py:136 views/readers.py:281
+msgid "question/"
+msgstr "domanda/"
+
+#: urls.py:141
+msgid "tags/"
+msgstr "tags/"
+
+#: urls.py:146 urls.py:152
+msgid "mark-tag/"
+msgstr "assegna-tag/"
+
+#: urls.py:146
+msgid "interesting/"
+msgstr "interessante/"
+
+#: urls.py:152
+msgid "ignored/"
+msgstr "ignorato/"
+
+#: urls.py:158
+msgid "unmark-tag/"
+msgstr "rimuovi-tag/"
+
+#: urls.py:164 urls.py:170 urls.py:175
+msgid "users/"
+msgstr "utenti/"
+
+#: urls.py:180 urls.py:185
+msgid "badges/"
+msgstr "badges/"
+
+#: urls.py:190
+msgid "messages/"
+msgstr "messaggi/"
+
+#: urls.py:190
+msgid "markread/"
+msgstr "segnacomeletto/"
+
+#: urls.py:200
+msgid "upload/"
+msgstr "upload/"
+
+#: urls.py:201
+msgid "search/"
+msgstr "ricerca/"
+
+#: urls.py:202
+msgid "feedback/"
+msgstr "feedback/"
+
+#: urls.py:203 setup_templates/settings.py:198
+msgid "account/"
+msgstr "account/"
+
+#: conf/email.py:12
+msgid "Email and email alert settings"
+msgstr "Configurazione email ed avvisi tramite mail"
+
+#: conf/email.py:20
+msgid "Maximum number of news entries in an email alert"
+msgstr "Massimo numero di news in un avviso tramite mail"
+
+#: conf/email.py:30
+msgid "Default news notification frequency"
+msgstr "Frequenza di notifica news predefinita"
+
+#: conf/email.py:32
+msgid "This option currently defines default frequency of emailed updates in the following five categories: questions asked by user, answered by user, individually selected, entire forum (per person tag filter applies) and posts mentioning the user and comment responses"
+msgstr "Questa opzione attualmente definisce la frequenza di default degli update via email nelle seguenti cinque categorie: domande poste dall'utente, risposte dell'utente, domande selezionate individualmente, tutto il forum (con filtri ai tag applicati individualmente), post che menzionano l'utente e risposte ai commenti "
+
+#: conf/email.py:47
+msgid "Require email verification before allowing to post"
+msgstr "Richiede la verifica dell'indirizzo email prima di consentire la pubblicazione di post"
+
+#: conf/email.py:48
+msgid "Active email verification is done by sending a verification key in email"
+msgstr "La verifica dell'email è effettuata inviando una chiave all'indirizzo "
+
+#: conf/email.py:57
+msgid "Allow only one account per email address"
+msgstr "Consenti solo un account per indirizzo email"
+
+#: conf/email.py:66
+msgid "Fake email for anonymous user"
+msgstr "Email fasulla per l'utente anonimo"
+
+#: conf/email.py:67
+msgid "Use this setting to control gravatar for email-less user"
+msgstr "Utilizza questi settaggi per controllare il gravatar per utenti senza email"
+
+#: conf/external_keys.py:11
+msgid "Keys to connect the site with external services like Facebook, etc."
+msgstr "Chiavi per connettere il sito con servizi esterni come Facebook, ecc."
+
+#: conf/external_keys.py:18
+msgid "Google site verification key"
+msgstr "Site verification key di Google"
+
+#: conf/external_keys.py:20
+#, python-format
+msgid "This key helps google index your site please obtain is at <a href=\"%(google_webmasters_tools_url)s\">google webmasters tools site</a>"
+msgstr "Questa chiave aiuta google ad indicizzare il tuo sito. Per favore ottienila presso gli <a href=\"%(google_webmasters_tools_url)s\">strumenti per i webmaster di Google</a>"
+
+#: conf/external_keys.py:34
+msgid "Google Analytics key"
+msgstr "Chiave Google Analytics"
+
+#: conf/external_keys.py:36
+#, python-format
+msgid "Obtain is at <a href=\"%(ga_site)s\">Google Analytics</a> site, if you wish to use Google Analytics to monitor your site"
+msgstr "Ottieni un account <a href=\"%(ga_site)s\">Google Analytics</a>, se vuoi utilizzare Google Analytics per monitorare il tuo sito web"
+
+#: conf/external_keys.py:49
+msgid "Recaptcha private key"
+msgstr "Chiave privata Recaptcha"
+
+#: conf/external_keys.py:52
+msgid "Recaptcha is a tool that helps distinguish real people from annoying spam robots. Please get this and a public key at the <a href=\"http://recaptcha.net\">recaptcha.net</a>"
+msgstr "Recaptcha è un tool che aiuta a distinguere persone reali da fastidisosi spam robots. Per favore ottieni questa ed una chiave pubblica all'indirizzo <a href=\"http://recaptcha.net\">recaptcha.net</a>"
+
+#: conf/external_keys.py:65
+msgid "Recaptcha public key"
+msgstr "Chiave pubblica Recaptcha"
+
+#: conf/external_keys.py:73
+msgid "Facebook public API key"
+msgstr "Facebook API key"
+
+#: conf/external_keys.py:76
+msgid "Facebook API key and Facebook secret allow to use Facebook Connect login method at your site. Please obtain these keys at <a href=\"http://www.facebook.com/developers/createapp.php\">facebook create app</a> site"
+msgstr "La Facebook API key ed il Facebook secret ti permettono di usare Facebook Connect per i login al tuo sito. Per favore ottieni queste chiavi presso la pagina <a href=\"http://www.facebook.com/developers/createapp.php\">facebook create app</a>"
+
+#: conf/external_keys.py:91
+msgid "Facebook secret key"
+msgstr "Facebook secret key"
+
+#: conf/flatpages.py:10
+msgid "Flatpages - about, privacy policy, etc."
+msgstr "Pagine statiche - about, privacy policy, etc."
+
+#: conf/flatpages.py:17
+msgid "Text of the Q&A forum About page (html format)"
+msgstr "Testo della pagina About del Q&A forum (formato html)"
+
+#: conf/flatpages.py:20
+msgid "Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on the \"about\" page to check your input."
+msgstr "Salva, poi <a href=\"http://validator.w3.org/\">utilizza il validatore HTML<a> sulla pagina \"about\" per controllare il tuo input."
+
+#: conf/flatpages.py:30
+msgid "Text of the Q&A forum Privacy Policy (html format)"
+msgstr "Testo della pagina Privacy Policy del Q&A forum (formato html)"
+
+#: conf/flatpages.py:33
+msgid "Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on the \"privacy\" page to check your input."
+msgstr "Salva, poi <a href=\"http://validator.w3.org/\">utilizza il validatore HTML<a> sulla pagina \"about\" per controllare il tuo input."
+
+#: conf/forum_data_rules.py:12
+msgid "Settings for askbot data entry and display"
+msgstr "Impostazioni per la visualizzazione dei dati di Askbot"
+
+#: conf/forum_data_rules.py:20
+msgid "Check to enable community wiki feature"
+msgstr "Spunta per abilitare la community wiki"
+
+#: conf/forum_data_rules.py:29
+msgid "Maximum length of tag (number of characters)"
+msgstr "Massima lunghezza di un tag (numero di caratteri)"
+
+#: conf/forum_data_rules.py:38
+msgid "Maximum number of tags per question"
+msgstr "Massimo numero di tags per ogni domanda"
+
+#: conf/forum_data_rules.py:50
+msgid "Number of questions to list by default"
+msgstr "Numero di domande da mostrare di default"
+
+#: conf/forum_data_rules.py:60
+msgid "What should \"unanswered question\" mean?"
+msgstr "Cosa dovrebbe significare \"domande senza risposta\"?"
+
+#: conf/minimum_reputation.py:11
+msgid "Minimum reputation required to perform actions"
+msgstr "Reputazione minima per eseguire operazioni"
+
+#: conf/minimum_reputation.py:20
+msgid "Upvote"
+msgstr "Dare un voto positivo"
+
+#: conf/minimum_reputation.py:29
+msgid "Downvote"
+msgstr "Dare un voto negativo"
+
+#: conf/minimum_reputation.py:38
+msgid "Flag offensive"
+msgstr "Segnalare come inappropriato"
+
+#: conf/minimum_reputation.py:47
+msgid "Leave comments"
+msgstr "Lasciare commenti"
+
+#: conf/minimum_reputation.py:56
+msgid "Delete comments posted by others"
+msgstr "Cancellare commenti inviati da altri"
+
+#: conf/minimum_reputation.py:65
+msgid "Delete questions and answers posted by others"
+msgstr "Cancellare domande e risposte inviate da altri"
+
+#: conf/minimum_reputation.py:74
+msgid "Upload files"
+msgstr "Caricare files"
+
+#: conf/minimum_reputation.py:83
+msgid "Close own questions"
+msgstr "Chiudere le proprie domande"
+
+#: conf/minimum_reputation.py:92
+msgid "Retag questions posted by other people"
+msgstr "Ritaggare domande inviate da altri utenti"
+
+#: conf/minimum_reputation.py:101
+msgid "Reopen own questions"
+msgstr "Riaprire le proprie domande"
+
+#: conf/minimum_reputation.py:110
+msgid "Edit community wiki posts"
+msgstr "Modificare i post community wiki"
+
+#: conf/minimum_reputation.py:119
+msgid "Edit posts authored by other people"
+msgstr "Modificare i post scritti da altri utenti"
+
+#: conf/minimum_reputation.py:128
+msgid "View offensive flags"
+msgstr "Visualizzare i flag inappropriati"
+
+#: conf/minimum_reputation.py:137
+msgid "Close questions asked by others"
+msgstr "Chiudere domande poste da altri"
+
+#: conf/minimum_reputation.py:146
+msgid "Lock posts"
+msgstr "Bloccare posts"
+
+#: conf/reputation_changes.py:12
+msgid "Reputaion loss and gain rules"
+msgstr "Regole relative all'ottenimento e cessione di punti reputazione"
+
+#: conf/reputation_changes.py:21
+msgid "Maximum daily reputation gain per user"
+msgstr "Massima reputazione ottenibile da un utente giornamente"
+
+#: conf/reputation_changes.py:30
+msgid "Gain for receiving an upvote"
+msgstr "Guadagno per aver ricevuto un voto positivo"
+
+#: conf/reputation_changes.py:39
+msgid "Gain for the author of accepted answer"
+msgstr "Guadagno per l'autore di una risposta accettata"
+
+#: conf/reputation_changes.py:48
+msgid "Gain for accepting best answer"
+msgstr "Guadagno per aver accettato una migliore risposta"
+
+#: conf/reputation_changes.py:57
+msgid "Gain for post owner on canceled downvote"
+msgstr "Guadagno per il proprietario del post in caso di annullamento di un voto negativo"
+
+#: conf/reputation_changes.py:66
+msgid "Gain for voter on canceling downvote"
+msgstr "Guadagno per un votante in caso di annullamento del proprio voto negativo"
+
+#: conf/reputation_changes.py:76
+msgid "Loss for voter for canceling of answer acceptance"
+msgstr "Perdita per un votante in caso di cancellazione di una risposta accettata"
+
+#: conf/reputation_changes.py:86
+msgid "Loss for author whose answer was \"un-accepted\""
+msgstr "Perdita per l'autore nel caso una risposta passi da accettata a non accettata "
+
+#: conf/reputation_changes.py:96
+msgid "Loss for giving a downvote"
+msgstr "Perdita in caso di assegnamento di un voto negativo"
+
+#: conf/reputation_changes.py:106
+msgid "Loss for owner of post that was flagged offensive"
+msgstr "Perdita per l'autore di un post in caso di flag inappropriato"
+
+#: conf/reputation_changes.py:116
+msgid "Loss for owner of post that was downvoted"
+msgstr "Perdita per l'autore nel caso il post venga votato negativamente"
+
+#: conf/reputation_changes.py:126
+msgid "Loss for owner of post that was flagged 3 times per same revision"
+msgstr "Perdita per l'autore nel caso il post venga flaggato 3 volte per la stessa revisione"
+
+#: conf/reputation_changes.py:136
+msgid "Loss for owner of post that was flagged 5 times per same revision"
+msgstr "Perdita per l'autore nel caso il post venga flaggato 5 volte per la stessa revisione"
+
+#: conf/reputation_changes.py:146
+msgid "Loss for post owner when upvote is canceled"
+msgstr "Perdita per l'autore nel caso un voto positivo venga annullato"
+
+#: conf/site_settings.py:13
+msgid "Q&A forum website parameters and urls"
+msgstr "Parametri ed url per il Q&A forum"
+
+#: conf/site_settings.py:21
+msgid "Site title for the Q&A forum"
+msgstr "Titolo del sito per il Q&A forum"
+
+#: conf/site_settings.py:30
+msgid "Comma separated list of Q&A site keywords"
+msgstr "Lista di parole chiave per il Q&A forum, separate da virgole"
+
+#: conf/site_settings.py:39
+msgid "Copyright message to show in the footer"
+msgstr "Messaggio di Copyright da mostrare in fondo alla pagina"
+
+#: conf/site_settings.py:48
+msgid "Site description for the search engines"
+msgstr "Descrizione del sito per i motori di ricerca"
+
+#: conf/site_settings.py:56
+msgid "Askbot"
+msgstr "Askbot"
+
+#: conf/site_settings.py:58
+msgid "Short name for your Q&A forum"
+msgstr "Nome breve per il tuo forum Q&A"
+
+#: conf/site_settings.py:67
+msgid "Base URL for your Q&A forum, must start with http or https"
+msgstr "URL base per il tuo forum Q&A (deve cominciare con http o https)"
+
+#: conf/site_settings.py:77
+msgid "Link shown in the greeting message shown to the anonymous user"
+msgstr "Link mostrato all'utente anonimo nel messaggio di benvenuto"
+
+#: conf/site_settings.py:78
+msgid "If you change this url from the default - then you will also probably want to adjust translation of the following string: "
+msgstr "Se cambi l'impostazione di questo url, allora probabilmente vorrai anche modificare la traduzione del testo seguente:"
+
+#: conf/site_settings.py:91
+msgid "Feedback site URL"
+msgstr "URL di un sito esterno per il feedback"
+
+#: conf/site_settings.py:92
+msgid "If left empty, a simple internal feedback form will be used instead"
+msgstr "Se lasciato vuoto, verrà usato un semplice modulo di feedback interno"
+
+#: conf/skin_counter_settings.py:11
+msgid "Skin: view, vote and answer counters"
+msgstr "Skin: contatori per consultazioni, voti e risposte"
+
+#: conf/skin_counter_settings.py:19
+msgid "Vote counter value to give \"full color\""
+msgstr "Numero di voti necessari per utilizzare il \"colore pieno\""
+
+#: conf/skin_counter_settings.py:29
+msgid "Background color for votes = 0"
+msgstr "colore di sfondo quando non ci sono voti"
+
+#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41
+#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62
+#: conf/skin_counter_settings.py:72 conf/skin_counter_settings.py:85
+#: conf/skin_counter_settings.py:106 conf/skin_counter_settings.py:117
+#: conf/skin_counter_settings.py:128 conf/skin_counter_settings.py:138
+#: conf/skin_counter_settings.py:148 conf/skin_counter_settings.py:161
+#: conf/skin_counter_settings.py:184 conf/skin_counter_settings.py:195
+#: conf/skin_counter_settings.py:206 conf/skin_counter_settings.py:216
+#: conf/skin_counter_settings.py:228 conf/skin_counter_settings.py:239
+#: conf/skin_counter_settings.py:252 conf/skin_counter_settings.py:262
+msgid "HTML color name of hex value"
+msgstr "Nome di colore HTML o valore esadecimale"
+
+#: conf/skin_counter_settings.py:40
+msgid "Foreground color for votes = 0"
+msgstr "Colore del testo per le domande senza voti"
+
+#: conf/skin_counter_settings.py:51
+msgid "Background color for votes"
+msgstr "Colore di sfondo per le domande con voti"
+
+#: conf/skin_counter_settings.py:61
+msgid "Foreground color for votes"
+msgstr "Colore del testo per le domande con voti"
+
+#: conf/skin_counter_settings.py:71
+msgid "Background color for votes = MAX"
+msgstr "Colore di sfondo per le domande con il massimo numero di voti"
+
+#: conf/skin_counter_settings.py:84
+msgid "Foreground color for votes = MAX"
+msgstr "Colore del testo per le domande con il massimo numero di voti"
+
+#: conf/skin_counter_settings.py:95
+msgid "View counter value to give \"full color\""
+msgstr "Numero di consultazioni necessarie per utilizzare il \"colore pieno\""
+
+#: conf/skin_counter_settings.py:105
+msgid "Background color for views = 0"
+msgstr "Colore di sfondo per le domande senza consultazioni"
+
+#: conf/skin_counter_settings.py:116
+msgid "Foreground color for views = 0"
+msgstr "Colore del testo per le domande senza consultazioni"
+
+#: conf/skin_counter_settings.py:127
+msgid "Background color for views"
+msgstr "Colore di sfondo per le domande con consultazioni"
+
+#: conf/skin_counter_settings.py:137
+msgid "Foreground color for views"
+msgstr "Colore del testo per le domande con consultazioni"
+
+#: conf/skin_counter_settings.py:147
+msgid "Background color for views = MAX"
+msgstr "Colore di sfondo per le domande con il massimo numero di consultazioni"
+
+#: conf/skin_counter_settings.py:160
+msgid "Foreground color for views = MAX"
+msgstr "Colore del testo per le domande con il massimo numero di consultazioni"
+
+#: conf/skin_counter_settings.py:171
+msgid "Answer counter value to give \"full color\""
+msgstr "Numero di risposte necessarie per utilizzare il \"colore pieno\""
+
+#: conf/skin_counter_settings.py:183
+msgid "Background color for answers = 0"
+msgstr "Colore di sfondo per le domande senza risposte"
+
+#: conf/skin_counter_settings.py:194
+msgid "Foreground color for answers = 0"
+msgstr "Colore del testo per le domande senza risposte"
+
+#: conf/skin_counter_settings.py:205
+msgid "Background color for answers"
+msgstr "Colore di sfondo per le domande con risposte"
+
+#: conf/skin_counter_settings.py:215
+msgid "Foreground color for answers"
+msgstr "Colore del testo per le domande con risposte"
+
+#: conf/skin_counter_settings.py:227
+msgid "Background color for answers = MAX"
+msgstr "Colore di sfondo per le domande con il massimo numero di risposte"
+
+#: conf/skin_counter_settings.py:238
+msgid "Foreground color for answers = MAX"
+msgstr "Colore del testo per le domande con il massimo numero di risposte"
+
+#: conf/skin_counter_settings.py:251
+msgid "Background color for accepted"
+msgstr "Colore di sfondo per le domande con una <risposta accettata"
+
+#: conf/skin_counter_settings.py:261
+msgid "Foreground color for accepted answer"
+msgstr "Colore del testo per le domande con una <risposta accettata"
+
+#: conf/skin_general_settings.py:14
+msgid "Skin and User Interface settings"
+msgstr "Impostazioni della skin e dell'interfaccia utente"
+
+#: conf/skin_general_settings.py:21
+msgid "Q&A site logo"
+msgstr "Logo del forum Q&A"
+
+#: conf/skin_general_settings.py:23
+msgid "To change the logo, select new file, then submit this whole form."
+msgstr "Per cambiare il logo, seleziona il nuovo file, poi salva le impostazioni"
+
+#: conf/skin_general_settings.py:38
+msgid "Show all UI functions to all users"
+msgstr "Mostra tutte le funzionalità a tutti gli utenti"
+
+#: conf/skin_general_settings.py:40
+msgid "If checked, all forum functions will be shown to users, regardless of their reputation. However to use those functions, moderation rules, reputation and other limits will still apply."
+msgstr "Se selezionato, tutte le funzionalità del forum verranno mostrate agli utenti, anche se non hanno reputazione sufficiente per utilizzarle. In ogni caso, i vincoli di reputazione necessari per utilizzarle rimangono validi."
+
+#: conf/skin_general_settings.py:55
+msgid "Select skin"
+msgstr "Scegli skin"
+
+#: conf/skin_general_settings.py:64
+msgid "Skin media revision number"
+msgstr "Numero di revisione dei media della skin"
+
+#: conf/skin_general_settings.py:66
+msgid "Increment this number when you change image in skin media or stylesheet. This helps avoid showing your users outdated images from their browser cache."
+msgstr "Incrementa questo numero quando cambi un'immagine o un media nella skin o nel foglio di stile. Questo fa in modo che gli utenti non visualizzino immagini vecchie provenienti dalla cache del loro browser."
+
+#: conf/user_settings.py:10
+msgid "User policy settings"
+msgstr "Impostazioni dei diritti degli utenti"
+
+#: conf/user_settings.py:18
+msgid "Allow editing user screen name"
+msgstr "Permetti di modificare il nome utente visualizzato"
+
+#: conf/user_settings.py:28
+msgid "Minimum allowed length for screen name"
+msgstr "Lunghezza minima per il nome utente visualizzato"
+
+#: conf/vote_rules.py:13
+msgid "Limits applicable to votes and moderation flags"
+msgstr "Limiti riguardanti i voti e i post segnati come inappropriati"
+
+#: conf/vote_rules.py:22
+msgid "Number of votes a user can cast per day"
+msgstr "Massimo numero di voti che un utente può dare ogni giorno"
+
+#: conf/vote_rules.py:31
+msgid "Maximum number of flags per user per day"
+msgstr "Massimo numero di post che un utente può segnare come inappropriati ogni giorno"
+
+#: conf/vote_rules.py:40
+msgid "Threshold for warning about remaining daily votes"
+msgstr "Soglia per avvertire del numero di voti rimanenti"
+
+#: conf/vote_rules.py:49
+msgid "Number of days to allow canceling votes"
+msgstr "Numero di giorni per consentire di cancellare voti"
+
+#: conf/vote_rules.py:58
+msgid "Number of flags required to automatically hide posts"
+msgstr "Numero di segnalazioni come inappropriato dopo il quale il post viene nascosto automaticamente"
+
+#: conf/vote_rules.py:67
+msgid "Number of flags required to automatically delete posts"
+msgstr "Numero di segnalazioni come inappropriato dopo il quale il post viene cancellato automaticamente"
+
+#: const/__init__.py:9
+msgid "duplicate question"
+msgstr "la domanda è già stata posta"
+
+#: const/__init__.py:10
+msgid "question is off-topic or not relevant"
+msgstr "la domanda è off-topic o non rilevante"
+
+#: const/__init__.py:11
+msgid "too subjective and argumentative"
+msgstr "troppo soggettiva e polemica"
+
+#: const/__init__.py:12
+msgid "not a real question"
+msgstr "non è una domanda"
+
+#: const/__init__.py:13
+msgid "the question is answered, right answer was accepted"
+msgstr "la domanda è già stata posta e una risposta corretta è stata accettata."
+
+#: const/__init__.py:14
+msgid "question is not relevant or outdated"
+msgstr "la domanda non è pertinente o è obsoleta"
+
+#: const/__init__.py:15
+msgid "question contains offensive or malicious remarks"
+msgstr "la domanda contiene commenti offensivi o maligni"
+
+#: const/__init__.py:16
+msgid "spam or advertising"
+msgstr "spam o pubblicità"
+
+#: const/__init__.py:17
+msgid "too localized"
+msgstr "troppo specifica"
+
+#: const/__init__.py:40 skins/default/templates/questions.html:52
+#: skins/default/templates/questions.html:57
+msgid "newest"
+msgstr "più recenti"
+
+#: const/__init__.py:41 skins/default/templates/questions.html:46
+#: skins/default/templates/users.html:28
+msgid "oldest"
+msgstr "meno recenti"
+
+#: const/__init__.py:42 skins/default/templates/questions.html:71
+#: skins/default/templates/questions.html:76
+msgid "active"
+msgstr "attive"
+
+#: const/__init__.py:43 skins/default/templates/questions.html:65
+msgid "inactive"
+msgstr "inattive"
+
+#: const/__init__.py:44
+msgid "hottest"
+msgstr "più attive"
+
+#: const/__init__.py:45
+msgid "coldest"
+msgstr "meno attive"
+
+#: const/__init__.py:46
+msgid "most voted"
+msgstr "più votate"
+
+#: const/__init__.py:47
+msgid "least voted"
+msgstr "meno votate"
+
+#: const/__init__.py:48
+msgid "relevance"
+msgstr "rilevanza"
+
+#: const/__init__.py:55 skins/default/templates/questions.html:34
+msgid "all"
+msgstr "tutte"
+
+#: const/__init__.py:56 skins/default/templates/questions.html:35
+msgid "unanswered"
+msgstr "senza risposta"
+
+#: const/__init__.py:57 skins/default/templates/questions.html:37
+msgid "favorite"
+msgstr "preferite"
+
+#: const/__init__.py:69
+msgid "Question has no answers"
+msgstr "La domanda non ha risposte"
+
+#: const/__init__.py:70
+msgid "Question has no accepted answers"
+msgstr "La domanda non ha risposte accettate"
+
+#: const/__init__.py:109
+msgid "asked a question"
+msgstr "ha posto una domanda"
+
+#: const/__init__.py:110
+msgid "answered a question"
+msgstr "ha risposto a una domanda"
+
+#: const/__init__.py:111
+msgid "commented question"
+msgstr "ha commentato una domanda"
+
+#: const/__init__.py:112
+msgid "commented answer"
+msgstr "ha commentato una risposta"
+
+#: const/__init__.py:113
+msgid "edited question"
+msgstr "ha modificato una domanda"
+
+#: const/__init__.py:114
+msgid "edited answer"
+msgstr "ha modificato una risposta"
+
+#: const/__init__.py:115
+msgid "received award"
+msgstr "ha ricevuto una medaglia"
+
+#: const/__init__.py:116
+msgid "marked best answer"
+msgstr "ha accettato una risposta "
+
+#: const/__init__.py:117
+msgid "upvoted"
+msgstr "ha dato un voto positivo"
+
+#: const/__init__.py:118
+msgid "downvoted"
+msgstr "ha dato un voto positivo"
+
+#: const/__init__.py:119
+msgid "canceled vote"
+msgstr "ha annullato un voto"
+
+#: const/__init__.py:120
+msgid "deleted question"
+msgstr "ha cancellato una domanda"
+
+#: const/__init__.py:121
+msgid "deleted answer"
+msgstr "ha cancellato una risposta"
+
+#: const/__init__.py:122
+msgid "marked offensive"
+msgstr "ha segnalato come inappropriata"
+
+#: const/__init__.py:123
+msgid "updated tags"
+msgstr "ha aggiornato i tag"
+
+#: const/__init__.py:124
+msgid "selected favorite"
+msgstr "ha scelto un tag preferito"
+
+#: const/__init__.py:125
+msgid "completed user profile"
+msgstr "ha completato il suo profilo utente"
+
+#: const/__init__.py:126
+msgid "email update sent to user"
+msgstr "aggiornamento via mail inviato all'utente"
+
+#: const/__init__.py:127
+msgid "mentioned in the post"
+msgstr "menzionato nel post"
+
+#: const/__init__.py:178
+msgid "question_answered"
+msgstr "risposta_a_una_domanda"
+
+#: const/__init__.py:179
+msgid "question_commented"
+msgstr "commento_a_una_domanda"
+
+#: const/__init__.py:180
+msgid "answer_commented"
+msgstr "risposta_commentata"
+
+#: const/__init__.py:181
+msgid "answer_accepted"
+msgstr "risposta_accettata"
+
+#: const/__init__.py:185
+msgid "[closed]"
+msgstr "[chiusa]"
+
+#: const/__init__.py:186
+msgid "[deleted]"
+msgstr "[cancellata]"
+
+#: const/__init__.py:187 views/readers.py:421 views/readers.py:442
+msgid "initial version"
+msgstr "versione iniziale"
+
+#: const/__init__.py:188
+msgid "retagged"
+msgstr "ritaggata"
+
+#: const/__init__.py:193
+msgid "exclude ignored tags"
+msgstr "escludi tag ignorati"
+
+#: const/__init__.py:194
+msgid "allow only selected tags"
+msgstr "consenti solo i tag selezionati"
+
+#: const/__init__.py:198
+msgid "instantly"
+msgstr "immediatamente"
+
+#: const/__init__.py:199
+msgid "daily"
+msgstr "ogni giorno"
+
+#: const/__init__.py:200
+msgid "weekly"
+msgstr "ogni settimana"
+
+#: const/__init__.py:201
+msgid "no email"
+msgstr "mai"
+
+#: const/message_keys.py:19
+#, python-format
+msgid "First time here? Check out the <a href=\"%s\">FAQ</a>!"
+msgstr "Prima volta quì? Controlla le <a href=\"%s\">FAQ</a>!"
+
+#: deps/django_authopenid/forms.py:72 deps/django_authopenid/views.py:134
+msgid "i-names are not supported"
+msgstr "i-names non sono supportati"
+
+#: deps/django_authopenid/forms.py:135
+msgid "Account with this name already exists on the forum"
+msgstr "Un account con questo nome utente esiste già sul forum"
+
+#: deps/django_authopenid/forms.py:136
+msgid "can't have two logins to the same account yet, sorry."
+msgstr "mi spiace, non è ancora possibile collegarsi simultaneamente da due computer diversi con lo stesso account."
+
+#: deps/django_authopenid/forms.py:158
+msgid "Please enter valid username and password (both are case-sensitive)."
+msgstr "Per favore inserisci username e password validi (entrambi sono case-sensitive)."
+
+#: deps/django_authopenid/forms.py:161 deps/django_authopenid/forms.py:211
+msgid "This account is inactive."
+msgstr "Questo account non è attivo."
+
+#: deps/django_authopenid/forms.py:163
+msgid "Login failed."
+msgstr "Login fallito."
+
+#: deps/django_authopenid/forms.py:165
+msgid "Please enter username and password"
+msgstr "Per favore inserisci username e password"
+
+#: deps/django_authopenid/forms.py:167
+msgid "Please enter your password"
+msgstr "Per favore inserisci la tua password"
+
+#: deps/django_authopenid/forms.py:169
+msgid "Please enter user name"
+msgstr "Per favore inserisci il tuo username"
+
+#: deps/django_authopenid/forms.py:207
+msgid "Please enter a valid username and password. Note that both fields are case-sensitive."
+msgstr "Per favore inserisci una coppia username-password valida. Entrambi i campi sono case-sensitive."
+
+#: deps/django_authopenid/forms.py:230
+msgid "Current password"
+msgstr "Password corrente"
+
+#: deps/django_authopenid/forms.py:241
+msgid "Old password is incorrect. Please enter the correct password."
+msgstr "La vecchia password non è corretta. Per favore inserisci la password corretta."
+
+#: deps/django_authopenid/forms.py:306
+msgid "Your user name (<i>required</i>)"
+msgstr "Il tuo username (<i>required</i>)"
+
+#: deps/django_authopenid/forms.py:321
+msgid "Incorrect username."
+msgstr "Mi spiace, questo username non esiste"
+
+#: deps/django_authopenid/urls.py:26 deps/django_authopenid/urls.py:27
+#: deps/django_authopenid/urls.py:29 setup_templates/settings.py:198
+msgid "signin/"
+msgstr "signin/"
+
+#: deps/django_authopenid/urls.py:26
+msgid "newquestion/"
+msgstr "nuovadomanda/"
+
+#: deps/django_authopenid/urls.py:27
+msgid "newanswer/"
+msgstr "nuovarisposta/"
+
+#: deps/django_authopenid/urls.py:28
+msgid "signout/"
+msgstr "signout/"
+
+#: deps/django_authopenid/urls.py:29
+msgid "complete/"
+msgstr "complete/"
+
+#: deps/django_authopenid/urls.py:31
+msgid "register/"
+msgstr "registrati/"
+
+#: deps/django_authopenid/urls.py:32
+msgid "signup/"
+msgstr "signup/"
+
+#: deps/django_authopenid/urls.py:34
+msgid "sendpw/"
+msgstr "inviapassword/"
+
+#: deps/django_authopenid/urls.py:35 deps/django_authopenid/urls.py:39
+msgid "password/"
+msgstr "password/"
+
+#: deps/django_authopenid/urls.py:35
+msgid "confirm/"
+msgstr "conferma/"
+
+#: deps/django_authopenid/urls.py:40 deps/django_authopenid/urls.py:41
+#: deps/django_authopenid/urls.py:42 deps/django_authopenid/urls.py:43
+msgid "email/"
+msgstr "email/"
+
+#: deps/django_authopenid/urls.py:40
+msgid "validate/"
+msgstr "convalida/"
+
+#: deps/django_authopenid/urls.py:41
+msgid "change/"
+msgstr "cambia/"
+
+#: deps/django_authopenid/urls.py:42
+msgid "sendkey/"
+msgstr "inviachiave/"
+
+#: deps/django_authopenid/urls.py:43
+msgid "verify/"
+msgstr "verifica/"
+
+#: deps/django_authopenid/urls.py:44
+msgid "openid/"
+msgstr "openid/"
+
+#: deps/django_authopenid/urls.py:53
+msgid "external-login/forgot-password/"
+msgstr "login-esterno/password-dimenticata/"
+
+#: deps/django_authopenid/urls.py:56
+msgid "external-login/signup/"
+msgstr "login-esterno/signup/"
+
+#: deps/django_authopenid/views.py:141
+#, python-format
+msgid "OpenID %(openid_url)s is invalid"
+msgstr "L'OpenID %(openid_url)s non è valido"
+
+#: deps/django_authopenid/views.py:616
+msgid "Welcome email subject line"
+msgstr "Benvenuto!"
+
+#: deps/django_authopenid/views.py:722
+msgid "Password changed."
+msgstr "Password modificata."
+
+#: deps/django_authopenid/views.py:734 deps/django_authopenid/views.py:740
+#, python-format
+msgid "your email needs to be validated see %(details_url)s"
+msgstr "Il tuo indirizzo e-mail dev'essere verificato &mdash; vedi %(details_url)s"
+
+#: deps/django_authopenid/views.py:761
+msgid "Email verification subject line"
+msgstr "Messaggio di verifica"
+
+#: deps/django_authopenid/views.py:852
+msgid "your email was not changed"
+msgstr "la tua email non è stata modificata"
+
+#: deps/django_authopenid/views.py:900 deps/django_authopenid/views.py:1058
+#, python-format
+msgid "No OpenID %s found associated in our database"
+msgstr "Nessun OpenID %s associato trovato nel database"
+
+#: deps/django_authopenid/views.py:904 deps/django_authopenid/views.py:1065
+#, python-format
+msgid "The OpenID %s isn't associated to current user logged in"
+msgstr "L'OpenID %s non è associato con l'utente attualmente loggato"
+
+#: deps/django_authopenid/views.py:912
+msgid "Email Changed."
+msgstr "Email modificata."
+
+#: deps/django_authopenid/views.py:990
+msgid "This OpenID is already associated with another account."
+msgstr "Questo OpenID è già associato con un altro account."
+
+#: deps/django_authopenid/views.py:995
+#, python-format
+msgid "OpenID %s is now associated with your account."
+msgstr "L'OpenID %s è ora associato con il tuo account."
+
+#: deps/django_authopenid/views.py:1068
+msgid "Account deleted."
+msgstr "Account eliminato."
+
+#: deps/django_authopenid/views.py:1120
+msgid "Request for new password"
+msgstr "Richiedi una nuova password"
+
+#: deps/django_authopenid/views.py:1134
+msgid "A new password and the activation link were sent to your email address."
+msgstr "Una nuova password ed il link di attivazione sono stati inviati al tuo indirizzo email."
+
+#: deps/django_authopenid/views.py:1166
+#, python-format
+msgid "Could not change password. Confirmation key '%s' is not registered."
+msgstr "Non è stato possibile modificare la password. La chiave di conferma '%s' non è registrata."
+
+#: deps/django_authopenid/views.py:1176
+msgid "Can not change password. User don't exist anymore in our database."
+msgstr "Non è stato possibile modificare la password. L'utente non esiste più nel database."
+
+#: deps/django_authopenid/views.py:1186
+#, python-format
+msgid "Password changed for %s. You may now sign in."
+msgstr "Password modificata per %s. Puoi ora accedere."
+
+#: deps/livesettings/models.py:101 deps/livesettings/models.py:140
+msgid "Site"
+msgstr "Sito"
+
+#: deps/livesettings/values.py:107
+msgid "Base Settings"
+msgstr "Impostazioni base"
+
+#: deps/livesettings/values.py:214
+msgid "Default value: \"\""
+msgstr "Valore predefinito: \"\""
+
+#: deps/livesettings/values.py:221
+msgid "Default value: "
+msgstr "Valore predefinito:"
+
+#: deps/livesettings/values.py:224
+#, python-format
+msgid "Default value: %s"
+msgstr "Valore predefinito: %s"
+
+#: deps/livesettings/values.py:587
+#, python-format
+msgid "Allowed image file types are %(types)s"
+msgstr "I tipi di file immagine consentiti sono %(types)s"
+
+#: deps/livesettings/templates/livesettings/_admin_site_views.html:4
+#: skins/default/templates/askbot.deps.livesettings/_admin_site_views.html:4
+msgid "Sites"
+msgstr "Siti"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:11
+#: deps/livesettings/templates/livesettings/site_settings.html:23
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23
+msgid "Documentation"
+msgstr "Documentazione"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:11
+#: deps/livesettings/templates/livesettings/site_settings.html:23
+#: skins/default/templates/account_settings.html:29
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23
+#: skins/default/templates/authopenid/changepw.html:5
+#: skins/default/templates/authopenid/changepw.html:14
+#: skins/default/templates/authopenid/settings.html:29
+msgid "Change password"
+msgstr "Cambia password"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:11
+#: deps/livesettings/templates/livesettings/site_settings.html:23
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23
+msgid "Log out"
+msgstr "Log out"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:14
+#: deps/livesettings/templates/livesettings/site_settings.html:26
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:14
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:26
+msgid "Home"
+msgstr "Home"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:15
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:15
+msgid "Edit Group Settings"
+msgstr "Modifica le impostazioni dei gruppi"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:22
+#: deps/livesettings/templates/livesettings/site_settings.html:50
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:22
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:50
+msgid "Please correct the error below."
+msgid_plural "Please correct the errors below."
+msgstr[0] "Per favore correggi l'errore sottostante"
+msgstr[1] "Per favore correggi gli errori sottostanti"
+
+#: deps/livesettings/templates/livesettings/group_settings.html:28
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:28
+#, python-format
+msgid "Settings included in %(name)s."
+msgstr "Impostazioni incluse in %(name)s."
+
+#: deps/livesettings/templates/livesettings/group_settings.html:62
+#: deps/livesettings/templates/livesettings/site_settings.html:97
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:62
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:97
+msgid "You don't have permission to edit values."
+msgstr "Non hai i permessi per modificare i valori."
+
+#: deps/livesettings/templates/livesettings/group_settings.html:68
+#: skins/default/templates/askbot.deps.livesettings/group_settings.html:68
+msgid "Setting groups"
+msgstr "Gruppi di impostazioni"
+
+#: deps/livesettings/templates/livesettings/site_settings.html:27
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:27
+msgid "Edit Site Settings"
+msgstr "Modifica impostazioni del sito"
+
+#: deps/livesettings/templates/livesettings/site_settings.html:43
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:43
+msgid "Livesettings are disabled for this site."
+msgstr "I Livesettings sono disabilitati per questo sito."
+
+#: deps/livesettings/templates/livesettings/site_settings.html:44
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:44
+msgid "All configuration options must be edited in the site settings.py file"
+msgstr "Tutte le opzioni di configurazione devono essere modificate nel file settings.py"
+
+#: deps/livesettings/templates/livesettings/site_settings.html:66
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:66
+#, python-format
+msgid "Group settings: %(name)s"
+msgstr "Impostazioni per i gruppi: %(name)s"
+
+#: deps/livesettings/templates/livesettings/site_settings.html:93
+#: skins/default/templates/askbot.deps.livesettings/site_settings.html:93
+msgid "Uncollapse all"
+msgstr "Espandi tutti"
+
+#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80
+msgid "Unknown error."
+msgstr "Errore sconosciuto"
+
+#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21
+msgid "ReCAPTCHA is wrongly configured."
+msgstr "Il reCAPTCHA è configurato in modo errato"
+
+#: deps/recaptcha_django/__init__.py:22
+msgid "Bad reCAPTCHA challenge parameter."
+msgstr "Il reCAPTCHA challenge parameter non è valido"
+
+#: deps/recaptcha_django/__init__.py:23
+msgid "The CAPTCHA solution was incorrect."
+msgstr "La soluzione del CAPTCHA non è esatta"
+
+#: deps/recaptcha_django/__init__.py:24
+msgid "Bad reCAPTCHA verification parameters."
+msgstr "Il verification parameter del reCAPTCHA non è valido"
+
+#: deps/recaptcha_django/__init__.py:25
+msgid "Provided reCAPTCHA API keys are not valid for this domain."
+msgstr "Le API keys per il reCAPTCHA fornite non sono valide per questo dominio"
+
+#: deps/recaptcha_django/__init__.py:26
+msgid "ReCAPTCHA could not be reached."
+msgstr "Non è stato possibile contattare il server reCAPTCHA "
+
+#: deps/recaptcha_django/__init__.py:73
+msgid "Invalid request"
+msgstr "Richiesta non valida"
+
+#: importers/stackexchange/management/commands/load_stackexchange.py:125
+msgid "Congratulations, you are now an Administrator"
+msgstr "Congratulazioni, ora sei un Amministratore"
+
+#: management/commands/send_email_alerts.py:418 models/__init__.py:1488
+msgid "email update message subject"
+msgstr "novità dal Q&A forum"
+
+#: management/commands/send_email_alerts.py:421
+#, python-format
+msgid "%(name)s, this is an update message header for %(num)d question"
+msgid_plural "%(name)s, this is an update message header for %(num)d questions"
+msgstr[0] "<p>Caro %(name)s,</p></p>ci sono degli aggiornamenti riguardanti questa domanda sul forum Q&A:</p>"
+msgstr[1] "<p>Caro %(name)s,</p><p>ci sono degli aggiornamenti riguardanti queste %(num) domande sul forum Q&A:</p>"
+
+#: management/commands/send_email_alerts.py:438
+msgid "new question"
+msgstr "nuova domanda"
+
+#: management/commands/send_email_alerts.py:455
+msgid "Please visit the askbot 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?"
+msgstr "Visita Askbot e controlla cosa c'è di nuovo! Spargi la voce: qualcuno che conosci può rispondere a queste domande, o trovare utile porne una?"
+
+#: management/commands/send_email_alerts.py:467
+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 askbot administrator."
+msgstr "Hai scelto di ricevere gli aggiornamenti al massimo 'ogni giorno' su alcune domande. Se ricevi più di un messaggio per giorno per favore notifica questo problema all'amministratore di Askbot."
+
+#: management/commands/send_email_alerts.py:473
+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 askbot administrator."
+msgstr "Hai scelto di ricevere gli aggiornamenti al massimo 'ogni settimana' su alcune domande. Se ricevi più di un messaggio per settimana per favore notifica questo problema all'amministratore di Askbot."
+
+#: management/commands/send_email_alerts.py:479
+msgid "There is a chance that you may be receiving links seen before - due to a technicality that will eventually go away. "
+msgstr "A causa di un problema tecnico, è possibile che tu riceva dei link già inviati prima. Stiamo lavorando per risolvere questo problema."
+
+#: management/commands/send_email_alerts.py:494
+#, python-format
+msgid "go to %(email_settings_link)s to change frequency of email updates or %(admin_email)s administrator"
+msgstr ""
+"<p>Ricorda che puoi <a href='%(email_settings_link)s'>modificare</a> la frequenza degli aggiornamenti via e-mail o disabilitarli completamente.<br/>\n"
+"Se credi di avere ricevuto questo messaggio erroneamente, per favore avverti l'amministratore del forum all'indirizzo %(admin_email)s.</p><p>Cordialmente,</p><p>Il tuo amico server del forum Q&A</p>"
+
+#: migrations/0005_install_badges.py:11
+msgid "Disciplined"
+msgstr "Ordinato"
+
+#: migrations/0005_install_badges.py:11
+msgid "disciplined"
+msgstr "ordinato"
+
+#: migrations/0005_install_badges.py:11
+msgid "Deleted own post with score of 3 or higher"
+msgstr "Ha cancellato un proprio post con un punteggio di 3 o più"
+
+#: migrations/0005_install_badges.py:12
+msgid "Peer Pressure"
+msgstr "Sotto pressione"
+
+#: migrations/0005_install_badges.py:12
+msgid "peer-pressure"
+msgstr "sotto-pressione"
+
+#: migrations/0005_install_badges.py:12
+msgid "Deleted own post with score of -3 or lower"
+msgstr "Ha cancellato un proprio post con un punteggio di -3 o meno"
+
+#: migrations/0005_install_badges.py:13
+msgid "Nice answer"
+msgstr "Buona risposta"
+
+#: migrations/0005_install_badges.py:13
+msgid "nice-answer"
+msgstr "buona-risposta"
+
+#: migrations/0005_install_badges.py:13
+msgid "Answer voted up 10 times"
+msgstr "Risposta votata 10 volte"
+
+#: migrations/0005_install_badges.py:14
+msgid "Nice Question"
+msgstr "Buona domanda"
+
+#: migrations/0005_install_badges.py:14
+msgid "nice-question"
+msgstr "buona-domanda"
+
+#: migrations/0005_install_badges.py:14
+msgid "Question voted up 10 times"
+msgstr "Domanda votata 10 volte"
+
+#: migrations/0005_install_badges.py:15
+msgid "Pundit"
+msgstr "Sapientone"
+
+#: migrations/0005_install_badges.py:15
+msgid "pundit"
+msgstr "sapientone"
+
+#: migrations/0005_install_badges.py:15
+msgid "Left 10 comments with score of 10 or more"
+msgstr "Ha lasciato 10 commenti con punteggio 10 o più"
+
+#: migrations/0005_install_badges.py:16
+msgid "Popular Question"
+msgstr "Domanda gettonata"
+
+#: migrations/0005_install_badges.py:16
+msgid "popular-question"
+msgstr "domanda-gettonata"
+
+#: migrations/0005_install_badges.py:16
+msgid "Asked a question with 1,000 views"
+msgstr "Ha posto una domanda con più di 1000 consultazioni"
+
+#: migrations/0005_install_badges.py:17
+msgid "Citizen patrol"
+msgstr "Sempre in guardia"
+
+#: migrations/0005_install_badges.py:17
+msgid "citizen-patrol"
+msgstr "sempre-in-guardia"
+
+#: migrations/0005_install_badges.py:17
+msgid "First flagged post"
+msgstr "Ha segnalato un post come inappropriato"
+
+#: migrations/0005_install_badges.py:18
+msgid "Cleanup"
+msgstr "Riparatore"
+
+#: migrations/0005_install_badges.py:18
+msgid "cleanup"
+msgstr "riparatore"
+
+#: migrations/0005_install_badges.py:18
+msgid "First rollback"
+msgstr "Ha annullato una revisione per la prima volta"
+
+#: migrations/0005_install_badges.py:19
+msgid "Critic"
+msgstr "Critico"
+
+#: migrations/0005_install_badges.py:19
+msgid "critic"
+msgstr "critico"
+
+#: migrations/0005_install_badges.py:19
+msgid "First down vote"
+msgstr "Primo voto negativo"
+
+#: migrations/0005_install_badges.py:20
+msgid "Editor"
+msgstr "Revisore"
+
+#: migrations/0005_install_badges.py:20
+msgid "editor"
+msgstr "revisore"
+
+#: migrations/0005_install_badges.py:20
+msgid "First edit"
+msgstr "Prima revisione"
+
+#: migrations/0005_install_badges.py:21
+msgid "Organizer"
+msgstr "Organizzatore"
+
+#: migrations/0005_install_badges.py:21
+msgid "organizer"
+msgstr "Organizzatore"
+
+#: migrations/0005_install_badges.py:21
+msgid "First retag"
+msgstr "Ha ritaggato una domanda per la prima volta"
+
+#: migrations/0005_install_badges.py:22
+msgid "Scholar"
+msgstr "Studioso"
+
+#: migrations/0005_install_badges.py:22
+msgid "scholar"
+msgstr "Studioso"
+
+#: migrations/0005_install_badges.py:22
+msgid "First accepted answer on your own question"
+msgstr "Prima risposta accettata a una tua domanda"
+
+#: migrations/0005_install_badges.py:23
+msgid "Student"
+msgstr "Studente"
+
+#: migrations/0005_install_badges.py:23
+msgid "student"
+msgstr "studente"
+
+#: migrations/0005_install_badges.py:23
+msgid "Asked first question with at least one up vote"
+msgstr "Ha posto per la prima volta una domanda con almeno un voto"
+
+#: migrations/0005_install_badges.py:24
+msgid "Supporter"
+msgstr "Sostenitore"
+
+#: migrations/0005_install_badges.py:24
+msgid "supporter"
+msgstr "sostenitore"
+
+#: migrations/0005_install_badges.py:24
+msgid "First up vote"
+msgstr "Primo voto positivo"
+
+#: migrations/0005_install_badges.py:25
+msgid "Teacher"
+msgstr "Insegnante"
+
+#: migrations/0005_install_badges.py:25
+msgid "teacher"
+msgstr "insegnante"
+
+#: migrations/0005_install_badges.py:25
+msgid "Answered first question with at least one up vote"
+msgstr "Ha risposto per la prima volta a una domanda con almeno un voto"
+
+#: migrations/0005_install_badges.py:26
+msgid "Autobiographer"
+msgstr "Autobiografo"
+
+#: migrations/0005_install_badges.py:26
+msgid "autobiographer"
+msgstr "autobiografo"
+
+#: migrations/0005_install_badges.py:26
+msgid "Completed all user profile fields"
+msgstr "Ha completato tutti i campi del suo profilo utente"
+
+#: migrations/0005_install_badges.py:27
+msgid "Self-Learner"
+msgstr "Autodidatta"
+
+#: migrations/0005_install_badges.py:27
+msgid "self-learner"
+msgstr "autodidatta"
+
+#: migrations/0005_install_badges.py:27
+msgid "Answered your own question with at least 3 up votes"
+msgstr "Ha risposto da solo a una sua domanda con almeno 3 voti"
+
+#: migrations/0005_install_badges.py:28
+msgid "Great Answer"
+msgstr "Risposta eccezionale"
+
+#: migrations/0005_install_badges.py:28
+msgid "great-answer"
+msgstr "risposta-eccezionale"
+
+#: migrations/0005_install_badges.py:28
+msgid "Answer voted up 100 times"
+msgstr "Risposta con almeno 100 voti"
+
+#: migrations/0005_install_badges.py:29
+msgid "Great Question"
+msgstr "Domanda eccezionale"
+
+#: migrations/0005_install_badges.py:29
+msgid "great-question"
+msgstr "domanda-eccezionale"
+
+#: migrations/0005_install_badges.py:29
+msgid "Question voted up 100 times"
+msgstr "Domanda con almeno 100 voti"
+
+#: migrations/0005_install_badges.py:30
+msgid "Stellar Question"
+msgstr "Domanda stellare"
+
+#: migrations/0005_install_badges.py:30
+msgid "stellar-question"
+msgstr "domanda-stellare"
+
+#: migrations/0005_install_badges.py:30
+msgid "Question favorited by 100 users"
+msgstr "Domanda scelta tra le \"preferite\" da almeno 100 utenti"
+
+#: migrations/0005_install_badges.py:31
+msgid "Famous question"
+msgstr "Domanda famosa"
+
+#: migrations/0005_install_badges.py:31
+msgid "famous-question"
+msgstr "domanda-famosa"
+
+#: migrations/0005_install_badges.py:31
+msgid "Asked a question with 10,000 views"
+msgstr "Ha posto una domanda con almeno 10.000 consultazioni"
+
+#: migrations/0005_install_badges.py:32
+msgid "Alpha"
+msgstr "Alpha"
+
+#: migrations/0005_install_badges.py:32
+msgid "alpha"
+msgstr "alpha"
+
+#: migrations/0005_install_badges.py:32
+msgid "Actively participated in the private alpha"
+msgstr "Ha partecipato attivamente alla primissima fase di testing"
+
+#: migrations/0005_install_badges.py:33
+msgid "Good Answer"
+msgstr "Ottima risposta"
+
+#: migrations/0005_install_badges.py:33
+msgid "good-answer"
+msgstr "ottima-risposta"
+
+#: migrations/0005_install_badges.py:33
+msgid "Answer voted up 25 times"
+msgstr "Risposta con almeno 25 voti"
+
+#: migrations/0005_install_badges.py:34
+msgid "Good Question"
+msgstr "Ottima domanda"
+
+#: migrations/0005_install_badges.py:34
+msgid "good-question"
+msgstr "ottima-domanda"
+
+#: migrations/0005_install_badges.py:34
+msgid "Question voted up 25 times"
+msgstr "Domanda con almeno 25 voti"
+
+#: migrations/0005_install_badges.py:35
+msgid "Favorite Question"
+msgstr "Domanda apprezzata"
+
+#: migrations/0005_install_badges.py:35
+msgid "favorite-question"
+msgstr "domanda-apprezzata"
+
+#: migrations/0005_install_badges.py:35
+msgid "Question favorited by 25 users"
+msgstr "Domanda inserita tra le \"preferite\" da almeno 25 utenti"
+
+#: migrations/0005_install_badges.py:36
+msgid "Civic duty"
+msgstr "Senso civico"
+
+#: migrations/0005_install_badges.py:36
+msgid "civic-duty"
+msgstr "senso-civico"
+
+#: migrations/0005_install_badges.py:36
+msgid "Voted 300 times"
+msgstr "Ha votato almeno 300 volte"
+
+#: migrations/0005_install_badges.py:37
+msgid "Strunk & White"
+msgstr "Devoto-Oli"
+
+#: migrations/0005_install_badges.py:37
+msgid "strunk-and-white"
+msgstr "devoto-oli"
+
+#: migrations/0005_install_badges.py:37
+msgid "Edited 100 entries"
+msgstr "Ha fatto almeno 100 revisioni"
+
+#: migrations/0005_install_badges.py:38
+msgid "Generalist"
+msgstr "Generalista"
+
+#: migrations/0005_install_badges.py:38
+msgid "generalist"
+msgstr "generalista"
+
+#: migrations/0005_install_badges.py:38
+msgid "Active in many different tags"
+msgstr "Attivo in domande con molti tag diversi"
+
+#: migrations/0005_install_badges.py:39
+msgid "Expert"
+msgstr "Esperto"
+
+#: migrations/0005_install_badges.py:39
+msgid "expert"
+msgstr "esperto"
+
+#: migrations/0005_install_badges.py:39
+msgid "Very active in one tag"
+msgstr "Molto attivo in domande con lo stesso tag"
+
+#: migrations/0005_install_badges.py:40
+msgid "Yearling"
+msgstr "Gavetta"
+
+#: migrations/0005_install_badges.py:40
+msgid "yearling"
+msgstr "gavetta"
+
+#: migrations/0005_install_badges.py:40
+msgid "Active member for a year"
+msgstr "Membro attivo da almeno un anno"
+
+#: migrations/0005_install_badges.py:41
+msgid "Notable Question"
+msgstr "Domanda notevole"
+
+#: migrations/0005_install_badges.py:41
+msgid "notable-question"
+msgstr "domanda-notevole"
+
+#: migrations/0005_install_badges.py:41
+msgid "Asked a question with 2,500 views"
+msgstr "Ha posto una domanda con almeno 2500 consultazioni"
+
+#: migrations/0005_install_badges.py:42
+msgid "Enlightened"
+msgstr "Illuminato"
+
+#: migrations/0005_install_badges.py:42
+msgid "enlightened"
+msgstr "illuminato"
+
+#: migrations/0005_install_badges.py:42
+msgid "First answer was accepted with at least 10 up votes"
+msgstr "La sua prima risposta è stata accettata con almeno 10 voti"
+
+#: migrations/0005_install_badges.py:43
+msgid "Beta"
+msgstr "Beta"
+
+#: migrations/0005_install_badges.py:43
+msgid "beta"
+msgstr "beta"
+
+#: migrations/0005_install_badges.py:43
+msgid "Actively participated in the private beta"
+msgstr "Ha partecipato attivamente alla fase di beta-testing"
+
+#: migrations/0005_install_badges.py:44
+msgid "Guru"
+msgstr "Guru"
+
+#: migrations/0005_install_badges.py:44
+msgid "guru"
+msgstr "guru"
+
+#: migrations/0005_install_badges.py:44
+msgid "Accepted answer and voted up 40 times"
+msgstr "Risposta accettata e con almeno 40 voti"
+
+#: migrations/0005_install_badges.py:45
+msgid "Necromancer"
+msgstr "Negromante"
+
+#: migrations/0005_install_badges.py:45
+msgid "necromancer"
+msgstr "negromante"
+
+#: migrations/0005_install_badges.py:45
+msgid "Answered a question more than 60 days later with at least 5 votes"
+msgstr "Ha risposto a una domanda vecchia di almeno 60 giorni ottenendo almeno 5 voti"
+
+#: migrations/0005_install_badges.py:46
+msgid "Taxonomist"
+msgstr "Tassonomista"
+
+#: migrations/0005_install_badges.py:46
+msgid "taxonomist"
+msgstr "tassonomista"
+
+#: migrations/0005_install_badges.py:46
+msgid "Created a tag used by 50 questions"
+msgstr "Ha creato un tag usato da almeno 50 domande"
+
+#: models/__init__.py:162
+msgid "Sorry, you cannot accept or unaccept best answers because your account is blocked"
+msgstr "Mi spiace, non puoi accettare risposte perché il tuo account è bloccato"
+
+#: models/__init__.py:167
+msgid "Sorry, you cannot accept or unaccept best answers because your account is suspended"
+msgstr "Mi spiace, non puoi accettare risposte perché il tuo account è sospeso"
+
+#: models/__init__.py:173
+msgid "Sorry, you cannot accept or unaccept your own answer to your own question"
+msgstr "Mi spiace, non puoi accettare una tua risposta a una tua domanda"
+
+#: models/__init__.py:180
+#, python-format
+msgid "Sorry, only original author of the question - %(username)s - can accept the best answer"
+msgstr "Mi spiace, solo l'autore della domanda, %(username)s, può accettare una risposta"
+
+#: models/__init__.py:203
+msgid "cannot vote for own posts"
+msgstr "Mi spiace, non puoi votare per i tuoi post"
+
+#: models/__init__.py:206
+msgid "Sorry your account appears to be blocked "
+msgstr "Mi spiace, il tuo account è stato bloccato"
+
+#: models/__init__.py:211
+msgid "Sorry your account appears to be suspended "
+msgstr "Mi spiace, il tuo account è stato sospeso"
+
+#: models/__init__.py:221
+#, python-format
+msgid ">%(points)s points required to upvote"
+msgstr "Serve avere più di %(points)s punti reputazione per poter votare a favore"
+
+#: models/__init__.py:227
+#, python-format
+msgid ">%(points)s points required to downvote"
+msgstr "Serve avere più di %(points)s punti reputazione per poter votare contro"
+
+#: models/__init__.py:242
+msgid "Sorry, blocked users cannot upload files"
+msgstr "Mi spiace, gli utenti bloccati non possono caricare files"
+
+#: models/__init__.py:243
+msgid "Sorry, suspended users cannot upload files"
+msgstr "Mi spiace, gli utenti sospesi non possono caricare files"
+
+#: models/__init__.py:245
+#, python-format
+msgid "uploading images is limited to users with >%(min_rep)s reputation points"
+msgstr "Mi spiace, serve avere più di %(min_rep)s punti reputazione per caricare immagini"
+
+#: models/__init__.py:264 models/__init__.py:297 models/__init__.py:1784
+msgid "blocked users cannot post"
+msgstr "Mi spiace, il tuo account è stato bloccato; non puoi fare nuovi post finché la questione non verrà risolta. Contatta l'amministratore del forum per trovare una soluzione."
+
+#: models/__init__.py:265 models/__init__.py:1787
+msgid "suspended users cannot post"
+msgstr "Mi spiace, il tuo account è stato sospeso; non puoi fare nuovi post finché la questione non verrà risolta. Puoi però modificare i tuoi vecchi post. Contatta l'amministratore del forum per trovare una soluzione."
+
+#: models/__init__.py:283
+msgid "Sorry, since your account is suspended you can comment only your own posts"
+msgstr "Mi spiace, visto che il tuo account è sospeso puoi commentare solo i tuoi post"
+
+#: models/__init__.py:287
+#, python-format
+msgid "Sorry, to comment any post a minimum reputation of %(min_rep)s points is required. You can still comment your own posts and answers to your questions"
+msgstr "Mi spiace, puoi commentare solo i tuoi post e le risposte alle tue domande. Per commentare gli altri post serve avere almeno %(min_rep)s punti reputazione. "
+
+#: models/__init__.py:315
+msgid "This post has been deleted and can be seen only by post ownwers, site administrators and moderators"
+msgstr "Questo post è stato cancellato e può essere consultato solo dall'autore, dai moderatori e dagli amministratori"
+
+#: models/__init__.py:332
+msgid "Sorry, only moderators, site administrators and post owners can edit deleted posts"
+msgstr "Mi spiace, solo l'autore, i moderatori e gli amministratori possono modificare un post cancellato."
+
+#: models/__init__.py:347
+msgid "Sorry, since your account is blocked you cannot edit posts"
+msgstr "Mi spiace, non puoi modificare alcun post perché il tuo account è bloccato"
+
+#: models/__init__.py:351
+msgid "Sorry, since your account is suspended you can edit only your own posts"
+msgstr "Mi spiace, puoi modificare solo i tuoi post perché il tuo account è sospeso"
+
+#: models/__init__.py:356
+#, python-format
+msgid "Sorry, to edit wiki' posts, a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per modificare i post appartenenti allo wiki servono almeno %(min_rep)s punti reputazione"
+
+#: models/__init__.py:363
+#, python-format
+msgid "Sorry, to edit other people' posts, a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per modificare i post altrui servono almeno %(min_rep)s punti reputazione"
+
+#: models/__init__.py:426
+msgid "Sorry, cannot delete your question since it has an upvoted answer posted by someone else"
+msgid_plural "Sorry, cannot delete your question since it has some upvoted answers posted by other users"
+msgstr[0] "Mi spiace, non puoi cancellare la tua domanda perché qualcun altro ha fornito una risposta con voti a favore"
+msgstr[1] "Mi spiace, non puoi cancellare la tua domanda perché qualcun altro ha fornito delle risposte con voti a favore"
+
+#: models/__init__.py:441
+msgid "Sorry, since your account is blocked you cannot delete posts"
+msgstr "Mi spiace, non puoi cancellare post perché il tuo account è blocato"
+
+#: models/__init__.py:445
+msgid "Sorry, since your account is suspended you can delete only your own posts"
+msgstr "Mi spiace, puoi cancellare solo i tuoi post perché il tuo account è sospeso"
+
+#: models/__init__.py:449
+#, python-format
+msgid "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per cancellare i post altrui servono almeno %(min_rep)s punti reputazione"
+
+#: models/__init__.py:469
+msgid "Sorry, since your account is blocked you cannot close questions"
+msgstr "Mi spiace, non puoi chiudere domande perché il tuo account è bloccato"
+
+#: models/__init__.py:473
+msgid "Sorry, since your account is suspended you cannot close questions"
+msgstr "Mi spiace, non puoi chiudere domande perché il tuo account è sospeso"
+
+#: models/__init__.py:477
+#, python-format
+msgid "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per chiudere post altrui servono almeno %(min_rep)s punti reputazione."
+
+#: models/__init__.py:486
+#, python-format
+msgid "Sorry, to close own question a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per chiudere una tua domanda servono almeno %(min_rep)s punti reputazione."
+
+#: models/__init__.py:510
+#, python-format
+msgid "Sorry, only administrators, moderators or post owners with reputation > %(min_rep)s can reopen questions."
+msgstr "Mi spiace, solo amministratori, moderatori e autori con più di %(min_rep)s punti reputazione possono riaprire domande."
+
+#: models/__init__.py:516
+#, python-format
+msgid "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, per riaprire una tua domanda devi avere almeno %(min_rep)s punti reputazione."
+
+#: models/__init__.py:536
+msgid "cannot flag message as offensive twice"
+msgstr "Hai già segnalato questo messaggio come inappropriato, non puoi farlo una seconda volta."
+
+#: models/__init__.py:541
+msgid "blocked users cannot flag posts"
+msgstr "Non puoi segnalare questo messaggio come inappropriato perché il tuo account è bloccato."
+
+#: models/__init__.py:543
+msgid "suspended users cannot flag posts"
+msgstr "Non puoi segnalare questo messaggio come inappropriato perché il tuo account è sospeso."
+
+#: models/__init__.py:545
+#, python-format
+msgid "need > %(min_rep)s points to flag spam"
+msgstr "Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un post come inappropriato."
+
+#: models/__init__.py:566
+#, python-format
+msgid "%(max_flags_per_day)s exceeded"
+msgstr "Mi spiace, hai già segnalato %(max_flags_per_day)s post come offensivi oggi, hai superato il massimo giornaliero."
+
+#: models/__init__.py:581
+msgid "Sorry, only question owners, site administrators and moderators can retag deleted questions"
+msgstr "Mi spiace, solo gli autori, i moderatori e gli amministratori possono cambiare i tag di una domanda cancellata"
+
+#: models/__init__.py:588
+msgid "Sorry, since your account is blocked you cannot retag questions"
+msgstr "Mi spiace, non puoi cambiare i tag perché il tuo account è bloccato."
+
+#: models/__init__.py:592
+msgid "Sorry, since your account is suspended you can retag only your own questions"
+msgstr "Mi spiace, puoi cambiare i tag solo alle tue domande perché il tuo account è sospeso."
+
+#: models/__init__.py:596
+#, python-format
+msgid "Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
+msgstr "Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag di una domanda"
+
+#: models/__init__.py:615
+msgid "Sorry, since your account is blocked you cannot delete comment"
+msgstr "Mi spiace, non puoi cancellare commenti perché il tuo account è bloccato."
+
+#: models/__init__.py:619
+msgid "Sorry, since your account is suspended you can delete only your own comments"
+msgstr "Mi spiace, puoi cancellare solo i tuoi commenti perché il tuo account è sospeso."
+
+#: models/__init__.py:623
+#, python-format
+msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
+msgstr "Mi spiace, servono almeno %(min_rep)s punti reputazione per cancellare commenti."
+
+#: models/__init__.py:646
+msgid "cannot revoke old vote"
+msgstr "Mi spiace, non è possibile annullare voti."
+
+#: models/__init__.py:1121 views/users.py:401
+msgid "Site Adminstrator"
+msgstr "Amministratore del sito"
+
+#: models/__init__.py:1123 views/users.py:403
+msgid "Forum Moderator"
+msgstr "Moderatore del forum"
+
+#: models/__init__.py:1125 views/users.py:405
+msgid "Suspended User"
+msgstr "Utente sospeso"
+
+#: models/__init__.py:1127 views/users.py:407
+msgid "Blocked User"
+msgstr "Utente bloccato"
+
+#: models/__init__.py:1129 views/users.py:409
+msgid "Registered User"
+msgstr "Utente registrato"
+
+#: models/__init__.py:1131
+msgid "Watched User"
+msgstr "Utente in prova"
+
+#: models/__init__.py:1133
+msgid "Approved User"
+msgstr "Utente approvato"
+
+#: models/__init__.py:1616
+#, python-format
+msgid "Congratulations, you have received a badge '%(badge_name)s'. Check out <a href=\"%(user_profile)s\">your profile</a>."
+msgstr "Congratulazioni, hai ricevuto la medaglia %(badge_name)s. Controlla il <a href=\"%(user_profile)s\">tuo profilo</a>."
+
+#: models/question.py:576
+#, python-format
+msgid "%(author)s modified the question"
+msgstr "%(author)s ha modificato la sua domanda"
+
+#: models/question.py:580
+#, python-format
+msgid "%(people)s posted %(new_answer_count)s new answers"
+msgstr "%(people)s ha/hanno scritto %(new_answer_count)s nuova/e risposta/e"
+
+#: models/question.py:585
+#, python-format
+msgid "%(people)s commented the question"
+msgstr "%(people)s ha/hanno commentato la domanda"
+
+#: models/question.py:590
+#, python-format
+msgid "%(people)s commented answers"
+msgstr "%(people)s ha/hanno commentato alcune risposte"
+
+#: models/question.py:592
+#, python-format
+msgid "%(people)s commented an answer"
+msgstr "%(people)s ha/hanno commentato una risposta"
+
+#: models/repute.py:16 skins/default/templates/badges.html:54
+msgid "gold"
+msgstr "oro"
+
+#: models/repute.py:17 skins/default/templates/badges.html:62
+msgid "silver"
+msgstr "argento"
+
+#: models/repute.py:18 skins/default/templates/badges.html:69
+msgid "bronze"
+msgstr "bronzo"
+
+#: models/repute.py:150
+#, python-format
+msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
+msgstr "<em>Modificato da un moderatore. Motivo:</em> %(reason)s"
+
+#: models/repute.py:161
+#, python-format
+msgid "%(points)s points were added for %(username)s's contribution to question %(question_title)s"
+msgstr " %(username)s ha guadagnato %(points)s punti reputazione per i suoi contributi alla domanda %(question_title)s"
+
+#: models/repute.py:166
+#, python-format
+msgid "%(points)s points were subtracted for %(username)s's contribution to question %(question_title)s"
+msgstr " %(username)s ha perso %(points)s punti reputazione per i suoi contributi alla domanda %(question_title)s"
+
+#: models/tag.py:75
+msgid "interesting"
+msgstr "interessanti"
+
+#: models/tag.py:75
+msgid "ignored"
+msgstr "ignorate"
+
+#: models/user.py:193
+msgid "Entire forum"
+msgstr "Tutto il forum"
+
+#: models/user.py:194
+msgid "Questions that I asked"
+msgstr "Domande poste da me"
+
+#: models/user.py:195
+msgid "Questions that I answered"
+msgstr "Domande a cui ho risposto"
+
+#: models/user.py:196
+msgid "Individually selected questions"
+msgstr "Domande selezionate individualmente"
+
+#: models/user.py:197
+msgid "Mentions and comment responses"
+msgstr "Citazioni e risposte ai miei commenti"
+
+#: models/user.py:200
+msgid "Instantly"
+msgstr "Immediatamente"
+
+#: models/user.py:201
+msgid "Daily"
+msgstr "Ogni giorno"
+
+#: models/user.py:202
+msgid "Weekly"
+msgstr "Ogni settimana"
+
+#: models/user.py:203
+msgid "No email"
+msgstr "Mai"
+
+#: skins/default/templates/404.html:24
+msgid "Sorry, could not find the page you requested."
+msgstr "Pagina non trovata"
+
+#: skins/default/templates/404.html:26
+msgid "This might have happened for the following reasons:"
+msgstr "Possibili motivi:"
+
+#: skins/default/templates/404.html:28
+msgid "this question or answer has been deleted;"
+msgstr "questa domanda o risposta è stata cancellata;"
+
+#: skins/default/templates/404.html:29
+msgid "url has error - please check it;"
+msgstr "l'indirizzo è errato &mdash; controllalo;"
+
+#: skins/default/templates/404.html:30
+msgid "the page you tried to visit is protected or you don't have sufficient points, see"
+msgstr "la pagina che stai cercando di visitare è protetta oppure non hai sufficienti punti reputazione, vedi"
+
+#: skins/default/templates/404.html:31
+msgid "if you believe this error 404 should not have occured, please"
+msgstr "se credi che questo messaggio di errore 404 sia inappropriato,"
+
+#: skins/default/templates/404.html:32
+msgid "report this problem"
+msgstr "per favore segnala questo problema"
+
+#: skins/default/templates/404.html:41 skins/default/templates/500.html:27
+msgid "back to previous page"
+msgstr "torna alla pagina precedente"
+
+#: skins/default/templates/404.html:42
+#: skins/default/templates/questions.html:34
+msgid "see all questions"
+msgstr "vedi tutte le domande"
+
+#: skins/default/templates/404.html:43
+msgid "see all tags"
+msgstr "vedi tutti i tag"
+
+#: skins/default/templates/500.html:22
+msgid "sorry, system error"
+msgstr "mi spiace, si è verificato un errore generale"
+
+#: skins/default/templates/500.html:24
+msgid "system error log is recorded, error will be fixed as soon as possible"
+msgstr "questo errore è stato registrato, sarà risolto al più presto possibile"
+
+#: skins/default/templates/500.html:25
+msgid "please report the error to the site administrators if you wish"
+msgstr "puoi segnalare tu stesso questo errore agli amministratori del sito"
+
+#: skins/default/templates/500.html:28
+msgid "see latest questions"
+msgstr "vedi le domande recenti"
+
+#: skins/default/templates/500.html:29
+msgid "see tags"
+msgstr "vedi i tag"
+
+#: skins/default/templates/about.html:6 skins/default/templates/about.html:11
+msgid "About"
+msgstr "About"
+
+#: skins/default/templates/account_settings.html:4
+#: skins/default/templates/authopenid/settings.html:4
+msgid "Account functions"
+msgstr "Impostazioni dell'utente"
+
+#: skins/default/templates/account_settings.html:30
+#: skins/default/templates/authopenid/settings.html:30
+msgid "Give your account a new password."
+msgstr "Scegli una nuova password"
+
+#: skins/default/templates/account_settings.html:32
+#: skins/default/templates/authopenid/settings.html:31
+msgid "Change email "
+msgstr "Cambia la tua e-mail"
+
+#: skins/default/templates/account_settings.html:33
+#: skins/default/templates/authopenid/settings.html:32
+msgid "Add or update the email address associated with your account."
+msgstr "Imposta o modifica il tuo l'indirizzo e-mail"
+
+#: skins/default/templates/account_settings.html:35
+#: skins/default/templates/authopenid/changeopenid.html:4
+#: skins/default/templates/authopenid/changeopenid.html:30
+#: skins/default/templates/authopenid/settings.html:34
+msgid "Change OpenID"
+msgstr "Cambia OpenID"
+
+#: skins/default/templates/account_settings.html:36
+#: skins/default/templates/authopenid/settings.html:35
+msgid "Change openid associated to your account"
+msgstr "Cambia il tuo OpenID"
+
+#: skins/default/templates/account_settings.html:39
+#: skins/default/templates/authopenid/delete.html:4
+#: skins/default/templates/authopenid/settings.html:38
+msgid "Delete account"
+msgstr "Cancella il tuo utente"
+
+#: skins/default/templates/account_settings.html:40
+#: skins/default/templates/authopenid/settings.html:39
+msgid "Erase your username and all your data from website"
+msgstr "Cancella il tuo nome utente e tutti i tuoi dati da questo sito"
+
+#: skins/default/templates/answer_edit.html:5
+#: skins/default/templates/answer_edit.html:48
+msgid "Edit answer"
+msgstr "Modifica risposta"
+
+#: skins/default/templates/answer_edit.html:25
+#: skins/default/templates/answer_edit.html:28
+#: skins/default/templates/ask.html:26 skins/default/templates/ask.html:29
+#: skins/default/templates/question.html:48
+#: skins/default/templates/question.html:51
+#: skins/default/templates/question_edit.html:25
+#: skins/default/templates/question_edit.html:28
+msgid "hide preview"
+msgstr "nascondi anteprima"
+
+#: skins/default/templates/answer_edit.html:28
+#: skins/default/templates/ask.html:29
+#: skins/default/templates/question.html:51
+#: skins/default/templates/question_edit.html:28
+msgid "show preview"
+msgstr "mostra anteprima"
+
+#: skins/default/templates/answer_edit.html:48
+#: skins/default/templates/question_edit.html:66
+#: skins/default/templates/question_retag.html:53
+#: skins/default/templates/revisions_answer.html:38
+#: skins/default/templates/revisions_question.html:38
+msgid "back"
+msgstr "indietro"
+
+#: skins/default/templates/answer_edit.html:53
+#: skins/default/templates/question_edit.html:71
+#: skins/default/templates/revisions_answer.html:52
+#: skins/default/templates/revisions_question.html:52
+msgid "revision"
+msgstr "revisione"
+
+#: skins/default/templates/answer_edit.html:56
+#: skins/default/templates/question_edit.html:76
+msgid "select revision"
+msgstr "scegli revisione"
+
+#: skins/default/templates/answer_edit.html:63
+#: skins/default/templates/ask.html:98
+#: skins/default/templates/ask_form.html:39
+#: skins/default/templates/question.html:428
+#: skins/default/templates/question_edit.html:93
+msgid "Toggle the real time Markdown editor preview"
+msgstr "attiva/disattiva l'anteprima del codice Markdown"
+
+#: skins/default/templates/answer_edit.html:63
+#: skins/default/templates/ask.html:98
+#: skins/default/templates/ask_form.html:39
+#: skins/default/templates/question.html:429
+#: skins/default/templates/question_edit.html:93
+msgid "toggle preview"
+msgstr "attiva/disattiva anteprima"
+
+#: skins/default/templates/answer_edit.html:72
+#: skins/default/templates/question_edit.html:119
+msgid "Save edit"
+msgstr "Salva modifica"
+
+#: skins/default/templates/answer_edit.html:73
+#: skins/default/templates/close.html:29
+#: skins/default/templates/feedback.html:50
+#: skins/default/templates/question_edit.html:120
+#: skins/default/templates/question_retag.html:75
+#: skins/default/templates/reopen.html:40
+#: skins/default/templates/user_edit.html:89
+#: skins/default/templates/authopenid/changeemail.html:40
+msgid "Cancel"
+msgstr "Annulla"
+
+#: skins/default/templates/answer_edit_tips.html:4
+msgid "answer tips"
+msgstr "consigli per le risposte"
+
+#: skins/default/templates/answer_edit_tips.html:7
+msgid "please make your answer relevant to this community"
+msgstr "fai in modo che la tua risposta sia interessante per la comunità"
+
+#: skins/default/templates/answer_edit_tips.html:10
+msgid "try to give an answer, rather than engage into a discussion"
+msgstr "cerca di dare una risposta, non di iniziare una discussione"
+
+#: skins/default/templates/answer_edit_tips.html:13
+msgid "please try to provide details"
+msgstr "includi tutti i dettagli necessari"
+
+#: skins/default/templates/answer_edit_tips.html:16
+#: skins/default/templates/question_edit_tips.html:13
+msgid "be clear and concise"
+msgstr "sii chiaro e conciso"
+
+#: skins/default/templates/answer_edit_tips.html:20
+#: skins/default/templates/question_edit_tips.html:17
+msgid "see frequently asked questions"
+msgstr "vedi le domande frequenti"
+
+#: skins/default/templates/answer_edit_tips.html:26
+#: skins/default/templates/question_edit_tips.html:23
+msgid "Markdown tips"
+msgstr "sintassi Markdown"
+
+#: skins/default/templates/answer_edit_tips.html:29
+#: skins/default/templates/question_edit_tips.html:26
+msgid "*italic* or __italic__"
+msgstr "*corsivo* o _corsivo_"
+
+#: skins/default/templates/answer_edit_tips.html:32
+#: skins/default/templates/question_edit_tips.html:29
+msgid "**bold** or __bold__"
+msgstr "**grassetto** o __grassetto__"
+
+#: skins/default/templates/answer_edit_tips.html:35
+#: skins/default/templates/question_edit_tips.html:32
+msgid "link"
+msgstr "collegamento"
+
+#: skins/default/templates/answer_edit_tips.html:35
+#: skins/default/templates/answer_edit_tips.html:39
+#: skins/default/templates/question_edit_tips.html:32
+#: skins/default/templates/question_edit_tips.html:37
+msgid "text"
+msgstr "testo"
+
+#: skins/default/templates/answer_edit_tips.html:39
+#: skins/default/templates/question_edit_tips.html:37
+msgid "image"
+msgstr "immagine"
+
+#: skins/default/templates/answer_edit_tips.html:43
+#: skins/default/templates/question_edit_tips.html:41
+msgid "numbered list:"
+msgstr "lista numerata:"
+
+#: skins/default/templates/answer_edit_tips.html:48
+#: skins/default/templates/question_edit_tips.html:46
+msgid "basic HTML tags are also supported"
+msgstr "sono supportati anche alcuni semplici tag HTML"
+
+#: skins/default/templates/answer_edit_tips.html:52
+#: skins/default/templates/question_edit_tips.html:50
+msgid "learn more about Markdown"
+msgstr "scopri di più sul linguaggio Markdown"
+
+#: skins/default/templates/ask.html:5 skins/default/templates/ask.html:62
+msgid "Ask a question"
+msgstr "Poni una domanda"
+
+#: skins/default/templates/ask.html:69
+#: skins/default/templates/ask_form.html:11
+msgid "login to post question info"
+msgstr "<span class=\"strong big\">Puoi cominciare ora a scrivere la tua domanda come utente anonimo</span>. Quando avrai finito, sarai reindirizzato alla pagina di accesso/registrazione. La tua domanda sarà salvata e pubblicata non appena ti sarai registrato. Accedere al proprio account richiede circa 30 secondi, registrarne uno nuovo meno di un minuto."
+
+#: skins/default/templates/ask.html:75
+#, python-format
+msgid ""
+"must have valid %(email)s to post, \n"
+" see %(email_validation_faq_url)s\n"
+" "
+msgstr "<span class='strong big'>Il tuo indirizzo e-mail %(email)s non è stato ancora verificato</span> Prima di pubblicare messaggi devi verificare il tuo indirizzo; maggiori dettagli <a href='%(email_validation_faq_url)s'>qui</a>.<br>Puoi porre la tua domanda ora e verificare la tua e-mail in un secondo momento; la tua domanda nel frattempo rimarrà in attesa."
+
+#: skins/default/templates/ask.html:113
+#: skins/default/templates/ask_form.html:54
+msgid "(required)"
+msgstr "(campo obbligatorio)"
+
+#: skins/default/templates/ask.html:120
+#: skins/default/templates/ask_form.html:61
+msgid "Login/signup to post your question"
+msgstr "Accedi/Registrati per porre una domanda"
+
+#: skins/default/templates/ask.html:122
+#: skins/default/templates/ask_form.html:63
+msgid "Ask your question"
+msgstr "Poni una domanda"
+
+#: skins/default/templates/ask_form.html:15
+#, python-format
+msgid ""
+"must have valid %(email)s to post, \n"
+" see %(email_validation_faq_url)s\n"
+" "
+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. "
+
+#: skins/default/templates/badge.html:6 skins/default/templates/badge.html:17
+msgid "Badge"
+msgstr "medaglia"
+
+#: skins/default/templates/badge.html:26
+msgid "user received this badge:"
+msgid_plural "users received this badge:"
+msgstr[0] "utente ha guadagnato questa medaglia:"
+msgstr[1] "utenti hanno guadagnato questa medaglia:"
+
+#: skins/default/templates/badges.html:6
+msgid "Badges summary"
+msgstr "Elenco medaglie"
+
+#: skins/default/templates/badges.html:17
+msgid "Badges"
+msgstr "Medaglie"
+
+#: skins/default/templates/badges.html:21
+msgid "Community gives you awards for your questions, answers and votes."
+msgstr "Il tuo contributo a questa comunità, attraverso domande, risposte e voti, viene premiato con delle medaglie."
+
+#: 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 "Qui sotto trovi una lista delle medaglie disponibili, con indicato il numero di persone che le hanno ottenute. Hai qualche idea per delle nuove medaglie? <a href='%(feedback_faq_url)s'>Proponila</a>"
+
+#: skins/default/templates/badges.html:51
+msgid "Community badges"
+msgstr "Tipi di medaglie "
+
+#: skins/default/templates/badges.html:57
+msgid "gold badge description"
+msgstr "Le medaglie d'oro sono le più pregiate. Per ottenerle, non basta partecipare attivamente, ma servono anche conoscenze e abilità."
+
+#: skins/default/templates/badges.html:65
+msgid "silver badge description"
+msgstr "Per ottenere le medaglie d'argento ci vuole del tempo. Se ne hai ottenuta una, vuol dire che hai dato un grande contributo alla comunità."
+
+#: skins/default/templates/badges.html:68
+msgid "bronze badge: often given as a special honor"
+msgstr "Medaglie di bronzo: date anche come riconoscimento speciale"
+
+#: skins/default/templates/badges.html:72
+msgid "bronze badge description"
+msgstr "Se partecipi regolarmente a questa comunità, verrai sicuramente premiato con delle medaglie di bronzo."
+
+#: skins/default/templates/book.html:7
+msgid "reading channel"
+msgstr "Lettura libri"
+
+#: skins/default/templates/book.html:26
+msgid "[author]"
+msgstr "[autore]"
+
+#: skins/default/templates/book.html:30
+msgid "[publisher]"
+msgstr "[editore]"
+
+#: skins/default/templates/book.html:34
+msgid "[publication date]"
+msgstr "[data di pubblicazione]"
+
+#: skins/default/templates/book.html:38
+msgid "[price]"
+msgstr "[prezzo]"
+
+#: skins/default/templates/book.html:39
+msgid "currency unit"
+msgstr "valuta"
+
+#: skins/default/templates/book.html:42
+msgid "[pages]"
+msgstr "[pagine]"
+
+#: skins/default/templates/book.html:43
+msgid "pages abbreviation"
+msgstr "pp."
+
+#: skins/default/templates/book.html:46
+msgid "[tags]"
+msgstr "[tag]"
+
+#: skins/default/templates/book.html:56
+msgid "author blog"
+msgstr "blog dell'autore"
+
+#: skins/default/templates/book.html:62
+msgid "book directory"
+msgstr "elenco dei libri"
+
+#: skins/default/templates/book.html:66
+msgid "buy online"
+msgstr "compra online"
+
+#: skins/default/templates/book.html:79
+msgid "reader questions"
+msgstr "domande dei lettori"
+
+#: skins/default/templates/book.html:82
+msgid "ask the author"
+msgstr "chiedi all'autore"
+
+#: skins/default/templates/book.html:88 skins/default/templates/book.html:93
+#: skins/default/templates/users_questions.html:18
+msgid "this question was selected as favorite"
+msgstr "questa domanda è stata scelta come preferita"
+
+#: skins/default/templates/book.html:88 skins/default/templates/book.html:93
+#: skins/default/templates/users_questions.html:11
+#: skins/default/templates/users_questions.html:18
+msgid "number of times"
+msgstr "volte"
+
+#: skins/default/templates/book.html:105
+#: skins/default/templates/question_summary_list_roll.html:14
+msgid "votes"
+msgstr "voti"
+
+#: skins/default/templates/book.html:108
+msgid "the answer has been accepted to be correct"
+msgstr "la domanda è stata accettata"
+
+#: skins/default/templates/book.html:110
+#: skins/default/templates/questions.html:214
+msgid "answer"
+msgstr "risposta"
+
+#: skins/default/templates/book.html:115
+#: skins/default/templates/question_summary_list_roll.html:15
+msgid "views"
+msgstr "consultazioni"
+
+#: skins/default/templates/book.html:125
+#: skins/default/templates/question.html:138
+#: skins/default/templates/question_list.html:64
+#: skins/default/templates/question_summary_list_roll.html:52
+#: skins/default/templates/questions.html:239
+#: skins/default/templates/tags.html:50
+#: skins/default/templates/users_questions.html:80
+#, python-format
+msgid "see questions tagged '%(tag)s'"
+msgstr "vedi domande con i tag '%(tag)s'"
+
+#: skins/default/templates/book.html:147
+msgid "subscribe to book RSS feed"
+msgstr "sottoscrivi al feed RSS del libro"
+
+#: skins/default/templates/book.html:147
+#: skins/default/templates/questions.html:125
+#: skins/default/templates/questions.html:128
+msgid "subscribe to the questions feed"
+msgstr "sottoscrivi al feed delle domande"
+
+#: skins/default/templates/close.html:6 skins/default/templates/close.html:16
+msgid "Close question"
+msgstr "Chiudi domanda"
+
+#: skins/default/templates/close.html:19
+msgid "Close the question"
+msgstr "Chiudi la domanda"
+
+#: skins/default/templates/close.html:25
+msgid "Reasons"
+msgstr "Motivo:"
+
+#: skins/default/templates/close.html:28
+msgid "OK to close"
+msgstr "Chiudi"
+
+#: skins/default/templates/email_base.html:11
+msgid "home"
+msgstr "home"
+
+#: skins/default/templates/faq.html:12
+msgid "Frequently Asked Questions "
+msgstr "Domande frequenti"
+
+#: skins/default/templates/faq.html:17
+msgid "What kinds of questions can I ask here?"
+msgstr "Che tipo di domande posso porre qui?"
+
+#: skins/default/templates/faq.html:18
+msgid "Most importanly - questions should be <strong>relevant</strong> to this community."
+msgstr "La cosa più importante &mdash; le domande devono essere <strong>interessanti</strong> per la comunità"
+
+#: skins/default/templates/faq.html:19
+msgid "Before asking the question - please make sure to use search to see whether your question has alredy been answered."
+msgstr "Prima di porre una domanda, usa la funzione di ricerca per assicurarti che non sia già stata posta"
+
+#: skins/default/templates/faq.html:22
+msgid "What questions should I avoid asking?"
+msgstr "Che domande devo evitare?"
+
+#: skins/default/templates/faq.html:23
+msgid "Please avoid asking questions that are not relevant to this community, too subjective and argumentative."
+msgstr "Evita domande che sono troppo vaghe, polemiche o di poco interesse per la comunità"
+
+#: skins/default/templates/faq.html:28
+msgid "What should I avoid in my answers?"
+msgstr "Cosa devo evitare nelle risposte?"
+
+#: skins/default/templates/faq.html:29
+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 "è un sito di <strong>domande e risposte</strong> &mdash; <strong>non di discussioni</strong>. Evita di intavolare discussioni nelle tue risposte. Per brevi scambi di opinioni, utilizza i commenti."
+
+#: skins/default/templates/faq.html:33
+msgid "Who moderates this community?"
+msgstr "Chi sono i moderatori?"
+
+#: skins/default/templates/faq.html:34
+msgid "The short answer is: <strong>you</strong>."
+msgstr "In breve: <strong>tu</strong>."
+
+#: skins/default/templates/faq.html:35
+msgid "This website is moderated by the users."
+msgstr "Questo sito è moderato dai suoi utenti."
+
+#: skins/default/templates/faq.html:36
+msgid "The reputation system allows users earn the authorization to perform a variety of moderation tasks."
+msgstr "Il sistema dei punti reputazione consente agli utenti di guadagnare il diritto di effettuare le varie operazioni di moderazione."
+
+#: skins/default/templates/faq.html:41
+msgid "How does reputation system work?"
+msgstr "Come funzionano i punti reputazione?"
+
+#: skins/default/templates/faq.html:42
+msgid "Rep system summary"
+msgstr ""
+"Quando qualcuno vota a favore di una tua domanda o risposta, guadagni alcuni punti reputazione. I punti reputazione misurano il grado di fiducia della comunità nei tuoi confronti.\n"
+"Ti verranno assegnati gradualmente poteri di moderazione sul sito in base alla tua reputazione."
+
+#: skins/default/templates/faq.html:43
+#, python-format
+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>%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> points, each vote against will subtract <strong>%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> points. There is a limit of <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</strong> points that can be accumulated for a question or answer per day. The table below explains reputation point requirements for each type of moderation task."
+msgstr "Per esempio, se poni una domanda interessante o dai una risposta utile, gli utenti ti daranno dei voti positivi. D'altro canto, se la risposta è sbagliata, gli utenti ti daranno dei voti negativi. Ogni voto a tuo favore ti procura <strong>%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> punti reputazione; ogni voto contro di te ti fa perdere <strong>%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> punti reputazione. Puoi guadagnare un massimo di <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</strong> punti al giorno per ogni tua domanda o risposta. Nella tabella qui sotto trovi quanti punti reputazione sono necessari per ogni tipo di potere di moderazione."
+
+#: skins/default/templates/faq.html:53
+#: skins/default/templates/user_votes.html:15
+msgid "upvote"
+msgstr "votare a favore"
+
+#: skins/default/templates/faq.html:58
+msgid "use tags"
+msgstr "usare i tag"
+
+#: skins/default/templates/faq.html:63
+msgid "add comments"
+msgstr "aggiungere commenti"
+
+#: skins/default/templates/faq.html:67
+#: skins/default/templates/user_votes.html:17
+msgid "downvote"
+msgstr "votare contro"
+
+#: skins/default/templates/faq.html:70
+msgid "open and close own questions"
+msgstr "aprire e chiudere le proprie domande"
+
+#: skins/default/templates/faq.html:74
+msgid "retag other's questions"
+msgstr "modificare i tag delle domande altrui"
+
+#: skins/default/templates/faq.html:79
+msgid "edit community wiki questions"
+msgstr "modificare le domande della comunità"
+
+#: skins/default/templates/faq.html:84
+msgid "edit any answer"
+msgstr "modificare ogni risposta"
+
+#: skins/default/templates/faq.html:88
+msgid "delete any comment"
+msgstr "cancellare commenti altrui"
+
+#: skins/default/templates/faq.html:95
+msgid "how to validate email title"
+msgstr "Come faccio a verificare il mio indirizzo e-mail?"
+
+#: skins/default/templates/faq.html:97
+#, python-format
+msgid "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+msgstr "<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span class=\"bigger strong\">Come?</span> Se hai appena inserito o cambiato il tuo indirizzo e-mail, riceverai un messaggio di posta contenente un collegamento. Devi semplicemente <strong>cliccare sul link contenuto nel messaggio</strong>.<br>Esso contiene un codice personale di verifica. Puoi <button style='display:inline' type='submit'><strong>richiedere un nuovo codice</strong></button>.</p></form><span class=\"bigger strong\">Perché?</span> Verificare il tuo indirizzo serve a <strong>verificare la tua identità</strong> e a <strong>ridurre lo spam</strong> .<br>Puoi scegliere di <strong>ricevere messaggi di notifica</strong> riguardo alle domande che più ti interessano. Inoltre, quando ti registri per la prima volta, viene creata un'<a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>immagine personale</p> basata sul tuo indirizzo."
+
+#: skins/default/templates/faq.html:102
+msgid "what is gravatar"
+msgstr "Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?"
+
+#: skins/default/templates/faq.html:103
+msgid "gravatar faq info"
+msgstr "<p>L'immagine che appare nel tuo profilo utente è chiamata<strong>gravatar</strong> (che vuol dire <strong>g</strong>lobally <strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Ecco come funziona: viene calcolata una <strong>firma digitale</strong> a partire dal tuo indirizzo e-mail. Puoi caricare una tua foto, o il tuo alter ego preferito, sul sito <a href='http://gravatar.com'><strong>gravatar.com</strong></a>, da cui la tua immagine viene recuperata utilizzando la firma digitale.</p><p>In questo modo tutti i siti di cui ti fidi possono mostrare la tua immagine vicino ai tuoi post, mentre il tuo indirizzo e-mail rimane segreto.</p><p><strong>Personalizza il tuo account</strong> con un'immagine registrandoti su <a href='http://gravatar.com'><strong>gravatar.com</strong></a> (ricordati di usare lo stesso indirizzo e-mail che hai usato per registrarti su questo sito). L'immagine predefinita è generata automaticamente e contiene un motivo geometrico che ricorda un po' una piastrella.</p>"
+
+#: skins/default/templates/faq.html:106
+msgid "To register, do I need to create new password?"
+msgstr "Devo scegliere una password per registrarmi?"
+
+#: skins/default/templates/faq.html:107
+msgid "No, you don't have to. You can login through any service that supports OpenID, e.g. Google, Yahoo, AOL, etc."
+msgstr "No, non è necessario. Puoi accedere attraverso il tuo account su un qualunque sito che supporta OpenID, come Google, Yahoo, AOL, eccetera."
+
+#: skins/default/templates/faq.html:108
+msgid "Login now!"
+msgstr "Accedi ora!"
+
+#: skins/default/templates/faq.html:113
+msgid "Why other people can edit my questions/answers?"
+msgstr "Perché le altre persone possono modificare quello che scrivo?"
+
+#: skins/default/templates/faq.html:114
+msgid "Goal of this site is..."
+msgstr ""
+
+#: skins/default/templates/faq.html:114
+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 ""
+
+#: skins/default/templates/faq.html:115
+msgid "If this approach is not for you, we respect your choice."
+msgstr ""
+
+#: skins/default/templates/faq.html:119
+msgid "Still have questions?"
+msgstr ""
+
+#: skins/default/templates/faq.html:120
+#, python-format
+msgid "Please ask your question at %(ask_question_url)s, help make our community better!"
+msgstr "Please <a href='%(ask_question_url)s'>ask</a> your question, help make our community better!"
+
+#: skins/default/templates/faq.html:122 skins/default/templates/header.html:73
+msgid "questions"
+msgstr ""
+
+#: skins/default/templates/faq.html:122
+msgid "."
+msgstr ""
+
+#: skins/default/templates/feedback.html:6
+msgid "Feedback"
+msgstr ""
+
+#: skins/default/templates/feedback.html:11
+msgid "Give us your feedback!"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: skins/default/templates/feedback.html:41
+msgid "(this field is required)"
+msgstr ""
+
+#: skins/default/templates/feedback.html:49
+msgid "Send Feedback"
+msgstr ""
+
+#: skins/default/templates/feedback_email.txt:3
+#, python-format
+msgid ""
+"\n"
+"Hello, this is a %(site_title)s forum feedback message\n"
+msgstr ""
+
+#: skins/default/templates/feedback_email.txt:9
+msgid "Sender is"
+msgstr ""
+
+#: skins/default/templates/feedback_email.txt:11
+#: skins/default/templates/feedback_email.txt:14
+msgid "email"
+msgstr ""
+
+#: skins/default/templates/feedback_email.txt:13
+msgid "anonymous"
+msgstr ""
+
+#: skins/default/templates/feedback_email.txt:19
+msgid "Message body:"
+msgstr ""
+
+#: skins/default/templates/footer.html:8
+msgid "about"
+msgstr ""
+
+#: skins/default/templates/footer.html:9
+#: skins/default/templates/question_edit_tips.html:17
+msgid "faq"
+msgstr ""
+
+#: skins/default/templates/footer.html:10
+msgid "privacy policy"
+msgstr ""
+
+#: skins/default/templates/footer.html:19
+msgid "give feedback"
+msgstr ""
+
+#: skins/default/templates/header.html:12
+msgid "see your user profile"
+msgstr ""
+
+#: skins/default/templates/header.html:17
+#, python-format
+msgid "responses for %(username)s"
+msgstr ""
+
+#: skins/default/templates/header.html:20
+#, python-format
+msgid "you have a new response"
+msgid_plural "you nave %(response_count)s new responses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/header.html:23
+msgid "no new responses yet"
+msgstr ""
+
+#: skins/default/templates/header.html:30
+msgid "sign out from askbot"
+msgstr ""
+
+#: skins/default/templates/header.html:31
+msgid "logout"
+msgstr "sign out"
+
+#: skins/default/templates/header.html:34
+msgid "Please, sign in or Join askbot!"
+msgstr ""
+
+#: skins/default/templates/header.html:35
+msgid "login"
+msgstr "Hi, there! Please sign in"
+
+#: skins/default/templates/header.html:58
+msgid "please help translate! see credits"
+msgstr ""
+
+#: skins/default/templates/header.html:60
+msgid "settings"
+msgstr ""
+
+#: skins/default/templates/header.html:68
+msgid "back to home page"
+msgstr ""
+
+#: skins/default/templates/header.html:75
+msgid "users"
+msgstr "people"
+
+#: skins/default/templates/header.html:76
+msgid "badges"
+msgstr ""
+
+#: skins/default/templates/header.html:77
+msgid "ask a question"
+msgstr ""
+
+#: skins/default/templates/input_bar.html:33
+msgid "search"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:3
+#, python-format
+msgid "<p>Dear %(receiving_user_name)s,</p>"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:5
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s left a <a href=\"%%(post_url)s\">new comment</a>\n"
+"for question \"%(origin_post_title)s\"</p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:11
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a>\n"
+" for an answer to question \"%(origin_post_title)s\"</p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:17
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s answered a question \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:23
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s posted a new question \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:29
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s updated an answer to the question\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:35
+#, python-format
+msgid ""
+"\n"
+"<p>%(update_author_name)s updated a question \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:41
+#, python-format
+msgid ""
+"\n"
+"<p>Please note - you can easily <a href=\"%(user_subscriptions_url)s\">change</a>\n"
+"how often you receive these notifications or unsubscribe. Thank you for your interest in our forum!</p>\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification.html:45
+msgid "<p>Sincerely,<br/>Forum Administrator</p>"
+msgstr ""
+
+#: skins/default/templates/logout.html:6
+#: skins/default/templates/logout.html:16
+msgid "Logout"
+msgstr ""
+
+#: 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."
+
+#: skins/default/templates/logout.html:20
+msgid "Logout now"
+msgstr "Logout Now"
+
+#: skins/default/templates/notarobot.html:3
+msgid "Please prove that you are a Human Being"
+msgstr ""
+
+#: skins/default/templates/notarobot.html:10
+msgid "I am a Human Being"
+msgstr ""
+
+#: skins/default/templates/pagesize.html:6
+msgid "posts per page"
+msgstr ""
+
+#: skins/default/templates/paginator.html:6
+#: skins/default/templates/paginator.html:7
+msgid "previous"
+msgstr ""
+
+#: skins/default/templates/paginator.html:19
+msgid "current page"
+msgstr ""
+
+#: skins/default/templates/paginator.html:22
+#: skins/default/templates/paginator.html:29
+#, python-format
+msgid "page number %(num)s"
+msgstr "page %(num)s"
+
+#: skins/default/templates/paginator.html:33
+msgid "next page"
+msgstr ""
+
+#: skins/default/templates/post_contributor_info.html:9
+#, python-format
+msgid "%(rev_count)s revision"
+msgid_plural "%(rev_count)s revisions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/post_contributor_info.html:15
+msgid "asked"
+msgstr ""
+
+#: skins/default/templates/post_contributor_info.html:18
+msgid "answered"
+msgstr ""
+
+#: skins/default/templates/post_contributor_info.html:20
+msgid "posted"
+msgstr ""
+
+#: skins/default/templates/post_contributor_info.html:41
+msgid "updated"
+msgstr ""
+
+#: skins/default/templates/privacy.html:6
+#: skins/default/templates/privacy.html:11
+msgid "Privacy policy"
+msgstr ""
+
+#: skins/default/templates/question.html:80
+#: skins/default/templates/question.html:81
+#: skins/default/templates/question.html:97
+#: skins/default/templates/question.html:99
+msgid "i like this post (click again to cancel)"
+msgstr ""
+
+#: skins/default/templates/question.html:83
+#: skins/default/templates/question.html:101
+#: skins/default/templates/question.html:261
+msgid "current number of votes"
+msgstr ""
+
+#: skins/default/templates/question.html:92
+#: skins/default/templates/question.html:93
+#: skins/default/templates/question.html:106
+#: skins/default/templates/question.html:107
+msgid "i dont like this post (click again to cancel)"
+msgstr ""
+
+#: skins/default/templates/question.html:111
+#: skins/default/templates/question.html:112
+msgid "mark this question as favorite (click again to cancel)"
+msgstr ""
+
+#: skins/default/templates/question.html:118
+#: skins/default/templates/question.html:119
+msgid "remove favorite mark from this question (click again to restore mark)"
+msgstr ""
+
+#: skins/default/templates/question.html:144
+#: skins/default/templates/question.html:298
+#: skins/default/templates/revisions_answer.html:58
+#: skins/default/templates/revisions_question.html:58
+msgid "edit"
+msgstr ""
+
+#: skins/default/templates/question.html:149
+msgid "retag"
+msgstr ""
+
+#: skins/default/templates/question.html:156
+msgid "reopen"
+msgstr ""
+
+#: skins/default/templates/question.html:160
+msgid "close"
+msgstr ""
+
+#: skins/default/templates/question.html:166
+#: skins/default/templates/question.html:303
+msgid "report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+msgstr ""
+
+#: skins/default/templates/question.html:167
+#: skins/default/templates/question.html:304
+msgid "flag offensive"
+msgstr ""
+
+#: skins/default/templates/question.html:175
+#: skins/default/templates/question.html:315
+msgid "delete"
+msgstr ""
+
+#: skins/default/templates/question.html:193
+#: skins/default/templates/question.html:335
+msgid "delete this comment"
+msgstr ""
+
+#: skins/default/templates/question.html:204
+#: skins/default/templates/question.html:346
+msgid "add comment"
+msgstr "post a comment"
+
+#: skins/default/templates/question.html:208
+#: skins/default/templates/question.html:350
+#, python-format
+msgid "see <strong>%(counter)s</strong> more"
+msgid_plural "see <strong>%(counter)s</strong> more"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question.html:210
+#: skins/default/templates/question.html:352
+#, python-format
+msgid "see <strong>%(counter)s</strong> more comment"
+msgid_plural ""
+"see <strong>%(counter)s</strong> more comments\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question.html:223
+#, python-format
+msgid "The question has been closed for the following reason \"%(close_reason)s\" by"
+msgstr ""
+
+#: skins/default/templates/question.html:225
+#, python-format
+msgid "close date %(closed_at)s"
+msgstr ""
+
+#: skins/default/templates/question.html:233
+#, python-format
+msgid ""
+"\n"
+" %(counter)s Answer:\n"
+" "
+msgid_plural ""
+"\n"
+" %(counter)s Answers:\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question.html:241
+msgid "oldest answers will be shown first"
+msgstr ""
+
+#: skins/default/templates/question.html:241
+msgid "oldest answers"
+msgstr "oldest"
+
+#: skins/default/templates/question.html:243
+msgid "newest answers will be shown first"
+msgstr ""
+
+#: skins/default/templates/question.html:243
+msgid "newest answers"
+msgstr "newest"
+
+#: skins/default/templates/question.html:245
+msgid "most voted answers will be shown first"
+msgstr ""
+
+#: skins/default/templates/question.html:245
+msgid "popular answers"
+msgstr "most voted"
+
+#: skins/default/templates/question.html:259
+#: skins/default/templates/question.html:260
+msgid "i like this answer (click again to cancel)"
+msgstr ""
+
+#: skins/default/templates/question.html:266
+#: skins/default/templates/question.html:267
+msgid "i dont like this answer (click again to cancel)"
+msgstr ""
+
+#: skins/default/templates/question.html:272
+#: skins/default/templates/question.html:273
+msgid "mark this answer as favorite (click again to undo)"
+msgstr ""
+
+#: skins/default/templates/question.html:278
+#: skins/default/templates/question.html:279
+#, python-format
+msgid "%(question_author)s has selected this answer as correct"
+msgstr ""
+
+#: skins/default/templates/question.html:292
+msgid "answer permanent link"
+msgstr ""
+
+#: skins/default/templates/question.html:293
+msgid "permanent link"
+msgstr "link"
+
+#: skins/default/templates/question.html:315
+msgid "undelete"
+msgstr ""
+
+#: skins/default/templates/question.html:374
+#: skins/default/templates/question.html:377
+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"
+
+#: skins/default/templates/question.html:380
+msgid "Notify me weekly when there are any new answers"
+msgstr "<strong>Notify me</strong> weekly when there are any new answers or updates"
+
+#: skins/default/templates/question.html:385
+#, python-format
+msgid "You can always adjust frequency of email updates from your %(profile_url)s"
+msgstr "(note: you can always <strong><a href='%(profile_url)s?sort=email_subscriptions'>change</a></strong> how often you receive updates)"
+
+#: skins/default/templates/question.html:390
+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."
+
+#: skins/default/templates/question.html:401
+msgid "Your answer"
+msgstr ""
+
+#: skins/default/templates/question.html:403
+msgid "Be the first one to answer this question!"
+msgstr ""
+
+#: skins/default/templates/question.html:409
+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)!"
+
+#: skins/default/templates/question.html:413
+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)! "
+
+#: skins/default/templates/question.html:415
+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!"
+
+#: skins/default/templates/question.html:451
+msgid "Login/Signup to Post Your Answer"
+msgstr ""
+
+#: skins/default/templates/question.html:454
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: skins/default/templates/question.html:456
+msgid "Answer the question"
+msgstr "Post Your Answer"
+
+#: skins/default/templates/question.html:471
+msgid "Question tags"
+msgstr "Tags"
+
+#: skins/default/templates/question.html:476
+#: skins/default/templates/questions.html:324
+#: skins/default/templates/tag_selector.html:11
+#: skins/default/templates/tag_selector.html:28
+#, python-format
+msgid "see questions tagged '%(tag_name)s'"
+msgstr ""
+
+#: skins/default/templates/question.html:482
+msgid "question asked"
+msgstr "Asked"
+
+#: skins/default/templates/question.html:485
+msgid "question was seen"
+msgstr "Seen"
+
+#: skins/default/templates/question.html:485
+msgid "times"
+msgstr ""
+
+#: skins/default/templates/question.html:488
+msgid "last updated"
+msgstr "Last updated"
+
+#: skins/default/templates/question.html:494
+msgid "Related questions"
+msgstr ""
+
+#: skins/default/templates/question_counter_widget.html:6
+msgid "Please decide if you like this question or not by voting"
+msgstr ""
+
+#: skins/default/templates/question_counter_widget.html:12
+msgid ""
+"\n"
+" vote\n"
+" "
+msgid_plural ""
+"\n"
+" votes\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_counter_widget.html:21
+#: skins/default/templates/question_list.html:23
+#: skins/default/templates/questions.html:198
+#: skins/default/templates/users_questions.html:43
+msgid "this answer has been accepted to be correct"
+msgstr ""
+
+#: skins/default/templates/question_counter_widget.html:27
+msgid ""
+"\n"
+" answer \n"
+" "
+msgid_plural ""
+"\n"
+" answers \n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_counter_widget.html:39
+msgid ""
+"\n"
+" view\n"
+" "
+msgid_plural ""
+"\n"
+" views\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_edit.html:5
+#: skins/default/templates/question_edit.html:66
+msgid "Edit question"
+msgstr ""
+
+#: skins/default/templates/question_edit_tips.html:4
+msgid "question tips"
+msgstr "Tips"
+
+#: skins/default/templates/question_edit_tips.html:7
+msgid "please ask a relevant question"
+msgstr "ask a question interesting to this community"
+
+#: skins/default/templates/question_edit_tips.html:10
+msgid "please try provide enough details"
+msgstr "provide enough details"
+
+#: skins/default/templates/question_list.html:15
+#: skins/default/templates/users_questions.html:35
+msgid ""
+"\n"
+" vote\n"
+" "
+msgid_plural ""
+"\n"
+" votes\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_list.html:35
+#: skins/default/templates/users_questions.html:55
+msgid ""
+"\n"
+" answer \n"
+" "
+msgid_plural ""
+"\n"
+" answers \n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_list.html:47
+#: skins/default/templates/users_questions.html:67
+msgid ""
+"\n"
+" view\n"
+" "
+msgid_plural ""
+"\n"
+" views\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/question_retag.html:5
+#: skins/default/templates/question_retag.html:53
+msgid "Change tags"
+msgstr ""
+
+#: skins/default/templates/question_retag.html:40
+msgid "up to 5 tags, less than 20 characters each"
+msgstr ""
+
+#: skins/default/templates/question_retag.html:74
+msgid "Retag"
+msgstr ""
+
+#: skins/default/templates/question_retag.html:83
+msgid "Why use and modify tags?"
+msgstr ""
+
+#: skins/default/templates/question_retag.html:86
+msgid "tags help us keep Questions organized"
+msgstr ""
+
+#: skins/default/templates/question_retag.html:94
+msgid "tag editors receive special awards from the community"
+msgstr ""
+
+#: skins/default/templates/question_summary_list_roll.html:13
+msgid "answers"
+msgstr ""
+
+#: skins/default/templates/questions.html:9
+msgid "Questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:33
+msgid "In:"
+msgstr ""
+
+#: skins/default/templates/questions.html:35
+msgid "see unanswered questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:37
+msgid "see your favorite questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:41
+msgid "Sort by:"
+msgstr ""
+
+#: skins/default/templates/questions.html:46
+#: skins/default/templates/questions.html:57
+msgid "click to see the newest questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:52
+msgid "click to see the oldest questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:65
+#: skins/default/templates/questions.html:76
+msgid "click to see the most recently updated questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:71
+msgid "click to see the least recently updated questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:84
+#: skins/default/templates/questions.html:95
+msgid "click to see hottest questions"
+msgstr "questions with most answers"
+
+#: skins/default/templates/questions.html:84
+msgid "less answers"
+msgstr ""
+
+#: skins/default/templates/questions.html:90
+msgid "click to see coldest questions"
+msgstr "questions with fewest answers"
+
+#: skins/default/templates/questions.html:90
+#: skins/default/templates/questions.html:95
+msgid "more answers"
+msgstr ""
+
+#: skins/default/templates/questions.html:103
+#: skins/default/templates/questions.html:114
+msgid "click to see most voted questions"
+msgstr ""
+
+#: skins/default/templates/questions.html:103
+msgid "unpopular"
+msgstr ""
+
+#: skins/default/templates/questions.html:109
+msgid "click to see least voted questions"
+msgstr "least voted questions"
+
+#: skins/default/templates/questions.html:109
+#: skins/default/templates/questions.html:114
+msgid "popular"
+msgstr ""
+
+#: skins/default/templates/questions.html:129
+msgid "rss feed"
+msgstr ""
+
+#: skins/default/templates/questions.html:133
+#, python-format
+msgid ""
+"\n"
+" %(q_num)s question found\n"
+" "
+msgid_plural ""
+"\n"
+" %(q_num)s questions found\n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/questions.html:139
+#, python-format
+msgid "%(q_num)s question"
+msgid_plural "%(q_num)s questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/questions.html:143
+#, python-format
+msgid "with %(author_name)s's contributions"
+msgstr ""
+
+#: skins/default/templates/questions.html:147
+msgid "tagged"
+msgstr ""
+
+#: skins/default/templates/questions.html:153
+msgid "Search tips:"
+msgstr ""
+
+#: skins/default/templates/questions.html:157
+msgid "reset author"
+msgstr ""
+
+#: skins/default/templates/questions.html:161
+msgid "reset tags"
+msgstr ""
+
+#: skins/default/templates/questions.html:165
+#: skins/default/templates/questions.html:169
+msgid "start over"
+msgstr ""
+
+#: skins/default/templates/questions.html:171
+msgid " - to expand, or dig in by adding more tags and revising the query."
+msgstr ""
+
+#: skins/default/templates/questions.html:174
+msgid "Search tip:"
+msgstr ""
+
+#: skins/default/templates/questions.html:174
+msgid "add tags and a query to focus your search"
+msgstr ""
+
+#: skins/default/templates/questions.html:194
+msgid "vote"
+msgid_plural "votes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/questions.html:226
+msgid "view"
+msgid_plural "views"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/questions.html:250
+msgid "There are no unanswered questions here"
+msgstr ""
+
+#: skins/default/templates/questions.html:253
+msgid "No favorite questions here. "
+msgstr ""
+
+#: skins/default/templates/questions.html:254
+msgid "Please start (bookmark) some questions when you visit them"
+msgstr ""
+
+#: skins/default/templates/questions.html:259
+msgid "You can expand your search by "
+msgstr ""
+
+#: skins/default/templates/questions.html:263
+msgid "resetting author"
+msgstr ""
+
+#: skins/default/templates/questions.html:267
+msgid "resetting tags"
+msgstr ""
+
+#: skins/default/templates/questions.html:271
+#: skins/default/templates/questions.html:275
+msgid "starting over"
+msgstr ""
+
+#: skins/default/templates/questions.html:280
+msgid "Please always feel free to ask your question!"
+msgstr ""
+
+#: skins/default/templates/questions.html:284
+msgid "Did not find what you were looking for?"
+msgstr ""
+
+#: skins/default/templates/questions.html:285
+msgid "Please, post your question!"
+msgstr ""
+
+#: skins/default/templates/questions.html:303
+msgid "Contributors"
+msgstr ""
+
+#: skins/default/templates/questions.html:319
+msgid "Related tags"
+msgstr "Tags"
+
+#: skins/default/templates/reopen.html:6
+#: skins/default/templates/reopen.html:16
+msgid "Reopen question"
+msgstr ""
+
+#: skins/default/templates/reopen.html:19
+msgid "Title"
+msgstr ""
+
+#: skins/default/templates/reopen.html:24
+#, python-format
+msgid ""
+"This question has been closed by \n"
+" <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
+" "
+msgstr ""
+
+#: skins/default/templates/reopen.html:29
+msgid "Close reason:"
+msgstr ""
+
+#: skins/default/templates/reopen.html:32
+msgid "When:"
+msgstr ""
+
+#: skins/default/templates/reopen.html:35
+msgid "Reopen this question?"
+msgstr ""
+
+#: skins/default/templates/reopen.html:39
+msgid "Reopen this question"
+msgstr ""
+
+#: skins/default/templates/revisions_answer.html:7
+#: skins/default/templates/revisions_answer.html:38
+#: skins/default/templates/revisions_question.html:8
+#: skins/default/templates/revisions_question.html:38
+msgid "Revision history"
+msgstr ""
+
+#: skins/default/templates/revisions_answer.html:50
+#: skins/default/templates/revisions_question.html:50
+msgid "click to hide/show revision"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:5
+msgid "Interesting tags"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:15
+#, python-format
+msgid "remove '%(tag_name)s' from the list of interesting tags"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:21
+#: skins/default/templates/tag_selector.html:38
+#: skins/default/templates/user_moderate.html:37
+msgid "Add"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:22
+msgid "Ignored tags"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:32
+#, python-format
+msgid "remove '%(tag_name)s' from the list of ignored tags"
+msgstr ""
+
+#: skins/default/templates/tag_selector.html:41
+msgid "keep ignored questions hidden"
+msgstr ""
+
+#: skins/default/templates/tags.html:6 skins/default/templates/tags.html:30
+msgid "Tag list"
+msgstr ""
+
+#: skins/default/templates/tags.html:32
+msgid "sorted alphabetically"
+msgstr ""
+
+#: skins/default/templates/tags.html:32
+msgid "by name"
+msgstr ""
+
+#: skins/default/templates/tags.html:33
+msgid "sorted by frequency of tag use"
+msgstr ""
+
+#: skins/default/templates/tags.html:33
+msgid "by popularity"
+msgstr ""
+
+#: skins/default/templates/tags.html:39
+#, python-format
+msgid "All tags matching '<span class=\"darkred\"><strong>%(stag)s</strong></span>'"
+msgstr ""
+
+#: skins/default/templates/tags.html:42
+msgid "Nothing found"
+msgstr ""
+
+#: skins/default/templates/user.html:34
+#, python-format
+msgid "%(username)s's profile"
+msgstr ""
+
+#: skins/default/templates/user_edit.html:6
+msgid "Edit user profile"
+msgstr ""
+
+#: skins/default/templates/user_edit.html:19
+msgid "edit profile"
+msgstr ""
+
+#: skins/default/templates/user_edit.html:33
+msgid "Registered user"
+msgstr ""
+
+#: skins/default/templates/user_edit.html:40
+msgid "Screen Name"
+msgstr ""
+
+#: skins/default/templates/user_edit.html:88
+#: skins/default/templates/user_email_subscriptions.html:20
+msgid "Update"
+msgstr ""
+
+#: skins/default/templates/user_email_subscriptions.html:8
+msgid "Email subscription settings"
+msgstr ""
+
+#: 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."
+
+#: skins/default/templates/user_email_subscriptions.html:21
+msgid "Stop sending email"
+msgstr "Stop Email"
+
+#: skins/default/templates/user_info.html:15
+msgid "change picture"
+msgstr ""
+
+#: skins/default/templates/user_info.html:22
+#: skins/default/templates/users.html:26
+msgid "reputation"
+msgstr "karma"
+
+#: skins/default/templates/user_info.html:33
+msgid "update profile"
+msgstr ""
+
+#: skins/default/templates/user_info.html:45
+msgid "real name"
+msgstr ""
+
+#: skins/default/templates/user_info.html:50
+msgid "member for"
+msgstr "member since"
+
+#: skins/default/templates/user_info.html:55
+msgid "last seen"
+msgstr ""
+
+#: skins/default/templates/user_info.html:61
+msgid "user website"
+msgstr ""
+
+#: skins/default/templates/user_info.html:67
+msgid "location"
+msgstr ""
+
+#: skins/default/templates/user_info.html:74
+msgid "age"
+msgstr ""
+
+#: skins/default/templates/user_info.html:75
+msgid "age unit"
+msgstr "years old"
+
+#: skins/default/templates/user_info.html:81
+msgid "todays unused votes"
+msgstr ""
+
+#: skins/default/templates/user_info.html:82
+msgid "votes left"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:7
+#, python-format
+msgid "%(username)s's current status is \"%(status)s\""
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:10
+msgid "User status changed"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:17
+msgid "Save"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:23
+#, python-format
+msgid "Your current reputation is %(reputation)s points"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:25
+#, python-format
+msgid "User's current reputation is %(reputation)s points"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:29
+#, fuzzy
+msgid "User reputation changed"
+msgstr "user karma"
+
+#: skins/default/templates/user_moderate.html:36
+msgid "Subtract"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:41
+#, python-format
+msgid "Send message to %(username)s"
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:42
+msgid "An email will be sent to the user with 'reply-to' field set to your email address. Please make sure that your address is entered correctly."
+msgstr ""
+
+#: skins/default/templates/user_moderate.html:44
+#, fuzzy
+msgid "Message sent"
+msgstr "years old"
+
+#: skins/default/templates/user_moderate.html:62
+msgid "Send message"
+msgstr ""
+
+#: skins/default/templates/user_reputation.html:29
+msgid "Your karma change log."
+msgstr ""
+
+#: skins/default/templates/user_reputation.html:31
+#, python-format
+msgid "%(user_name)s's karma change log"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:11
+#, python-format
+msgid "<span class=\"count\">%(counter)s</span> Question"
+msgid_plural "<span class=\"count\">%(counter)s</span> Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_stats.html:16
+#, python-format
+msgid "<span class=\"count\">%(counter)s</span> Answer"
+msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_stats.html:24
+#, python-format
+msgid "the answer has been voted for %(answer_score)s times"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:34
+#, python-format
+msgid "(%(comment_count)s comment)"
+msgid_plural "the answer has been commented %(comment_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_stats.html:44
+#, python-format
+msgid "<span class=\"count\">%(cnt)s</span> Vote"
+msgid_plural "<span class=\"count\">%(cnt)s</span> Votes "
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_stats.html:50
+msgid "thumb up"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:51
+msgid "user has voted up this many times"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:55
+msgid "thumb down"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:56
+msgid "user voted down this many times"
+msgstr ""
+
+#: skins/default/templates/user_stats.html:64
+#, python-format
+msgid "<span class=\"count\">%(counter)s</span> Tag"
+msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_stats.html:72
+#, python-format
+msgid "see other questions with %(view_user)s's contributions tagged '%(tag_name)s' "
+msgstr ""
+
+#: skins/default/templates/user_stats.html:86
+#, python-format
+msgid "<span class=\"count\">%(counter)s</span> Badge"
+msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/default/templates/user_tabs.html:8
+msgid "User profile"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:9
+msgid "overview"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:11
+msgid "recent activity"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:12
+msgid "activity"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:15 views/users.py:766
+msgid "comments and answers to others questions"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:16
+msgid "responses"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:19
+msgid "graph of user reputation"
+msgstr "Graph of user karma"
+
+#: skins/default/templates/user_tabs.html:20
+msgid "reputation history"
+msgstr "karma history"
+
+#: skins/default/templates/user_tabs.html:23 views/users.py:830
+msgid "user vote record"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:24
+msgid "casted votes"
+msgstr "votes"
+
+#: skins/default/templates/user_tabs.html:27
+msgid "questions that user selected as his/her favorite"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:28
+msgid "favorites"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:31 views/users.py:955
+msgid "email subscription settings"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:32
+msgid "subscriptions"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:36 views/users.py:213
+msgid "moderate this user"
+msgstr ""
+
+#: skins/default/templates/user_tabs.html:37
+msgid "moderation"
+msgstr ""
+
+#: skins/default/templates/users.html:6 skins/default/templates/users.html:24
+msgid "Users"
+msgstr ""
+
+#: skins/default/templates/users.html:27
+msgid "recent"
+msgstr ""
+
+#: skins/default/templates/users.html:29
+msgid "by username"
+msgstr ""
+
+#: skins/default/templates/users.html:35
+#, python-format
+msgid "users matching query %(suser)s:"
+msgstr ""
+
+#: skins/default/templates/users.html:39
+msgid "Nothing found."
+msgstr ""
+
+#: skins/default/templates/users_questions.html:11
+msgid "this questions was selected as favorite"
+msgstr ""
+
+#: skins/default/templates/users_questions.html:12
+msgid "thumb-up on"
+msgstr ""
+
+#: skins/default/templates/users_questions.html:19
+msgid "thumb-up off"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:3
+#: skins/default/templates/authopenid/changeemail.html:9
+#: skins/default/templates/authopenid/changeemail.html:38
+msgid "Change email"
+msgstr "Change Email"
+
+#: skins/default/templates/authopenid/changeemail.html:11
+msgid "Save your email address"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:16
+#, python-format
+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>"
+
+#: 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."
+
+#: skins/default/templates/authopenid/changeemail.html:31
+msgid "Your new Email"
+msgstr "<strong>Your new Email:</strong> (will <strong>not</strong> be shown to anyone, must be valid)"
+
+#: skins/default/templates/authopenid/changeemail.html:31
+msgid "Your Email"
+msgstr "<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
+
+#: skins/default/templates/authopenid/changeemail.html:38
+msgid "Save Email"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:49
+msgid "Validate email"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:52
+#, python-format
+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>."
+
+#: skins/default/templates/authopenid/changeemail.html:57
+msgid "Email not changed"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:60
+#, 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."
+
+#: skins/default/templates/authopenid/changeemail.html:65
+msgid "Email changed"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:68
+#, python-format
+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."
+
+#: skins/default/templates/authopenid/changeemail.html:73
+msgid "Email verified"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeemail.html:76
+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."
+
+#: skins/default/templates/authopenid/changeemail.html:81
+msgid "email key not sent"
+msgstr "Validation email not sent"
+
+#: skins/default/templates/authopenid/changeemail.html:84
+#, python-format
+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."
+
+#: skins/default/templates/authopenid/changeopenid.html:8
+msgid "Account: change OpenID URL"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeopenid.html:12
+msgid "This is where you can change your OpenID URL. Make sure you remember it!"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeopenid.html:14
+#: skins/default/templates/authopenid/delete.html:14
+#: skins/default/templates/authopenid/delete.html:24
+msgid "Please correct errors below:"
+msgstr ""
+
+#: skins/default/templates/authopenid/changeopenid.html:29
+msgid "OpenID URL:"
+msgstr ""
+
+#: skins/default/templates/authopenid/changepw.html:7
+msgid "Account: change password"
+msgstr "Change your password"
+
+#: skins/default/templates/authopenid/changepw.html:8
+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"
+
+#: skins/default/templates/authopenid/complete.html:19
+msgid "Connect your OpenID with this site"
+msgstr "New user signup"
+
+#: skins/default/templates/authopenid/complete.html:22
+msgid "Connect your OpenID with your account on this site"
+msgstr "New user signup"
+
+#: skins/default/templates/authopenid/complete.html:27
+#, python-format
+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>"
+
+#: 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"
+" "
+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>"
+
+#: skins/default/templates/authopenid/complete.html:35
+#, python-format
+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>"
+
+#: 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>"
+
+#: skins/default/templates/authopenid/complete.html:42
+msgid "This account already exists, please use another."
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:57
+msgid "Sorry, looks like we have some errors:"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:82
+msgid "Screen name label"
+msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#: skins/default/templates/authopenid/complete.html:89
+msgid "Email address label"
+msgstr "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with anyone, must be valid</i>)"
+
+#: skins/default/templates/authopenid/complete.html:95
+#: skins/default/templates/authopenid/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."
+
+#: skins/default/templates/authopenid/complete.html:99
+#: skins/default/templates/authopenid/signup.html:22
+msgid "please select one of the options above"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:102
+msgid "Tag filter tool will be your right panel, once you log in."
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:103
+msgid "create account"
+msgstr "Signup"
+
+#: skins/default/templates/authopenid/complete.html:112
+msgid "Existing account"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:113
+msgid "user name"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:114
+msgid "password"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:121
+msgid "Register"
+msgstr ""
+
+#: skins/default/templates/authopenid/complete.html:122
+#: skins/default/templates/authopenid/signin.html:168
+msgid "Forgot your password?"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:2
+msgid "Thank you for registering at our Q&A forum!"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:4
+msgid "Your account details are:"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:6
+msgid "Username:"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:7
+#: skins/default/templates/authopenid/delete.html:19
+msgid "Password:"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:9
+msgid "Please sign in here:"
+msgstr ""
+
+#: skins/default/templates/authopenid/confirm_email.txt:12
+#: skins/default/templates/authopenid/email_validation.txt:14
+#: skins/default/templates/authopenid/sendpw_email.txt:8
+msgid ""
+"Sincerely,\n"
+"Forum Administrator"
+msgstr ""
+"Sincerely,\n"
+"Q&A Forum Administrator"
+
+#: skins/default/templates/authopenid/delete.html:8
+msgid "Account: delete account"
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:12
+msgid "Note: After deleting your account, anyone will be able to register this username."
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:16
+msgid "Check confirm box, if you want delete your account."
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:31
+msgid "I am sure I want to delete my account."
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:32
+msgid "Password/OpenID URL"
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:32
+msgid "(required for your security)"
+msgstr ""
+
+#: skins/default/templates/authopenid/delete.html:34
+msgid "Delete account permanently"
+msgstr ""
+
+#: skins/default/templates/authopenid/email_validation.txt:2
+msgid "Greetings from the Q&A forum"
+msgstr ""
+
+#: skins/default/templates/authopenid/email_validation.txt:4
+msgid "To make use of the Forum, please follow the link below:"
+msgstr ""
+
+#: skins/default/templates/authopenid/email_validation.txt:8
+msgid "Following the link above will help us verify your email address."
+msgstr ""
+
+#: 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"
+msgstr ""
+
+#: skins/default/templates/authopenid/external_legacy_login_info.html:4
+#: skins/default/templates/authopenid/external_legacy_login_info.html:7
+msgid "Traditional login information"
+msgstr ""
+
+#: 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"
+msgstr ""
+
+#: skins/default/templates/authopenid/sendpw.html:4
+#: skins/default/templates/authopenid/sendpw.html:7
+msgid "Send new password"
+msgstr "Recover password"
+
+#: skins/default/templates/authopenid/sendpw.html:10
+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"
+
+#: skins/default/templates/authopenid/sendpw.html:21
+msgid "Reset password"
+msgstr "Send me a new password"
+
+#: skins/default/templates/authopenid/sendpw.html:22
+msgid "return to login"
+msgstr ""
+
+#: 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."
+msgstr ""
+
+#: 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"
+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"
+
+#: skins/default/templates/authopenid/signin.html:5
+#: skins/default/templates/authopenid/signin.html:21
+msgid "User login"
+msgstr "User login"
+
+#: skins/default/templates/authopenid/signin.html:28
+#, python-format
+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>"
+
+#: skins/default/templates/authopenid/signin.html:35
+#, 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>"
+
+#: skins/default/templates/authopenid/signin.html:42
+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.</font></p>"
+
+# 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. "
+# "Askbot option requires your login name and "
+# "password entered here.</font></p>"
+#: skins/default/templates/authopenid/signin.html:144
+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>"
+
+#: skins/default/templates/authopenid/signin.html:151
+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>"
+
+#: skins/default/templates/authopenid/signin.html:153
+#: skins/default/templates/authopenid/signin.html:166
+msgid "Login"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:157
+msgid "Enter your login name and password"
+msgstr "<span class='big strong'>Enter your Askbot login and password</span><br/><span class='grey'>(or select your OpenID provider above)</span>"
+
+#: skins/default/templates/authopenid/signin.html:161
+msgid "Login name"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:163
+msgid "Password"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:167
+msgid "Create account"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:178
+msgid "Why use OpenID?"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:181
+msgid "with openid it is easier"
+msgstr "With the OpenID you don't need to create new username and password."
+
+#: skins/default/templates/authopenid/signin.html:184
+msgid "reuse openid"
+msgstr "You can safely re-use the same login for all OpenID-enabled websites."
+
+#: skins/default/templates/authopenid/signin.html:187
+msgid "openid is widely adopted"
+msgstr "There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-enabled."
+
+#: skins/default/templates/authopenid/signin.html:190
+msgid "openid is supported open standard"
+msgstr "OpenID is based on an open standard, supported by many organizations."
+
+#: skins/default/templates/authopenid/signin.html:195
+msgid "Find out more"
+msgstr ""
+
+#: skins/default/templates/authopenid/signin.html:196
+msgid "Get OpenID"
+msgstr ""
+
+#: skins/default/templates/authopenid/signup.html:4
+msgid "Signup"
+msgstr ""
+
+#: skins/default/templates/authopenid/signup.html:8
+msgid "Create login name and password"
+msgstr ""
+
+#: 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."
+
+#: skins/default/templates/authopenid/signup.html:25
+msgid "Please read and type in the two words below to help us prevent automated account creation."
+msgstr ""
+
+#: skins/default/templates/authopenid/signup.html:27
+msgid "Create Account"
+msgstr ""
+
+#: skins/default/templates/authopenid/signup.html:28
+msgid "or"
+msgstr ""
+
+#: skins/default/templates/authopenid/signup.html:29
+msgid "return to OpenID login"
+msgstr ""
+
+#: skins/default/templates/fbconnect/xd_receiver.html:5
+#, python-format
+msgid "Connect to %(settings.APP_SHORT_NAME)s with Facebook!"
+msgstr ""
+
+#: templatetags/extra_filters.py:161
+msgid "no items in counter"
+msgstr "no"
+
+#: templatetags/extra_tags.py:55
+#, python-format
+msgid "%(username)s gravatar image"
+msgstr ""
+
+#: templatetags/extra_tags.py:165
+#, python-format
+msgid "%(badge_count)d %(badge_level)s badge"
+msgid_plural "%(badge_count)d %(badge_level)s badges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: templatetags/extra_tags.py:188 templatetags/extra_tags.py:235
+#: templatetags/extra_tags.py:239
+msgid "reputation points"
+msgstr "karma"
+
+#: templatetags/extra_tags.py:231
+#, python-format
+msgid "your karma is %(reputation)s"
+msgstr ""
+
+#: templatetags/extra_tags.py:247
+msgid "badges: "
+msgstr ""
+
+#: templatetags/extra_tags.py:318
+#, python-format
+msgid "on %(date)s"
+msgstr ""
+
+#: templatetags/extra_tags.py:322
+msgid "2 days ago"
+msgstr ""
+
+#: templatetags/extra_tags.py:324
+msgid "yesterday"
+msgstr ""
+
+#: templatetags/extra_tags.py:326
+#, python-format
+msgid "%(hr)d hour ago"
+msgid_plural "%(hr)d hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: templatetags/extra_tags.py:328
+#, python-format
+msgid "%(min)d min ago"
+msgid_plural "%(min)d mins ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: utils/forms.py:32
+msgid "this field is required"
+msgstr ""
+
+#: utils/forms.py:46
+msgid "choose a username"
+msgstr "Choose screen name"
+
+#: utils/forms.py:52
+msgid "user name is required"
+msgstr ""
+
+#: utils/forms.py:53
+msgid "sorry, this name is taken, please choose another"
+msgstr ""
+
+#: utils/forms.py:54
+msgid "sorry, this name is not allowed, please choose another"
+msgstr ""
+
+#: utils/forms.py:55
+msgid "sorry, there is no user with this name"
+msgstr ""
+
+#: utils/forms.py:56
+msgid "sorry, we have a serious error - user name is taken by several users"
+msgstr ""
+
+#: utils/forms.py:57
+msgid "user name can only consist of letters, empty space and underscore"
+msgstr ""
+
+#: utils/forms.py:118
+msgid "your email address"
+msgstr "Your email <i>(never shared)</i>"
+
+#: utils/forms.py:119
+msgid "email address is required"
+msgstr ""
+
+#: utils/forms.py:120
+msgid "please enter a valid email address"
+msgstr ""
+
+#: utils/forms.py:121
+msgid "this email is already used by someone else, please choose another"
+msgstr ""
+
+#: utils/forms.py:149
+msgid "choose password"
+msgstr "Password"
+
+#: utils/forms.py:150
+msgid "password is required"
+msgstr ""
+
+#: utils/forms.py:153
+msgid "retype password"
+msgstr "Password <i>(please retype)</i>"
+
+#: utils/forms.py:154
+msgid "please, retype your password"
+msgstr ""
+
+#: utils/forms.py:155
+msgid "sorry, entered passwords did not match, please try again"
+msgstr ""
+
+#: views/commands.py:40
+msgid "anonymous users cannot vote"
+msgstr "Sorry, anonymous users cannot vote"
+
+#: views/commands.py:60
+msgid "Sorry you ran out of votes for today"
+msgstr ""
+
+#: views/commands.py:66
+#, python-format
+msgid "You have %(votes_left)s votes left for today"
+msgstr ""
+
+#: views/commands.py:136
+msgid "Sorry, something is not right here..."
+msgstr ""
+
+#: views/commands.py:151
+msgid "Sorry, but anonymous users cannot accept answers"
+msgstr ""
+
+#: views/commands.py:232
+#, python-format
+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>"
+
+#: views/commands.py:240
+msgid "email update frequency has been set to daily"
+msgstr ""
+
+#: views/meta.py:40
+msgid "Q&A forum feedback"
+msgstr ""
+
+#: views/meta.py:41
+msgid "Thanks for the feedback!"
+msgstr ""
+
+#: views/meta.py:49
+msgid "We look forward to hearing your feedback! Please, give it next time :)"
+msgstr ""
+
+#: views/readers.py:299
+msgid "Sorry, this question has been deleted and is no longer accessible"
+msgstr ""
+
+#: views/users.py:214
+msgid "moderate user"
+msgstr ""
+
+#: views/users.py:416
+msgid "user profile"
+msgstr ""
+
+#: views/users.py:417
+msgid "user profile overview"
+msgstr ""
+
+#: views/users.py:699
+msgid "recent user activity"
+msgstr ""
+
+#: views/users.py:700
+msgid "profile - recent activity"
+msgstr ""
+
+#: views/users.py:767
+msgid "profile - responses"
+msgstr ""
+
+#: views/users.py:831
+msgid "profile - votes"
+msgstr ""
+
+#: views/users.py:866
+msgid "user reputation in the community"
+msgstr "user karma"
+
+#: views/users.py:867
+msgid "profile - user reputation"
+msgstr "Profile - User's Karma"
+
+#: views/users.py:918
+msgid "users favorite questions"
+msgstr ""
+
+#: views/users.py:919
+msgid "profile - favorite questions"
+msgstr ""
+
+#: views/users.py:935 views/users.py:939
+msgid "changes saved"
+msgstr ""
+
+#: views/users.py:945
+msgid "email updates canceled"
+msgstr ""
+
+#: views/users.py:956
+msgid "profile - email subscriptions"
+msgstr ""
+
+#: views/writers.py:52
+msgid "Sorry, anonymous users cannot upload files"
+msgstr ""
+
+#: views/writers.py:60
+#, python-format
+msgid "allowed file types are '%(file_types)s'"
+msgstr ""
+
+#: views/writers.py:83
+#, python-format
+msgid "maximum upload file size is %(file_size)sK"
+msgstr ""
+
+#: views/writers.py:91
+msgid "Error uploading file. Please contact the site administrator. Thank you."
+msgstr ""
+
+#: views/writers.py:422
+#, python-format
+msgid "Sorry, you appear to be logged out and cannot post comments. Please <a href=\"%(sign_in_url)s\">sign in</a>."
+msgstr ""
+
+#: views/writers.py:457
+#, python-format
+msgid "Sorry, you appear to be logged out and cannot delete comments. Please <a href=\"%(sign_in_url)s\">sign in</a>."
+msgstr ""
+
+#: views/writers.py:477
+msgid "sorry, we seem to have some technical difficulties"
+msgstr ""
+
+#~ msgid ""
+#~ "\n"
+#~ " view\n"
+#~ " "
+#~ msgid_plural ""
+#~ "\n"
+#~ " views\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 "Sorry, to close 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."
+
+#~ msgid "Found by tags"
+#~ msgstr "Tagged questions"
+
+#~ msgid "New password set"
+#~ msgstr "New password created"
+
+#~ msgid "user_subscriptions_url"
+#~ msgstr "subscriptions"
+
+#~ msgid "go to %(email_settings_url)s to change frequency of email updates or %(admin_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 "%(q_num)s question found"
+#~ msgid_plural "%(q_num)s questions found"
+#~ msgstr[0] "One question found"
+#~ msgstr[1] ""
+
+#~ 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."
+
+#~ 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."
+
+#~ 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."
+
+#~ 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."
+
+#~ 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. "
+
+#~ msgid "welcome to website"
+#~ msgstr "Welcome to Q&amp;A forum"
+
+#~ msgid "Recent awards"
+#~ msgstr "Recent badges"
+
+#~ msgid "all awards"
+#~ msgstr "all badges"
+
+#~ msgid "popular tags"
+#~ msgstr "tags"
+
+#~ msgid " have total %(q_num)s questions containing %(searchtitle)s in full text "
+#~ msgid_plural " have total %(q_num)s questions containing %(searchtitle)s in full text "
+#~ msgstr[0] "<div class=\"questions-count\">%(q_num)s</div><p>question containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+#~ msgstr[1] "<div class=\"questions-count\">%(q_num)s</div><p>questions containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+
+#~ msgid " have total %(q_num)s questions containing %(searchtitle)s "
+#~ msgid_plural " have total %(q_num)s questions containing %(searchtitle)s "
+#~ msgstr[0] "<div class=\"questions-count\">%(q_num)s</div><p>question with title containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+#~ msgstr[1] "<div class=\"questions-count\">%(q_num)s</div><p>questions with title containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></p>"
+
+#~ msgid " have total %(q_num)s unanswered questions "
+#~ msgid_plural " have total %(q_num)s unanswered questions "
+#~ msgstr[0] "<div class=\"questions-count\">%(q_num)s</div>questions <strong>without accepted answers</strong>"
+#~ msgstr[1] "<div class=\"questions-count\">%(q_num)s</div>questions <strong>without accepted answers</strong>"
+
+#~ msgid "Most recently answered ones are shown first."
+#~ msgstr "<strong>Most recently answered</strong> questions are shown first."
+
+#~ msgid "Questions sorted by <strong>number of responses</strong>."
+#~ msgstr "Questions sorted by the <strong>number of answers</strong>."
+
+#~ msgid "Most answered questions are shown first."
+#~ msgstr " "
+
+#~ msgid "avatar, see %(gravatar_faq_url)s"
+#~ msgstr "<a href='%(gravatar_faq_url)s'>gravatar</a>"
diff --git a/askbot/management/commands/fix_revisionless_posts.py b/askbot/management/commands/fix_revisionless_posts.py
index 47b06a5f..92c03425 100644
--- a/askbot/management/commands/fix_revisionless_posts.py
+++ b/askbot/management/commands/fix_revisionless_posts.py
@@ -1,8 +1,27 @@
-"""
+"""this management commands will fix corrupted posts
+that do not have revisions by creating a fake initial revision
+based on the content stored in the post itself
"""
from django.core.management.base import NoArgsCommand
-from django.db.models import signals
+from django.db.models import signals, Count
from askbot import models
+from askbot import const
+
+def fix_revisionless_posts(post_class, post_name):
+ posts = post_class.objects.annotate(
+ rev_count = Count('revisions')
+ ).filter(rev_count = 0)
+ print 'have %d corrupted %ss' % (len(posts), post_name)
+ for post in posts:
+ post.add_revision(
+ author = post.author,
+ text = post.text,
+ comment = const.POST_STATUS['default_version'],
+ revised_at = post.added_at
+ )
+ post.last_edited_at = None
+ post.last_edited_by = None
+ post.save()
class Command(NoArgsCommand):
"""Command class for "fix_answer_counts"
@@ -20,6 +39,5 @@ class Command(NoArgsCommand):
"""function that handles the command job
"""
self.remove_save_signals()
- questions = models.Question.objects.all()
- for question in questions:
- question.update_answer_count()
+ fix_revisionless_posts(models.Question, 'question')
+ fix_revisionless_posts(models.Answer, 'answer')
diff --git a/askbot/models/__init__.py b/askbot/models/__init__.py
index fc53c3b6..16bc3032 100644
--- a/askbot/models/__init__.py
+++ b/askbot/models/__init__.py
@@ -353,14 +353,14 @@ def user_assert_can_edit_post(self, post = None):
)
if post.wiki == True:
low_rep_error_message = _(
- 'Sorry, to edit wiki\' posts, a minimum '
+ 'Sorry, to edit wiki posts, a minimum '
'reputation of %(min_rep)s is required'
) % \
{'min_rep': askbot_settings.MIN_REP_TO_EDIT_WIKI}
min_rep_setting = askbot_settings.MIN_REP_TO_EDIT_WIKI
else:
low_rep_error_message = _(
- 'Sorry, to edit other people\' posts, a minimum '
+ 'Sorry, to edit other people\'s posts, a minimum '
'reputation of %(min_rep)s is required'
) % \
{'min_rep': askbot_settings.MIN_REP_TO_EDIT_OTHERS_POSTS}
diff --git a/askbot/models/answer.py b/askbot/models/answer.py
index 37f12e2f..9afab656 100644
--- a/askbot/models/answer.py
+++ b/askbot/models/answer.py
@@ -38,7 +38,7 @@ class AnswerManager(models.Manager):
answer.parse_and_save(author = author)
answer.add_revision(
- revised_by = author,
+ author = author,
revised_at = added_at,
text = text,
comment = const.POST_STATUS['default_version'],
@@ -116,19 +116,20 @@ class Answer(content.Content, DeletableContent):
self.parse_and_save(author = edited_by)
self.add_revision(
- revised_by=edited_by,
- revised_at=edited_at,
- text=text,
- comment=comment
+ author = edited_by,
+ revised_at = edited_at,
+ text = text,
+ comment = comment
)
self.question.last_activity_at = edited_at
self.question.last_activity_by = edited_by
self.question.save()
- def add_revision(self, revised_by=None, revised_at=None, text=None, comment=None):
- if None in (revised_by, revised_at, text):
- raise Exception('arguments revised_by, revised_at and text are required')
+ def add_revision(self, author=None, revised_at=None, text=None, comment=None):
+ #todo: this may be identical to Question.add_revision
+ if None in (author, revised_at, text):
+ raise Exception('arguments author, revised_at and text are required')
rev_no = self.revisions.all().count() + 1
if comment in (None, ''):
if rev_no == 1:
@@ -137,7 +138,7 @@ class Answer(content.Content, DeletableContent):
comment = 'No.%s Revision' % rev_no
return AnswerRevision.objects.create(
answer=self,
- author=revised_by,
+ author=author,
revised_at=revised_at,
text=text,
summary=comment,
diff --git a/askbot/models/content.py b/askbot/models/content.py
index 5ebcb7e3..eaba4fd6 100644
--- a/askbot/models/content.py
+++ b/askbot/models/content.py
@@ -222,7 +222,7 @@ class Content(models.Model):
if user.tag_filter_setting == 'interesting':
#at least some of the tags must be marked interesting
- interesting_selections = user.tag_selections.exists(
+ interesting_selections = user.tag_selections.filter(
tag__in = tags,
reason = 'good'
)